pax_global_header00006660000000000000000000000064150053017460014513gustar00rootroot0000000000000052 comment=e09044f5839aa7b4a612d697453dca165ce7e2d6 openmotor-0.6.0/000077500000000000000000000000001500530174600135405ustar00rootroot00000000000000openmotor-0.6.0/.github/000077500000000000000000000000001500530174600151005ustar00rootroot00000000000000openmotor-0.6.0/.github/workflows/000077500000000000000000000000001500530174600171355ustar00rootroot00000000000000openmotor-0.6.0/.github/workflows/tests.yml000066400000000000000000000017711500530174600210300ustar00rootroot00000000000000name: Unit Tests on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: ['3.8', '3.9', '3.10'] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install flake8 pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Run unit tests run: | PYTHONPATH=. python test/unit.py openmotor-0.6.0/.gitignore000066400000000000000000000026031500530174600155310ustar00rootroot00000000000000# Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution / packaging .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ share/python-wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .nox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover .hypothesis/ .pytest_cache/ # Translations *.mo *.pot # Django stuff: *.log local_settings.py db.sqlite3 # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ # PyBuilder target/ # Jupyter Notebook .ipynb_checkpoints # IPython profile_default/ ipython_config.py # pyenv .python-version # celery beat schedule file celerybeat-schedule # SageMath parsed files *.sage.py # Environments .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ .dmypy.json dmypy.json # Pyre type checker .pyre/ # openMotor user files preferences.yaml propellants.yaml # autogenerated UI files *_ui.pyopenmotor-0.6.0/.pylintrc000066400000000000000000000421101500530174600154030ustar00rootroot00000000000000[MASTER] # A comma-separated list of package or module names from where C extensions may # be loaded. Extensions are loading into the active Python interpreter and may # run arbitrary code. extension-pkg-whitelist=PyQt5 # Add files or directories to the blacklist. They should be base names, not # paths. ignore=CVS # Add files or directories matching the regex patterns to the blacklist. The # regex matches against base names, not paths. ignore-patterns= # Python code to execute, usually for sys.path manipulation such as # pygtk.require(). #init-hook= # Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the # number of processors available to use. jobs=1 # Control the amount of potential inferred values when inferring a single # object. This can help the performance when dealing with large functions or # complex, nested conditions. limit-inference-results=100 # List of plugins (as comma separated values of python modules names) to load, # usually to register additional checkers. load-plugins= # Pickle collected data for later comparisons. persistent=yes # Specify a configuration file. #rcfile= # When enabled, pylint would attempt to guess common misconfiguration and emit # user-friendly hints instead of false-positive error messages. suggestion-mode=yes # Allow loading of arbitrary C extensions. Extensions are imported into the # active Python interpreter and may run arbitrary code. unsafe-load-any-extension=no [MESSAGES CONTROL] # Only show warnings with the listed confidence levels. Leave empty to show # all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED. confidence= # Disable the message, report, category or checker with the given id(s). You # can either give multiple identifiers separated by comma (,) or put this # option multiple times (only on the command line, not in the configuration # file where it should appear only once). You can also use "--disable=all" to # disable everything first and then reenable specific checks. For example, if # you want to run only the similarities checker, you can use "--disable=all # --enable=similarities". If you want to run only the classes checker, but have # no Warning level messages displayed, use "--disable=all --enable=classes # --disable=W". disable=print-statement, parameter-unpacking, unpacking-in-except, old-raise-syntax, backtick, long-suffix, old-ne-operator, old-octal-literal, import-star-module-level, non-ascii-bytes-literal, raw-checker-failed, bad-inline-option, locally-disabled, file-ignored, suppressed-message, useless-suppression, deprecated-pragma, use-symbolic-message-instead, apply-builtin, basestring-builtin, buffer-builtin, cmp-builtin, coerce-builtin, execfile-builtin, file-builtin, long-builtin, raw_input-builtin, reduce-builtin, standarderror-builtin, unicode-builtin, xrange-builtin, coerce-method, delslice-method, getslice-method, setslice-method, no-absolute-import, old-division, dict-iter-method, dict-view-method, next-method-called, metaclass-assignment, indexing-exception, raising-string, reload-builtin, oct-method, hex-method, nonzero-method, cmp-method, input-builtin, round-builtin, intern-builtin, unichr-builtin, map-builtin-not-iterating, zip-builtin-not-iterating, range-builtin-not-iterating, filter-builtin-not-iterating, using-cmp-argument, eq-without-hash, div-method, idiv-method, rdiv-method, exception-message-attribute, invalid-str-codec, sys-max-int, bad-python3-import, deprecated-string-function, deprecated-str-translate-call, deprecated-itertools-function, deprecated-types-field, next-method-defined, dict-items-not-iterating, dict-keys-not-iterating, dict-values-not-iterating, deprecated-operator-function, deprecated-urllib-function, xreadlines-attribute, deprecated-sys-function, exception-escape, comprehension-escape # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option # multiple time (only on the command line, not in the configuration file where # it should appear only once). See also the "--disable" option for examples. enable=c-extension-no-member [REPORTS] # Python expression which should return a note less than 10 (10 is the highest # note). You have access to the variables errors warning, statement which # respectively contain the number of errors / warnings messages and the total # number of statements analyzed. This is used by the global evaluation report # (RP0004). evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10) # Template used to display messages. This is a python new-style format string # used to format the message information. See doc for all details. #msg-template= # Set the output format. Available formats are text, parseable, colorized, json # and msvs (visual studio). You can also give a reporter class, e.g. # mypackage.mymodule.MyReporterClass. output-format=text # Tells whether to display a full report or only the messages. reports=no # Activate the evaluation score. score=yes [REFACTORING] # Maximum number of nested blocks for function / method body max-nested-blocks=5 # Complete name of functions that never returns. When checking for # inconsistent-return-statements if a never returning function is called then # it will be considered as an explicit return statement and no message will be # printed. never-returning-functions=sys.exit [SPELLING] # Limits count of emitted suggestions for spelling mistakes. max-spelling-suggestions=4 # Spelling dictionary name. Available dictionaries: none. To make it working # install python-enchant package.. spelling-dict= # List of comma separated words that should not be checked. spelling-ignore-words= # A path to a file that contains private dictionary; one word per line. spelling-private-dict-file= # Tells whether to store unknown words to indicated private dictionary in # --spelling-private-dict-file option instead of raising a message. spelling-store-unknown-words=no [BASIC] # Naming style matching correct argument names. argument-naming-style=camelCase # Regular expression matching correct argument names. Overrides argument- # naming-style. #argument-rgx= # Naming style matching correct attribute names. attr-naming-style=camelCase # Regular expression matching correct attribute names. Overrides attr-naming- # style. #attr-rgx= # Bad variable names which should always be refused, separated by a comma. bad-names=foo, bar, baz, toto, tutu, tata # Naming style matching correct class attribute names. class-attribute-naming-style=any # Regular expression matching correct class attribute names. Overrides class- # attribute-naming-style. #class-attribute-rgx= # Naming style matching correct class names. class-naming-style=PascalCase # Regular expression matching correct class names. Overrides class-naming- # style. #class-rgx= # Naming style matching correct constant names. const-naming-style=UPPER_CASE # Regular expression matching correct constant names. Overrides const-naming- # style. #const-rgx= # Minimum line length for functions/classes that require docstrings, shorter # ones are exempt. docstring-min-length=-1 # Naming style matching correct function names. function-naming-style=camelCase # Regular expression matching correct function names. Overrides function- # naming-style. #function-rgx= # Good variable names which should always be accepted, separated by a comma. good-names=i, j, k, ex, Run, _ # Include a hint for the correct naming format with invalid-name. include-naming-hint=no # Naming style matching correct inline iteration names. inlinevar-naming-style=any # Regular expression matching correct inline iteration names. Overrides # inlinevar-naming-style. #inlinevar-rgx= # Naming style matching correct method names. method-naming-style=camelCase # Regular expression matching correct method names. Overrides method-naming- # style. #method-rgx= # Naming style matching correct module names. module-naming-style=camelCase # Regular expression matching correct module names. Overrides module-naming- # style. #module-rgx= # Colon-delimited sets of names that determine each other's naming style when # the name regexes allow several styles. name-group= # Regular expression which should only match function or class names that do # not require a docstring. no-docstring-rgx=^_ # List of decorators that produce properties, such as abc.abstractproperty. Add # to this list to register other decorators that produce valid properties. # These decorators are taken in consideration only for invalid-name. property-classes=abc.abstractproperty # Naming style matching correct variable names. variable-naming-style=camelCase # Regular expression matching correct variable names. Overrides variable- # naming-style. #variable-rgx= [MISCELLANEOUS] # List of note tags to take in consideration, separated by a comma. notes=FIXME, XXX, TODO [VARIABLES] # List of additional names supposed to be defined in builtins. Remember that # you should avoid defining new builtins when possible. additional-builtins= # Tells whether unused global variables should be treated as a violation. allow-global-unused-variables=yes # List of strings which can identify a callback function by name. A callback # name must start or end with one of those strings. callbacks=cb_, _cb # A regular expression matching the name of dummy variables (i.e. expected to # not be used). dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_ # Argument names that match this expression will be ignored. Default to name # with leading underscore. ignored-argument-names=_.*|^ignored_|^unused_ # Tells whether we should check for unused import in __init__ files. init-import=no # List of qualified module names which can have objects that can redefine # builtins. redefining-builtins-modules=six.moves,past.builtins,future.builtins,builtins,io [FORMAT] # Expected format of line ending, e.g. empty (any line ending), LF or CRLF. expected-line-ending-format= # Regexp for a line that is allowed to be longer than the limit. ignore-long-lines=^\s*(# )??$ # Number of spaces of indent required inside a hanging or continued line. indent-after-paren=4 # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1 # tab). indent-string=' ' # Maximum number of characters on a single line. max-line-length=120 # Maximum number of lines in a module. max-module-lines=1000 # List of optional constructs for which whitespace checking is disabled. `dict- # separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}. # `trailing-comma` allows a space between comma and closing bracket: (a, ). # `empty-line` allows space-only lines. no-space-check=trailing-comma, dict-separator # Allow the body of a class to be on the same line as the declaration if body # contains single statement. single-line-class-stmt=no # Allow the body of an if to be on the same line as the test if there is no # else. single-line-if-stmt=no [LOGGING] # Format style used to check logging format string. `old` means using % # formatting, while `new` is for `{}` formatting. logging-format-style=old # Logging modules to check that the string format arguments are in logging # function parameter format. logging-modules=logging [TYPECHECK] # List of decorators that produce context managers, such as # contextlib.contextmanager. Add to this list to register other decorators that # produce valid context managers. contextmanager-decorators=contextlib.contextmanager # List of members which are set dynamically and missed by pylint inference # system, and so shouldn't trigger E1101 when accessed. Python regular # expressions are accepted. generated-members= # Tells whether missing members accessed in mixin class should be ignored. A # mixin class is detected if its name ends with "mixin" (case insensitive). ignore-mixin-members=yes # Tells whether to warn about missing members when the owner of the attribute # is inferred to be None. ignore-none=yes # This flag controls whether pylint should warn about no-member and similar # checks whenever an opaque object is returned when inferring. The inference # can return multiple potential results while evaluating a Python object, but # some branches might not be evaluated, which results in partial inference. In # that case, it might be useful to still emit no-member and other checks for # the rest of the inferred objects. ignore-on-opaque-inference=yes # List of class names for which member attributes should not be checked (useful # for classes with dynamically set attributes). This supports the use of # qualified names. ignored-classes=optparse.Values,thread._local,_thread._local # List of module names for which member attributes should not be checked # (useful for modules/projects where namespaces are manipulated during runtime # and thus existing member attributes cannot be deduced by static analysis. It # supports qualified module names, as well as Unix pattern matching. ignored-modules= # Show a hint with possible names when a member name was not found. The aspect # of finding the hint is based on edit distance. missing-member-hint=yes # The minimum edit distance a name should have in order to be considered a # similar match for a missing member name. missing-member-hint-distance=1 # The total number of similar names that should be taken in consideration when # showing a hint for a missing member. missing-member-max-choices=1 [STRING] # This flag controls whether the implicit-str-concat-in-sequence should # generate a warning on implicit string concatenation in sequences defined over # several lines. check-str-concat-over-line-jumps=no [SIMILARITIES] # Ignore comments when computing similarities. ignore-comments=yes # Ignore docstrings when computing similarities. ignore-docstrings=yes # Ignore imports when computing similarities. ignore-imports=no # Minimum lines number of a similarity. min-similarity-lines=4 [CLASSES] # List of method names used to declare (i.e. assign) instance attributes. defining-attr-methods=__init__, __new__, setUp # List of member names, which should be excluded from the protected access # warning. exclude-protected=_asdict, _fields, _replace, _source, _make # List of valid names for the first argument in a class method. valid-classmethod-first-arg=cls # List of valid names for the first argument in a metaclass class method. valid-metaclass-classmethod-first-arg=cls [DESIGN] # Maximum number of arguments for function / method. max-args=5 # Maximum number of attributes for a class (see R0902). max-attributes=7 # Maximum number of boolean expressions in an if statement. max-bool-expr=5 # Maximum number of branch for function / method body. max-branches=12 # Maximum number of locals for function / method body. max-locals=15 # Maximum number of parents for a class (see R0901). max-parents=7 # Maximum number of public methods for a class (see R0904). max-public-methods=20 # Maximum number of return / yield for function / method body. max-returns=6 # Maximum number of statements in function / method body. max-statements=50 # Minimum number of public methods for a class (see R0903). min-public-methods=2 [IMPORTS] # Allow wildcard imports from modules that define __all__. allow-wildcard-with-all=no # Analyse import fallback blocks. This can be used to support both Python 2 and # 3 compatible code, which means that the block might have code that exists # only in one or another interpreter, leading to false positives when analysed. analyse-fallback-blocks=no # Deprecated modules which should not be used, separated by a comma. deprecated-modules=optparse,tkinter.tix # Create a graph of external dependencies in the given file (report RP0402 must # not be disabled). ext-import-graph= # Create a graph of every (i.e. internal and external) dependencies in the # given file (report RP0402 must not be disabled). import-graph= # Create a graph of internal dependencies in the given file (report RP0402 must # not be disabled). int-import-graph= # Force import order to recognize a module as part of the standard # compatibility libraries. known-standard-library= # Force import order to recognize a module as part of a third party library. known-third-party=enchant [EXCEPTIONS] # Exceptions that will emit a warning when being caught. Defaults to # "BaseException, Exception". overgeneral-exceptions=BaseException, Exception openmotor-0.6.0/LICENSE000066400000000000000000001045151500530174600145530ustar00rootroot00000000000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . openmotor-0.6.0/MANIFEST.in000066400000000000000000000002361500530174600152770ustar00rootroot00000000000000# include .ui forms recursive-include uilib/views/forms * # include resource files recursive-include resources * # include pyuic config include pyuic.json openmotor-0.6.0/README.md000066400000000000000000000112121500530174600150140ustar00rootroot00000000000000openMotor ========== ![Logo](./resources/oMIconCycles.png) Overview -------- openMotor is an open-source internal ballistics simulator for rocket motor experimenters. The software estimates a rocket motor's chamber pressure and thrust based on propellant properties, grain geometry, and nozzle specifications. It uses the Fast Marching Method to determine how a propellant grain regresses, which allows the use of arbitrary core geometries. Current Features: * Metric and imperial units * Support for common grain geometries such as BATES, Finocyl, Star and more * Loading custom grain geometry from DXF files * A propellant editor that allows the user to enter the properties of as many propellants as they wish * The grain editor displays how a grain will regress to cut down on the guesswork involved in tweaking geometry * ENG file exporting * Burnsim importing and exporting * A UI that supports saving and loading designs along with undo and redo Planned Features: * Erosive burning simulation * Detailed output of every calculated parameter at any time and position along the motor The calculations involved were sourced from Rocket Propulsion Elements by George Sutton and from [Richard Nakka's website](https://www.nakka-rocketry.net/rtheory.html). ![Screenshot](https://www.reilley.net/openMotor/screenshot.png) Download ------- You can download the latest version for your system [here](https://github.com/reilleya/openMotor/releases/latest). From there, just unzip the file and run it. Alternatively, you can run it from source code to get the latest features. Building from Source -------------------- The program is currently being developed using python 3.10. The dependencies are outlined in `requirements.txt`, the main ones include `PyQt6`, `matplot`, `numpy`, `scipy`, `scikit-fmm`, and `scikit-image`. Because the PyQt6 bindings are used for the GUI, Qt6 must also be installed. The easiest way to build/run from source code is to clone the repository and install the required dependencies into a virtual enviornment: ``` $ git clone https://github.com/reilleya/openMotor $ cd openMotor $ python3 -m venv .venv $ source .venv/bin/activate $ pip install -r requirements.txt ``` If you are using a version of python that does not have a prebuilt version of one of the dependencies, the `pip` command above might fail with an error like: ``` Failed building wheel for scikit-fmm skfmm/fmm.cpp:4:10: fatal error: Python.h: No such file or directory ``` The fix is to install `python3-dev` or the equivalent with your system package manager. #### UI Files: openMotor uses Qt Designer to lay out the GUI, which generates `.ui` files describing the user interface. We use `pyuic5` to compile these files into Python source code which is then included in the program as ordinary source code. Because these autogenerated files are not committed to the source tree, you must build them by running: ``` $ python setup.py build_ui ``` Note that if you make changes to the UI using the `.ui` forms, you must re-build using the same command. Once everything is set up, you can start openMotor by running: `python main.py` ###### Note: On some systems, Python 2 and 3 are installed simultaneously, so you may have to specify which version to run when creating the venv. After the venv has been activated, the programs `python` and `pip` are aliased to the python runtime specific for your venv, so use those (instead of `pip3` and `python3`, on e.g. Debian Linux) Data Files ----------- openMotor uses [YAML](https://en.wikipedia.org/wiki/YAML) for data storage. Motor files have the extension `.ric` to differentiate them, but internally they are YAML and can be edited in a text editor if desired. The recommended MIME type for these files is `application/vnd.openmotor+yaml`. The remaining user information, like propellant data and preferences, is stored in plain YAML files in `\Local\openMotor` on Windows, `/Users//Library/Application Support/openMotor` on Mac OS, and `/home//.local/share/openMotor` on Linux. License ------- openMotor is released under the GNU GPL v3 license. The source code is distributed so you can build cool stuff with it, and so you don't have to trust the calculations are being done correctly. Check for yourself (and file an issue ticket!) if you doubt the results. Contributing ------------ As openMotor is open source, one of the goals of the project is to have as many eyes on the code as possible. I believe this is the best way to avoid bugs and also the easiest way to get new features added to the software. If you have ideas on how to improve the program or find an error, please open an issue ticket for discussion or file a pull request if possible. openmotor-0.6.0/app.py000066400000000000000000000126021500530174600146730ustar00rootroot00000000000000import sys import matplotlib.pyplot as plt import matplotlib as mpl from PyQt6.QtWidgets import QApplication, QMessageBox from PyQt6.QtGui import QIcon from PyQt6.QtCore import Qt import motorlib from motorlib import simResult from uilib import preferencesManager, propellantManager, simulationManager, fileManager, toolManager from uilib import importExportManager import uilib.widgets.mainWindow from uilib.logger import logger class App(QApplication): def __init__(self, args): super().__init__(args) self.icon = QIcon('resources/oMIconCyclesSmall.png') self.headless = '-h' in args if not self.headless and self.isDarkMode(): # Change these settings before any graph widgets are built, so they apply everywhere plt.style.use('dark_background') mpl.rcParams['axes.facecolor'] = '1e1e1e' mpl.rcParams['figure.facecolor'] = '1e1e1e' self.preferencesManager = uilib.preferencesManager.PreferencesManager() self.propellantManager = uilib.propellantManager.PropellantManager() self.preferencesManager.preferencesChanged.connect(self.propellantManager.setPreferences) self.simulationManager = uilib.simulationManager.SimulationManager() self.preferencesManager.preferencesChanged.connect(self.simulationManager.setPreferences) self.fileManager = uilib.fileManager.FileManager(self) startupFileLoaded = False if len(args) > 1 and args[-1][0] != '-': startupFileLoaded = self.fileManager.load(args[-1]) self.propellantManager.updated.connect(self.fileManager.updatePropellant) self.toolManager = uilib.toolManager.ToolManager(self) self.preferencesManager.preferencesChanged.connect(self.toolManager.setPreferences) self.importExportManager = uilib.importExportManager.ImportExportManager(self) self.preferencesManager.preferencesChanged.connect(self.importExportManager.setPreferences) self.simulationManager.newSimulationResult.connect(self.importExportManager.acceptSimRes) self.fileManager.newMotor.connect(self.importExportManager.acceptNewMotor) if self.headless: if len(args) < 3: print('Not enough arguments. Headless mode requires an input file.') elif not startupFileLoaded: print('Could not load motor file') sys.exit(1) else: motor = self.fileManager.getCurrentMotor() simulationResult = motor.runSimulation() for alert in simulationResult.alerts: print('{} ({}, {}): {}'.format(motorlib.simResult.alertLevelNames[alert.level], motorlib.simResult.alertTypeNames[alert.type], alert.location, alert.description)) print() if '-o' in args: with open(args[args.index('-o') + 1], 'w') as outputFile: outputFile.write(simulationResult.getCSV(self.preferencesManager.preferences)) else: print(simulationResult.getCSV(self.preferencesManager.preferences)) sys.exit(0) else: usingDarkMode = self.isDarkMode() currentTheme = self.style().objectName() logger.log('Opening window (dark mode: {}, default theme: "{}")'.format(usingDarkMode, currentTheme)) # Windows 10 and before don't have dark mode versions of their themes, so if the user wants dark mode, we have to switch to fusion if usingDarkMode and currentTheme in ['windows', 'windowsvista']: logger.log('Overriding theme to fusion to get dark mode') self.setStyle('fusion') self.window = uilib.widgets.mainWindow.Window(self) self.preferencesManager.publishPreferences() if startupFileLoaded: self.fileManager.sendTitleUpdate() self.window.show() logger.log('Window opened') def isDarkMode(self): if self.headless: return False return self.styleHints().colorScheme() == Qt.ColorScheme.Dark def outputMessage(self, content, title='openMotor'): if self.headless: print(content) else: logger.log(content) msg = QMessageBox() msg.setWindowIcon(self.icon) msg.setText(content) msg.setWindowTitle(title) msg.exec() def promptYesNo(self, content, title='openMotor'): if self.headless: return input('{} (y/n): '.format(content)) == 'y' else: logger.log(content) msg = QMessageBox() msg.setWindowIcon(self.icon) msg.setText(content) msg.setWindowTitle(title) msg.setStandardButtons(QMessageBox.StandardButton.Yes | QMessageBox.StandardButton.No) return msg.exec() == QMessageBox.StandardButton.Yes def outputException(self, exception, text, title='openMotor - Error'): if self.headless: print(text + " " + str(exception)) else: logger.error(text) logger.error(exception) msg = QMessageBox() msg.setWindowIcon(self.icon) msg.setText(text) msg.setInformativeText(str(exception)) msg.setWindowTitle(title) msg.exec() openmotor-0.6.0/docs/000077500000000000000000000000001500530174600144705ustar00rootroot00000000000000openmotor-0.6.0/docs/Makefile000066400000000000000000000011721500530174600161310ustar00rootroot00000000000000# Minimal makefile for Sphinx documentation # # You can set these variables from the command line, and also # from the environment for the first two. SPHINXOPTS ?= SPHINXBUILD ?= sphinx-build SOURCEDIR = . BUILDDIR = _build # Put it first so that "make" without argument is like "make help". help: @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) .PHONY: help Makefile # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). %: Makefile @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) openmotor-0.6.0/docs/_static/000077500000000000000000000000001500530174600161165ustar00rootroot00000000000000openmotor-0.6.0/docs/_static/.gitkeep000066400000000000000000000000001500530174600175350ustar00rootroot00000000000000openmotor-0.6.0/docs/_templates/000077500000000000000000000000001500530174600166255ustar00rootroot00000000000000openmotor-0.6.0/docs/_templates/.gitkeep000066400000000000000000000000001500530174600202440ustar00rootroot00000000000000openmotor-0.6.0/docs/building.rst000066400000000000000000000040161500530174600170200ustar00rootroot00000000000000Building openMotor from source ============================== 1. Install prerequisites ------------------------ ``openMotor`` uses ``PyQt``, which in turn relies on Qt 5. To compile the UI views, you will need to have Qt installed. The easiest way to do this is by installing QtCreator, which will also give you access to the Qt Designer to edit the view files. You can download `QtCreator here `_. You also need to install openMotor's dependencies. The easiest way to do this is with pip, inside a virtual environment: \*nix ^^^^^ .. code-block:: console $ python3 -m venv .venv $ source .venv/bin/activate $ pip install -r requirements.txt Windows ^^^^^^^ .. code-block:: powershell PS> python -m venv .venv PS> .venv/Scripts/Activate.ps1 (.venv) PS> pip install -r requirements.txt If you get a security error, try using `Set-ExecutionPolicy `_ to loosen your environment security settings. 2. Build Qt Views ----------------- With QtCreator installed, compile the UI files: .. code-block:: console $ python setup.py build_ui 3. Install openMotor in development mode ---------------------------------------- This will let you import the Python modules as if it were a normal package, but is not necessary for the UI to work. .. code-block:: console $ pip install -e . Running openMotor ================= Launching the UI is very easy: .. code-block:: console $ python ./main.py Building the Documentation ========================== The documentation is written with Sphinx, and uses reStructuredText. The necessary dependencies are included in the requirements file, so if you've built from source you should be all set to build. Run the following steps to build the docs: .. code-block:: console $ cd ./docs $ sphinx-build -b html . _build The build artifacts should now be present in ./docs/_build, and can be opened in a normal web browser. openmotor-0.6.0/docs/conf.py000066400000000000000000000037311500530174600157730ustar00rootroot00000000000000# Configuration file for the Sphinx documentation builder. # # This file only contains a selection of the most common options. For a full # list see the documentation: # http://www.sphinx-doc.org/en/master/config # -- Path setup -------------------------------------------------------------- # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # # import os # import sys # sys.path.insert(0, os.path.abspath('.')) # -- Project information ----------------------------------------------------- project = 'openMotor' copyright = '2019, Andrew Reilley, tuxxi, Pjotr Lengkeek, Joe Quigley' author = 'Andrew Reilley, tuxxi, Pjotr Lengkeek, Joe Quigley' # The full version, including alpha/beta/rc tags release = '0.3.0' # -- General configuration --------------------------------------------------- # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ "sphinx.ext.autodoc" ] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. # This pattern also affects html_static_path and html_extra_path. exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] # -- Options for HTML output ------------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # html_theme = 'alabaster' # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] openmotor-0.6.0/docs/index.rst000066400000000000000000000012261500530174600163320ustar00rootroot00000000000000.. openMotor documentation master file, created by sphinx-quickstart on Sat Jul 13 18:21:32 2019. You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. Welcome to openMotor's documentation! ===================================== .. toctree:: :maxdepth: 2 :caption: User documentation: .. TODO: "Getting Started" guide, tutorial, etc. .. toctree:: :maxdepth: 2 :caption: Python documentation: motorlib .. toctree:: :maxdepth: 1 :caption: Developer documentation: building Indices and tables ================== * :ref:`genindex` * :ref:`modindex` * :ref:`search` openmotor-0.6.0/docs/make.bat000066400000000000000000000013701500530174600160760ustar00rootroot00000000000000@ECHO OFF pushd %~dp0 REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set SOURCEDIR=. set BUILDDIR=_build if "%1" == "" goto help %SPHINXBUILD% >NUL 2>NUL if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% goto end :help %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% :end popd openmotor-0.6.0/docs/motorlib.rst000066400000000000000000000013431500530174600170520ustar00rootroot00000000000000``motorlib.geometry`` ===================== .. automodule:: motorlib.geometry :members: ``motorlib.grain`` ================== .. automodule:: motorlib.grain :members: ``motorlib.motor`` ================== .. automodule:: motorlib.motor :members: ``motorlib.nozzle`` =================== .. automodule:: motorlib.nozzle :members: ``motorlib.propellant`` ======================= .. automodule:: motorlib.propellant :members: ``motorlib.properties`` ======================= .. automodule:: motorlib.properties :members: ``motorlib.simResult`` ====================== .. automodule:: motorlib.simResult :members: ``motorlib.units`` ================== .. automodule:: motorlib.units :members: openmotor-0.6.0/installers/000077500000000000000000000000001500530174600157205ustar00rootroot00000000000000openmotor-0.6.0/installers/windows.iss000066400000000000000000000005541500530174600201360ustar00rootroot00000000000000[Setup] AppName=openMotor AppVersion=0.5.0 WizardStyle=modern DefaultDirName={autopf}\openMotor DefaultGroupName=openMotor UninstallDisplayIcon={app}\openMotor.exe Compression=lzma2 SolidCompression=yes [Files] Source: "../pyinstaller/dist/openMotor/*"; DestDir: "{app}"; Flags: recursesubdirs [Icons] Name: "{group}\openMotor"; Filename: "{app}\openMotor.exe" openmotor-0.6.0/main.py000066400000000000000000000001451500530174600150360ustar00rootroot00000000000000import sys from app import App from PyQt6.QtCore import Qt app = App(sys.argv) sys.exit(app.exec()) openmotor-0.6.0/motorlib/000077500000000000000000000000001500530174600153675ustar00rootroot00000000000000openmotor-0.6.0/motorlib/__init__.py000066400000000000000000000000001500530174600174660ustar00rootroot00000000000000openmotor-0.6.0/motorlib/constants.py000066400000000000000000000003051500530174600177530ustar00rootroot00000000000000"""Conains constants needed for motor calculations.""" # R, in units of J/(kmol*K) gasConstant = 8314.462618 # Standard gravitation acceleration (g), in units of m/s**2 standardGravity = 9.80665 openmotor-0.6.0/motorlib/geometry.py000066400000000000000000000061551500530174600176030ustar00rootroot00000000000000"""This module includes the geometry methods that openMotor uses in its calculations""" import math import numpy as np def circleArea(dia): """Returns the area of a circle with diameter dia""" return ((dia / 2) ** 2) * math.pi def circlePerimeter(dia): """Returns the perimeter (circumference) of a circle with diameter dia""" return dia * math.pi def circleDiameterFromArea(area): """Returns the diameter of a circle with area 'area'""" return 2 * ((area / math.pi) ** 0.5) def tubeArea(dia, height): """Returns the surface area of a tube (cylinder without endcaps) with diameter 'dia' and height 'height'""" return dia * math.pi * height def cylinderArea(dia, height): """Returns the surface area of a cylinder with diameter 'dia' and height 'height'""" return (2 * circleArea(dia)) + (tubeArea(dia, height)) def cylinderVolume(dia, height): """Returns the volume of a cylinder with diameter 'dia' and height 'height'""" return height * circleArea(dia) def frustumLateralSurfaceArea(diameterA, diameterB, length): """Returns the surface area of a frustum (truncated cone) with end diameters A and B and length 'length'""" radiusA = diameterA / 2 radiusB = diameterB / 2 return math.pi * (radiusA + radiusB) * (abs(radiusA - radiusB) ** 2 + length ** 2) ** 0.5 def frustumVolume(diameterA, diameterB, length): """Returns the volume of a frustum (truncated cone) with end diameters A and B and length 'length'""" radiusA = diameterA / 2 radiusB = diameterB / 2 return math.pi * (length / 3) * (radiusA ** 2 + radiusA * radiusB + radiusB ** 2) def splitFrustum(diameterA, diameterB, length, splitPosition): """Takes in info about a frustum (truncated cone) and a position measured from the "diameterA" and returns a tuple of frustums representing the two halves of the original frustum if it were split on the plane at distance "position" from the face with diameter "diameterA" """ splitDiameter = diameterA + (diameterB - diameterA) * (splitPosition / length) return (diameterA, splitDiameter, splitPosition), (splitDiameter, diameterB, length - splitPosition) def length(contour, mapSize, tolerance=3): """Returns the total length of all segments in a contour that aren't within 'tolerance' of the edge of a circle with diameter 'mapSize'""" offset = np.roll(contour.T, 1, axis=1) lengths = np.linalg.norm(contour.T - offset, axis=0) centerOffset = np.array([[mapSize / 2, mapSize / 2]]) radius = np.linalg.norm(contour - centerOffset, axis=1) valid = radius < (mapSize / 2) - tolerance return np.sum(lengths[valid]) def clean(contour, mapSize, tolerance): """Returns a contour with the same points as the input, omitting any within 'tolerace' of a circle of diameter 'mapSize'""" offset = np.array([[mapSize / 2, mapSize / 2]]) lengths = np.linalg.norm(contour - offset, axis=1) return contour[lengths < (mapSize / 2) - tolerance] def dist(point1, point2): """Returns the distance between two points [x1, y1], [x2, y2]""" return ((point1[0] - point2[0]) ** 2 + (point1[1] - point2[1]) ** 2) ** 0.5 openmotor-0.6.0/motorlib/grain.py000066400000000000000000000366561500530174600170610ustar00rootroot00000000000000"""This module includes the base classes from which all grain classes should inherit. None of these objects should be instantiated directly.""" from abc import abstractmethod import numpy as np import skfmm from skimage import measure from scipy.signal import savgol_filter from scipy import interpolate from . import geometry from .simResult import SimAlert, SimAlertLevel, SimAlertType from .properties import FloatProperty, EnumProperty, PropertyCollection class Grain(PropertyCollection): """A basic propellant grain. This is the class that all grains inherit from. It provides a few properties and composed methods but otherwise it is up to the subclass to make a functional grain.""" geomName = None def __init__(self): super().__init__() self.props['diameter'] = FloatProperty('Diameter', 'm', 0, 1) self.props['length'] = FloatProperty('Length', 'm', 0, 3) def getVolumeSlice(self, regDist, dRegDist): """Returns the amount of propellant volume consumed as the grain regresses from a distance of 'regDist' to regDist + dRegDist""" return self.getVolumeAtRegression(regDist) - self.getVolumeAtRegression(regDist + dRegDist) @abstractmethod def getSurfaceAreaAtRegression(self, regDist): """Returns the surface area of the grain after it has regressed a linear distance of 'regDist'""" @abstractmethod def getVolumeAtRegression(self, regDist): """Returns the volume of propellant in the grain after it has regressed a linear distance 'regDist'""" @abstractmethod def getWebLeft(self, regDist): """Returns the shortest distance the grain has to regress to burn out""" def isWebLeft(self, regDist, burnoutThres=0.00001): """Returns True if the grain has propellant left to burn after it has regressed a distance of 'regDist'""" return self.getWebLeft(regDist) > burnoutThres @abstractmethod def getMassFlux(self, massIn, dTime, regDist, dRegDist, position, density): """Returns the mass flux at a point along the grain. Takes in the mass flow into the grain, a timestep, the distance the grain has regressed so far, the additional distance it will regress during the timestep, a position along the grain measured from the head end, and the density of the propellant.""" def getPeakMassFlux(self, massIn, dTime, regDist, dRegDist, density): """Uses the grain's mass flux method to return the max. Assumes that it will be at the port of the grain!""" return self.getMassFlux(massIn, dTime, regDist, dRegDist, self.getEndPositions(regDist)[1], density) @abstractmethod def getEndPositions(self, regDist): """Returns the positions of the grain ends relative to the original (unburned) grain top""" @abstractmethod def getPortArea(self, regDist): """Returns the area of the grain's port when it has regressed a distance of 'regDist'""" def getRegressedLength(self, regDist): """Returns the length of the grain when it has regressed a distance of 'regDist', taking any possible inhibition into account.""" endPos = self.getEndPositions(regDist) return endPos[1] - endPos[0] def getDetailsString(self, lengthUnit='m'): """Returns a short string describing the grain, formatted using the units that is passed in""" return 'Length: {}'.format(self.props['length'].dispFormat(lengthUnit)) @abstractmethod def simulationSetup(self, config): """Do anything needed to prepare this grain for simulation""" def getGeometryErrors(self): """Returns a list of simAlerts that detail any issues with the geometry of the grain. Errors should be used for any condition that prevents simulation of the grain, while warnings can be used to notify the user of possible non-fatal mistakes in their entered numbers. Subclasses should still call the superclass method, as it performs checks that still apply to its subclasses.""" errors = [] if self.props['diameter'].getValue() == 0: errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, 'Diameter must not be 0')) if self.props['length'].getValue() == 0: errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, 'Length must not be 0')) return errors def getGrainBoundingVolume(self): """Returns the volume of the bounding cylinder around the grain""" return geometry.cylinderVolume(self.props['diameter'].getValue(), self.props['length'].getValue()) def getFreeVolume(self, regDist): """Returns the amount of empty (non-propellant) volume in bounding cylinder of the grain for a given regression depth.""" return float(self.getGrainBoundingVolume() - self.getVolumeAtRegression(regDist)) class PerforatedGrain(Grain): """A grain with a hole of some shape through the center. Adds abstract methods related to the core to the basic grain class """ geomName = 'perfGrain' def __init__(self): super().__init__() self.props['inhibitedEnds'] = EnumProperty('Inhibited ends', ['Neither', 'Top', 'Bottom', 'Both']) self.wallWeb = 0 # Max distance from the core to the wall def getEndPositions(self, regDist): if self.props['inhibitedEnds'].getValue() == 'Neither': # Neither return (regDist, self.props['length'].getValue() - regDist) if self.props['inhibitedEnds'].getValue() == 'Top': # Top return (0, self.props['length'].getValue() - regDist) if self.props['inhibitedEnds'].getValue() == 'Bottom': # Bottom return (regDist, self.props['length'].getValue()) if self.props['inhibitedEnds'].getValue() == 'Both': return (0, self.props['length'].getValue()) # The enum should prevent this from even being raised, but to cover the case where it somehow gets set wrong raise ValueError('Invalid number of faces inhibited') @abstractmethod def getCorePerimeter(self, regDist): """Returns the perimeter of the core after the grain has regressed a distance of 'regDist'.""" @abstractmethod def getFaceArea(self, regDist): """Returns the area of the grain face after it has regressed a distance of 'regDist'. This is the same as the area of an equal-diameter endburning grain minus the grain's port area.""" def getCoreSurfaceArea(self, regDist): """Returns the surface area of the grain's core after it has regressed a distance of 'regDist'""" corePerimeter = self.getCorePerimeter(regDist) coreArea = corePerimeter * self.getRegressedLength(regDist) return coreArea def getWebLeft(self, regDist): wallLeft = self.wallWeb - regDist if self.props['inhibitedEnds'].getValue() == 'Both': return wallLeft lengthLeft = self.getRegressedLength(regDist) return min(lengthLeft, wallLeft) def getSurfaceAreaAtRegression(self, regDist): faceArea = self.getFaceArea(regDist) coreArea = self.getCoreSurfaceArea(regDist) exposedFaces = 2 if self.props['inhibitedEnds'].getValue() == 'Top' or self.props['inhibitedEnds'].getValue() == 'Bottom': exposedFaces = 1 if self.props['inhibitedEnds'].getValue() == 'Both': exposedFaces = 0 return coreArea + (exposedFaces * faceArea) def getVolumeAtRegression(self, regDist): faceArea = self.getFaceArea(regDist) return faceArea * self.getRegressedLength(regDist) def getPortArea(self, regDist): faceArea = self.getFaceArea(regDist) uncored = geometry.circleArea(self.props['diameter'].getValue()) return uncored - faceArea def getMassFlux(self, massIn, dTime, regDist, dRegDist, position, density): diameter = self.props['diameter'].getValue() endPos = self.getEndPositions(regDist) # If a position above the top face is queried, the mass flow is just the input mass and the # diameter is the casting tube if position < endPos[0]: return massIn / geometry.circleArea(diameter) # If a position in the grain is queried, the mass flow is the input mass, from the top face, # and from the tube up to the point. The diameter is the core. if position <= endPos[1]: if self.props['inhibitedEnds'].getValue() in ('Top', 'Both'): top = 0 countedCoreLength = position else: top = self.getFaceArea(regDist + dRegDist) * dRegDist * density countedCoreLength = position - (endPos[0] + dRegDist) # This block gets the mass of propellant the core burns in the step. core = ((self.getPortArea(regDist + dRegDist) * countedCoreLength) - (self.getPortArea(regDist) * countedCoreLength)) core *= density massFlow = massIn + ((top + core) / dTime) return massFlow / self.getPortArea(regDist + dRegDist) # A position past the grain end was specified, so the mass flow includes the input mass flow # and all mass produced by the grain. Diameter is the casting tube. massFlow = massIn + (self.getVolumeSlice(regDist, dRegDist) * density / dTime) return massFlow / geometry.circleArea(diameter) @abstractmethod def getFaceImage(self, mapDim): """Returns an image of the grain's cross section, with resolution (mapDim, mapDim).""" @abstractmethod def getRegressionData(self, mapDim, numContours=15, coreBlack=True): """Returns a tuple that includes a grain face image as described in 'getFaceImage', a regression map where color maps to regression depth, a list of contours (lists of (x,y) points in image space) of equal regression depth, and a list of corresponding contour lengths. The contours are equally spaced between 0 regression and burnout.""" class FmmGrain(PerforatedGrain): """A grain that uses the fast marching method to calculate its regression. All a subclass has to do is provide an implementation of generateCoreMap that makes an image of a cross section of the grain.""" geomName = 'fmmGrain' def __init__(self): super().__init__() self.mapDim = 1001 self.mapX, self.mapY = None, None self.mask = None self.coreMap = None self.regressionMap = None self.faceArea = None def normalize(self, value): """Transforms real unit quantities into self.mapX, self.mapY coordinates. For use in indexing into the coremap.""" return value / (0.5 * self.props['diameter'].getValue()) def unNormalize(self, value): """Transforms self.mapX, self.mapY coordinates to real unit quantities. Used to determine real lengths in coremap.""" return (value / 2) * self.props['diameter'].getValue() def lengthToMap(self, value): """Converts meters to pixels. Used to compare real distances to pixel distances in the regression map.""" return self.mapDim * (value / self.props['diameter'].getValue()) def mapToLength(self, value): """Converts pixels to meters. Used to extract real distances from pixel distances such as contour lengths""" return self.props['diameter'].getValue() * (value / self.mapDim) def areaToMap(self, value): """Used to convert sqm to sq pixels, like on the regression map.""" return (self.mapDim ** 2) * (value / (self.props['diameter'].getValue() ** 2)) def mapToArea(self, value): """Used to convert sq pixels to sqm. For extracting real areas from the regression map.""" return (self.props['diameter'].getValue() ** 2) * (value / (self.mapDim ** 2)) def initGeometry(self, mapDim): """Set up an empty core map and reset the regression map. Takes in the dimension of both maps.""" if mapDim < 64: raise ValueError('Map dimension must be 64 or larger to get good results') self.mapDim = mapDim self.mapX, self.mapY = np.meshgrid(np.linspace(-1, 1, self.mapDim), np.linspace(-1, 1, self.mapDim)) self.mask = self.mapX**2 + self.mapY**2 > 1 self.coreMap = np.ones_like(self.mapX) self.regressionMap = None @abstractmethod def generateCoreMap(self): """Use self.mapX and self.mapY to generate an image of the grain cross section in self.coreMap. A 0 in the image means propellant, and a 1 means no propellant.""" def simulationSetup(self, config): mapSize = config.getProperty("mapDim") self.initGeometry(mapSize) self.generateCoreMap() self.generateRegressionMap() def generateRegressionMap(self): """Uses the fast marching method to generate an image of how the grain regresses from the core map. The map is stored under self.regressionMap.""" masked = np.ma.MaskedArray(self.coreMap, self.mask) cellSize = 1 / self.mapDim self.regressionMap = skfmm.distance(masked, dx=cellSize) * 2 maxDist = np.amax(self.regressionMap) self.wallWeb = self.unNormalize(maxDist) faceArea = [] polled = [] valid = np.logical_not(self.mask) for i in range(int(maxDist * self.mapDim) + 2): polled.append(i / self.mapDim) faceArea.append(self.mapToArea(np.count_nonzero(np.logical_and(self.regressionMap > (i / self.mapDim), valid)))) self.faceArea = savgol_filter(faceArea, 31, 5) self.faceAreaFunc = interpolate.interp1d(polled, self.faceArea) def getCorePerimeter(self, regDist): mapDist = self.normalize(regDist) corePerimeter = 0 contours = measure.find_contours(self.regressionMap, mapDist, fully_connected='low') for contour in contours: corePerimeter += self.mapToLength(geometry.length(contour, self.mapDim)) return corePerimeter def getFaceArea(self, regDist): mapDist = self.normalize(regDist) index = int(mapDist * self.mapDim) if index >= len(self.faceArea) - 1: return 0 # Past burnout return self.faceAreaFunc(mapDist) def getFaceImage(self, mapDim): self.initGeometry(mapDim) self.generateCoreMap() masked = np.ma.MaskedArray(self.coreMap, self.mask) return masked def getRegressionData(self, mapDim, numContours=15, coreBlack=True): self.initGeometry(mapDim) self.generateCoreMap() masked = np.ma.MaskedArray(self.coreMap, self.mask) regressionMap = None contours = [] contourLengths = {} try: self.generateRegressionMap() regmax = np.amax(self.regressionMap) regressionMap = self.regressionMap[:, :].copy() if coreBlack: regressionMap[np.where(self.coreMap == 0)] = regmax # Make the core black regressionMap = np.ma.MaskedArray(regressionMap, self.mask) for dist in np.linspace(0, regmax, numContours): contours.append([]) contourLengths[dist] = 0 layerContours = measure.find_contours(self.regressionMap, dist, fully_connected='low') for contour in layerContours: contours[-1].append(geometry.clean(contour, self.mapDim, 3)) contourLengths[dist] += geometry.length(contour, self.mapDim) except ValueError as exc: # If there aren't any contours, do nothing print(exc) return (masked, regressionMap, contours, contourLengths) openmotor-0.6.0/motorlib/grains/000077500000000000000000000000001500530174600166525ustar00rootroot00000000000000openmotor-0.6.0/motorlib/grains/__init__.py000066400000000000000000000010571500530174600207660ustar00rootroot00000000000000from .endBurner import * from .bates import * from .finocyl import * from .moonBurner import * from .star import * from .xCore import * from .cGrain import * from .dGrain import * from .rodTube import * from .conical import * from .custom import * # Generate grain geometry name -> constructor lookup table grainTypes = {} grainClasses = [BatesGrain, EndBurningGrain, Finocyl, MoonBurner, StarGrain, XCore, CGrain, DGrain, RodTubeGrain, ConicalGrain, CustomGrain] for grainType in grainClasses: grainTypes[grainType.geomName] = grainType openmotor-0.6.0/motorlib/grains/bates.py000066400000000000000000000070231500530174600203240ustar00rootroot00000000000000"""BATES submodule""" import numpy as np import skfmm from skimage import measure from ..grain import PerforatedGrain from .. import geometry from ..simResult import SimAlert, SimAlertLevel, SimAlertType from ..properties import FloatProperty class BatesGrain(PerforatedGrain): """The BATES grain has a simple cylindrical core. This type is not an FMM grain for performance reasons, as the calculations are easy enough to do manually.""" geomName = "BATES" def __init__(self): super().__init__() self.props['coreDiameter'] = FloatProperty('Core Diameter', 'm', 0, 1) def simulationSetup(self, config): self.wallWeb = (self.props['diameter'].getValue() - self.props['coreDiameter'].getValue()) / 2 def getCorePerimeter(self, regDist): return geometry.circlePerimeter(self.props['coreDiameter'].getValue() + (2 * regDist)) def getFaceArea(self, regDist): outer = geometry.circleArea(self.props['diameter'].getValue()) inner = geometry.circleArea(self.props['coreDiameter'].getValue() + (2 * regDist)) return outer - inner def getDetailsString(self, lengthUnit='m'): return 'Length: {}, Core: {}'.format(self.props['length'].dispFormat(lengthUnit), self.props['coreDiameter'].dispFormat(lengthUnit)) def getGeometryErrors(self): errors = super().getGeometryErrors() if self.props['coreDiameter'].getValue() == 0: errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, 'Core diameter must not be 0')) if self.props['coreDiameter'].getValue() >= self.props['diameter'].getValue(): aText = 'Core diameter must be less than grain diameter' errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, aText)) return errors # These two functions have a lot of code reuse, but it is worth it because making BATES an fmmGrain would make it # signficantly way slower def getFaceImage(self, mapDim): mapX, mapY = np.meshgrid(np.linspace(-1, 1, mapDim), np.linspace(-1, 1, mapDim)) mask = mapX**2 + mapY**2 > 1 coreMap = np.ones_like(mapX) # Normalize core diameter coreRadius = (self.props['coreDiameter'].getValue() / (0.5 * self.props['diameter'].getValue())) / 2 # Open up core coreMap[mapX**2 + mapY**2 < coreRadius**2] = 0 maskedMap = np.ma.MaskedArray(coreMap, mask) return maskedMap def getRegressionData(self, mapDim, numContours=15, coreBlack=True): masked = self.getFaceImage(mapDim) regressionMap = None contours = [] contourLengths = {} try: cellSize = 1 / mapDim regressionMap = skfmm.distance(masked, dx=cellSize) * 2 regmax = np.amax(regressionMap) regressionMap = regressionMap[:, :].copy() if coreBlack: regressionMap[np.where(masked == 0)] = regmax # Make the core black for dist in np.linspace(0, regmax, numContours): contours.append([]) contourLengths[dist] = 0 layerContours = measure.find_contours(regressionMap, dist, fully_connected='high') for contour in layerContours: contours[-1].append(contour) contourLengths[dist] += geometry.length(contour, mapDim) except ValueError as exc: # If there aren't any contours, do nothing print(exc) return (masked, regressionMap, contours, contourLengths) openmotor-0.6.0/motorlib/grains/cGrain.py000066400000000000000000000041531500530174600204320ustar00rootroot00000000000000"""C Grain submodule""" import numpy as np from ..grain import FmmGrain from ..properties import FloatProperty from ..simResult import SimAlert, SimAlertLevel, SimAlertType class CGrain(FmmGrain): """Defines a C grain, which is a cylindrical grain with a single slot taken out. The slot is a rectangular section with a certain width that starts at the casting tube and protrudes towards the center of the grain, stopping a specified offset away.""" geomName = 'C Grain' def __init__(self): super().__init__() self.props['slotWidth'] = FloatProperty('Slot width', 'm', 0, 1) self.props['slotOffset'] = FloatProperty('Slot offset', 'm', -1, 1) self.props['slotOffset'].setValue(0) def generateCoreMap(self): slotWidth = self.normalize(self.props['slotWidth'].getValue()) slotOffset = self.normalize(self.props['slotOffset'].getValue()) self.coreMap[np.logical_and(np.abs(self.mapY) < slotWidth / 2, self.mapX > slotOffset)] = 0 def getDetailsString(self, lengthUnit='m'): return 'Length: {}'.format(self.props['length'].dispFormat(lengthUnit)) def getGeometryErrors(self): errors = super().getGeometryErrors() if self.props['slotOffset'].getValue() > self.props['diameter'].getValue() / 2: aText = 'Slot offset should be less than grain radius' errors.append(SimAlert(SimAlertLevel.WARNING, SimAlertType.GEOMETRY, aText)) if self.props['slotOffset'].getValue() < -self.props['diameter'].getValue() / 2: aText = 'Slot offset should be greater than negative grain radius' errors.append(SimAlert(SimAlertLevel.WARNING, SimAlertType.GEOMETRY, aText)) if self.props['slotWidth'].getValue() == 0: errors.append(SimAlert(SimAlertLevel.WARNING, SimAlertType.GEOMETRY, 'Slot width must not be 0')) if self.props['slotWidth'].getValue() > self.props['diameter'].getValue(): aText = 'Slot width should not be greater than grain diameter' errors.append(SimAlert(SimAlertLevel.WARNING, SimAlertType.GEOMETRY, aText)) return errors openmotor-0.6.0/motorlib/grains/conical.py000066400000000000000000000262031500530174600206370ustar00rootroot00000000000000"""BATES submodule""" import numpy as np import skfmm from skimage import measure from math import atan, cos, sin from ..grain import Grain from .. import geometry from ..simResult import SimAlert, SimAlertLevel, SimAlertType from ..properties import FloatProperty, EnumProperty class ConicalGrain(Grain): """A conical grain is similar to a BATES grain except it has different core diameters at each end.""" geomName = "Conical" def __init__(self): super().__init__() self.props['forwardCoreDiameter'] = FloatProperty('Forward Core Diameter', 'm', 0, 1) self.props['aftCoreDiameter'] = FloatProperty('Aft Core Diameter', 'm', 0, 1) self.props['inhibitedEnds'] = EnumProperty('Inhibited ends', ['Both']) def isCoreInverted(self): """A simple helper that returns 'true' if the core's foward diameter is larger than its aft diameter""" return self.props['forwardCoreDiameter'].getValue() > self.props['aftCoreDiameter'].getValue() def getFrustumInfo(self, regDist): """Returns the dimensions of the grain's core at a given regression depth. The core is always a frustum and is returned as the aft diameter, forward diameter, and length""" grainDiameter = self.props['diameter'].getValue() aftDiameter = self.props['aftCoreDiameter'].getValue() forwardDiameter = self.props['forwardCoreDiameter'].getValue() grainLength = self.props['length'].getValue() exposedFaces = 0 inhibitedEnds = self.props['inhibitedEnds'].getValue() if inhibitedEnds == 'Neither': exposedFaces = 2 elif inhibitedEnds in ['Top', 'Bottom']: exposedFaces = 1 # These calculations are easiest if we work in terms of the core's "large end" and "small end" if self.isCoreInverted(): coreMajorDiameter, coreMinorDiameter = forwardDiameter, aftDiameter else: coreMajorDiameter, coreMinorDiameter = aftDiameter, forwardDiameter # Calculate the half angle of the core. This is done with without accounting for regression because it doesn't # change with regression angle = atan((coreMajorDiameter - coreMinorDiameter) / (2 * grainLength)) # Expand both core diameters by the radial component of the core's regression vector. This is allowed to expand # beyond the casting tube as that condition is checked in a later step regCoreMajorDiameter = coreMajorDiameter + (regDist * 2 * cos(angle)) regCoreMinorDiameter = coreMinorDiameter + (regDist * 2 * cos(angle)) # This is case where the larger core diameter has grown beyond the casting tube diameter. Once this happens, # the diameter of the large end of the core is clamped at the grain diameter and the length is changed to keep # the angle constant, which accounts for the regression of the grain at the major end. if regCoreMajorDiameter >= grainDiameter: majorFrustumDiameter = grainDiameter minorFrustumDiameter = regCoreMinorDiameter # How far past the grain diameter the major end has grown effectiveReg = (regCoreMajorDiameter - grainDiameter) / 2 # Reduce the length of the frustum by the axial component of the regression vector grainLength -= (effectiveReg / sin(angle)) # Account for the change in length due to face regression before the major end hit the casting tube grainLength -= exposedFaces * (grainDiameter - coreMajorDiameter) / 2 # Don't double count face regression grainLength += exposedFaces * effectiveReg # If the large end of the core hasn't reached the casting tube, we know that the small end hasn't either. In # this case we just return the current core diameters, and a length calculated from the inhibitor configuration else: majorFrustumDiameter = regCoreMajorDiameter minorFrustumDiameter = regCoreMinorDiameter grainLength -= exposedFaces * regDist if self.isCoreInverted(): return minorFrustumDiameter, majorFrustumDiameter, grainLength return majorFrustumDiameter, minorFrustumDiameter, grainLength def getSurfaceAreaAtRegression(self, regDist): """Returns the surface area of the grain after it has regressed a linear distance of 'regDist'""" aftDiameter, forwardDiameter, length = self.getFrustumInfo(regDist) surfaceArea = geometry.frustumLateralSurfaceArea(aftDiameter, forwardDiameter, length) fullFaceArea = geometry.circleArea(self.props['diameter'].getValue()) if self.props['inhibitedEnds'].getValue() in ['Neither', 'Bottom']: surfaceArea += fullFaceArea - geometry.circleArea(forwardDiameter) if self.props['inhibitedEnds'].getValue() in ['Neither', 'Top']: surfaceArea += fullFaceArea - geometry.circleArea(aftDiameter) return surfaceArea def getVolumeAtRegression(self, regDist): """Returns the volume of propellant in the grain after it has regressed a linear distance 'regDist'""" aftDiameter, forwardDiameter, length = self.getFrustumInfo(regDist) frustumVolume = geometry.frustumVolume(aftDiameter, forwardDiameter, length) outerVolume = geometry.cylinderVolume(self.props['diameter'].getValue(), length) return outerVolume - frustumVolume def getWebLeft(self, regDist): """Returns the shortest distance the grain has to regress to burn out""" aftDiameter, forwardDiameter, length = self.getFrustumInfo(regDist) return (self.props['diameter'].getValue() - min(aftDiameter, forwardDiameter)) / 2 def getMassFlow(self, massIn, dTime, regDist, dRegDist, position, density): """Returns the mass flow at a point along the grain. Takes in the mass flow into the grain, a timestep, the distance the grain has regressed so far, the additional distance it will regress during the timestep, a position along the grain measured from the head end, and the density of the propellant.""" # For now these grains are only allowed with inhibited faces, so we can ignore a lot of messy logic unsteppedFrustum = self.getFrustumInfo(regDist) steppedFrustum = self.getFrustumInfo(regDist + dRegDist) """These have to be reordered, because getFrustumInfo returns (aft, forward, length), but splitFrustum wants the position from the forward face""" unsteppedFrustum = (unsteppedFrustum[1], unsteppedFrustum[0], unsteppedFrustum[2]) steppedFrustum = (steppedFrustum[1], steppedFrustum[0], steppedFrustum[2]) # Note that this assumes the forward end of the grain is still at postition 0 - inhibited unsteppedPartialFrustum, _ = geometry.splitFrustum(*unsteppedFrustum, position) steppedPartialFrustum, _ = geometry.splitFrustum(*steppedFrustum, position) unsteppedVolume = geometry.frustumVolume(*unsteppedPartialFrustum) steppedVolume = geometry.frustumVolume(*steppedPartialFrustum) massFlow = (steppedVolume - unsteppedVolume) * density / dTime massFlow += massIn return massFlow, steppedPartialFrustum[1] def getMassFlux(self, massIn, dTime, regDist, dRegDist, position, density): """Returns the mass flux at a point along the grain. Takes in the mass flow into the grain, a timestep, the distance the grain has regressed so far, the additional distance it will regress during the timestep, a position along the grain measured from the head end, and the density of the propellant.""" massFlow, portDiameter = self.getMassFlow(massIn, dTime, regDist, dRegDist, position, density) return massFlow / geometry.circleArea(portDiameter) # Index 1 is port diameter OR IS IT def getPeakMassFlux(self, massIn, dTime, regDist, dRegDist, density): """Uses the grain's mass flux method to return the max. Need to define this here because I'm not sure what it will look like""" forwardMassFlux = self.getMassFlux(massIn, dTime, regDist, dRegDist, self.getEndPositions(regDist)[0], density) aftMassFlux = self.getMassFlux(massIn, dTime, regDist, dRegDist, self.getEndPositions(regDist)[1], density) return max(forwardMassFlux, aftMassFlux) def getEndPositions(self, regDist): """Returns the positions of the grain ends relative to the original (unburned) grain top. Returns a tuple like (forward, aft)""" originalLength = self.props['length'].getValue() aftCoreDiameter, forwardCoreDiameter, currentLength = self.getFrustumInfo(regDist) inhibitedEnds = self.props['inhibitedEnds'].getValue() if self.isCoreInverted(): if inhibitedEnds == 'Bottom' or inhibitedEnds == 'Both': # Because all of the change in length is due to the forward end moving, the forward end's position is # just the amount the the grain has regressed by, The aft end stays where it started return (originalLength - currentLength, originalLength) # Neither or Top. In this case, the forward end moving accounts for almost all of the change in total grain # length, except for the aft face having moved up by `regDist`, so that quantity is subtracted from the # total change in grain length to get the forward end position return (originalLength - currentLength - regDist, originalLength - regDist) if inhibitedEnds == 'Top' or inhibitedEnds == 'Both': # All of the change in grain length is due to the aft face moving, so the forward face stays at 0 and the # aft face is at the regressed grain length return (0, currentLength) # Neither or Bottom return (regDist, regDist + currentLength) def getPortArea(self, regDist): """Returns the area of the grain's port when it has regressed a distance of 'regDist'""" aftCoreDiameter, _, _ = self.getFrustumInfo(regDist) return geometry.circleArea(aftCoreDiameter) def getDetailsString(self, lengthUnit='m'): """Returns a short string describing the grain, formatted using the units that is passed in""" return 'Length: {}'.format(self.props['length'].dispFormat(lengthUnit)) def simulationSetup(self, config): """Do anything needed to prepare this grain for simulation""" return None def getGeometryErrors(self): errors = super().getGeometryErrors() if self.props['aftCoreDiameter'].getValue() == self.props['forwardCoreDiameter'].getValue(): errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, 'Core diameters cannot be the same, use a BATES for this case.')) if self.props['aftCoreDiameter'].getValue() > self.props['diameter'].getValue(): errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, 'Aft core diameter cannot be larger than grain diameter.')) if self.props['forwardCoreDiameter'].getValue() > self.props['diameter'].getValue(): errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, 'Forward core diameter cannot be larger than grain diameter.')) return errors openmotor-0.6.0/motorlib/grains/custom.py000066400000000000000000000031071500530174600205370ustar00rootroot00000000000000"""Custom Grain submodule""" import skimage.draw as draw from ..grain import FmmGrain from ..properties import PolygonProperty, EnumProperty from ..simResult import SimAlert, SimAlertLevel, SimAlertType from ..units import getAllConversions, convert class CustomGrain(FmmGrain): """Custom grains can have any core shape. They define their geometry using a polygon property, which tracks a list of polygons that each consist of a number of points. The polygons are scaled according to user specified units and drawn onto the core map.""" geomName = 'Custom Grain' def __init__(self): super().__init__() self.props['points'] = PolygonProperty('Core geometry') self.props['dxfUnit'] = EnumProperty('DXF Unit', getAllConversions('m')) def generateCoreMap(self): inUnit = self.props['dxfUnit'].getValue() for polygon in self.props['points'].getValue(): row = [(self.mapDim/2) + (-self.normalize(convert(p[1], inUnit, 'm')) * (self.mapDim/2)) for p in polygon] col = [(self.mapDim/2) + (self.normalize(convert(p[0], inUnit, 'm')) * (self.mapDim/2)) for p in polygon] imageRow, imageCol = draw.polygon(row, col, self.coreMap.shape) self.coreMap[imageRow, imageCol] = 0 def getGeometryErrors(self): errors = super().getGeometryErrors() if len(self.props['points'].getValue()) > 1: aText = 'Support for custom grains with multiple cores is experimental' errors.append(SimAlert(SimAlertLevel.WARNING, SimAlertType.GEOMETRY, aText)) return errors openmotor-0.6.0/motorlib/grains/dGrain.py000066400000000000000000000027621500530174600204370ustar00rootroot00000000000000"""D Grain submodule""" from ..grain import FmmGrain from ..properties import FloatProperty from ..simResult import SimAlert, SimAlertLevel, SimAlertType class DGrain(FmmGrain): """Defines a D grain, which is a grain that has no propellant past a chord that is a user-specified distance from the diameter.""" geomName = 'D Grain' def __init__(self): super().__init__() self.props['slotOffset'] = FloatProperty('Slot offset', 'm', -1, 1) self.props['slotOffset'].setValue(0) def generateCoreMap(self): slotOffset = self.normalize(self.props['slotOffset'].getValue()) self.coreMap[self.mapX > slotOffset] = 0 def getDetailsString(self, lengthUnit='m'): return 'Length: {}, Slot offset: {}'.format(self.props['length'].dispFormat(lengthUnit), self.props['slotOffset'].dispFormat(lengthUnit)) def getGeometryErrors(self): errors = super().getGeometryErrors() if self.props['slotOffset'].getValue() > self.props['diameter'].getValue() / 2: aText = 'Core offset must not be greater than grain radius' errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, aText)) if self.props['slotOffset'].getValue() < -self.props['diameter'].getValue() / 2: aText = 'Core offset must be greater than negative grain radius' errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, aText)) return errors openmotor-0.6.0/motorlib/grains/endBurner.py000066400000000000000000000017241500530174600211540ustar00rootroot00000000000000"""End Burner submodule""" from ..grain import Grain from ..import geometry class EndBurningGrain(Grain): """Defines an end-burning grain, which is a simple cylinder that burns on one end.""" geomName = 'End Burner' def getSurfaceAreaAtRegression(self, regDist): diameter = self.props['diameter'].getValue() return geometry.circleArea(diameter) def getVolumeAtRegression(self, regDist): bLength = self.getRegressedLength(regDist) diameter = self.props['diameter'].getValue() return geometry.cylinderVolume(diameter, bLength) def simulationSetup(self, config): pass def getWebLeft(self, regDist): return self.getRegressedLength(regDist) def getMassFlux(self, massIn, dTime, regDist, dRegDist, position, density): return 0 def getPortArea(self, regDist): return None def getEndPositions(self, regDist): return (0, self.props['length'].getValue() - regDist) openmotor-0.6.0/motorlib/grains/finocyl.py000066400000000000000000000126311500530174600206720ustar00rootroot00000000000000"""Finocyl grain submodule""" import numpy as np from ..grain import FmmGrain from ..properties import FloatProperty, IntProperty, BooleanProperty from ..simResult import SimAlert, SimAlertLevel, SimAlertType class Finocyl(FmmGrain): """A finocyl (fins on cylinder) grain has a circular core with a number of rectangular extensions that start at the circle's edge and protude along its normals.""" geomName = 'Finocyl' def __init__(self): super().__init__() self.props['numFins'] = IntProperty('Number of fins', '', 0, 64) self.props['finWidth'] = FloatProperty('Fin width', 'm', 0, 1) self.props['finLength'] = FloatProperty('Fin length', 'm', 0, 1) self.props['coreDiameter'] = FloatProperty('Core diameter', 'm', 0, 1) self.props['invertedFins'] = BooleanProperty('Inverted fins') def generateCoreMap(self): coreRadius = self.normalize(self.props['coreDiameter'].getValue()) / 2 numFins = self.props['numFins'].getValue() finWidth = self.normalize(self.props['finWidth'].getValue()) finLength = self.normalize(self.props['finLength'].getValue()) invertedFins = self.props['invertedFins'].getValue() finStart = coreRadius - finLength if invertedFins else 0 finEnd = coreRadius if invertedFins else finLength + coreRadius # Open up core self.coreMap[self.mapX**2 + self.mapY**2 < coreRadius**2] = 0 # Add fins for i in range(0, numFins): theta = 2 * np.pi / numFins * i # Initialize a vector pointing along the fin vect0 = np.cos(theta) vect1 = np.sin(theta) # Select all points within half the width of the vector vect = abs(vect0*self.mapX + vect1*self.mapY) < finWidth / 2 # Set up two perpendicular vectors to cap off the ends near = (vect1 * self.mapX) - (vect0 * self.mapY) > finStart far = (vect1 * self.mapX) - (vect0 * self.mapY) < finEnd ends = np.logical_and(far, near) # For inverted fins, we are filling propellant back in. For regular fins, we are removing it. self.coreMap[np.logical_and(vect, ends)] = invertedFins def getDetailsString(self, lengthUnit='m'): return 'Length: {}, Core: {}, Fins: {}'.format(self.props['length'].dispFormat(lengthUnit), self.props['coreDiameter'].dispFormat(lengthUnit), self.props['numFins'].getValue()) def getGeometryErrors(self): errors = super().getGeometryErrors() if self.props['coreDiameter'].getValue() == 0: errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, 'Core diameter must not be 0')) if self.props['coreDiameter'].getValue() >= self.props['diameter'].getValue(): aText = 'Core diameter must be less than or equal to grain diameter' errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, aText)) if self.props['finLength'].getValue() == 0: errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, 'Fin length must not be 0')) if self.props['finLength'].getValue() * 2 > self.props['diameter'].getValue(): aText = 'Fin length should be less than or equal to grain radius' errors.append(SimAlert(SimAlertLevel.WARNING, SimAlertType.GEOMETRY, aText)) if self.props['invertedFins'].getValue(): coreRadius = self.props['coreDiameter'].getValue() / 2 # In the weird case of one fin that extends beyond the core, we need to make sure it doesn't # intersect the core again on the other side as that would divide the port if self.props['finLength'].getValue() > coreRadius: lengthPastCenter = self.props['finLength'].getValue() - coreRadius halfWidth = self.props['finWidth'].getValue() / 2 tipRadius = (lengthPastCenter ** 2 + halfWidth ** 2) ** 0.5 if tipRadius > coreRadius and self.props['numFins'].getValue() > 0: aText = 'Fin tips outside of core' errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, aText)) else: coreWidth = self.props['coreDiameter'].getValue() + (2 * self.props['finLength'].getValue()) if coreWidth > self.props['diameter'].getValue(): aText = 'Core radius plus fin length should be less than or equal to grain radius' errors.append(SimAlert(SimAlertLevel.WARNING, SimAlertType.GEOMETRY, aText)) if self.props['finWidth'].getValue() == 0: errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, 'Fin width must not be 0')) if self.props['numFins'].getValue() > 1: radius = self.props['coreDiameter'].getValue() / 2 finLength = self.props['finLength'].getValue() invertedFins = self.props['invertedFins'].getValue() level = SimAlertLevel.ERROR if invertedFins else SimAlertLevel.WARNING apothem = radius - finLength if invertedFins else radius + finLength sideLength = 2 * apothem * np.tan(np.pi / self.props['numFins'].getValue()) if sideLength < self.props['finWidth'].getValue(): errors.append(SimAlert(level, SimAlertType.GEOMETRY, 'Fin tips intersect')) return errors openmotor-0.6.0/motorlib/grains/moonBurner.py000066400000000000000000000034701500530174600213560ustar00rootroot00000000000000"""Moon burning grain submodule""" from ..grain import FmmGrain from ..properties import FloatProperty from ..simResult import SimAlert, SimAlertLevel, SimAlertType class MoonBurner(FmmGrain): """A moonburner is very similar to a BATES grain except the core is off center by a specified distance.""" geomName = 'Moon Burner' def __init__(self): super().__init__() self.props['coreOffset'] = FloatProperty('Core offset', 'm', 0, 1) self.props['coreDiameter'] = FloatProperty('Core diameter', 'm', 0, 1) def generateCoreMap(self): coreRadius = self.normalize(self.props['coreDiameter'].getValue()) / 2 coreOffset = self.normalize(self.props['coreOffset'].getValue()) # Open up core self.coreMap[(self.mapX - coreOffset)**2 + self.mapY**2 < coreRadius**2] = 0 def getDetailsString(self, lengthUnit='m'): return 'Length: {}, Core: {}'.format(self.props['length'].dispFormat(lengthUnit), self.props['coreDiameter'].dispFormat(lengthUnit)) def getGeometryErrors(self): errors = super().getGeometryErrors() if self.props['coreDiameter'].getValue() == 0: errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, 'Core diameter must not be 0')) if self.props['coreDiameter'].getValue() >= self.props['diameter'].getValue(): aText = 'Core diameter must be less than or equal to grain diameter' errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, aText)) if self.props['coreOffset'].getValue() * 2 > self.props['diameter'].getValue(): aText = 'Core offset should be less than or equal to grain radius' errors.append(SimAlert(SimAlertLevel.WARNING, SimAlertType.GEOMETRY, aText)) return errors openmotor-0.6.0/motorlib/grains/rodTube.py000066400000000000000000000125611500530174600206350ustar00rootroot00000000000000"""Rod and Tube submodule""" import numpy as np import skfmm from skimage import measure from ..grain import PerforatedGrain from .. import geometry from ..simResult import SimAlert, SimAlertLevel, SimAlertType from ..properties import FloatProperty class RodTubeGrain(PerforatedGrain): """Tbe rod and tube grain resembles a BATES grain except that it features a fully-uninhibited rod of propellant in the center of the core.""" geomName = "Rod and Tube" def __init__(self): super().__init__() self.props['coreDiameter'] = FloatProperty('Core Diameter', 'm', 0, 1) self.props['rodDiameter'] = FloatProperty('Rod Diameter', 'm', 0, 1) self.props['supportDiameter'] = FloatProperty('Support Diameter', 'm', 0, 1) self.tubeWeb = None self.rodWeb = None def simulationSetup(self, config): self.tubeWeb = (self.props['diameter'].getValue() - self.props['coreDiameter'].getValue()) / 2 self.rodWeb = (self.props['rodDiameter'].getValue() - self.props['supportDiameter'].getValue()) / 2 self.wallWeb = max(self.tubeWeb, self.rodWeb) def getCorePerimeter(self, regDist): if regDist < self.tubeWeb: tubePerimeter = geometry.circlePerimeter(self.props['coreDiameter'].getValue() + (2 * regDist)) else: tubePerimeter = 0 if regDist < self.rodWeb: rodPerimeter = geometry.circlePerimeter(self.props['rodDiameter'].getValue() - (2 * regDist)) else: rodPerimeter = 0 return tubePerimeter + rodPerimeter def getFaceArea(self, regDist): if regDist < self.tubeWeb: outer = geometry.circleArea(self.props['diameter'].getValue()) inner = geometry.circleArea(self.props['coreDiameter'].getValue() + (2 * regDist)) tubeArea = outer - inner else: tubeArea = 0 if regDist < self.rodWeb: outer = geometry.circleArea(self.props['rodDiameter'].getValue() - (2 * regDist)) inner = geometry.circleArea(self.props['supportDiameter'].getValue()) rodArea = outer - inner else: rodArea = 0 return tubeArea + rodArea def getDetailsString(self, lengthUnit='m'): return 'Length: {}, Core: {}, Rod: {}'.format(self.props['length'].dispFormat(lengthUnit), self.props['coreDiameter'].dispFormat(lengthUnit), self.props['rodDiameter'].dispFormat(lengthUnit)) def getGeometryErrors(self): errors = super().getGeometryErrors() if self.props['coreDiameter'].getValue() == 0: errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, 'Core diameter must not be 0')) if self.props['coreDiameter'].getValue() >= self.props['diameter'].getValue(): aText = 'Core diameter must be less than grain diameter' errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, aText)) if self.props['rodDiameter'].getValue() >= self.props['coreDiameter'].getValue(): aText = 'Rod diameter must be less than core diameter' errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, aText)) return errors # These two functions have a lot of code reuse, but it is worth it because making this an fmmGrain would make it # signficantly way slower def getFaceImage(self, mapDim): # Normalize core and rod diameters coreRadius = (self.props['coreDiameter'].getValue() / (0.5 * self.props['diameter'].getValue())) / 2 rodRadius = (self.props['rodDiameter'].getValue() / (0.5 * self.props['diameter'].getValue())) / 2 supportRadius = (self.props['supportDiameter'].getValue() / (0.5 * self.props['diameter'].getValue())) / 2 mapX, mapY = np.meshgrid(np.linspace(-1, 1, mapDim), np.linspace(-1, 1, mapDim)) mask = np.logical_or(mapX**2 + mapY**2 > 1, mapX**2 + mapY**2 < supportRadius ** 2) coreMap = np.ones_like(mapX) # Open up core coreMap[mapX ** 2 + mapY ** 2 < coreRadius ** 2] = 0 coreMap[mapX ** 2 + mapY ** 2 < rodRadius ** 2] = 1 coreMap[mapX ** 2 + mapY ** 2 < supportRadius ** 2] = 0 maskedMap = np.ma.MaskedArray(coreMap, mask) return maskedMap def getRegressionData(self, mapDim, numContours=15, coreBlack=True): masked = self.getFaceImage(mapDim) regressionMap = None contours = [] contourLengths = {} try: cellSize = 1 / mapDim regressionMap = skfmm.distance(masked, dx=cellSize) * 2 regmax = np.amax(regressionMap) regressionMap = regressionMap[:, :].copy() if coreBlack: regressionMap[np.where(masked == 0)] = regmax # Make the core black for dist in np.linspace(0, regmax, numContours): contours.append([]) contourLengths[dist] = 0 layerContours = measure.find_contours(regressionMap, dist, fully_connected='high') for contour in layerContours: contours[-1].append(contour) contourLengths[dist] += geometry.length(contour, mapDim) except ValueError as exc: # If there aren't any contours, do nothing print(exc) return (masked, regressionMap, contours, contourLengths) openmotor-0.6.0/motorlib/grains/star.py000066400000000000000000000044711500530174600202030ustar00rootroot00000000000000"""Star grain submodule""" import numpy as np from ..grain import FmmGrain from ..properties import IntProperty, FloatProperty from ..simResult import SimAlert, SimAlertLevel, SimAlertType class StarGrain(FmmGrain): """A star grain has a core shaped like a star.""" geomName = 'Star Grain' def __init__(self): super().__init__() self.props['numPoints'] = IntProperty('Number of points', '', 0, 64) self.props['pointLength'] = FloatProperty('Point length', 'm', 0, 1) self.props['pointWidth'] = FloatProperty('Point base width', 'm', 0, 1) def generateCoreMap(self): numPoints = self.props['numPoints'].getValue() pointWidth = self.normalize(self.props['pointWidth'].getValue()) pointLength = self.normalize(self.props['pointLength'].getValue()) for i in range(0, numPoints): theta = 2 * np.pi / numPoints * i comp0 = np.cos(theta) comp1 = np.sin(theta) rect = abs(comp0 * self.mapX + comp1 * self.mapY) width = pointWidth / 2 * (1 - (((self.mapX ** 2 + self.mapY ** 2) ** 0.5) / pointLength)) vect = rect < width near = comp1*self.mapX - comp0*self.mapY > -0.025 self.coreMap[np.logical_and(vect, near)] = 0 def getDetailsString(self, lengthUnit='m'): return 'Length: {}, Points: {}'.format(self.props['length'].dispFormat(lengthUnit), self.props['numPoints'].getValue()) def getGeometryErrors(self): errors = super().getGeometryErrors() if self.props['numPoints'].getValue() == 0: errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, 'Star grain has 0 points')) if self.props['pointLength'].getValue() == 0: errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, 'Point length must not be 0')) if self.props['pointLength'].getValue() * 2 > self.props['diameter'].getValue(): aText = 'Point length should be less than or equal to grain radius' errors.append(SimAlert(SimAlertLevel.WARNING, SimAlertType.GEOMETRY, aText)) if self.props['pointWidth'].getValue() == 0: errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, 'Point width must not be 0')) return errors openmotor-0.6.0/motorlib/grains/xCore.py000066400000000000000000000041661500530174600203130ustar00rootroot00000000000000"""X Core grain submodule""" import numpy as np from ..grain import FmmGrain from ..properties import FloatProperty from ..simResult import SimAlert, SimAlertLevel, SimAlertType class XCore(FmmGrain): """An X Core grain has a core shaped like a plus sign or an X.""" geomName = 'X Core' def __init__(self): super().__init__() self.props['slotWidth'] = FloatProperty('Slot width', 'm', 0, 1) self.props['slotLength'] = FloatProperty('Slot length', 'm', 0, 1) def generateCoreMap(self): slotWidth = self.normalize(self.props['slotWidth'].getValue()) slotLength = self.normalize(self.props['slotLength'].getValue()) self.coreMap[np.logical_and(np.abs(self.mapY) < slotWidth/2, np.abs(self.mapX) < slotLength)] = 0 self.coreMap[np.logical_and(np.abs(self.mapX) < slotWidth/2, np.abs(self.mapY) < slotLength)] = 0 def getDetailsString(self, lengthUnit='m'): return 'Length: {}, Slots: {} by {}'.format(self.props['length'].dispFormat(lengthUnit), self.props['slotWidth'].dispFormat(lengthUnit), self.props['slotLength'].dispFormat(lengthUnit)) def getGeometryErrors(self): errors = super().getGeometryErrors() if self.props['slotWidth'].getValue() == 0: errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, 'Slot width must not be 0')) if self.props['slotWidth'].getValue() > self.props['diameter'].getValue(): aText = 'Slot width should be less than or equal to grain diameter' errors.append(SimAlert(SimAlertLevel.WARNING, SimAlertType.GEOMETRY, aText)) if self.props['slotLength'].getValue() == 0: errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, 'Slot length must not be 0')) if self.props['slotLength'].getValue() * 2 > self.props['diameter'].getValue(): aText = 'Slot length should be less than or equal to grain radius' errors.append(SimAlert(SimAlertLevel.WARNING, SimAlertType.GEOMETRY, aText)) return errors openmotor-0.6.0/motorlib/motor.py000066400000000000000000000410421500530174600171020ustar00rootroot00000000000000"""Conains the motor class and a supporting configuration property collection.""" from .grains import grainTypes from .nozzle import Nozzle from .propellant import Propellant from . import geometry from .simResult import SimulationResult, SimAlert, SimAlertLevel, SimAlertType from .grains import EndBurningGrain from .properties import PropertyCollection, FloatProperty, IntProperty from .constants import gasConstant class MotorConfig(PropertyCollection): """Contains the settings required for simulation, including environmental conditions and details about how to run the simulation.""" def __init__(self): super().__init__() # Limits self.props['maxPressure'] = FloatProperty('Maximum Allowed Pressure', 'Pa', 0, 7e7) self.props['maxMassFlux'] = FloatProperty('Maximum Allowed Mass Flux', 'kg/(m^2*s)', 0, 1e4) self.props['minPortThroat'] = FloatProperty('Minimum Allowed Port/Throat Ratio', '', 1, 4) self.props['flowSeparationWarnPercent'] = FloatProperty('Flow Separation Warning Threshold', '', 0.00, 1) # Simulation self.props['burnoutWebThres'] = FloatProperty('Web Burnout Threshold', 'm', 2.54e-5, 3.175e-3) self.props['burnoutThrustThres'] = FloatProperty('Thrust Burnout Threshold', '%', 0.01, 10) self.props['timestep'] = FloatProperty('Simulation Timestep', 's', 0.0001, 0.1) self.props['ambPressure'] = FloatProperty('Ambient Pressure', 'Pa', 0.0001, 102000) self.props['mapDim'] = IntProperty('Grain Map Dimension', '', 250, 2000) self.props['sepPressureRatio'] = FloatProperty('Separation Pressure Ratio', '', 0.001, 1) class Motor(): """The motor class stores a number of grains, a nozzle instance, a propellant, and a configuration that it uses to run simulations. Simulations return a simRes object that includes any warnings or errors associated with the simulation and the data. The propellant field may be None if the motor has no propellant set, and the grains list is allowed to be empty. The nozzle field and config must be filled, even if they are empty property collections.""" def __init__(self, propDict=None): self.grains = [] self.propellant = None self.nozzle = Nozzle() self.config = MotorConfig() if propDict is not None: self.applyDict(propDict) def getDict(self): """Returns a serializable representation of the motor. The dictionary has keys 'nozzle', 'propellant', 'grains', and 'config', which hold to the properties of their corresponding fields. Grains is a list of dicts, each containing a type and properties. Propellant may be None if the motor has no propellant set.""" motorData = {} motorData['nozzle'] = self.nozzle.getProperties() if self.propellant is not None: motorData['propellant'] = self.propellant.getProperties() else: motorData['propellant'] = None motorData['grains'] = [{'type': grain.geomName, 'properties': grain.getProperties()} for grain in self.grains] motorData['config'] = self.config.getProperties() return motorData def applyDict(self, dictionary): """Makes the motor copy properties from the dictionary that is passed in, which must be formatted like the result passed out by 'getDict'""" self.nozzle.setProperties(dictionary['nozzle']) if dictionary['propellant'] is not None: self.propellant = Propellant(dictionary['propellant']) else: self.propellant = None self.grains = [] for entry in dictionary['grains']: self.grains.append(grainTypes[entry['type']]()) self.grains[-1].setProperties(entry['properties']) self.config.setProperties(dictionary['config']) def calcBurningSurfaceArea(self, regDepth): burnoutThres = self.config.getProperty('burnoutWebThres') gWithReg = zip(self.grains, regDepth) perGrain = [gr.getSurfaceAreaAtRegression(reg) * int(gr.isWebLeft(reg, burnoutThres)) for gr, reg in gWithReg] return sum(perGrain) def calcKN(self, regDepth, dThroat): """Returns the motor's Kn when it has each grain has regressed by its value in regDepth, which should be a list with the same number of elements as there are grains in the motor.""" burningSurfaceArea = self.calcBurningSurfaceArea(regDepth) nozzleArea = self.nozzle.getThroatArea(dThroat) return burningSurfaceArea / nozzleArea def calcIdealPressure(self, regDepth, dThroat, kn=None): """Returns the steady-state pressure of the motor at a given reg. Kn is calculated automatically, but it can optionally be passed in to save time on motors where calculating surface area is expensive.""" if kn is None: kn = self.calcKN(regDepth, dThroat) return self.propellant.getPressureFromKn(kn) def calcForce(self, chamberPres, dThroat, exitPres=None): """Calculates the force of the motor at a given regression depth per grain. Calculates exit pressure by default, but can also use a value passed in.""" _, _, gamma, _, _ = self.propellant.getCombustionProperties(chamberPres) ambPressure = self.config.getProperty('ambPressure') thrustCoeff = self.nozzle.getAdjustedThrustCoeff(chamberPres, ambPressure, gamma, dThroat, exitPres) thrust = thrustCoeff * self.nozzle.getThroatArea(dThroat) * chamberPres return max(thrust, 0) def calcFreeVolume(self, regDepth): """Calculates the volume inside of the motor not occupied by proppellant for a set of regression depths.""" return sum([grain.getFreeVolume(reg) for grain, reg in zip(self.grains, regDepth)]) def calcTotalVolume(self): """Calculates the bounding-cylinder volume of the combustion chamber.""" return sum([grain.getGrainBoundingVolume() for grain in self.grains]) def runSimulation(self, callback=None): """Runs a simulation of the motor and returns a simRes instance with the results. Constraints are checked, including the number of grains, if the motor has a propellant set, and if the grains have geometry errors. If all of these tests are passed, the motor's operation is simulated by calculating Kn, using this value to get pressure, and using pressure to determine thrust and other statistics. The next timestep is then prepared by using the pressure to determine how the motor will regress in the given timestep at the current pressure. This process is repeated and regression tracked until all grains have burned out, when the results and any warnings are returned.""" burnoutWebThres = self.config.getProperty('burnoutWebThres') burnoutThrustThres = self.config.getProperty('burnoutThrustThres') dTime = self.config.getProperty('timestep') simRes = SimulationResult(self) # Check for geometry errors if len(self.grains) == 0: aText = 'Motor must have at least one propellant grain' simRes.addAlert(SimAlert(SimAlertLevel.ERROR, SimAlertType.CONSTRAINT, aText, 'Motor')) for gid, grain in enumerate(self.grains): if isinstance(grain, EndBurningGrain) and gid != 0: # Endburners have to be at the foward end aText = 'End burning grains must be the forward-most grain in the motor' simRes.addAlert(SimAlert(SimAlertLevel.ERROR, SimAlertType.CONSTRAINT, aText, 'Grain {}'.format(gid + 1))) for alert in grain.getGeometryErrors(): alert.location = 'Grain {}'.format(gid + 1) simRes.addAlert(alert) for alert in self.nozzle.getGeometryErrors(): simRes.addAlert(alert) # Make sure the motor has a propellant set if self.propellant is None: alert = SimAlert(SimAlertLevel.ERROR, SimAlertType.CONSTRAINT, 'Motor must have a propellant set', 'Motor') simRes.addAlert(alert) else: for alert in self.propellant.getErrors(): simRes.addAlert(alert) # If any errors occurred, stop simulation and return an empty sim with errors if len(simRes.getAlertsByLevel(SimAlertLevel.ERROR)) > 0: return simRes # Pull the required numbers from the propellant density = self.propellant.getProperty('density') # Precalculate these are they don't change motorVolume = self.calcTotalVolume() # Generate coremaps for perforated grains for grain in self.grains: grain.simulationSetup(self.config) # Setup initial values perGrainReg = [0 for grain in self.grains] # At t = 0, the motor has ignited simRes.channels['time'].addData(0) simRes.channels['kn'].addData(self.calcKN(perGrainReg, 0)) simRes.channels['pressure'].addData(self.calcIdealPressure(perGrainReg, 0, None)) simRes.channels['force'].addData(0) simRes.channels['mass'].addData([grain.getVolumeAtRegression(0) * density for grain in self.grains]) simRes.channels['volumeLoading'].addData(100 * (1 - (self.calcFreeVolume(perGrainReg) / motorVolume))) simRes.channels['massFlow'].addData([0 for grain in self.grains]) simRes.channels['massFlux'].addData([0 for grain in self.grains]) simRes.channels['regression'].addData([0 for grains in self.grains]) simRes.channels['web'].addData([grain.getWebLeft(0) for grain in self.grains]) simRes.channels['exitPressure'].addData(0) simRes.channels['dThroat'].addData(0) # Check port/throat ratio and add a warning if it is not large enough aftPort = self.grains[-1].getPortArea(0) if aftPort is not None: minAllowed = self.config.getProperty('minPortThroat') ratio = aftPort / geometry.circleArea(self.nozzle.props['throat'].getValue()) if ratio < minAllowed: description = 'Initial port/throat ratio of {:.3f} was less than {:.3f}'.format(ratio, minAllowed) simRes.addAlert(SimAlert(SimAlertLevel.WARNING, SimAlertType.CONSTRAINT, description, 'N/A')) # Perform timesteps while simRes.shouldContinueSim(burnoutThrustThres): # Calculate regression massFlow = 0 perGrainMass = [0 for grain in self.grains] perGrainMassFlow = [0 for grain in self.grains] perGrainMassFlux = [0 for grain in self.grains] perGrainWeb = [0 for grain in self.grains] for gid, grain in enumerate(self.grains): if grain.getWebLeft(perGrainReg[gid]) > burnoutWebThres: # Calculate regression at the current pressure reg = dTime * self.propellant.getBurnRate(simRes.channels['pressure'].getLast()) # Find the mass flux through the grain based on the mass flow fed into from grains above it perGrainMassFlux[gid] = grain.getPeakMassFlux(massFlow, dTime, perGrainReg[gid], reg, density) # Find the mass of the grain after regression perGrainMass[gid] = grain.getVolumeAtRegression(perGrainReg[gid]) * density # Add the change in grain mass to the mass flow massFlow += (simRes.channels['mass'].getLast()[gid] - perGrainMass[gid]) / dTime # Apply the regression perGrainReg[gid] += reg perGrainWeb[gid] = grain.getWebLeft(perGrainReg[gid]) perGrainMassFlow[gid] = massFlow simRes.channels['regression'].addData(perGrainReg[:]) simRes.channels['web'].addData(perGrainWeb) simRes.channels['volumeLoading'].addData(100 * (1 - (self.calcFreeVolume(perGrainReg) / motorVolume))) simRes.channels['mass'].addData(perGrainMass) simRes.channels['massFlow'].addData(perGrainMassFlow) simRes.channels['massFlux'].addData(perGrainMassFlux) # Calculate KN dThroat = simRes.channels['dThroat'].getLast() simRes.channels['kn'].addData(self.calcKN(perGrainReg, dThroat)) # Calculate Pressure lastKn = simRes.channels['kn'].getLast() pressure = self.calcIdealPressure(perGrainReg, dThroat, lastKn) simRes.channels['pressure'].addData(pressure) # Calculate Exit Pressure _, _, gamma, _, _ = self.propellant.getCombustionProperties(pressure) exitPressure = self.nozzle.getExitPressure(gamma, pressure) simRes.channels['exitPressure'].addData(exitPressure) # Calculate force force = self.calcForce(simRes.channels['pressure'].getLast(), dThroat, exitPressure) simRes.channels['force'].addData(force) simRes.channels['time'].addData(simRes.channels['time'].getLast() + dTime) # Calculate any slag deposition or erosion of the throat if pressure == 0: slagRate = 0 else: slagRate = (1 / pressure) * self.nozzle.getProperty('slagCoeff') erosionRate = pressure * self.nozzle.getProperty('erosionCoeff') change = dTime * ((-2 * slagRate) + (2 * erosionRate)) simRes.channels['dThroat'].addData(dThroat + change) if callback is not None: # Uses the grain with the largest percentage of its web left progress = max([g.getWebLeft(r) / g.getWebLeft(0) for g, r in zip(self.grains, perGrainReg)]) if callback(1 - progress): # If the callback returns true, it is time to cancel return simRes simRes.success = True if simRes.getPeakMassFlux() > self.config.getProperty('maxMassFlux'): desc = 'Peak mass flux exceeded configured limit' alert = SimAlert(SimAlertLevel.WARNING, SimAlertType.CONSTRAINT, desc, 'Motor') simRes.addAlert(alert) if simRes.getMaxPressure() > self.config.getProperty('maxPressure'): desc = 'Max pressure exceeded configured limit' alert = SimAlert(SimAlertLevel.WARNING, SimAlertType.CONSTRAINT, desc, 'Motor') simRes.addAlert(alert) if (simRes.getPercentBelowThreshold('exitPressure', self.config.getProperty('ambPressure') * self.config.getProperty('sepPressureRatio')) > self.config.getProperty('flowSeparationWarnPercent')): desc = 'Low exit pressure, nozzle flow may separate' alert = SimAlert(SimAlertLevel.WARNING, SimAlertType.VALUE, desc, 'Nozzle') simRes.addAlert(alert) if simRes.getAverageForce() < burnoutThrustThres: desc = 'Motor did not generate thrust. Check chamber pressure and expansion ratio.' alert = SimAlert(SimAlertLevel.ERROR, SimAlertType.VALUE, desc, 'Motor') simRes.addAlert(alert) # Note that this only adds all errors found on the first datapoint where there were errors to avoid repeating # errors. It should be revisited if getPressureErrors ever returns multiple types of errors for pressure in simRes.channels['pressure'].getData(): if pressure > 0: err = self.propellant.getPressureErrors(pressure) if len(err) > 0: simRes.addAlert(err[0]) break return simRes def getQuickResults(self): results = { 'volumeLoading': 0, 'initialKn': 0, 'propellantMass': 0, 'portRatio': 0, 'length': 0 } simRes = SimulationResult(self) density = self.propellant.getProperty('density') if self.propellant is not None else None throatArea = self.nozzle.getThroatArea() motorVolume = self.calcTotalVolume() if motorVolume == 0: return results # Generate coremaps for perforated grains for grain in self.grains: for alert in grain.getGeometryErrors(): if alert.level == SimAlertLevel.ERROR: return results grain.simulationSetup(self.config) perGrainReg = [0 for grain in self.grains] results['volumeLoading'] = 100 * (1 - (self.calcFreeVolume(perGrainReg) / motorVolume)) if throatArea != 0: results['initialKn'] = self.calcKN(perGrainReg, 0) results['portRatio'] = simRes.getPortRatio() if density is not None: results['propellantMass'] = sum([grain.getVolumeAtRegression(0) * density for grain in self.grains]) results['length'] = simRes.getPropellantLength() return results openmotor-0.6.0/motorlib/nozzle.py000066400000000000000000000141231500530174600172630ustar00rootroot00000000000000"""This submodule houses the nozzle object and functions related to isentropic flow""" import math from scipy.optimize import fsolve from .properties import FloatProperty, PropertyCollection from . import geometry from .simResult import SimAlert, SimAlertLevel, SimAlertType def eRatioFromPRatio(k, pRatio): """Returns the expansion ratio of a nozzle given the pressure ratio it causes.""" return (((k+1)/2)**(1/(k-1))) * (pRatio ** (1/k)) * ((((k+1)/(k-1))*(1-(pRatio**((k-1)/k))))**0.5) class Nozzle(PropertyCollection): """An object that contains the details about a motor's nozzle.""" def __init__(self): super().__init__() self.props['throat'] = FloatProperty('Throat Diameter', 'm', 0, 0.5) self.props['exit'] = FloatProperty('Exit Diameter', 'm', 0, 1) self.props['efficiency'] = FloatProperty('Efficiency', '', 0, 2) self.props['divAngle'] = FloatProperty('Divergence Half Angle', 'deg', 0, 90) self.props['convAngle'] = FloatProperty('Convergence Half Angle', 'deg', 0, 90) self.props['throatLength'] = FloatProperty('Throat Length', 'm', 0, 0.5) self.props['slagCoeff'] = FloatProperty('Slag Buildup Coefficient', '(m*Pa)/s', 0, 1e6) self.props['erosionCoeff'] = FloatProperty('Throat Erosion Coefficient', 'm/(s*Pa)', 0, 1e6) def getDetailsString(self, lengthUnit='m'): """Returns a human-readable string containing some details about the nozzle.""" return 'Throat: {}'.format(self.props['throat'].dispFormat(lengthUnit)) def calcExpansion(self): """Returns the nozzle's expansion ratio.""" return (self.props['exit'].getValue() / self.props['throat'].getValue()) ** 2 def getThroatArea(self, dThroat=0): """Returns the area of the nozzle's throat. The optional parameter is added on to the nozzle throat diameter allow erosion or slag buildup during a burn.""" return geometry.circleArea(self.props['throat'].getValue() + dThroat) def getExitArea(self): """Return the area of the nozzle's exit.""" return geometry.circleArea(self.props['exit'].getValue()) def getExitPressure(self, k, inputPressure): """Solves for the nozzle's exit pressure, given an input pressure and the gas's specific heat ratio.""" return fsolve(lambda x: (1/self.calcExpansion()) - eRatioFromPRatio(k, x / inputPressure), 0)[0] def getDivergenceLosses(self): """Returns nozzle efficiency losses due to divergence angle""" divAngleRad = math.radians(self.props["divAngle"].getValue()) return (1 + math.cos(divAngleRad)) / 2 def getThroatLosses(self, dThroat=0): """Returns the losses caused by the throat aspect ratio as described in this document: http://rasaero.com/dloads/Departures%20from%20Ideal%20Performance.pdf""" throatAspect = self.props['throatLength'].getValue() / (self.props['throat'].getValue() + dThroat) if throatAspect > 0.45: return 0.95 return 0.99 - (0.0333 * throatAspect) def getSkinLosses(self): """Returns the losses due to drag on the nozzle surface as described here: https://apps.dtic.mil/dtic/tr/fulltext/u2/a099791.pdf. This is a constant for now, as people likely don't have a way to measure this themselves.""" return 0.99 def getIdealThrustCoeff(self, chamberPres, ambPres, gamma, dThroat, exitPres=None): """Calculates C_f, the ideal thrust coefficient for the nozzle, given the propellant's specific heat ratio, the ambient and chamber pressures. If nozzle exit presure isn't provided, it will be calculated. dThroat is the change in throat diameter due to erosion or slag accumulation.""" if chamberPres == 0: return 0 if exitPres is None: exitPres = self.getExitPressure(gamma, chamberPres) exitArea = self.getExitArea() throatArea = self.getThroatArea(dThroat) term1 = (2 * (gamma ** 2)) / (gamma - 1) term2 = (2 / (gamma + 1)) ** ((gamma + 1) / (gamma - 1)) term3 = 1 - ((exitPres / chamberPres) ** ((gamma - 1) / gamma)) momentumThrust = (term1 * term2 * term3) ** 0.5 pressureThrust = ((exitPres - ambPres) * exitArea) / (throatArea * chamberPres) return momentumThrust + pressureThrust def getAdjustedThrustCoeff(self, chamberPres, ambPres, gamma, dThroat, exitPres=None): """Calculates adjusted thrust coefficient for the nozzle, given the propellant's specific heat ratio, the ambient and chamber pressures. If nozzle exit presure isn't provided, it will be calculated. dThroat is the change in throat diameter due to erosion or slag accumulation. This method uses a combination of the techniques described in these resources to adjust the thrust coefficient: https://apps.dtic.mil/dtic/tr/fulltext/u2/a099791.pdf http://rasaero.com/dloads/Departures%20from%20Ideal%20Performance.pdf""" thrustCoeffIdeal = self.getIdealThrustCoeff(chamberPres, ambPres, gamma, dThroat, exitPres) divLoss = self.getDivergenceLosses() throatLoss = self.getThroatLosses(dThroat) skinLoss = self.getSkinLosses() efficiency = self.getProperty('efficiency') return divLoss * throatLoss * efficiency * (skinLoss * thrustCoeffIdeal + (1 - skinLoss)) def getGeometryErrors(self): """Returns a list containing any errors with the nozzle's properties.""" errors = [] if self.props['throat'].getValue() == 0: aText = 'Throat diameter must not be 0' errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, aText, 'Nozzle')) if self.props['exit'].getValue() < self.props['throat'].getValue(): aText = 'Exit diameter must not be smaller than throat diameter' errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.GEOMETRY, aText, 'Nozzle')) if self.props['efficiency'].getValue() == 0: aText = 'Efficiency must not be 0' errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.CONSTRAINT, aText, 'Nozzle')) return errors openmotor-0.6.0/motorlib/propellant.py000066400000000000000000000155171500530174600201320ustar00rootroot00000000000000"""Propellant submodule that contains the propellant class.""" from scipy.optimize import fsolve from .properties import PropertyCollection, FloatProperty, StringProperty, TabularProperty from .simResult import SimAlert, SimAlertLevel, SimAlertType from .constants import gasConstant class PropellantTab(PropertyCollection): """Contains the combustion properties of a propellant over a specified pressure range.""" def __init__(self, tabDict=None): super().__init__() self.props['minPressure'] = FloatProperty('Minimum Pressure', 'Pa', 0, 7e7) self.props['maxPressure'] = FloatProperty('Maximum Pressure', 'Pa', 0, 7e7) self.props['a'] = FloatProperty('Burn rate Coefficient', 'm/(s*Pa^n)', 1E-8, 2) self.props['n'] = FloatProperty('Burn rate Exponent', '', -0.99, 0.99) self.props['k'] = FloatProperty('Specific Heat Ratio', '', 1+1e-6, 10) self.props['t'] = FloatProperty('Combustion Temperature', 'K', 1, 10000) self.props['m'] = FloatProperty('Exhaust Molar Mass', 'g/mol', 1e-6, 100) if tabDict is not None: self.setProperties(tabDict) class Propellant(PropertyCollection): """Contains the physical and thermodynamic properties of a propellant formula.""" def __init__(self, propDict=None): super().__init__() self.props['name'] = StringProperty('Name') self.props['density'] = FloatProperty('Density', 'kg/m^3', 1, 10000) self.props['tabs'] = TabularProperty('Properties', PropellantTab) if propDict is not None: self.setProperties(propDict) def getCStar(self, pressure): """Returns the propellant's characteristic velocity.""" _, _, gamma, temp, molarMass = self.getCombustionProperties(pressure) num = (gamma * gasConstant / molarMass * temp)**0.5 denom = gamma * ((2 / (gamma + 1))**((gamma + 1) / (gamma - 1)))**0.5 return num / denom def getBurnRate(self, pressure): """Returns the propellant's burn rate for the given pressure""" ballA, ballN, _, _, _ = self.getCombustionProperties(pressure) return ballA * (pressure ** ballN) def getPressureFromKn(self, kn): density = self.getProperty('density') tabPressures = [] for tab in self.getProperty('tabs'): ballA, ballN, gamma, temp, molarMass = tab['a'], tab['n'], tab['k'], tab['t'], tab['m'] num = kn * density * ballA exponent = 1 / (1 - ballN) denom = ((gamma / ((gasConstant / molarMass) * temp)) * ((2 / (gamma + 1)) ** ((gamma + 1) / (gamma - 1)))) ** 0.5 tabPressure = (num / denom) ** exponent # If the pressure that a burnrate produces falls into its range, we know it is the proper burnrate # Due to floating point error, we sometimes get a situation in which no burnrate produces the proper pressure # For this scenario, we go by whichever produces the least error minTabPressure = tab['minPressure'] maxTabPressure = tab['maxPressure'] if minTabPressure == self.getMinimumValidPressure() and tabPressure < maxTabPressure: return tabPressure if maxTabPressure == self.getMaximumValidPressure() and minTabPressure < tabPressure: return tabPressure if minTabPressure < tabPressure < maxTabPressure: return tabPressure tabPressures.append([min(abs(minTabPressure - tabPressure), abs(tabPressure - maxTabPressure)), tabPressure]) tabPressures.sort(key=lambda x: x[0]) # Sort by the pressure error return tabPressures[0][1] # Return the pressure def getKnFromPressure(self, pressure): func = lambda kn: self.getPressureFromKn(kn) - pressure return fsolve(func, [250], maxfev=1000) def getCombustionProperties(self, pressure): """Returns the propellant's a, n, gamma, combustion temp and molar mass for a given pressure""" closest = {} closestPressure = 1e100 for tab in self.getProperty('tabs'): if tab['minPressure'] < pressure < tab['maxPressure']: return tab['a'], tab['n'], tab['k'], tab['t'], tab['m'] if abs(pressure - tab['minPressure']) < closestPressure: closest = tab closestPressure = abs(pressure - tab['minPressure']) if abs(pressure - tab['maxPressure']) < closestPressure: closest = tab closestPressure = abs(pressure - tab['maxPressure']) return closest['a'], closest['n'], closest['k'], closest['t'], closest['m'] def getMinimumValidPressure(self): """Returns the lowest pressure value with associated combustion properties""" return min([tab['minPressure'] for tab in self.getProperty('tabs')]) def getMaximumValidPressure(self): """Returns the highest pressure value with associated combustion properties""" return max([tab['maxPressure'] for tab in self.getProperty('tabs')]) def getErrors(self): """Checks that all tabs have smaller start pressures than their end pressures, and verifies that no ranges overlap.""" errors = [] for tabId, tab in enumerate(self.getProperty('tabs')): if tab['maxPressure'] == tab['minPressure']: errText = 'Tab #{} has the same minimum and maximum pressures.'.format(tabId + 1) errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.VALUE, errText, 'Propellant')) if tab['maxPressure'] < tab['minPressure']: errText = 'Tab #{} has reversed pressure limits.'.format(tabId + 1) errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.VALUE, errText, 'Propellant')) for otherTabId, otherTab in enumerate(self.getProperty('tabs')): if tabId != otherTabId: if otherTab['minPressure'] < tab['maxPressure'] < otherTab['maxPressure']: err = 'Tabs #{} and #{} have overlapping ranges.'.format(tabId + 1, otherTabId + 1) errors.append(SimAlert(SimAlertLevel.ERROR, SimAlertType.VALUE, err, 'Propellant')) return errors def getPressureErrors(self, pressure): """Returns if the propellant has any errors associated with the supplied pressure such as not having set combustion properties""" errors = [] for tab in self.getProperty('tabs'): if tab['minPressure'] < pressure < tab['maxPressure']: return errors aText = "Chamber pressure deviated from propellant's entered ranges. Results may not be accurate." errors.append(SimAlert(SimAlertLevel.WARNING, SimAlertType.VALUE, aText, 'Propellant')) return errors def addTab(self, tab): """Adds a set of combustion properties to the propellant""" self.props['tabs'].addTab(tab) openmotor-0.6.0/motorlib/properties.py000066400000000000000000000113751500530174600201440ustar00rootroot00000000000000"""This module includes a properties, which are objects that contain different datatypes and enforce conditions on them, such as allowed ranges. They also can optionally associate a unit with the value, which aids with display and conversion of the value.""" from . import units class Property(): """The base class that properties inherit from. It associates a human-readable display name with the data, as well as a unit and value type that it casts all inputs to.""" def __init__(self, dispName, unit, valueType): self.dispName = dispName self.unit = unit self.valueType = valueType self.value = None def setValue(self, value): """Set the value of the property, casting if necessary""" self.value = self.valueType(value) def getValue(self): """Returns the value of the property""" return self.value def dispFormat(self, unit): """Returns a human-readable version of the property's current value, including the unit.""" return '{} {}'.format(self.value, unit) class FloatProperty(Property): """A property that handles floats. It forces the value to be in a certain range.""" def __init__(self, dispName, unit, minValue, maxValue): super().__init__(dispName, unit, float) self.min = minValue self.max = maxValue self.value = minValue def setValue(self, value): if self.min <= value <= self.max: super().setValue(value) def dispFormat(self, unit): return '{:.6g} {}'.format(units.convert(self.value, self.unit, unit), unit) class EnumProperty(Property): """This property operates on strings, but only allows values from a list that is set when the property is defined""" def __init__(self, dispName, values): super().__init__(dispName, '', object) self.values = values self.value = self.values[0] def contains(self, value): """Checks if a value is in the allowed list""" return value in self.values def setValue(self, value): if self.contains(value): self.value = value class IntProperty(Property): """A property with an integer as the value that is clamped to a certain range.""" def __init__(self, dispName, unit, minValue, maxValue): super().__init__(dispName, unit, int) self.min = minValue self.max = maxValue self.value = minValue def setValue(self, value): if self.min <= value <= self.max: super().setValue(value) class StringProperty(Property): """A property that works on the set of all strings""" def __init__(self, dispName): super().__init__(dispName, '', str) class BooleanProperty(Property): """A property with a single boolean as the value""" def __init__(self, dispName): super().__init__(dispName, '', bool) class PolygonProperty(Property): """A property that contains a list of polygons, each a list of points""" def __init__(self, dispName): super().__init__(dispName, '', list) self.value = [] class TabularProperty(Property): """A property that is composed of a number of 'tabs', each of which is a property collection of its own.""" def __init__(self, dispName, collection): super().__init__(dispName, '', list) self.collection = collection self.tabs = [] def addTab(self, tab): """Add a tab to the property's list of tabs.""" self.tabs.append(tab) def getValue(self): return [tab.getProperties() for tab in self.tabs] def setValue(self, value): self.tabs = [self.collection(data) for data in value] class PropertyCollection(): """Holds a set of properties and allows batch operations on them through dictionaries""" def __init__(self): self.props = {} def setProperties(self, props): """Sets the value(s) of one of more properties at a time by passing in a dictionary of property names and values""" for prop in props.keys(): if prop in self.props: # This allows loading settings when the name of a field has changed self.props[prop].setValue(props[prop]) def getProperties(self, props=None): """Get a dictionary of property names and values. The optional argument is a list of which properties are being requested. It defaults to None, which returns all properties.""" if props is None: props = self.props.keys() return {k:self.props[k].getValue() for k in props} def getProperty(self, prop): """Returns the value of a specific property.""" return self.props[prop].getValue() def setProperty(self, prop, value): """Set the value of a specific property""" self.props[prop].setValue(value) openmotor-0.6.0/motorlib/simResult.py000066400000000000000000000345541500530174600177430ustar00rootroot00000000000000"""This module contains the classes that are returned from a simulation, including the main results class and the channels and components that it is comprised of.""" import math from enum import Enum from . import geometry from . import units from . import constants class SimAlertLevel(Enum): """Levels of severity for sim alerts""" ERROR = 1 WARNING = 2 MESSAGE = 3 class SimAlertType(Enum): """Types of sim alerts""" GEOMETRY = 1 CONSTRAINT = 2 VALUE = 3 alertLevelNames = { SimAlertLevel.ERROR: 'Error', SimAlertLevel.WARNING: 'Warning', SimAlertLevel.MESSAGE: 'Message' } alertTypeNames = { SimAlertType.GEOMETRY: 'Geometry', SimAlertType.CONSTRAINT: 'Constraint', SimAlertType.VALUE: 'Value' } class SimAlert(): """A sim alert signifies a possible problem with a motor. It has levels of severity including 'error' (simulation should not continue or has failed), 'warning' (values entered appear incorrect but can be simulated), and 'message' (other information). The type describes the variety of issue the alert is associated with, and the description is a human-readable version string with more details about the problem. The location can either be None or a string to help the user find the problem.""" def __init__(self, level, alertType, description, location=None): self.level = level self.type = alertType self.description = description self.location = location class LogChannel(): """A log channel accepts data from a single source throughout a simulation. It has a human-readable name such as 'Pressure' to help the user interpret the result, a value type that data passed in will be cast to, and a unit to aid in conversion and display. The data type can either be a scalar (float or int) or a list (list or tuple).""" def __init__(self, name, valueType, unit): if valueType not in (int, float, list, tuple): raise TypeError('Value type not in allowed set') self.name = name self.unit = unit self.valueType = valueType self.data = [] def getData(self, unit=None): """Return all of the data in the channel, converting it if a type is specified.""" if unit is None: # No conversion needed return self.data if self.valueType in (list, tuple): return [[units.convert(d, self.unit, unit) for d in p] for p in self.data] # If the data type isn't a list, it should be a scalar return [units.convert(p, self.unit, unit) for p in self.data] def getPoint(self, i): """Returns a specific datapoint by index.""" return self.data[i] def getLast(self): """Returns the last datapoint.""" return self.data[-1] def addData(self, data): """Adds a new datapoint to the end.""" self.data.append(data) def getAverage(self): """Returns the average of the datapoints.""" if self.valueType in (list, tuple): raise NotImplementedError('Average not supported for list types') return sum(self.data) / len(self.data) def getMax(self): """Returns the maximum value of all datapoints. For list datatypes, this operation finds the largest single value in any list.""" if self.valueType in (list, tuple): return max([max(l) for l in self.data]) return max(self.data) def getMin(self): """Returns the minimum value of all datapoints. For list datatypes, this operation finds the smallest single value in any list.""" if self.valueType in (list, tuple): return min([min(l) for l in self.data]) return min(self.data) singleValueChannels = ['time', 'kn', 'pressure', 'force', 'volumeLoading', 'exitPressure', 'dThroat'] multiValueChannels = ['mass', 'massFlow', 'massFlux', 'regression', 'web'] class SimulationResult(): """A SimulationResult instance contains all results from a single simulation. It has a number of LogChannels, each capturing a single stream of outputs from the simulation. It also includes a flag of whether the simulation was considered a sucess, along with a list of alerts that the simulation produced while it was running.""" def __init__(self, motor): self.motor = motor self.alerts = [] self.success = False self.channels = { 'time': LogChannel('Time', float, 's'), 'kn': LogChannel('Kn', float, ''), 'pressure': LogChannel('Chamber Pressure', float, 'Pa'), 'force': LogChannel('Thrust', float, 'N'), 'mass': LogChannel('Propellant Mass', tuple, 'kg'), 'volumeLoading': LogChannel('Volume Loading', float, '%'), 'massFlow': LogChannel('Mass Flow', tuple, 'kg/s'), 'massFlux': LogChannel('Mass Flux', tuple, 'kg/(m^2*s)'), 'regression': LogChannel('Regression Depth', tuple, 'm'), 'web': LogChannel('Web', tuple, 'm'), 'exitPressure': LogChannel('Nozzle Exit Pressure', float, 'Pa'), 'dThroat': LogChannel('Change in Throat Diameter', float, 'm') } def addAlert(self, alert): """Add an entry to the list of alerts for the simulation.""" self.alerts.append(alert) def getBurnTime(self): """Returns the burntime of the simulated motor, which is the time from the start when it was last producing thrust above the user's defined threshold.""" return self.channels['time'].getLast() def getInitialKN(self): """Returns the motor's Kn before it started firing.""" return self.channels['kn'].getPoint(0) def getPeakKN(self): """Returns the highest Kn that was observed during the motor's burn.""" return self.channels['kn'].getMax() def getAveragePressure(self): """Returns the average chamber pressure observed during the simulation.""" return self.channels['pressure'].getAverage() def getMaxPressure(self): """Returns the highest chamber pressure that was observed during the motor's burn.""" return self.channels['pressure'].getMax() def getMinExitPressure(self): """Returns the lowest exit pressure that was observed during the motor's burn, ignoring startup and shutdown transients""" exit_pressures = self.channels['exitPressure'].getData() return min(exit_pressures) def getPercentBelowThreshold(self, channel, threshold): """Returns the total number of seconds spent below a given threshold value""" count = 0 data = self.channels[channel].getData() for point in data: if point < threshold: count += 1 return count/len(data) def getImpulse(self, stop=None): """Returns the impulse the simulated motor produced. If 'stop' is set to a value other than None, only the impulse to that point in the data is returned.""" impulse = 0 lastTime = 0 for time, force in zip(self.channels['time'].data[:stop], self.channels['force'].data[:stop]): impulse += force * (time - lastTime) lastTime = time return impulse def getAverageForce(self): """Returns the average force the motor produced during its burn.""" return self.channels['force'].getAverage() def getDesignation(self): """Returns the standard amateur rocketry designation (H128, M1297) for the motor.""" imp = self.getImpulse() if imp < 1.25: # This is to avoid a domain error finding log(0) return 'N/A' return chr(int(math.log(imp / 1.25, 2)) + 65) + str(int(self.getAverageForce())) def getFullDesignation(self): """Returns the full motor designation, which also includes the total impulse prepended on""" return '{:.0f}{}'.format(self.getImpulse(), self.getDesignation()) def getImpulseClassPercentage(self): """Returns the percentage of the way between the minimum and maximum impulse for the impulse class that the motor is""" impulse = self.getImpulse() if impulse < 1.25: # This is to avoid a domain error finding log(0) return 0 minClassImpulse = 1.25 * 2 ** int(math.log(impulse / 1.25, 2)) return (impulse - minClassImpulse) / minClassImpulse def getPeakMassFlux(self): """Returns the maximum mass flux observed at any grain end.""" return self.channels['massFlux'].getMax() def getPeakMassFluxLocation(self): """Returns the grain number at which the peak mass flux was observed.""" value = self.getPeakMassFlux() # Find the value to get the location for frame in self.channels['massFlux'].getData(): if value in frame: return frame.index(value) return None def getISP(self, index=None): """Returns the specific impulse that the simulated motor delivered.""" if index is None: propMass = self.getPropellantMass() else: propMass = self.getPropellantMass() - self.getPropellantMass(index) if propMass == 0: return 0 return self.getImpulse(index) / (propMass * constants.standardGravity) def getPortRatio(self): """Returns the port/throat ratio of the motor, or None if it doesn't have a port.""" aftPort = self.motor.grains[-1].getPortArea(0) if aftPort is not None: return aftPort / geometry.circleArea(self.motor.nozzle.props['throat'].getValue()) return None def getPropellantLength(self): """Returns the total length of all propellant before the simulated burn.""" return sum([g.props['length'].getValue() for g in self.motor.grains]) def getPropellantMass(self, index=0): """Returns the total mass of all propellant before the simulated burn. Optionally accepts a index that the mass will be sampled at.""" return sum(self.channels['mass'].getPoint(index)) def getVolumeLoading(self, index=0): """Returns the percentage of the motor's volume occupied by propellant. Optionally accepts a index that the value will be sampled at.""" return self.channels['volumeLoading'].getPoint(index) def getIdealThrustCoefficient(self): """Returns the motor's thrust coefficient for the average pressure during the burn and no throat diameter changes or performance losses.""" chamberPres = self.getAveragePressure() _, _, gamma, _, _ = self.motor.propellant.getCombustionProperties(chamberPres) ambPressure = self.motor.config.getProperty('ambPressure') return self.motor.nozzle.getIdealThrustCoeff(chamberPres, ambPressure, gamma, 0) def getAdjustedThrustCoefficient(self): """Returns the motor's thrust coefficient for the average pressure during the burn and no throat diameter changes, but including performance losses.""" chamberPres = self.getAveragePressure() _, _, gamma, _, _ = self.motor.propellant.getCombustionProperties(chamberPres) ambPressure = self.motor.config.getProperty('ambPressure') return self.motor.nozzle.getAdjustedThrustCoeff(chamberPres, ambPressure, gamma, 0) def getAlertsByLevel(self, level): """Returns all simulation alerts of the specified level.""" out = [] for alert in self.alerts: if alert.level == level: out.append(alert) return out def shouldContinueSim(self, thrustThres): """Returns if the simulation should continue based on the thrust from the last timestep.""" # With only one data point, there is nothing to compare if len(self.channels['time'].getData()) == 1: return True # Otherwise perform the comparison. 0.01 converts the threshold to a % return self.channels['force'].getLast() > thrustThres * 0.01 * self.channels['force'].getMax() def getCSV(self, pref=None, exclude=[], excludeGrains=[]): """Returns a string that contains a CSV of the simulated data. Preferences can be passed in to set units that the values will be converted to. All log channels are included unless their names are in the include argument. """ out = '' outUnits = {} for chan in self.channels: if chan in exclude: continue # Get unit from preferences if pref is not None: outUnits[chan] = pref.getUnit(self.channels[chan].unit) else: outUnits[chan] = self.channels[chan].unit # Add title for column if self.channels[chan].valueType in (float, int): out += self.channels[chan].name if outUnits[chan] != '': out += '({})'.format(outUnits[chan]) out += ',' elif self.channels[chan].valueType in (list, tuple): for grain in range(1, len(self.channels[chan].getLast()) + 1): if grain - 1 not in excludeGrains: out += self.channels[chan].name + '(' out += 'G{}'.format(grain) if outUnits[chan] != '': out += ';{}'.format(outUnits[chan]) out += '),' out = out[:-1] # Remove the last comma out += '\n' places = 5 for ind, time in enumerate(self.channels['time'].getData()): out += str(round(time, places)) + ',' for chan in self.channels: if chan in exclude: continue if chan != 'time': if self.channels[chan].valueType in (float, int): orig = self.channels[chan].getPoint(ind) conv = units.convert(orig, self.channels[chan].unit, outUnits[chan]) rounded = round(conv, places) out += str(rounded) + ',' elif self.channels[chan].valueType in (list, tuple): for gid, grainVal in enumerate(self.channels[chan].getPoint(ind)): if gid not in excludeGrains: conv = round(units.convert(grainVal, self.channels[chan].unit, outUnits[chan]), places) out += str(conv) + ',' out = out[:-1] # Remove the last comma out += '\n' return out openmotor-0.6.0/motorlib/units.py000066400000000000000000000072441500530174600171120ustar00rootroot00000000000000"""This module contains tables of units and their long form names, their conversion rates with other units, and functions for performing conversion.""" # The keys in this dictionary specify the units that all calculations are done in internally unitLabels = { 'm': 'Length', 'm^3': 'Volume', 'm/s': 'Velocity', 'N': 'Force', 'Ns': 'Impulse', 'Pa': 'Pressure', 'kg': 'Mass', 'kg/m^3': 'Density', 'kg/s': 'Mass Flow', 'kg/(m^2*s)': 'Mass Flux', 'm/(s*Pa^n)': 'Burn Rate Coefficient', '(m*Pa)/s': 'Nozzle Slag Coefficient', 'm/(s*Pa)': 'Nozzle Erosion Coefficient' } unitTable = [ ('m', 'cm', 100), ('m', 'mm', 1000), ('m', 'in', 39.37), ('m', 'ft', 3.28), ('m^3', 'cm^3', 100**3), ('m^3', 'mm^3', 1000**3), ('m^3', 'in^3', 39.37**3), ('m^3', 'ft^3', 3.28**3), ('m/s', 'cm/s', 100), ('m/s', 'mm/s', 1000), ('m/s', 'ft/s', 3.28), ('m/s', 'in/s', 39.37), ('N', 'lbf', 0.2248), ('Ns', 'lbfs', 0.2248), ('Pa', 'MPa', 1/1000000), ('Pa', 'psi', 1/6895), ('kg', 'g', 1000), ('kg', 'lb', 2.205), ('kg', 'oz', 2.205 * 16), ('kg/m^3', 'lb/in^3', 3.61273e-5), ('kg/m^3', 'g/cm^3', 0.001), ('kg/s', 'lb/s', 2.205), ('kg/s', 'g/s', 1000), ('kg/(m^2*s)', 'lb/(in^2*s)', 0.001422), ('(m*Pa)/s', '(m*MPa)/s', 1000000), ('(m*Pa)/s', '(in*psi)/s', 0.00571014715), ('m/(s*Pa)', 'thou/(s*psi)', 271447138), ('m/(s*Pa)', 'um/(s*mPa)', 1E9), ('m/(s*Pa^n)', 'in/(s*psi^n)', 39.37), # Ratio converts m/s to in/s. The pressure conversion must be done separately ('m/(s*Pa^n)', 'mm/(s*Pa^n)', 1000) ] # Some base units are... not well chosen because any reasonable value in them will have too many/few digits to edit, # leading to them getting truncated. They all have conversions that work much better, so just don't show them in the UI internalOnlyUnits = ['m/(s*Pa^n)', 'm/(s*Pa)'] def getAllConversions(unit): """Returns a list of all units that the passed unit can be converted to.""" allConversions = [unit] for conversion in unitTable: if conversion[0] == unit: allConversions.append(conversion[1]) elif conversion[1] == unit: allConversions.append(conversion[0]) for internalOnlyUnit in internalOnlyUnits: if internalOnlyUnit in allConversions: allConversions.remove(internalOnlyUnit) return allConversions def getConversion(originUnit, destUnit): """Returns the ratio to convert between the two units. If the conversion does not exist, an exception is raised.""" if originUnit == destUnit: return 1 for conversion in unitTable: if conversion[0] == originUnit and conversion[1] == destUnit: return conversion[2] if conversion[1] == originUnit and conversion[0] == destUnit: return 1/conversion[2] raise KeyError("Cannot find conversion from <" + originUnit + "> to <" + destUnit + ">") def convert(quantity, originUnit, destUnit): """Returns the value of 'quantity' when it is converted from 'originUnit' to 'destUnit'.""" return quantity * getConversion(originUnit, destUnit) def convertAll(quantities, originUnit, destUnit): """Converts a list of values from 'originUnit' to 'destUnit'.""" convRate = getConversion(originUnit, destUnit) return [q * convRate for q in quantities] def convFormat(quantity, originUnit, destUnit, places=3): """Takes in a quantity in originUnit, converts it to destUnit and outputs a rounded and formatted string that includes the unit appended to the end.""" rounded = round(convert(quantity, originUnit, destUnit), places) return '{} {}'.format(rounded, destUnit) openmotor-0.6.0/pyinstaller/000077500000000000000000000000001500530174600161065ustar00rootroot00000000000000openmotor-0.6.0/pyinstaller/macOneFile.spec000066400000000000000000000025221500530174600207650ustar00rootroot00000000000000# -*- mode: python -*- # Run with `pyinstaller --windowed --onedir` from uilib.fileIO import appVersionStr block_cipher = None a = Analysis(['../main.py'], pathex=['../'], binaries=[], datas=[], hiddenimports=['pywt._extensions._cwt'], hookspath=[], runtime_hooks=[], excludes=[], win_no_prefer_redirects=False, win_private_assemblies=False, cipher=block_cipher, noarchive=False, target_arch=['x86_64', 'arm64']) pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher) exe = EXE(pyz, a.scripts, [], exclude_binaries=True, name='openMotor', debug=False, bootloader_ignore_signals=False, strip=False, upx=True, runtime_tmpdir=None, console=False) coll = COLLECT(exe, a.binaries, a.zipfiles, a.datas, strip=False, upx=True, name='openMotor') app = BUNDLE(coll, name='openMotor.app', icon='../resources/oMIconCycles.icns', version=appVersionStr, info_plist={ 'NSHighResolutionCapable': True, }, bundle_identifier=None) openmotor-0.6.0/pyinstaller/winMultiFile.spec000066400000000000000000000017671500530174600214050ustar00rootroot00000000000000# -*- mode: python -*- block_cipher = None a = Analysis(['../main.py'], pathex=['../'], binaries=[], datas=[('../resources', 'resources')], hiddenimports=['pywt._extensions._cwt'], hookspath=[], runtime_hooks=[], excludes=[], win_no_prefer_redirects=False, win_private_assemblies=False, cipher=block_cipher, noarchive=False) pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher) exe = EXE(pyz, a.scripts, [], exclude_binaries=True, name='openMotor', debug=False, bootloader_ignore_signals=False, strip=False, upx=True, console=False, icon='../resources/oMIconCycles.ico') coll = COLLECT(exe, a.binaries, a.zipfiles, a.datas, strip=False, upx=True, name='openMotor') openmotor-0.6.0/pyinstaller/winOneFile.spec000066400000000000000000000015401500530174600210210ustar00rootroot00000000000000# -*- mode: python -*- block_cipher = None a = Analysis(['../main.py'], pathex=['../'], binaries=[], datas=[], hiddenimports=['pywt._extensions._cwt'], hookspath=[], runtime_hooks=[], excludes=[], win_no_prefer_redirects=False, win_private_assemblies=False, cipher=block_cipher, noarchive=False) pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher) exe = EXE(pyz, a.scripts, a.binaries, a.zipfiles, a.datas, [], name='openMotor', debug=False, bootloader_ignore_signals=False, strip=False, upx=True, runtime_tmpdir=None, console=False, icon='../resources/oMIconCycles.ico' ) openmotor-0.6.0/pyuic.json000066400000000000000000000002341500530174600155630ustar00rootroot00000000000000{ "files": [ [ "uilib/views/forms/*.ui", "uilib/views" ] ], "pyuic": "pyuic6", "pyuic_options": "" }openmotor-0.6.0/qt.conf000066400000000000000000000000551500530174600150330ustar00rootroot00000000000000[Platforms] WindowsArguments = dpiawareness=0openmotor-0.6.0/requirements.txt000066400000000000000000000005261500530174600170270ustar00rootroot00000000000000cycler==0.11.0 decorator==5.1.1 docopt==0.6.2 ezdxf==1.0.3 imageio==2.31.0 matplotlib==3.7.1 networkx==3.1 numpy==1.24.3 Pillow==9.5.0 platformdirs==4.2.2 pyparsing==3.0.9 pyqt-distutils==0.7.3 PyQt6==6.7.1 PyQt6-sip==13.8.0 python-dateutil==2.8.2 PyYAML==6.0 scikit-fmm==2023.4.2 scikit-image==0.18.3 scipy==1.10.1 six==1.16.0 sphinx==7.0.1 openmotor-0.6.0/resources/000077500000000000000000000000001500530174600155525ustar00rootroot00000000000000openmotor-0.6.0/resources/oMIconCycles.icns000066400000000000000000001770271500530174600207750ustar00rootroot00000000000000icnsþic08þ jP ‡ ftypjp2 jp2 Ojp2hihdrcolr"cdefjp2cÿOÿQ2ÿd#Creator: JasPer Version 1.900.1ÿR ÿ\@@HHPHHPHHPHHPHHPÿ]@@HHPHHPHHPHHPHHPÿ]@@HHPHHPHHPHHPHHPÿ]@@HHPHHPHHPHHPHHPÿ üÎÿ“ß‚8|îî,ø†¸97jÂsU]/'hôUϨAïq­Ñ[Ms̺Ú°Y}FÝ[-íY\ºókT.¤³pqH¼ÙMÉOàGß‚0|îî,ø†¸97jÂt3J’ðÑE£H_—?PÝø®>Š5:ÛH1øk1zS£ŒJ¡Æú¦Çä,±)Š#7rO÷@¶ß‚0|îî,öî DW}ቚ/’ÊÏÌñt¿¤@d—–‚ÈLí¬¸8£Ýi£(~½½Œ¾È[ãh:e>í»À.Ðß‚H}k¼² žõ?©¾8fe\̃ØßÕx÷Dsþé,¸Ij J»Ï¨ùÏÑó‚›;dsÏËÁìp÷Žw<¢Lc(¹êB_7ÏÀö~ñø €;å— ž„?ó|€¦®Ð­Ý|ÌQ¨Qæ{§"ý™ûA6¸úÖŸÝ. q±ãÓp²K£ûˆ‰÷7†ã‘›ÙÒÇ&øi¬ûjK‡ÿ4¸‹ $…‘ŠR,Ò(dï®J­iœ`ÙŒ)0@émŸj²rþ)ò\p 4‰¬Ü*È2Cº?£gÙvd¨7…¯sQ€*‘ÉõSp¬ $@5gBÛ"Bt£‹—M¨§R‰ ô¬Ò|¯{K$Ù”0vÄŒa-ã t*`euÏÀî~ñø!;å— 3÷°;N=ê/§Ã™”–ë%L\·# ëÅÛá<·~Ç 2Ug%ÞW JìKϯ‡ƒöÂNP¥¿&øi­Xâ^ƒ5Ø÷E;±Zù‘s´ú÷hÛ—ßV\|xÝG´¡—»êøïÿh‚LJÁÞTe+ÖŒ 1þêq…Ÿ£gó9­C-â–Æ[0âò.S–? ìðWÏñW¼êäUë–¿¡¬XO‘105ѯLh1¢M4تW_ÇÚq?ØüÀQR¶1Ovò]ü ÷Ch4|ïÖf:SZÄþAü mX³ém‡ìxæ·î„˵c ¬¨“˜£ìBÕhM‹¯dA3¯IÂ'z8•õ¶3¡l)ÿ m'E""?:Šª+<‘©éã»Ö€h“Ö·e/¢|A.±¹7 ï=;‚Û¦¥<:2›Gȶ6‡3ÐnÜì·e©®ôçOá½½øªf’½ýç¤Jr˜Ãå‰yôÝü,÷TÀv?´?ÏÀÖüÏ'æxQR¶0ÎXe7¯F>–ÃL;ù êvm'ªiÁðñv§æ6qùƒçÜ®4Ñõй–Mæˆõ3l & Ff]¬?š¨³€îÑi‘(Ì)¢s‰Ð0ÖkSA‰Ž²û©¶_4ž˜*–K3©"‘†ÿ7 ï™<Ö÷¥û·4]_®Lç p~+…CÔ@Ü,!=V)LÙܺ/h ¿^€ß¡Ì~M…¦0?ϾŸ…o?:üh¼2¹'ííQTµº°ʽïêµY_“BÉh;8Ø\/]­ t†3/1î)ÉRݵåà['à{øRŸMcµ©S¥6àY<‰×͵Þã®Ï!½ÓÌLÝíòÏĵ |Ïf(Iz¡ËA3O©#kÉß`Røj¸%N©˜_U ½n‡f;{à\ëÜCGåfŸ˜º0p1ñ¾¬¬?)òNšnn¿yúe>%lá¦)>®zèý'ÞïåŸO/•³®Ë0x›õ,8º ¿Ú[ê4m]ë@A¤ëí´=Z™·  †ðÛ³ÔÜmÊ'ÄJdéØ,nŒFÇûÓ8T¡Ý¡º7ˆeågî^ÌëZÆ7fgLŠJÀˆ*¿´Ã^1â«°Ê¥™]+9){ßÓr^ PÔ³|Pø;í˜ZóZ€6Œ¨[M]¹¹°w[æggËQÃa׊Gs{‚G¿šûaùè;›ÿtTÈo“_ܸÞÚ—ÿŸ° ŸÂ¾ØÔiúÕ=FÉ'|dÌùõZÖÝ0Ÿ2c°DŽÅí ¨Ñq8 ÛßBü+áë ä‡av-wõÒ™ŸYˆ¥6÷›Y€†>,…_r±qóXÁc+žâ¯œ±#Gaôl,èÂÈgPHÏžU“ª%Qôòh‡lkä4 4rúî ƒù5—æCƒh%ÂÙü10Ê{ís%fЬÏ(ñ‰—ßvìf.5ñ}qÌb›µYøIßÒpkñ§Ñ5à‚MPd\Ñ2kh¶â±àÒYZ€‘Ö!wùlÅߨÒã&€a$Ú=ðé‹?3R¾cu’_Â8öD7€êÕ΀_‰r£zá•àR˜³~x­lçzåž=ÈÕõÏÎw#ЬÕW¦T2h¤Ti˜#ó93µãâ`Áu=Ø\¸H}j2h©ö6¾¸uCT¾±¸Ûï£8µîFkA«Ð «ÒXÛ¤k®Ðpòå™~1F˜«[ßáÒ2 îËç”Q5d­Pž(¸Òuç>i²žpnNèvÇ:œA’ÜWòSy;Ç ¬ŒP²]WWx«0ýSxJ&ØöD§ª/ÕƒˆúËm°›Âi­¯Ëyï¾õ ‡ƒûÊXŒ±5g:¼šÒàÕ=&fÎ&£{ÍÛÈ#ª…I–Ƨ\ÄC»]Ÿg!ÿ/´é3"XÿiÞl䄌"Îúd”!Åò JÉ™«w}t3u ´>ò4‘ÏÃf¡¸cÂ=ã!/5¡Ë3Ås‹ž·iþ*5óû ¡S'†Íðdý²lýmSÀI(ò¼ViU¥×èhPLùF·_>âŽ,T\¼½“X<½aÌ,•ý}ĬÄä„CNî¸<¬'–js°ÌMÇ6Û-ñ¯fDw¢ôv¼Íª<ô¨¦‚e—uÅAU ‡ššYy¸Ù¤jeXüN¬9;íA¦,šU©qCª9ûOΫþóKoRËW¡OÁ°·+ì±áõ!S«±3Ñ‚žŠã˜€PèÒ5›áR8.þÎݛޫ¶-½ÓåTf~Ð!©4ÓIÖ„ºÑÅy0©Ì8TŒ—žùȱ¦c»“K'¥ê£ÓÏÅŒ? õnNp™.÷6´ÕÏà¹øoL~èíÚÉÆèÚ6¼6B§ké ŽQY6?=Šì»Ë†Ñöèˆ%2?º½ÅÀ€ÈôâKyÍà3˜lxšNÑÚ”·iœÌ»bsE ¿äÅYÓŠÝå êM>ú¥¾H ‰IF¸°!ÓmsØÄ¯Y^ƒ¡šP¿Îyƒ[k*#µ®¯q³êCiwæÛ3Ä¥[¯êBŦ]|‡Á•Q6´ºÐŒÙ¾žìc}ùµ¥iw¢Ê+[‚eüaÊ IPÙУh“ͺ,Bé'ŠŠ¿Ý(ÇHŠ\ôf­†âðt¦õÁ®S—mYÊ-˜÷Tnö€ ˜½%ŽtÈ!¹XiÄV±O8ü-GÁŠÃ¶ä¼/ç³ýä k69±Uâ€H™98ó ¹ÌÑ#í—.S8Çc ¼fr|ÅèóˆÙ¬ZÚñ‰¡—q? b&º3ÌýlpaÁH…â’Åq”¬g%Ô d#À¿m©kvzDµb¹3 çcjŒmÆOÚ gëþÅÎéõdf¤zºÃås›Gq…ÔË×PñÌæ'Åï/ZÞá¹èf‰í‘âþù¢U@ÉX ö¢j®®œ#µÏÂë|Ó]u¦üO N1K> ý ¬LuG`Þ9mß H ]NMŽ®ê¯=…ÑoTW¿~ë4¬ó©’zg=Àå\$Du¬I€…^¹ób8zw]ÇBÂÕ>û“ÓN:£Á~‡…2ƒ.ÜöÂÐúY@šïöcX —±VYwYW¯ÐNú³7R2ƺOFÄR–¡õv•‹GUƸ#°9龪6¼d† -KÕ_»ÁÞŸT„¦·N&x–E;“NÊ›‘×ïSý§¼ }Ûf3KxÌBÜ…è¯l++ ‡nÊ0lüFN>Î=#+ûßUKõ ÝYIû€W£Å]W Hâ‚J\šÑ•yØiÔì¥èˆŽNþ)t ƒÆäy¹hkk™‚&¿‘äÕSŽŠÇÞE1õgÊú GM¾=²ÇGcÞçàYȧý²p© ßr“Ê.wvJ—‹.P¢¹ùþ¤Õrí,Àô}üø_WCœþfÍ~‹ÝâªÕ_»™„›®>Rvaêº#¿…³-¸‰áy̳ÅÃÇf™Ø¼Râz/‹©HÞél¹6tÌ+ï*-<[@)©è€(qp*„áËhE­$>vYµ%ŽŒ¼|“€b«×`ûHØååâˆÎ…L⻀Ƕ™àuë|"„d©:ôT¶{†+î…Sì¼[îFû#€ä•OaC¸‰×š S[äs.¸Ÿ0ý°Gfjn3ydé½Þ}>("U¨W,u¨ 7?ÄílŠÖ*Á«7$¥þ¼¶¤-˜ðý¨ÍøÄ”š ÛFn ˆß”d`ŠýŠTةՄ¸;[¥ð°£îá‘M‘¬Éî= þé¬÷u‘+CÌ"Ö$çP78öÑ®¡msÉqúçrY¼„Ò¶Åy¹“ÝD×K®7KºˆHžÈÁy ÝB0P²að ÛÙ¬(ùgP*y]fî£cwT&7wÎ 5ØÕTûuîÚèeé{æ¦<™*…`È£œ•ùœwà¾×}˜ˆÊ8Ý„M™Á>-¢‡f=Â7~gl‡Ž}ó¢ sU’Žº ‰W… u¯ÈPÁ¹¿‚["TéåÏÃyçá¹1øoP±h×GۦɆ Ôá+½©¼×Î-åúžsÅ|·ºGÿœ'Ÿ{YÎ=„­+0ª^ûüJû©Ö°uê"¬[¡‘ã-£?Œf\ÊS&è…â¿jôx¢€Kµ|z‚Ž$P…­³Óœ[;ßÄÈÏ% ÞšßÏ=S/»ÀçÞúñüH¡ÑÖe¯ n‹ã@–S¹Dó|˜¾˜‘!Áý§_[ú> *,ȦÑý5¢pUØ3¬ÎÔ¬yðchxŽfˆDu^CäB+³]¦Óޝ‹ï%Vží!ÓFç¶KpFz~D—2a-ÓW.=—kÃÌ.´è½s™yNsì·¿Ú,À‚(æ@àVÚÞõлöróÝaENRÒSäÂ>”ш™ì”)œ3Ueh¡ï5ôTQw¼lÿ"ô‰Ñá¡§C¼Ó[äv5¤6ª°kv÷² Œ$›ÂÂJ rE ˆõD¾Fóqñ¿"D ´Æü3Ë ‰*§ÝGéÐç€4¦y|tƒAìh&` Šñ¨úøæùü ßH«Ým¿Jù‡ìGÿL"Î{¼…ÔUóý{Ó»R:*­=Ë犂eDy sçãev¯3Ö8²2Ò•˜8Ûk†zÖ2KtáódUÌt¦`1 E%ø#¤´5½Æ¡YIîrpä{x|%“ œc¿!kP?Ù2MÔ1Ÿ<cÊŒþIüôpNÙÌŒëÝ ‘Î1éÞ/zç&»FÙöh(šEYƒT Ž\{4wA·ÿ1]´á‘“[£¾‘Уǽåuzæ§ë§©)ÌB£TЂֲ"_ÛÆŠÁ ‰%ÞÀ›EWcÔ©‘4ªú<ƒÊ…`BÛ¶å39I:fõ©V/Ç÷0ºzw<…’W¼Pàu€*ý™Œz^¯¹j/=ëó¢8D· !¹4²Ï ŸV{z·5‘ÔrÕ*Šé·ÉÀB¦—Ú××>ü§\7—éŠì„ ¡#”ȱþPL}ðaí|Ït<¢òýÕÙjài Ih›„@¬QÈùât!Ù'È>FDÆÐÃ=þü;¾r³GŠƒì‘äÕa½’¸sóäÓõ“-yÝ—CƒJ¨Y~Øc·(& äí™Þ¥”Ãl³Ÿ¹b)^QñÉ1r1Äè3Mp!H§Ž|šXÝ´Ñž\ø˜Ñ WÈÑ`A%ÃÕƒHJôRöxÏ^§â¬®™)*„ãG.Bo«ÔN©yëäñz°ÞUGâ5¤r»Rw½Áts…Å6+ÂÄÙtPJ>Ï{ÀܤÁ¸œ¶>µëi_åCÅd•Ï0ök™Ú$Y¿Hðë9Î_*´¿=¡•xÆ2Ð@ꥴæGç&‹”ëÇ}ø×_A/?º‚¾2˜ÓØ[/mÊEºÿMmÈÔf(¦úg~9̧º ᯽¥yuÒä~=mRFÅVÒâpí'¡Ã0ý‹Þ жâGj²[úÁw…='e…²ˆv·vG—œ™´"wà¶xqûüøMríZz}~úÊxÂ'¦¡L講×bòGSdW¼§`›âJÔlz§ß8öj­ç+BÛ´¾¨Zy yª$´ÕcjøYë$ãQ… +zªmèÉïÎÏôo›:ÆŒ¡€w÷_ÃÌ‚êÜ·:MbfÛg³_ X¯3z·”áÂÀ™²Næq9Úçžrkëí¸æ·¤¼o¯7º•"X—ÏÂýŸ…ó?;è°õ3r•çBÐZºÆÎaŒõ–X섊VˆðZ‰8bW6,jFT|ˆ|ÿ{')Ú_ˆ*´"âË/sùÏ3r$Õ¦^ s€9œ,Ú¤…*^*NT_DýÖR)îªàì¸ï*=䡹¯°]›¶4p…ÄšNþx×ÉëÖCJ'0'F"—ØUêlzˆÕÜ®ý lÌG|²9ÙkAu™q¯’>)éWO(È4 ‚B=ŸO «]`-@úUê«SR‹¸JÓ&xÊòvð5M (ò¥ÚtT3ØïÙJëU¿ "³‚©zÓGc? Ðã.Í`p ®$nÆ©:¼G}¼>i²Ý8ƒMÚ4ÏÀü‹ÔÉpêµÀ‹`õ¸ÙUº®ŒŒÎ8Á6¡ Þ‚2ÑIü ‹ £åšEbß E·X …5Ù‹üÝ ÷Ag¬ÈQæ±cP˜“J~lý{îT/¼ç`Ø«reb%«ßôèçãìåÂè°¥­£Ù»Ÿ¦_}Ö Ö,Òç¡|6ÆÝOo6%ìb€ïÏÀ¦lÖæ¥0vžŽ×µkâÚ»;@@38èsÙÛ7 ̆p ’Ðÿó«ÂCzº Y¥…n/üG—cûUÄšZömAhì¥X'™ i©Ù1‡¡yårMïÜ…»(ÄÖ]:t¢JñYr¸OE.~±²,´Š‹p‘ÅÈ­â"{Ε^p*cÉ—±q\ú®3¨š˜Žvaˆ0@ù~oàwŒ]ŠÈLº˜ãÁ²;PT¥ÁpQUªµ|v8#ÏdíŒÅjŒÕƒz3]òT.[ëq3§«ò¨ïIY$`;*œì«õì7~\¯ÉwÆHû~‰óø}V9Îa§ÂXvÎKƒÕ€ù=¿U ™u‡æ«?³ЇOŽ‘þwé>>¨µÌS"ðq±¡Œö!cßN7 9pHó‰VçÄ&:ýì Rlì™6RàùàG—W÷Ë”N8•ÏÃØ~°ñøzý€ãòÒÙ®9!i™µ¿4˶Ðo Å6UÏö«Œ r¢D«ZHJ`Y²í6Œž¢Lôì’éæÌÕòS?8eææòèH EÏç+¦CÁýŸÍf6ˆhs‚-U„$kZgä:¨i“ƒJo»`íŠôÊ2jÆ °H5Z|+jy‡‚Ñ9°ßÉòÏÈí®¯_Ä3!‚[âa»yF½l#8V–•€½k­ÇŒ}”~­˜L’ö½}rôÿh A¿LôØYåöOy…ãqiî¬TZ»sÿ9*®£Ì÷©xü“ª¡DË䡟_½Ê‹£@äË3ßÑkïÚSû³[gƒÛýžGîó&v Ñ0‡Ü*;ÓO·˜âèpÞèÚ‚.= Ûy‘“B(jÄåD9Ù*%öAn*°–WéßíXZÚÏ™o独ô ©i®œÒ«iªŠnF´ˆsÒ'ŠÓ{öŸã&ÊËïYäÆ*À±”áÄÅ„À‹ØsäÍœ@JMÿ<¾­UæK‡P¡| ‘áåÜÃ…”üÑÛïö–9-^q޳S¡¿ ?àñ§š2ár gˆ³JêËpœ’VتG¢·ÖÓŽC‡²ÔY2ókALóüØšÙ?HJ‚újl½÷-¸ôS°)'wÐØ7¦z…ø¤8œ–òG‚lmì¡‚bÏ_o$»`û ßL3}½û%›åX÷Žò©:fdØ® '–õ— Øj¹q=Èkß–ä?Ç×=ô¿ehúˆj8@_øºeå1J=‘êÝt÷®%û_«Æ¸€1–0è,æâeÐhôòÌ¥V‰ìÝhñ‡k1vñžgy”ÁdÜv‡=¤÷rØ8~ROEœrÁà}1’¿†¦åSÕj¡­ÓÛ9 J4hEŒ¾,žíúùå2E-…l„ò}gO]‰±d~sREtðøoσXëPT!í”F ûJð¢syѱ|Ñp^35Ý?u¿Ý샋™âÐTð„aÿL‚«¤›ÍÇfpË~å´ø˜5bzx]N6§ƒt|ef) mcÒ ÀK ú)º’] %ì#õlŽIF!P®Šë»]o×ç/‡ý<ÙÕÏúÐ~dk¹ó¼)éŒ-ÂüH—¹†U2rÇc-($Ô¢ñœÁlö]”aŠ™5™/ͤëÓFÑHepýMÐ¥°d…ÿm8PMÿUêÉ"Eòq²ºjþwDŽí'±)¸uÔ±Õ@å øÈeìXŸsÏß¿§Ãíï´^Œy"˜ÚF·ß3^M-ÀErÚcá:IçÚIFs-ŠH¼«*¢[5L3q#´{S|17¦¾ÅÀã3>« {H¯ˆÖ‘- ùw1«ô# o¹b»;ÆÓõrV#‰HwÍߌ<\%»ïÓ®/Zx¹ñPº·‡é L9³ë«ð¸‘à•è£Á5= ‰sÒM~ªÖ°¾Ó¯Ý@þÞü%jÃñì[Oæ+Ãñ‰é½’-qÀ “@ÞÊQ1†òþ&÷° ßó¶² I´–uvg7"Q'µlXîz{e²I(‹/è†ÁËŸ"àΤüŽ—ˆ0œçmùj µfšýúISt‘D& è÷¶¤1¯¿·){V§ @C$Õ°ÓÆcmv¶ƒ—㑲^q”JˆÀÈQ>Y"¸©—£7¡ÔA¼hщ·:¸ÆOØ+ª°¢Š?O$³n‡z/xWÃû‡?©\,?EœÜDIdz'ž…‰.;òÃC½åúàtbdˆÚZi)úV»Óéh?¬¤B4Ûc·¾8G¨Ê2­,‚å9c7U«1Õc¡{)ÈNMÔkÞZ(¢T:ØMȺlТ=R-bzëªbó¸‰éÒøÛeÞ=Ç}Ð9²Ý—ضoHÈ#îU•„ZÙ`9eX{ÓÉ7ÛŠ¢ÿaˆKúîŸGLÃŒ¶JÑi¡HƒÝ³7†¼Õã4¼ErìË9C¹„t¯4¹ÍË´Oû³àNr´þñ¢ÛU;°½e>ÖNáà{Å®Îeí9VŃÚ ‘ÄFJÌT>ÜÀ΀M×§+^•ãõ<­bz^[f†¢ ’*ÿOgþù©ü¯™éÊ–xÈþÿ Ïœ”-IF®|ö2?úq¬««øÄÓgX ö“j¿¯à àÕØÖtûì¨ã†\½ðœ|³¹e™ÞŽÛÕpÓbÔÚûR„ÁkT-ëN»¡i Ôc/ ZZúÒ?o“FíÞ¨L½¤bÔB-#=†®<‚(BBÓâ;²[áè#*œg¾…W&íþ‘•̨„è0(Í þH0r?0{/ë/•¬þ… J¦µÄrmY1¶Išàä @Z¡ðD³ 5hòì‹CÇ.FE·)xsè¤ó 0þé Ð|_Ù`Ù¬xtŠê5±D×Þó\šêih Q’·½ËÇj-÷r]‚ï¯Þ¯ñú ÓPâ i5’¢ïŠ`¸k@ønhÉ a]·Ïxø˜PØãìÓQ-0ɶæÆÑ]ܨADQ%Ì^‘Hø¼©=û2PvòüD¹0¾CJ·BóýL¶D”ˆAT_][}•¦ãDM0k8ì¿Ì!Ìc™Õò‡ÚQZÝ>cѵþͯê5ÒI~#»ü_ãuý¾/W yr½ùâËãmþ,1®Ø$:öFRàÆ®Eˆ5V†”¶¬ü@OóÒÇ9L´­ÁÞ6€Ù|)´ç >" 1~:ÒAìï$¹­V/v”¦T)ê/6¼€\'ü1ÿ1’Ü?¯}Á°‰’^Ø =öv: 싨L‚l^D+ΈtÚ9Á§Ž|ü_ñS$õ-çîV"íþhh1{ 8gˆÛ·2ÄŸ{¿^>1}¦b¤]I¼` €Ç‡í¬qq@àeñ‘Ü(‚­­t˜$3]5· xJA›N÷°ÓX õõвú¸<2Ųj —iaå ~›Në t-–}¸Å(PjáÁmEŒ‡´ø¦lê)RJCGiðZ|íìM?u`H:¥(nbS¹'÷Y<5Ï–²«Ö$Žl3±?ÏfÌ뢴Æ_0#©³!6‡ªî:d…¾ç.O°“ù!µÃ™Ûðâ¶™kèv­Í?±/l¾o›tÖõK1YdŠG”ALù•sZäÒû©Ñ‰y)PýnåTµ78aE.¸Šª]ïÈè0xôk¶ ÂÚJµ4ч´uKŽè!­hKÅ-LPx¿v¶Ó ´ÑRÞÎD–vdŽè"·Ê%_‹ÑQy4ü>2LädÝ‘NCѯYb뽫Cô7Ø)wµ ‹’Æá½hõΤš§zê­ì,®Á[Ùx%ØÝ6•üLúì.'Í V¤™Šì\¯!6&9RÖ{½1‘c+’œT¾&o :KÙ G†S^ehæøÈLy¢K{ÿsX %·ô*ˆ¯V5jÌëWqœçÏø”U:¡ú=d£Ý¡#Fº“Q8J8¹#êi?õjB¯ËÁp¬–¡tF·¬p_ûæ©$(êyÞ!QÐ$ï,Hœ/åÒv¢¶÷%¿ñ?jùhfJ¸9p¥Þõ…¬èà4ŒŽ§gJ^DhÂÏ©øaòÜŽ!MÒGeó­3ZH3T ÑØÂ2b ~e»†xé') !s Ç ©·=ë/Ó›$ÏoZ¾´ÙŠí0á 0ʱÕ"à{ Ô7IÔZÇY.w¶ÕÁ“rÄê—-˜äJÚL­hp‘2ø&k>ò $c# †š ¢äãG±Ub,d6sí*}ó(0¿<èvVKéZ"¼©€  ¡}ÓK¼ÃT(QbRѬ‘|H—óç`V«†ö®Ì€þ"/A¦}øHøú7Äô-D¹U "÷pÒžuÿÿ(È,ÁÉÌÕ©ÏkBïM* :ã²×¾Ø¶æ)NǺ¤~Ò¥4¶|í[²C¸Ãø¨Þ\d·0Pãᱬ=N°+Õ5çXÜ2.Y}ñe—áˆÅ;¹¸…4L¼¼ ÆÊ ò! æd (öh?Uùl'»\—¸‡¸92ÒšÞåÌa$Sb_Zgx±K.ò×,5 ´YRk ãÆÔ׿ᢩΥcåÚ°´Åû‹üq.âÆ:L!?*è>³eĦóµb®øoìå,Éôê1Ü¢-àHW3¥ŸŠæt¬Â„áŽw¨aà ~V+ÒΟt[×oЍØ7² É ¯]H:3ÆS‡0•Ì»ƒ#h½HsÁÌ9MÇö3Æ×üÉØ¤MLš×#—.¨R–›H6Äà,¨†ù*¯kñÓé!ÓŸ×ÀÑz…Òœm°jÖÈŒoMt½öëéÁ„V—å¥ËÇ)¿ÐQæº7àÒË[Ÿe.1WB(Y<+­-7ÿlw £¹‚"¡•ìˆdíz ˆrêÌnócÛÚ€bˆ-** "«%Å¡¹Â·èØXáUxÍ™²u!Á¥~›TÂSÉÔþèZyf©èî¸0îO±d=ê‚nŒô¥ý‡y7ÄÙiÕ–òûä½Ä¥h wM.ßÖ²Û5v*LÝâ”7X©7À³ FVrŒ3jZ¹´s+ÍUþøc*Ñ)clÀAúÇAqŒ¥äHæ­ÞÁþ¨gYž•áBZ³Ù4ÐŒOÁÙfÛ‡ƒ³¾÷…èš?Å’ ¹ÛQâdõ¨ðs1sxeÕWq)²~Äí£nÚåå”a‡ñôí÷…I÷ÄJ–~¯¥âµc¢ä6ÞåY¾OIJ”@mGuTC¹K2×¥o}fÅRò[¹ýb–Ñ("¼ðª±÷¯s?ôo¿ÿ$ñå¾o®ÊãìzñW`ψáÑ·o =Jz‰•’¼ššíP7R9†›zé•«='”=?æSPßYåÖÚ×o¶o÷Y©›+ìqjѦéMæ¨ÿ d4C÷i«íí"1HξœnCáĵ&RjÌpŽzá¦{\뤵Ê\5³6ßd¡õ™OÒõ™šÕ9†ÁÒ®רUì×­ƒ$ßD'U‚R¿ôßjåŒ**W)—Ì&ÔÆ6xd?>'9¤Ãêã„#”"„¯¬Õ1Wõ×nx ÀÊüÚɽöQ,A_,é`8'we?ÏÃ×¢~­±øzòãóXÙ` -ÝwXÎpøaRše—ŒÛ«é tì }ýÇÏúµŠGÉÕûØâÄÅ…ÅŠíwéc2ï 8'â”úÖ7–\i¯„ÿ<ö}™hY:ð(/Ì»D>òn8Moª Ú?¡…]Q*ëR×c7 ô˜öΚBÀýýLf0úÄÕ,è~û¾“‘òŒpòçSc¬Wl‹³ï8LbÎýZѯ ðÀ³ROƒéŸ‘ßvs#TW^…wHV!Ëß ÛöZ¨Ý^}¹µÔtŽ#˜– ï‹!Åͬ–†E¬Ùɺi×ȇvcW4vuX8¹’¶ÊVÕ Íwd©SC\oz /Wf¨î§xe¿Ô¿qNæ* T-©qºM EQ«Ïá~Ÿ3­¦8…'+Öò…ïÓÄ(Ê˲”T¯°€Ð-š]rSJ_ˆ7¶_„‡ ¼g¢„”ï§€ßûí=Ã<üòˆ@¯yìP_DºÐô·\­h»åÒ[6NÚ= fñ²¼åÒñ˜²6V„ÖNŽÖ2ëEÛmš¦EÀâ–·¯Jñ¾«ÿ<C5 ;ˆh5UèøÜ¨}qA¹  G˜]1äûÍ­Š\l–¤Ñ ‡ë€‰vN´Wl59(»•RœâÔÑ‹@¨áÞ‰öwV@úr@IkuÿqàoËØF|ñµŒÅAýµ'÷éY„|N¢ÁqS¦•&•b7$Æþy ÷•+De áŒMME‡;l$¯ßÐ^ýµ>º ð~¯‡ÐŒx~v}¤©=·}çâ­ˆ5”2¯ÆôAÒÍÎË fò²Þn©sœÖ=lÿkàuŠŽwF¾¯µ ŠÂ¥‹W Œ§Èª_­/ž…“Ÿ MÆ åm%‘S½”n~ó Íõ'É@¸wEzÅv1•*@b¬z§1ÅÙa'³Z@C‘ñ*û|»h«k•yØqSÏu'P¿~DèdÂС|MDC*‡Dôžè­at}Múý2jQÙÁ­_cuÑ÷4±_ºKêÛòˆÑò2Vjñ)X l)eU æ‡Ä XªŒßjNiwdò½¬ž úqð:SÄgÁ‰…d`ÀŒö]¬´cºl 굸œÒ²=(•:û£s"òU$m37š¸ÌßUrW‘©Ôµ¢4Ñ;ßT=ýQþfv‘ÑwdquNŠXØçFB»ÎT¨[é·[ïmmÅÿE_x66•¢Ìá„<%ÏidàÐÁš¾>öÀmo­}=‚ÝÕaeè ‘,‚mm‰Ì‘ÃÓ«/6 ï‚äYúoXð)l±?a)4ñâޣɛewRPd¬pÊ2ŸQo^D¸k î@–¸ËÛ°Â÷:2[­NÖ¯½ Á5Ó74¯¾U÷TËþÚ2—<¼Áìºë­ ®Î" ]îúŸá¡Ó¼¢l§¢X¿v͘·q.ÕÙn•CÃX4mÇ5@kÓƒ ¾'+X >™³ë¤Y\n²:ªUÁ0 §¬¢Ùiµ|˜0C>J _µÆOÞvùì¹´‘ËÉ—Cáøû„¶¤… \MïñGn7¢jˆ•ýðÒNxañÞ5»ê7sááWÆL¡a>1¹wõrîR}-ÃLÅ9ÙŽÕZÕ$;M1”ÉT¥Ø31ç¥Á»¼dðq  ~Ï]ƒÑQ0P×b“S‰ v”ú² f31¦zI´û¹ûŽ•„{ÍëY§æÚ¹@û;ÑPõ5|.Sc©xÞ¦«ØUâ|lò!ï@‰Þ™Úby‚lëŠïÕ&É‘-k`wÇØSn§u_Ë0ë‰V³ÝÜ£&Î=ÇÓÚÂz‰Ã,¶Ÿ<}8Þ–-(µü.'X’Ç XÑ:‡›ÕßfuÎ|üýíYãŽs˜~Ô_š^´F^"qœ¨$OÄÄU5¡`Úïlï¥ìŒÆP^nlëá胎ÎÙR¡¿:‰:›å·ñc‚ÌŠî¿ Pamµ†×:ÖÏ량BÎãµJfŸÎ§ _Ù´}’È@ã=0ÊEÔŒÎÛüÛ­¦(œÙîm ‰+š—!ö·ZØ#ÎÈ]BÌ"ÖÊUÅ:÷pMŒEöP'»+կ肉Ê ÉEt;àá'Ô8)N…üBvBLðê.%C3Ì!XPõGòy[ÑéYµ>˜Ð¥0–º&ŽSëß*]<:wþºýc7ÕFgÈ•ôññuwe¨†‡¤Q¾6ƒYewû¨ÈG£;ÄBÕ9Ê+­³ÀÌl…dl«(œ¿äIãKÝ‘Þ R«ç(‰ü&îX…ßxÐûc„1$·ÊÆÉ%uNT”Û†“d‹+ŒÁò·ç¡—J¶ö>kØÅÐh„¬ÎqCDc%,lŠ)¾ë1!¦ÑÌžÕ"¼© Óoišk@U@ÿ'ò–Í$E#u–c{ɉ©( ”UûËŽÏ©ƒÔÌÀöºëÇž<ñ,¼V¼zŸrŠ=6#Éã“' õž œ}–©õv_Šº:4±ÎZ…ÈõØŽÉ–ÛÝñ¯~Æ·+°YI1“^c/Ë›àR°{ú®4#ôLXÚiZ®óL¯ ¼ÀñáÜê8Mmº<`>ød+]°¢cÚȆÚ0’`Å^só-vuò†Ž²Â(ž=€Å ºé‘#ÚxÓI–õ6Ÿ ¹GÝñž‹×jq£”XµÛ׿àãY–"¡Øj$ÖY¥5*õÌå8µëXM¶šÐ(pÄK,E ¨‡ªÃœsºM häÜÆ~D5Õ&˜ …@Kr^f¹k°~帇á©Ï'”Mv¶?õ*V®x÷/aRÔø'I ¯éx±. ~ÖW²(âáF*ëuV³ûV[{»…ìB°ì(!TçOù‘Š[ £ø3¹ ~šðÚhÃ3óg.à˜…%{ûéÒ8Ê Äõ69Òµ.Õßpp¹É‘*+O¾•TÌH_¸®3þùËn蜓*Ì´v7žïиk<Õï®÷ßAz5“˜ëq!˜…ìÇ1ʘ_غ…‘JZvaï^X;Ö§O.ÔIwÅÍ,MÆu”ßA*{Bwy¤‚ázÊºŠ¹b7}d-_óðÒo¾OÑxÞ ±D(;ýžˆ¤SK# !£f99± ƒµBÏÆ¢ãT:h)g)½üþ9ðÜîiG-0W96jÌqÓ„L4E‹ëcê :†àóQÒ°×‘ÃØ,k¼½Û™Ÿ—ñ1µ]# @Ï‚ó©FÆËnû&”ŽMh¼6Úå*hXöƒ+°•þ˜á–TYV³‹®X8²"ï3žÐÈÆzx˜2HżÅy€ˆ ¨Èîg×l:»0¯4ü仿uy·tM¥ÊÃÜh& Š”ðŒÙŠ„Ð< †ì¥"í“ ´QÄd¶Ú…’D7­ˆúbØE•uL/ò¾é^±÷õ§ “ÃCV…‡†HÙ\š€ÏäwºPSl€Kêúiã]æ'®f¬n™0Ò8'¶OC‡7jZFÁ™d“vv¯Õ ªÔq; Ö³®vôVO²4!Ê`‚XdÕ\Ãýž 12ú“Þ>@¨Ý¢ËÝ”êÁ*->0ÿ7ž,¡¾¤œ<Ä:ý6+ü†æ S0F©ÒfèqŽâB¡bvÒbí",ᮂÝñ\üä-a~„ZÁ ò`ìýõÛ¸RUòÕ¯ëeÁH4yVÑEõl²Coµ×ÑÚTcN$;Yš74$½~¥wª9ÞT…ñD˜Ð¨º¢ØwæÔc‘û?ל½­hذ@•*D}ɼDj!é@K8 µlæ¶Aòù#ذwͯµ|duÍ¢¥í|¼ãºó¤ŒÀNf;;”ôi6V‡“R°ËŒ6ç`>…:”´bXUÌÁ)èªÁ1×d‚ ;OåvQzšZØü“ž qBÐõ É­çFÃ}Ê“BÁaÙ‘­`ywµ Óy˜*@t6LHðSòE44•¶ÊCH,·/b7ê›"À§óDz(îÐÃb¡ÓÀô!&gÓ°ìzªé¡„é ª®ËºÈ9*±›XóÿUxÄÖZ“óB•VlL…¦åä«MÞ?û@JAv¯9öôÉÙ¼hÉ»üy|šüI Ö@ âUæBEáØ˜¡¯Wy-ò‡ËÂÝ£tÍ ¶qÆfS ËNÙÀ“/Œ£®¬È•GRˆÍôGgT¡Îü¤ün6)Ôü ¾Å97miF0Óe$øD¹îô¯Œ;øÕ:©ìG¶ˆÒ.΀ߩݧ˜í;ˆä«f¡”XÊep†îÑV·ªþVßáÏŽ-—ãƒø]2åÌâoúÿ;æ‘¥Z»®: ‰º5VfÆ0‹Ç0™£3m%Þæ?€ª±ÎòÆgW¢ ¢U¡g‹f¡óŠ0‡kÖ‚vÁ®Žx\§PÝŠîã—ª°tÃQ!»ØÆ¢Po]di¾¯…ñ^¤M‰–#¦š²ÆI§]×™ÍxKÓK¥(õ¹ÓN | „L¬ïﵪt}L‡ô&ã¦QsF¬~/ÚA§kÛR Ž’2‚j–ùvëø5Íi ö¬òõ©!U/8Â9~°ƒ–ѳö¡¥‘fpÛ´¡5Ù̬Œ:๒úbNw0Çy娄-çh;&t ñ8Þ!˜”²7~}Xà¡ì»ƒKà‘‚Ùc8h :O$„µz&ÎÅÖ½J‹êíß5¸¯ýT ]·]iÙhÿ¨iÿýÎkIÄ ü""3‘Iž‚ ˜v^ü©áÉ@Õ©ÿâÝ,OÑ pÙ¨`\𮕕m$£r *8E¸’*Q•ÏÃÖ&>ßSü=kÀì,`qÕôC×p: í©‘á;ÚÝûÁŸ·þ.na°v [GÒÂ|µó˜úï)wnºòÛUz5ÆDrPïŒlSÏu *„Ø7>Q‰ (Åf%‰‚tÉ(‹«ÉÊÓýt]ª´ë¸D-»høÃ R’ÿo-•§/5ˆx@»+AgsZ¥ð¥ìèŽù³·“Š|ø¹PøÔ…DÁUò÷bY›Ñ­áN{4—Ñ 7&jìJ–¬TÆ5ä¨8‡ ]m‰ö ‡¼w†7b½*NGÁ‡”…W˜[/‚ äÔÃ3N÷€›±ˆ™·=.\özWJå^Á·£AQJÏ ^ä©Zq§Îf뉹è+J=·ZòpÎÙ«çqƒ"Æ©–䀑 £FVñýÅ=ü¸Ú|!—¢ 9<ö°ÜÁj®9ý£otÎQ8ƒƒ°'¾8|¢ayŸ…¡÷XÞÁЊ¨ãá¢Â¿`ÌÍ~° ß‚ׇÕ&ߪ4­9\ïmO®È½Å­»³dÀ;£òK ’ãµ²˜4@kçÖWÞbÒ5ìU_Dþ36‹‚âûUá2§#ü~Û&fΊ)Ÿœ!z·z©"ÈÁpË5áÄìíæ6:«OÐWX)4å° ¯ñ½ìÿ_Åî~9K ¹ƒm²´ÓŸtWœ¨:¿ñ¹¢KŽ÷•'0A½ƒ˜R”ÜëF¥Ï>O¢qI’óžÀ YFjLÛUZЇlƒ43ðõ;¿÷£œ´š¢öÔR:G™¹Bºß[MêØl©ÉNùß•ræÃ7B¤¶Y½½æ0#ÿ;ñcfF2“”·Zžn¶Ig N—󄘥b†ÔoÔÍÕ‘H´9¸LµFo£ ½>'ÑxxšOiÊo× l3›‰ÑEW ,‹!jÃð%T½üÝÍLƤG£=µkÀ^›ä–~Ç~o2m­ ÎÌùÖˆ`~­Þ@xÆ©Òê œb~ÕUrĤ/PŠÖ|‰|~Î\>°$¿¦÷?Q®‘Døþ3’,ެƒ€µj«nÔÑÀºæ¾-?FnøÈù;B&F&x_LTyÈ`² ¢¢B ¯:åö/£ybÌsÚ†°R«ŸÍöú—2¤WÈšUà3XNRgGüWFßtEWX‹}Å-´S͵>PX1”v’}M¾$x”ø#£FMOŤfš!íö_¡ö‡u7»Í›šê"ûë6Ò²—”)6áòIÔ4 ”re¬fÈkICjž "+)‚ÏçpgÆ”ÞghàÇÆØ§\%Uqízp™g¬’s<™*õc…aôa Èë ú™6G(‚º÷QÌt(²jؘ´¼o÷æÁËF+Ò¤¾7 k³•ÆÑ5µç›5¾D¹£u¾G0¤„òvõ³V¹$*ƒ‡óBî¹)6|‚U@á´y$ëý±ñ÷7ÎMÊ5æ·gzVš+÷ÅË(ßð{8ª5Žp©+­Q”O®Â ¿ ,¦.ýÚÛŒ§Àê=Xò6 ™šTrÎÃ÷gd»2æ±2ûcPóŸ0ø˜å‡¬äq%Tty÷°º]Ähiq¾oÍ Z ç¦××|_üìIáÝjΦLgªñ—æÔýß—õþúÏ>¿ûc‘¾cLSÖû€ëÄâDŽ–s^3=¥nQwÂá’(mÅÃóK$ĪFèáÎHptãý —·kšLkŽêJ|ÑD¥¢©ZàfÉ\Œj.-ñÛAÿ(µ²ÎCQëN¢±iaTfRxu”®=©:ÿi™|.C7û°ñ£`«ÎÀ€CI¤§°xL½ÄK¿­ÈMŸÁ=à•çâ'5_1fuU@ÝÞ™ó¨ Wµm¿¿,oê%_D½¹ÙÓŸËËyŒ0Dõeó6Ÿk$ó‚×#ÑQ#ÓŽŒ×ùøN„WÏÁ}ƒªzh0ñ™øîsa…d:—ÕFœ>Âáˆx”e®"JzƒV‚B:ç¶Û£øp§ósnÜcCƒËŽþsw;aýªž¼N¼çǤ¦ª„^¡c~ù1­´T0’Í4”ˆ3¼îç cX&ç`×#Ÿ-Óóº€d®Ž³ ™ÜñD-Ã…„¥ˆŸ®ù+>êZž)Ku¡Ñ'WÊC–E›¨Vcõ¦LÒ>Dì¢GÓj5ÅosHGvæÛ¡ž;É;BØ Âõª»óH’vì–fä S:ãwjÀhÞ_k?N pJ@÷ŒûP>:'R¥ÒˆwÖÏì$Y„y$&O|8мš¦Ë_*ù™¥?ÂIo¼. ç8.f Õ£w¨ãÐ ä¥ÆIjd êÛƒ»¬l›9é+I…Š×£aü Õûéu„½büázX*q‹ê ù•©Gûů„EÅ•¦ê¨@´${¢ì1ˆJoï0j'äK~$!~¾~/í“h“<׿Í•bE]É¿ ¸±¡óÓŠÛOþLJô%UîÃDÀ;Á{B´MGüÈ-÷J(‚ˆ"$¯µ1r8•e„Ìfè·a¬µpÜ*܉|­=\«8ZrŸ¤Í ͺ0ðß÷çZBgo;U ëïYÀ\7H ¦’Ʀ&dµÚêúd.š¯;†(8ŸOü¾Ü#E<æŽøFË|¢žõý{ÛS'þñ;æª}p"F„OúöÉN»iS¶öSÿNUå\*fÚ ßßAR:Ï27N&ôê™/dÒçfsl°ü¥cƒ^"X;X&×p`­À¹&í¹6lþ&ÞÂÓ“ü‰KÂXÚ²Bf¤…qÃûÚ Ó¾öƒ&MLËË>…ÕFC”6[ðçL¯«¢™Ý€ ¿R{ýôŠæ ½÷tšø¸·þÙã@¥3ç“Q/màô{í0a/k;YUØ vÏš= ID8´x(°ÀD8ñy£Æ­’ñºò>&èÄèkr¡½;Э8¯÷\ãÄ:­^Î<$Ú%NŸ,³"Q×ÃJ¤¿†Çê–Z†ôÛýØ.Z1Ï Ÿ—Øv ɪÄá¡¿ç+žÚ—œB,n+…XÊդͪ÷Í+AÖ?;×¥EÐHAgÖ™… 'jÙ€IØ‚eÀÔÑÛÓœ8üzÆò2ê5Êsq—tz^÷ì‚n˜G/ésjn†¹÷ݽ’1:óK;ìü9‡ÛÈFé àNþÄÈ!ˆ<‚{Љ»¯§é ;bû@dXÆn—B§^Ââ›HD[)¤’š}Jј¿= ˆ«=Ú€SôÂ"Õ+³ûÍoÍ„¨aví¼Â1¤û#X_§-"‚Z$ˆ³ê¯6Ÿ\·W~¨×3>U‰áòÖÒëL²@bG‘Ë»5ÏÊŠmÕ:Éý< äzó¼fè¼²º½ê™¿ƒÓuê7Â÷3âù=ßhn ñ‡"ê?•àiÒ3¹l‘˜ÅöÛtÜX'ªIæÜ-ûxã € g}ìE m*g³Ý„´à 3Âå*#¦¥A=ȃüÆ ¸þÉH«ÅÐß{úkÖn2X%ã:ã.k†jË) Vßšº9Æ6‹‹à,€B³Y®„݉•­¤†ÌVž!åÛgkŠŸC¼âu@éØ2¤ ) åŒÚëн_ùØ]”¤vXʆ#1¶c·@çC’´p®hÁA>sG\+¼Å±·©»¨5ÄÍ·Vh€²‰±D±ù[šîþʼM-¬m½+wÔÅyzJÿX`*Ý&®/‘ó©àPO³nÒÃT9†¼$Ϧ²%­ŸæÔf/&´Dàó\RÄ´ÕìöOq!.°·k˜3(ŠZÁ,ß¹âMŠû€VÜZº áÊâÀšST‹_ŠV‘Ü»:|À[MÙkeû”ÂàåµË*µ¬^Ò. ÌC$‚œ7…#aD!¾‡-aIÐDC&‡3µË<ãrºÐqžQ6À"²m .4Rô>Ù͌֞ 쯂cïî !\ObTÄÿ 9ï¥æºØÅªICÍÕq l~{ËCÿJ-Õ¦çÏÃ|§á¼‘ønˆß§6•§—µt™Þà7è1OßëÉ“‡êñÓ·¥Ü÷PÔÖü.NCå&6ÐÈG§|CII|j HûñÐ3ÛØS­áòÌFCª ý¬wÏk‰bڅ㞺Þg~þ¨þÎòó‡|Ó 1b„UƒKìnésóôDZ D`¨õæÏd:ôÓòØZôù,ì(I$ñvoÎ¥EÇiÆ=€¯Øy¯Œ=$ˆEX}XhJ}¾€’ˆ â£zÍKØßÅöö(o¨ø"q/È‘d7鵇–lÆ¥(¤üE.ë)—+¢jœ×Ä¿œˆ;žœt˜|:ñ¿—È’·"ΙŸØ—$@G0u÷ÄùôË÷O»q76äÛ5.›,—Õ®Ê Ï±è„ΉQû,Q¹&ý!ÓBÒD«ÌAP|§¼S pà~XNdâÞ‰¹¬À²6= ©ÎaEÐÆÐ^÷办9éçä¤(ɉA^ºÓ„ŽšÕÿC$žÝ3N›T«úc„ÿ4f·äQÀ¯sOIÓ‡NþæQÓÒ¦¡’ŒˆÉ•¦ò =52Á’W±Êá˜é-˜}±»µÿæfœgáÙÌrו—ü—u0ò²Àу6¿é–Êy Öàewë;Ùh’çx׿ðTð×DÐèVt_Ü|ˆM@åì*¿¢EúøÃÑL…ÒaFÛÐÎw0tØ\¸f!"Oƒøxi½ 9øUÄVwtdGÏžWTËüóG¤1,ÄX²˜¹ ÛME½& ª¿°MVUë¯`Ïx^««:@¨ã<+5š‡Ë6òËStœäÔQŸ E᯳[×ò€¶®¦ìnb‰)Ç Ö¸«9Lð¯-j9xFSmî­éX4¥+ªïªjÜ)Bõzàtj+ÿJ£ÏÖ}b#jÖÔj÷«Ë ¾D6!¯•ÿdÁVâb¼§sÍõ-w ‡‰ƒ\ÖPšC¿ïäú%®¢ŒÂɆüºH8™øç ^`Õï|³íÙ/´l¨í_¨Ee :W+á`ÿpša‰µV›@¾ÂTý3œmk’OÒA!Š šZ^’ót§r(©WÙ•âpÏrz((¡•Ûö]|¢à(bkÖ¦ùé‡ÇR4µI„Yjm¶_W{=ÏRà^}&飿1Jî¶Ê:SJ± lо¢X‡Df]L JG¼¾çåãÚVh >ÿ:ÜŠ"\–¥>‚žþ.ŒâpB (hÙ«1üÂÄHðvÑt"Û_<·q}(²n‹NzŸ&iYåòÊëmFXÕxêæ…ÅX2ç”ÏfÌ뢴Æ_0#©³!6‡ªî:HL·×|7{Ðï¥[ZDw1lÜ×-Û}3a¯ö?XÌè·· ¿ŒNÕ¦ÔMIo§‘.öª]ƒ!xwméoh2ò|ÛP§ÏÒ69ü Ÿò° ÀÓ„Ù£`|ÿ×¹[tU,õŒ#Í8J©±ÝuOë¬õm‰üücÀúö ë)½ûCú¶+o=‘çý[ƶ*Æá§>ìô’$éíê)$®  ~ÚW»âÄ™Ù|pÕÒÔ8FÚ f%Z Ás–ÉhE¥Ä ãaf{ÿ<âg`Ž]Üù W¤hHÍ&æ,ô$í&{ïhXýºû€?y Zc5Ÿýô ±Ø Xúò%Æé?:s†ë¹-@-í _ὤnf_ œ°KšÀyD1Ø-…o¬ÁZ²º·r]ç¦èjt ¯?T§5¯<‹RØH¿vrRXrO‹Z‚±¡±u¨ŒØ¾n*޶ä¡_h °kø'ÔëÁŽ—˜‘ #"Ѳ¹yø~Wqᑹî톱,*A£Èp0“¬… g¶ÞìK/¹Vƒþ;ixŠ÷jÇü«ÀÊŸù¯c'Êw[Lø\çðô³þ†ßÃÒ7øz+çðôªþßÿ¤ðï'ÃÓ‹øzJ_áèòŠ:9~—¶¡wrv9¬ûli‘5"tÇB †g.Q>¼‘ýHGr·ŽÌFÞöGú©ŒÞP—É­Œy)ùJ”Ê^6Ê>¾¡þÄ·].oWÄISû%=‚].ÐûüNj¢é12TU&P³•sÚò…œ"ÎW} J}äi1Цf˜½©’Ȫ"…î)¼½Ï=eó4…>Ç {¸Ú-§ýól'ýÈM=ÔÑ¿šœºÉ‚« Ûâ Ÿ†¹1µk"OT¬pú¿ž»êô´:’c%˜èsj>_“ÿK_© ïlzµo|sC³-)Ì™­©÷úðôÒÎýølÑ㵿Zý9‚ö‚?ÁJDÌ1†®á ø¿4ñ4êbfu¤_®MƒÞºh¤¶³|…?Tš54•áG65¸s‰j£NžƒG¿›7s&—Å=tE:¡EX( Äèý&÷í]=uDô)ÜÛ %ÉCבG)ÁdõOCû¸¢Üžþö¶…¯A+%^h8&ŒÇÍP²|[µ¬ŽXN¹ âç×”@`ºˆ¤CöFðå¢óžD0Lakµ·ÉC¶¿ZÈdÿ>éÛ'Nö<ñL•© „Ü"c©—gàÁËU’,®LUNv84|³q0ÄÂA¬Ÿ.ûÔ'Eõ{neÙ,÷hÏ„Ò3±)X£:ãñù:î==:#sâ@ºT‰dB"+â_R ŽšIw-:q0Óã0º%á¹É“;•Ýc'±5³9ÌM+0ÙîœYA=¿÷}~¦þžåC„é?Â{§û%@Ñé}¨fßdPí°½º:Uø™¬7®ís«ò?ŽÕÎ8ÔƒM×û“òÛ¤ Qðã,ÃP„…×Mº&ˆ•—4ДÌã4ÔS5} ŒÂ[É'ú›0ðøþ‹&´ü8D ËTp!¬ÓÙo 1z›šå:É>!--òt±®S Ùî—Ó§3v±{r6|m‚ÄSðdY¹#¾9ËkŒU‹•¹T1Çí´-rûé[~ÀÊ ó[A‡m»"lÄòÝ’Y,{Æ|(!ÕÄ/ S¢ÿZoŒºÁ” ‘w²v¤ -Ôкã[ƒç)©:¡9ÔUز»–}sGÌ]²iѨòêãwpZz±ížóÌAn0h=\+l;Dl}àc2¨KͱԹ›L—úE9lÏ£óY¦G#Š#ÃÉÇ G…0PådZºßÁ/  +wF˜ó‹JX.¨B†tOØÒJ©4o²jï¥ØÍMÜÕqئ˚våX£ØÐ)X¬ŒöÀ­Ás"­Aþ‹ut¼˜Õ¬b „(™m Γyr´Üý «Ê ¨(ä ð­ñtlÆ ÁÿöÆ8M' T5±zÓ“—ߟÈã÷ã’Ì·¡N6 |þûýúØè.p×Ò‘®³´Û?‘ͱ‰ó ÛÅ­Ø-VŠ™„ Å <=¥*çýõóñþ†Káï[EjÏ^NÃ;›îLªèð!úãQ€íco8ÞôFªL0‰šC"gŒ®ˆ·Æ{Ç¯Æ ØÎZjÿØoCŸ‘\c,Ý’T[m­ Ö ìRp5È&¶aèDç{Ìî´mð€°º xvxÚ~ûûQƒ¸c¹_(ÀÖ> Šæm^ñ3²9PðNl¦|x/Y{$ãØw|ºrŽ=ˆå9¨3ùðœ—P0¯}J6)C“>9i®7Ý1çÙ½E|«ù èíI81ž¯k-{'±œ­".ÈêLNÿ[Ù¼»óƒ h,…òÑQsêü9&su‹&ð;ë¢_Ç*0Ë9E.2ËãBb×›7ö½p…ÿ!`òs¦ŠÖ£›X¼ûGdK1•­ùq,0-†‡4å¿6>}ÀÎÕ%íQ[ þAu…c-º<®Ù›7?ŠcHüœ-Õ%v_œ§Ýµ´_oœÝNû WYÈ%Ãà2zÊ8Æ­D xÖZ´øskN\Ä`6D]¬Åéãføð4ð¦+md:…¦Ì°ëP{Á»! #\âeÊ<‚…æyh¦Û„ü0éV³ï´ØoÚ¸‡$ȈM¶fØZP}(G›•H6Ý KÞH@³ zòŠÁÎ> brÇíøWÀˆ<»ÓèÂ%Þ©ðh>;lë8)^ÂÄ·ØuÛŵìDºÒ¡ËÔj”÷)LŠ€Ùâ°¯¨¶ôEl :üL…˰yÀ?ãÅ<²oµ’/c»7‰áW3F Ušª< »¢{¾§$§ì*s éð±Ñ{DèzRϸÎ%`Òtã<À=‘F#­×Ò ôò\ï»Êi5Mãp!%²`>Rª\ZDˆŒÔÄEB\ÆSio ˜Ö ´ôäëœf¦¬óÔé§³Õ-ó{&îD J‰6Puã¬\|úBüL߃8JŒ¸kZmR~'°þ¿Çý7[Ç« ×púT­ˆ~B–LVÝS¾]ñHdþ4¹Î„IÜÎ?M1xu”PŸ¾BÍÞÆ1Õ”3LØJmýeZ¾yVK9¶W–Äñ9ºç ŒZ7£j|Õ;ЊBÃÈí$3¿gØZ|!Ÿ÷Ì·úÜ<<&dØŸDš¾6y¼Šç¶Ì½ŽÒX‹ì9TBJ¡²={VXî¨7ê¶™u®|b…¡£­Îûn~òØ+“Ç ¬úW$5…÷%Ðx@ÆeF:˜Ðˆâo(¤«ÙÚÔ3¹B._Ç•+^óþ"q”UH²ðœm¥Ql„%È’19>c&+ 45é­M›ñ+t¶Œ\‹Än~7d –‰ä+ú³Ð<$„ö;Ø{VmÇfÖ$ýÁeƒ÷õwX3;2¥Ê-ªô×uœ.b°öü£Hðj0G¿å­ïÅÖ§h¾}»®s[à !žñ‚ÜLG…´@‚½f;¥|óå?³÷+òض³&ÅA¦ šõÒÈ1ci=eÇ]øà×½lÂ]õ·gqº:ËilÐk˜;„µ.3Ä ÒRJ-ìJ’Þ»A̲Üú»£²ýÖ&‡ñ'œÌowú—}Àš»ž›ú(U8pqm)þÇ$Z«uÜÙ4ˆS2LžÂ SmÎsÄ `ªROÙØ™ßÍP¡h¯½ùå7‹N!àŸSþ*ëŸ|&­Ë ùmt| +€´ld6y0t0"Ém“Šðä“´t»Yæ]ÇY&!Ƅ陌éƒNQ 윢K¡ƒ´‰)å°Ô+¬lw‹¿æ÷ÿ‡ÎÍ•ð6fÄØ/v#‹ã*"õ$çBÊÈZF X<ɼ»fÈíL.@˜’¡ÉiÙ_hú^@즕[­âˆ-ÅÓ(c[&4á^>5.”»bR§öAîå.Ÿb…÷Юj¼ÊP©Õ®ïëG©-\®ŽÖ €ÀÄu[ü×ÉŒ±®îá;·te/ò…Š<Áää?öÕÈ´À‡A¸úùÒ³;WŧYw(B¿¹‚¶.\º¶B¶1©àÆ  1'Òäè8ã= óÝ3¸Í}Z½&Lê{™r Í$8Ç1«ÀgOžüò dBÁ,„'lô"¢·{kù‚Û¢C$ò€—aX{”‰P¤ÈZê”Çv_ù`¢º›lšðX,ÕÿkÁK÷1ém'¥l£d•˜¨wÁóŽ­x‚ö’×X¹m¾pwRðŒ ß@áªÿa¢mÉ-õÓarš3¶"»çȉ7²k#WFß&«Àî1º¼ÇKf 3*4LÊNqx¸Ñ†HƒeTÝÿS.…lxïZèŒ)»5¤wZÀ‡ù›Â‰ÁÛÖŠé"¿å-Ó#‡Öf€,B­œþGôúÆéÆè’B—s üb\`G$kU¨ò&{¨Û\íöôFgx·F4¢5,Â|Ùí7$ cE˜5<ÞÁóùBUxºHðP18+„¦â‰Xl;´7«0èH˜V^wMz K©늞̵zþ½ý(zd®×N0{Ô^"`¾ÍËÇ2îà1Ð hZR•Ú<û¡\}¦¯¼Âh’ž@Ddçñ¨u¶¬/T•µ·õ}Ϙ€¶DÞ±XÖáh±!€ 7Ü+YKsˆO€hÂuÆÛ}Õ {½W!V“T—íô-xÜz`)¬ô/ź Úíî^Àž0ÞêTÙîdck4•õ'‹óƒ}f‚í³Qhû¡õèæe@XÙ*ð¨YaÐÖ_ ü±òF1²:"•ž£8Æà,‰=Þ¸ÿ'ýVËvJ™‚c~+ÊA½Ëýq¸ˆ©<×%·¨ÇE¬ŒCÿ‚Ä ¡yn0hl=;¶ÆgÒ·¸M:35Ï¡[ÜyÃ,óHU6(äF¯¼ÿf[½Q¾»pŽA7q µ@RÿTãÿ ¼Gxö¦\À"aç«ÅucÒóš:bo›dutºy¼ø6®Òt¥—ì¥Ð‰£=Ðx"âä 1脪 ‘ûë½JËTns¡¼d÷RˆkLÌ Wa8EÞº]ç{»N5.֡ŧš Á)§@ž•E¸ÈqêÒlæiåÎPGßm(ŸÂÃ.c9ô¸ FuŒi$ µs&àPVÌ*f•Ö©z‚žÒ÷Ó‹ÍMoöýw 5&ŽÁ"e^FbðKê˜,ÕOÄ…uù£b0ÝkÇaÉî,x‘nMõKƒ9·O·,buµûТ–ý߆&›Õ(ÌŒ °£™\ãï`f¾Ì•ŒGü.ªÌÃŽ~„›ç­Ê.ë$xI5ÚQÊZß…èí$Û$C犒÷ÏUвócª é ¤˜üË-/æëÑ”vÚQî7pô±U©BÐð1#è¢`L]·Y¥^Q—Ýöß4ú÷\ðŠ$~å5Ct9zˆrî=Ô£þàÕ•",(m§ðæ,Q£â–:Õá»ߺ~€2v5àn¼Îg-‡^aTAêò²ÌWì¡BØ)¦h_é“^$ÍŒ÷áo‚*QÝ~åÄŒÕùTZH@b[om¯¬"Y‹Y'}XUU¼ø¢[#LµˆmÅ|¢7˜8q ö¬³8EøÙKÖùpønÚ9 uT(ú(P€‰Í£ÆÔ=‡äuÇg*7Ô ºgªü.ÁŒº$ž¸mw°²†½ãd­5:îsàJŸèTÇ™4#³ ÑcJÎRI!i}%}:Rà"Ú´û´XâpLØcò› ýë8c"•;è²ïƒx [Ræü¼Oßlè°ÕŠŽÆm¾Ðvöúå`,œf5po$»•ž8ûb7º3Ú}-Ãyu‚{ݾT˜§Û_?1ëÂ5Xâ×=êƒOæ=A+ˆ–!Ir{©co*aäÎé\"îoÞScÅ^;ïÚéÎë|3¸€Ä.v+/G+ ‚ÛÙ1…¦n¯¹Dݪîë¼!VÊ¿á{lFtqt4—óáÒ¹;Ö-®VÊ& t>XçÈ>ô’zŽÜ+•ívvò‹•ûïãÀC%Ý[à™__3É’ Ø,¾ÓŸm]oÿ;hÆái |ô\²¶v1¬Yý]çKÚi­™ÝøF×p|J€êfÙ«”¨Á=#?“eõRáK‹ 1­çf$±{W…³ËØë¦V$ÿB&Äi!¢ÌÛÇÞP.:¡Oj¼Rèo…D–f¢k¹YŸ3âi‰„¿àó¥ÓÒ“…çÜáçäŽÉrϲےíR·þþåHøåí ðhZ7ù÷¬X)Wí Ý&7Ï\ׇHä]¦»¥Ý>c©Ä3dyLî²z$P’éœÒðÊ|4:„“ù¾n¬ùu»Î}aî ê †pËn&Ã¥/¹kRÌPè„パ­Ñ* heïë}5ú¬%ëé·% O/£úC%Cl60vEÖDt‰¢S_µÂ;RüÿSLÿ0Ô0âYE“Õ.â4œïf–ÁÛo€:÷Äi6¶(±êUt1}C¶VI¨jó¯Å³ò­×[¼vPï²uLõ9^ bû$€Ž“ ã±l‚×8´jetKIœ:Ô’™/À/­òÀÛ†ài,þÕ×® KZc"øË´Ž•^ð$Q<¾.}ÁP >8Ø$‹ÄEøbÀá^—P ¥å(«¶ Ô§Ú,±NuÛ¨ åçÀ5S4¢ ޵Så;È{Y–¤|…z;ÚQS)X5–WHÇ©öå” ÌCM:§ÅS7Ò~n,j÷GRcgˆ/pëVà>K'g¼Ø=ÒŠM0#öYUÑŽ”ˆc?G_{…†+x:ÙlªÉ°¾¶x®êµSÒ_ƒë¿Ž×†ÓÓ$ðÌ®%Ò\¾öçãÓèäUÛC@¶ºõÑs™¬y“Bnò"!,Øy\Dz¡§ ö>Ÿ»íÙy…T0=et?¯¸}\ÎCª£?"ï=š]n¬$*™rM. Ó,*"ú“2Õ%«´Õ÷oÎZ\í*ë'(2‚yÆŽŠ°é+íuÑ겡Ìûÿ[ÚO*ôë^”f1,±w|/Þ´ÔrB –žW”¹Dýà˜m¬®>N'4…-á2s°S)À0Õ7Óš0kÕæŠA:ÔòËKY Í`±'µ< º^.kó´ ‰'`)l%Zåâ;¼Ò1÷‰Ã¤*¨×bÚ[­-lñg`°õËžIjOœ=Ä}H”vŠí=çÎF­ð`iR C7?$µoþ蘧¢²+x§èÄíá[?‚ Íóç z$1˜vdþ59M%áÉ ÇÂNb;X­ŸGø‚ÜêNl›JsHÍuØW{ L&“ ?ÙærôÝö8Ãf n|Tš|ΰTsCB$D~ŽšGÆ[;}v#¤ÔŽamÛ»|E™*FÅÆza•àÀœ¬Æ(ä† šL¿ŒX*Ðè^û¦…o „4kŽ3ƃƒ¶®gÔZaô3Gè³=×NyGüwŸ¿É)® \9œ­K½¸m¾ÕÆ|jðx…ül»ãâÂ#]Ãtœ[xÍÒ ¤?Õ$ˆ÷¿Ù`‚1<ÞÛåÞØ˜8æÚþ)ÅÚ‰ÉÛ‡Õdò”Þq3í·+V)Ñ¡MÅ>Qm1àâÿvÂS?¢EŠ»ãÛ­¬²:`¢ñ‰’áख़ÈU*3çÒëÞèiÚéI¸:kaNá Bm°)! ÛgL·kÚZœ„™_— ¤ìºR~„>Ѩžãª¥Ø‹è%›'aðEŽ2"€~jå mƒ«˜—Xd²ðü¦9è:à<1ý°_3b`f]…säà• tà¨aŸ;û‘‚ £*ë”ö`i|¸¯ŽñDcR F½\‹Ü 'w¹že5Æoå…»FþhPZ+Tav4KF¶þO~xå°¹h.‚ƒiƒ·­Ì1“ž¥°û#àÓ'Åçî€ó¦i‘œÎò>¢jÀM`ŒÌc .„ó9÷’™Ò+Ù›Ó 6h×KÀ­ÎVýŽuÖ¥”jKCûœÊÈ.pšFÄõ.;Ì{ Šý›ÒFí«…;G|JIV¡ ¿ó¶É­T¢ÚˆîÚŸ/ZíÏÄ_5ú‹ò@ç[ÊÏ¢¼¨”³%P6Ë^äî?¿n=ÿ'[ôPƒ Ð^#ÿ9mûo÷ÑöR!w®è‘3þ›<…ØÜý,DmnPÌp¯ˆyóNº+ÓÛ‰-åðvù_y÷xjã^UqdW÷Ï!¦”·þ9(F×|ݯ–#û5™Rúå6R‰  æ+žK¤¨û‘#n€ì9-ï|ÕF­‡vÿÖ½ï‘Æ8LËŠDkA‡±åž¾„¨·VAÄœÕ_‚Ê.¯ÓÞž>g˽ËC¬]…}6êk½,\¯Êd6úd ÝÊQÁ…Aö7{Ù ¾½:¥ÝZi‘T™úªoV0Õʵ E¸“Ón"ÛmGk3Í÷q2‚ûp7œfÎŒÙ8dжÀD)­ ð¡é~ëùÿ8ÌítK­FCÓ*}zžl˜ ÃŠºÌÅ)+û-"A‡[¤&IÔP¾ÔŸZç|t@f3Ö]jêk Üİ ×þhèÜ3·37k€ð{¡†ÅSŒLoÂ:uèÔ7µŽæKþŽV¶5¥Òìò‹{0°7««½=ßÙ쿬Á`¿¾µŽIª¨Ñ÷°çc’œö¶TAªó;‰þŠé%!he-¯!‘O¥1ùoOÙ“Fjn5%Àȹ hÊQ¢I}‡PºÒL¢mÉŸT~Á’O¸ô\fÉ0È~ÇãÑ¿UVí¬ö}¤þÐM‚ŽÇ¿õ£ºðN@ 1å:P­OuÓˆe¡é ¯¨ÊWä)ª!Bþ3%0ÇüR fätL˜ eËnÙ¿ï0Ç v„šè眹W}"‘P¥•j+mˆž#´v>—æzIº&¤˜¯òc0=K±H;až—7T¯ñº¨%ž.ç<Ó5ȹž¢ k˜Äyi(ã[u ^µnOéŸÃuL“Ó¿Ñ5ÒuRpõçêhU{vÊ’Sïö®ÍK:Jdá5‘ m0qí¶Ë-Óóà\nõ€†¼ $]®v”£ðKdïiP_môqî£ø1Ðlk_Fp¢§,s£)+W¼ùJ}î%­bÙ¿BºD#Ì5¬<2œÃ‹}ö YúöäS—^ÒßÅX-$¸Ž% ¡ÉE>6ã²·|¨ÀMpý™*M{ Ù#ö‡SS—¾:g¸r‚pyu颼.©aÆE/Ï<•X!‡_]mwcï’2H?zLfc›ï§j›äµ ø¿ÆÖ”·¥~nuQgL0¡Ö\†„8õqÏyÕCûý¨¸E‘nLÔf”v Å(*•0àZI9ztª8à't^F—$ñ&tôU/ÇïrDÔ¦¹dwŸmŽr­&òă…#•QJ$ë£1×'¸L¬¨ñ·ÁÄO~ɨf]…Ý;ÝZÇBØR˜…;+ƒj: òõÀíÖè,‚ÊõNÿ$´µ†¦Äf‹}WÌÏ€'ü‘€Ema_$ý "Šx‰yàS I‘Û&à<ó'ŠWÃ5>Ѹý? _NRòæ{XîUÔàŠ®#–€(ÎÊ=}'ħßA8ö`Í÷ÂšØØ‡º=,ÕjÂëg$l)¾…æ‹"†žµcµÞP‰%_h—ÁeÙ/eêïîùRÄÊürˆäøÊÈH AL™“»eᡆ¼KÏ)ö8ÕÇ~­¢ÚÄÓø¬ä%o_%²t/>”û‰ÍOM‚´þû+Aú˜Ñeôx;lÁÛò0U‡{rs󎶾ޜ¦2¹°ºâëØD”äʬëæ!9½†É£Œbø‚fGqw$ƒ HàòÎ&¤uµ#=˜{_‘4«ˆÞ[*ÚGi£å¿ <ʉð'^Ëw7°“ùû¸p$ò{|Mm…vÒ²þûéF†ùŽZë Gá±ìúA$ÃWPíÖØµFÈ|=–^-®_›Q´ËT–øûÈ"ž4Ô(Û†!”,x²±ŒÅ dÆ­õš~wD¨¬›"CÖ¼¿ª¡‘J¸4PÈù›'Vž#6‘vF‚ á[̃þ&ßûíÝ%Hcn…<ð hd ?Õê"£]vÓÜʆR÷y~Æ„Ÿù<rüHAäÍ?îªJåg2…:‚JÀ†¾YàrV¨2Ç-ì~¾@òdÊÕßѲ¼ä?ð¸{?*t³ JÆHKläs.,b¸ñ²ñÉîÀ‘„(b;îÁ„Ù‰~ð»„oár+ÐÔׯÄbYËy‰‚ú̈o ¸…•ñ½ÓV­±Ÿ[DjÍK;o œi&j a{y3?]RYåÆÒuˤ# Æðÿ‚^ÕO†SƒkhÎu5ð *k%gW»ö”»zÖO V,ív|÷iem ˆñ³³(Ú-y˜®À¡;1® SÉÀø­fPu˜¤¥Ýš¦°ˆkÕòj0ý]±Î^“h—b ¬*Â*ºÐ¶Šª[ö܇àak¸]‚û!"à'ÒŠo§QŠó #SCîùMò6”KpsV7zB-fãû2úW2UQ Œ³ÄÉ!:î3\ù<æÉúŸÞXªÛ‰è,Àòû1IµÞRtVl¾=½9 {·Ó%ÿNA>Ê3ÀfZ zž«(ÅŒQ`·ðÇ5Œ™ÝxGȘvKþ-³¡$ϸ8÷“`ÖÖ&öÜJ\k…´”_K%ÒdÊÏuåfç6¼QX̱–‰!ø´†Jx³ôEL<]²6\Ñ/¥]IÄ0ÇØB+Ížm7¬X+,÷Î,­Œ‘á©/õE¢1¾8ý‚½CcWÓ s/ö±ô}}º­+ h Oˆd71ÚÌ©_›ˆq–µK¹.Ñ]N#šÏçVOSf´µ'™Õ‘( ‡gLvÃá–8 ­\4ÌÖ‚†©µÌÇŠÀꋤ6=½ñxFÄz"QWx_Ô,è+³ÖåLNÉ¿ªÖ‘í[ßï§û2Z Ní)–µøSã.tu!äà¼>T`ÍHÄR{äÏ)™5áÛÍX‹7½F +tL׬D:10ñp ’gèKl¼,Þ,n·o›â‰Th¨/î"î'šJ„•°nC¨ãB —é¤ÖQ,LÔRù~ÙÜU§+~ÄbûÕQÕ'{›Ã¼6û®^É‹¯O:Så÷)€Y `ä²ýÍ0ÊnÎïã7FVJ²pJ3ûžˆŸl G¹Ïµbî‡îÏ”Ä8+BÅ k„n$Œêë f%[ìt„9ù¡Ëãu’$žÎô8/×ω%Öæwžù.‘ iœ»n¡¬$S=þÑ $2}F¾†EÈÒ+ KøCõ¨>CO€5À=Öz< V¬Ý2(³¼ºpøOìRdK Šaô…¬µü]ƒrë2,¶2jðÄgMÝ€M|¢Mˆb6æ—Vb ªôè"Âm¤êbfƒð²PÒÛ”öœ`ð×B:ã‚­ Úòr–z*Û¥÷£å/ m_Zço„ž;z¤µqq¨Ž^Úw®æX‚£3§œ<£ÖÒ”;Š˜yàSQò¦)¹žÂ””þdk³³Ë•ÛÁÙc­£Î¦=qG%6NDšßÿRIÅ•`ÎÂ=x~*‚ß ê‹ùæ MŽÙ#è>XSçÄ4æÑÔŠè `‹ž«›Áll;-ðfÉÀAE)£Ž?XAê ‘wåcóÚÂË/‚qC>Ås‡Ñý¥*з.¼2ë–`%jtJO·È8@M©Žîôï-`¯£Ð­WaÝœÊË=»°¦S‚RèvÆÒA¢œ ëíM”Œ°†tb ¿/žŒ¬¹Öd1£Î³PÂ^ ÇeÏÂĺZÓ9ntNヌ9à°ðã¤>4ñN”{ÿ‹ÄfºÛÿF’sÓ¢|¼É|2½>gœÍ=šÂ{Åvä¾çSÞÎñ}VøîγžŸö Ë^»-Ç/×Ô[Ö{rRL6ˆ¸¥/—D¸­ÈTEš, µ¹‰À„!¼s·QRgÍÜVýZðÌ'Z Ç,5fY¶Þé;~^F·RÂÀAàLÙô°qY JU­™âˆÆÆ%1žoûÒÕ¬‡}ÈðX 6.pžd- ÜÏí­õm[觗̪ބk*­¢³ïüøxLª"B«%Æìé›Kó~µmçèºG|T BáQy¿3ÝTH)-ÍÆF?¿ñÿ$iÑ×ô ’Ÿ²!·lríxÅéßi-†Ë eœÔs½hãôŸ’ëSIKÚëx²&êbÅ'#Ù,¦†—è½(º#ö®×¼òîMNgÿÿ}ü‡=× ò‹rɆ¦JrRMþaJ7ŒI­E'(-u]ò—…bÿ4ÚhÛV¦IÃÒû-“û¬ÍœÏÚðdÐJk_WxÓHÈŠ²$’´Ù }ÖÉœþn/wv_•ËÐTÊGر-®šUˆ Æ³%椴üÓIáuÛZ¡`ƒ²ðŒi–Š¿Wq3±²Œ´A¬‘E[Ú…É¥ÓàJðÑ´´5—â?Í>eÊuR3pÞ9H AÓÔ©‹KY ‡ÀÝÿL¼ «™R‰Üˆ˜ÎÜs‡˜ñ~˜*ŸÈ1 ðÒe1*´`Í{Wðåàí#Uèrhõø£6ןˆˆ º€b”¡ž¥ÕDRrdÅà[“©ÀkúbÒzo½"oªSC%ÓÈ.?–èÅÆ§tÕäÎHÿ{ˆ(G-j;Ü«^—Ñ,KL>ÂuìnÊðµj’åé†=²>”Ñ (ÀÙñD«ž$ú0urøKùd¼"‹/Z¼i ¡Ÿ÷þ¼-=#šC9…G¸"Þšö*Øs©ïfÞèq[¸MbD¾ú†Î®™„RâÔ`ÝPÑv @è#˜Í1qy¾]é8nuŠb-BI˜Ô5½öÇN˜ ›¾±ç¤2}2ÿ4l±èÒßÞöíí/NÙ'ÿp7æ¹ œãâ*ÛV êY¢á)[Npÿ@7 öŒ ÐÎLöJ]µ•”¾Ô¿kÁ§ -~x“ME™×&«)0qÎt$2'µi¸ƒÎÈJ`a6ä_ð[ÆÑd˜i½þD•zå1lævâùÕ1Þ[îÁHCEzǪ[šmƒ‚y…n®Ð°_ìÂu8ùô$E]ÿ ¢†Ì¹½´ï¦¤•5E4ôäAw]-ÉôÃH/ÉIR†]ZÂnÉwñy"w0ï‘ç §<2ÁÒöòÑØIv ÜÏœE—Ú¹{³Á?Sàܰìù;;ùpË­9A=FžAÓ=¨ošQ¢Q4*÷_ûà D.®×Ôìª ™Qª‡ÚdÚRÚnìz¯‚i´þýS÷>ê>Ø›vòè ÅkØ3r]1²·öâ©¿’ïê¾4·ø.þXìkÇA:XxuÞ9ÌîÙ”¢×¾Ûüš’$ÇR/hç9ÚOëï癞nn¢«{œ+¿àSUP¼‡°Ìéµë0VèÍÇvZÙº‹Kb/×zSÅ~¶çÎé<›§™”mßM¯ö1Ãé Ý"É$h#Ôl¶ñ|yÎ÷I1qÓ(ÿ_Sf\—yXm äÿ‚CÕ\Ê>Z Ûì!Ó¥Ÿ`—W±|b9P*˜dœ|@N0 Ƽ 2å,Kʸ„ä³ Aéýûÿ{0I6q>øî Ž'Bíc3ãò5ÕÖûê¸y¶Jƒ}¦4U#„X›èÑ€Êkº(NFiz¥1ûæŠ÷–·ÔŽŸ]ÛÈ|›Æ€667}YŠFï†9Që}rw< °TêE¾ÔíJ¨s«!ù듎a3 ¦'Š­{JX¤P¨6S³WÖX<뽆ƒl¯SJ‰¾uö··Ésëž\ijKÅüï úr7ï¯ßd&kï`¯"6bz©P3V?XŸÝÅô j’îŠE«®w5 ¶mÜW°×FD^ÅC­»ºom( ”÷ð÷kËw,–׿¯%cÛÙÿX`3WêˆxK\ÎU"lÅ’w×rófÒ@£ÿOB•<­åÄÔi]›‰„Ô>¼èÚ–S7Éð\л5o—Òlжt8È mì!qI˜©l®žê}l.ÎÒ!B½&Èzª€ê\¯êé4T™py;N¤LV.iˆ[[÷óìH°U)L ˜GT?5¿œãõ¥ñö#ðØãÏU8Ú~ù¥²Ô¦íýÆ.²„äØ}Øp·qŒ$Z:oóÒɾ"—>.ê ÙÉô ×ž$ú!´—N0d]±}n\Vݸ¸M`ÆÊ£ò0ÄËeæ/(Îr†V©µ.ÚN×êäÅ¡8_ˆ ï û.;“K¤ÝŽÿ(¢»r‚€¡©Äi€Q{ÅKX`.‘y¼WˆƒhŠà^í ›3Ԙǜf«ôÑ9ç±,Ä;kçR1L¹ Îfï²ÀâË´ãÑüäi©~AÄò_7ÄLsNAÖO°cå8¦ë•‚ÆPPÐü’ïBn“ƒ)¬õçw5qÉèFޤG®ÛPeõ% Ÿ~Èv›‡”¸€ºÕßÖÛ˜6V0,--.jÒr!£øK"^æÒU7QlºÀÉ ë†é¦—_G 8n¸úaeÁyYfªFÉë=~FÂD-v9`¶¹Ë»Ù´q¤'Co ìõ’œPƒÞtâd"Ï¡2Ž;tËÂè™è°7o·”?êU€¾Ô Z‚›P©‡Z+o›RéWØ$l¡+A)ï–;%|΋É>AO£Í`{ÖÓ êF¥lx«sÛÄu÷^ײŸáb2Ï*#:Ÿéj(cŠKÊ~µÎåÜ5S‚ÂÖ¹@²ô„¾î³zˆÊ4½¦»’¦É7Ã6j¶ ,j™S×.¼žP½·Ö*^_X5§Ðpó\òÍ9"ìC+¬ xå#ÉEäoºÇ™ýŠÊ*fèbO³ÇŠ©Öó#Š#é‰ö!%™©öF¹AWAÁ¡§ò}á[mˆjl£«*“Ê{ò—JnãÖ\)©°wìI¡šQôßIç*“iu+›g„:˜æ’òäâ”\~–7ËX)úõítµ1]ÓM}gWZ ññóW‡Û”±<Šv!¹Y-Ë&:É·Ò}ÆÌf ÿÿÿy€{5J5læD{ôÁ,ýþ2ÇWäs3çN¿wÿÆl]›ÙEé³5¼>ÑŒŸpgYÜò ±2½H¨ ¾ Ä*ºÁͯ±î«ÃÖaK>~—ñ s~1°½Sùì,y¥³ÓÿZ7:ò æNªgPtJcZšÞ²zÛø©‘>Ü Ì²3£ÜQ­`j]õij!Üc†cjÚ¡àmšXhŠïã‡Ð÷ØEÓÈ‘Õ2‚˜×¤žç£&)ȳ$¨¶‰ƒ&!zÉoÏ*׎òx bÉrå P2Å&­‹Z¥×+¼¨-ÍnÅ£œ{ÜL::|„$”{*UC—%ÄNL@—¥–𾚉ß,çáÐûăÙëW}+'ÊxåTÃ…84èL+¡–ëÃYŠƒ?Ï'o!Crç~3jM9 Ã…ÿv<Ø»uV‰ûo°y&†] .ÄEdé«úY?É1üéçôx‚îÃùBtõ“¨3û„iT†Õ{6Òü¾l™&®,]&6ý§Šã*†÷»µô6‘ZGþ6D7©›´e,>*@tÚbÝ?w¦À‚íö¢‰Ô^íËáÖiµN©Râ‚›{Ls­zuM÷“ÏD“ŒE¤ò£/Öà]GO°Ë¸ûFþã•ùA‡ ‘^EξÎNÑ&-^4×i<R óŸD]LJ;w@X$«Ý°fëš,B6WÇp'׬¡uË+\O( k¬1\ðñ8èÍ.Ûw¥-¤vŽ%ó]\k£ÿXGÞ>$-ápß³c&.[|¢ðêçÅÉ“62urF—Wgú7…Øœà>hË’Ÿõ¨ŽCù™÷BOñCÜi}oÑ–$1â6x”BwKÚŸY4Vø+#BbkÓ÷¢ûVÃ9ST)"‹â„Ñc²oÚ*îÆ·<×a $›öv"™‡~Fýf=/0†x˜1Äñ°þ°éõj‡Ò=»Ÿ´6ñ)O°q­ï³bÄh/bz|xŸÓ”lË«d´;>^V£}”;¹ d3û$J'·Ÿ\˜cñka¦úÍ;;“»êõC¾¶Ôn7~†ç`€ sq£–?"2inIƒ¿!þ¡ŽÏ&ÿ]?ÙýÅétù›xÍbÛÍ]íú†øXâB—P·çr>¤³j'R­‰;Œz¨tÍœóîäÑÂd6€v;"™°#Å/ãtý Lëœ6蔨•‘@€ºìA~T•{_Ób¯·2´Ñ¦ˆÄ®ÿD<}%¬ P:lè#¼}©8“×íX f¶×çðô©þ…ßÃÒøz'gðô˜þÝFÿpïGÃÓkøwåü='?‡¡òŠCMîÕ`4o# éøÄÒéÇÏ8^êi¯ÝÅ\V.`6¿ÒΚ•z»dŸ§„>?·ø«ÚËjH&ÁS fbÍ6ð/^`ÍȾˆ´ K¸XHó¦tf'Ô”¬,=­Õ1о28\4æôΞÔݳuã’>P#QŽ#¾…šÂ¸‚›ò$›etF8õ„MªÍD #RÈ»3Þyú¢ç~\zc´k…&)j üRV$k4ÊÈ¿³.D•Á:mHL6‹à¦p4S´cÅœAØl³/ûA¬Ä\é Nè†pÄ–`åfݸ~Å.i9VoY‡‘‡d•ýøì¡ Fç°kR݇ bñtc½Ä0à W©ñÞÍwùäÑWt`²¶òF­™þí„&0ŒŒ º¥ áýXÁÐ뉆CÂ]ƒ‹Ógº] ÍÂж¨¢Gê›HÔ¾¹—ƒ5A÷#@¿Üb§Û³NIJHÜ*ck£ÎšÌ[× ùß@˜tÓkÛ0ì¬èMîkÒ¤Yü{YØ-p{ ;x¸›' ¨]Œ fØÙ>CØø R¶#ª5®¢²ÄL?ZÀ¤mY¾l ¸È·ñ¡³…ìñÃ;Ë|ñ'Œ|@,»J¦åoyèg»\b}•ããQï/ŒU3çÄÎè››?…°+Ö'»PàÙŠgT¤ “*ÈÖUHX{/òÕ²žm­D!wÎÀ‹«‚_\¤{éœTd^H!¦âSghŸ¨ñhodR[–¤Ê26âmïmÜQÃir ª÷;eÆzÝ DNv¡%úpOˆ€¥³}Ø [f³[Ü„ƒŠÀ‹÷+©ÚOY@¿d:¶ß^Yy_±0P•ð\Uf{R¶t×Éj; ªšGf®_Ú[PQrVÈ‚Þ:4&Í 1ÂüzôìÂè{‹%Né o¼FçvÆïJè@¿ç†Œã£´ds'‚ý"ÓmH&ªÃs-ú©âe”Õ§­V$ :é·,‘£9‘[4M÷lÏwçùØoYÃá`0[;b “/$BH3nmñ»¼œZ8Vÿ`ÕóòÚ˜1Ú§¸ŽƒUÌ^í‚!6G1â//EBÈÏ(YrK‘®EMtÎÏÉËã’·‰´f£ÁóΈIŽ*ógßoƒòɘ–ʵ.‡~³ä‰ú%Aæ•6¶ €c·B·Êгü&c³Wû.*ˆkÇ/Þ]ÎÇ’Ÿ2±Ä@åy ù ‡þGÁáè·s³tY$ìß+Qr…–b²"ZºàÒ‹aÑÉј5mãš*åÝO>Þsý ¶ aùߟ¥ó@¹­˜¬`9‘Ì7ë³ðª*?P»B¬G\Ý«»µ |ÞTïrõßÜ2÷¤‡S2–Œ|ÙÙ®9)$æ×’Ö\¦ÌWLkÃû-¾s ß…_Jê]N/·V‡Æ(c§ŠûlüŒONÛ¥6´'™Û@ûíP†õu›7£Ë"’ÊæüÙq×·ZÖdŸÅŠp £¥•ÉüŒl: îJa’⥣’ÉÚD©3À;õn€ í$6Ÿèœë͹ÿöÆ8M' T5±zÓ“—ߟÈã÷ã’Ì·¡N6 |þûýf9X'Ê Ô»¥Èr™™ 8Vz#lßµTéè¼´êV^¨üºêì†åÝÔË|™§ùþ$W¯üD‰…€!Îñ›?åÕÌíZYetA‘–¦À¹ÿJ‰?æçÀÓKŠ3 \þÕÜú>šJ37M1U †TXµDQÕÌ÷áØ¾±hÆœ6ÀƒÀiÀ]E x†”R°³eº.´ Üü–d(¨‰ê¹~´õ”kH—‘Jó~°Ž]%¼Ø*W®D†î¦¨àÝ'ðd,ÆÌ:GèZêÓËhw†Õ‘» Á¥ŸÑަ}·¬ªhºÏ«+é¹sæ#êÔØ(kjÞ¼¬‰ýÍØ±"¼n™“k6wí°–á›ÄåyãÝüHã{1J“H\8?u™q^ÀÊDqSÄAwëD¼ö ÇB“èïÈ…ôÍ)Lr‡1¸f[Ù%ÿmUT\¦2p/ø§Êú_ñ¡_Å­Ù~A¯‡mÅYKÆ ‹CU‘Oö ÷fBv.;Œþ©‹p#åðQŠäb6Dars`—{5;Av“ûiS£&6˜né’ÅÞ‘ íI;‚anye 3~KmÖm&£Î<â%±ÿ€u$¦ jJ±0p-ëq 1Û&h˜wÊæçxl2û8¿Ä~ßf¬>ñÿ 2#XDùCÁ†F­ÔH>s°z¡Öï7ådz¡7ô ‰]”NXÂ-LÌ"Þd9‘·'cÙG;ã§'ü~xÿþ-¤À×,†áe ÌÁ}K{„‹ ö\ÍT¡Å»õtseCÚÞÐ:3©¹«þNQ54 î$KÈïU’&2ª_»Ü༠1¹.Q4îüÉyÈè4¹Á¹¾ÀEwnê²B9!-ÙKÁÉý»¬V€ÝÁüO,¶ÒqI2C²§L5µ!¬£ˆ0ã¾'‹Û\Oµ²!‹º©&é z¯öÁÉŠÑ‚¿éÙdtHWþÛe”£Ñ±Ÿ„Ù¢!%,BVAè>«+ª¡)f¨ŒŽ+ 4µ):;›ä¹ÑçÕpA½ð?îüÉDÃ1ßXëÉÊkÈÔÓÐf‹ft})ÛG9 BÐ ïW‚OÉËC ©TÎG„3¯Ë@ ÿN=`¾÷$ë÷C¤Pko®Å.»&v%(Rn«“ˆuŠ"ÜÔAŸõdr ܘñE£Á±.»h‡óxv¹Ç·muYëaÈwe¡†ß¦{‘ä à‘~œJ«ûÿp¬—p)N¯¦w·äÉÖD«*¼t¥Vm&ÔD¢íVU‹Œ¢fS“ÚÈ'`²)'wU‡ÜäNZb¶Ç8„óJ ù;G/½Ž>¬Õƒm°,ÖàUQ²iYnYɃ ±cJµæHSžn¢Ò$´ï7º_]ÿR œ½ª8<Ñ`ìN4Ý8Ç”H#4F‰! £Pÿ0¹‰§Ð„eÿO*=”©6×q‡Ž¹¶¹øLùhâ/Õgc:`gp=éÚrˆ§]î9»©‘»Ïz¬Ìbƒ%ÛMÂ9sgŸ22Š2DhæÆØaõ††Vùƒ_Äß,KóßÇwYÒï€R˜‡²«·É*‹x¼ê~.õ!Ÿ`œ¿?À§ýJ2qÁ)=*:Üþ+ÝfóKÛrU|žÌŠáÀ>“f¸YxWƒìp7„MAˆ´×ó<j[Ö‘œ‚fK —A´tšWXøBØ­bºÒÌmEÔž±õ™)4çø“)¤’±Èëëo€¸Z 8-ø6”šõè¶9?ñXib†}¯ÖA~r²l YMã de³Ò~“.S!Öh šjüud/ï3Üò}ð'$÷L®5SpN€h_æý2±¨2ÿ¦}Æ‰Ðæq ©Ršzu£ÄŽ<ôu4 "¥­ Ë7o£ ÷|./ÑyšÙpð-ŸCy%3Nìt»[v-ݼ0økeù9 ÇÞÕ|~—2ƒM²9™½#„S3ýBß3±—b»$&Q_`Ô[Ü+YeqèlN9†!ùN¡ŸZ¯¶g²†a¢Gå K­ï-7ÿ&>L_Ä£Ëå'O{¦3-žÆ 4ƒíAþO +.—?<¸@å•Ï„êrºNAtéÿA¡œÐfúúþÿ8àñ¡E¬§ÛV@AÅ^‰B.¸Á[ëÕÌrŽÞ&JÄ5T¡Žyo€éýß ”}ôëbÓ ~YAÛº¸ òûTºª¿åH…KÂ=[4R”+ŸòêÆ$Û‡£JŸ!»ªœ´Ü¸¹fböÀÌÌ;D  ¹D^c…Û ¯+/à5^6A]  kòƒ‡ZrÔìÚˆz´¤¤ ¡Íœ¯±ä†°&¬¸Æþs)¯Jè®ÍwÊŸ:EÎS´ˆ…dÉH_ÁrùTwü3Ðúö— *~}Ü6C™|ª’Oš>¶ãá‹`?ò³Ñ"ãM燯ˎ 5li´¼ƒ­ÈIèJ$“½ŽˆM›0ÆRÙo,.AZS¦€ã²[ws+-\¡¹ÊYŒTII¤UËȽR²F˜¿"+ 6CPcsú 8Åò—†u (CûS=²cë] úêÙ`;@ËII­¸¼ÿRÃç?úðë-¹ºÕsdç'ظ+ýaׄVSÆ"ùªÉ>°¢y·°ñªWäíê­á¨[—™dÏ–ÚW¡Þš!€}‚ tÖYŸÔžÙ¶·(cäå ’ñÑQ+·TÞS„IûTÁèê08é.B‘íç›TÊßé¢RR§ÞH3¶¤82X‘>²y)ÿëÜ«u?D?÷‹ÊdW‚øÎØÖŒÔÇŽ–Tá…×ã"RŽ]­=‚ô BŠq7L2—†OÈ@wè~«rYTÇV¨Yê—àV‚¼'DÃÞ|0øB½Iûl¹Ôy¬¶…‰+G¶Sc½×¼ ¿~Uø°ƒ4âDïQÝû¿ö…WHáãœüUvƒ{~¯|¦Q'Cs7 ù´g›]ÏÀíEÝ›çn¸Àòäñ-O›7`+3‚ŸæŠh³Hˆ»X27—kAí& ay³¶!ÌE)þXÛÙB}G6é%õ-!SªãÛhðPH*Ùu¥A® Ñd )+\ ¡à}õ\w mÓ:{"¡ç•‰y!˜M1l…×g°1oÌIˆ{È-©»ÉO`‚ *&óµžíÀDÚçcf øþ²ÊûÀ‘\7 %r&ƨ<¥¬C½ saÅiRƬCÕ&»å&VÉòÄioøf7q¡à¯<Èõ‰“hÏ`7ܯpK³=ôX3öÜÝ h2ì÷oâ—ööoäÓMX×C‡±g »ðèJ€¨ßý³Q†Ã.Uão*Kv/ï8"Í×Axoü¤¸O)(C×> ÜæÈ,ÐñÅÉ:—ÛÍn’š,²œ|/io¢Ëõ¤¼þ¨ì²ï-Üù³ú}úØzð©b­Ò?9}¿gžqmÆk›ýRJmá{lFËrè8~æ:úß÷bÐñL’¾°yÊ K„ÝÂÑ&* ê¹ûþøƒº¤Ö€n=‹`¬ëBrRX©îÂ%¾Ÿäïm¨rŠs¬’$)„Å Ûæ ¹¾,¢Àb˜ãK0E*âœ×¥™|ô3rÚÇ?Än4è9#¿;M‹3ÊnƒP‰Ú¢ŸAp K."ò1À|¤íûÚ¥Ò랥K£RÎr¹åù¸¨H1$.W”EÐËlEŸPbÓ 6ÁÑø`©¨uþÎÒÎÃ<¸›TÆD{RgI¶ «U»«¤ñ¸÷°¥µ ÊôìKÅÓA¤–RÒùJ]ôkàé·oé$ßóßÜÓ£6º ¾16µï=P Íß>°–r“Ù.yr=ub‡“ŸeÕâ?Ew@ ©\ߟ,hÐ_m`²×4I‹¨¤ÙQÚ„Œ¾s¿9®¤ݨÌ~u‚»zéßHÙò8àÈPb ÈåkÜàvS–9ØŽ6OÚr´‡Ü+û95¬Ö7^ðªÜ†ÙŠYv]Ñ!Ößóª–ÉŠ(ÝÖä’ór Çß1Pµ^W`ãA“æÉÏÿe[©‹À,«isªXz`È¢Ø+Ëg¶ÆÚ1ø¼Wò7Ôc Y¥Ë=Ài—0¨O–õ/{ƬãRA‡2JÿjCç©hjæÓ’uÂóàÇÄP‡òÀþ«³†ËJ6_>¶<²îg&lxË^b¢ =ŒÌudÒ“Ârmµf5I‡S‚‚¼œr{ñËÑý`ro#Á„|¢ÝòŽvð‹sb©—ö¯á®p„ÿw‡è*y­¿ë'ŽðVÀ' NvXÛHƒnöcß1?@˜äCÚ:(#ÝH?%ïÞÞâ)?Ž€6×cukáö ·ipébK¤Œ€°Gr±½^Û&²ŸQX‚q»|¡g¯¤èò÷sìÿ\$‹Ü¬Ih1ïÀ°lN-ü2øŽ°‚ƒBA*ho#žÓŸýWTo?Eä}pŸàé\ÖŽ– Âé…"ÅÜ»~/¡KÒ£4âðî›™\6]~Ë4ÜK‚“k076\ê†2Ê<È”aWÒT¨mTI«<òÁ¼ø]{Ë„÷w4­èZ“߯&à)ºLìp3Ф·Ä¯ÀfÓ¦Y‹ÿ„@6 –*¹<ÔOá}e¢•mœ¼C7ÁÝæøè]ÿ=’ÊuuOOÆ©Å÷G¸ÉòœÏùŠiˆ“eIÍ­Q$¢`A™'a[‹‚¸õ5¿s¶‘=Œcòp™"ÊÞÀ©¨›UmOà°lëã­Ö~PàG 5„”­óõòéß:šÀš~ö5p6¥¬g³,?ì^)–ñ¦ötsáZ`ª©¹Š¤i¸³ªøœŒèòx®ÐÓiVc& Cš±3‘µ7ÎT–ñ+µgÄ+ »Z @}8;J%)7í¯ÞR*î¨æ¬S!gìÐF7}GKmS@ÔXÕ#,U äk‘fØ«Œ¯Ê€ ¡H–Û"øp Ð/q?^t—`ì—Þ¨“`Þä–]­åć ª¶4rÚ•Ò‡i¢PÞQŽ€ƒ8ºm˜kHëéÔˆÿAÿT‡4Êcm掟朗ÖÓäÞ5näïcW²2XI`òšÃõ«Ì˜\ų¢K’­ãlÞ©¨´£ —ѱàù±MF$\B†˜5ƒnj˜÷'DØ`µB!Ž7J…q¿ò¶ÑÌZsõ£ºðN@ 1å:P­OuÓˆe¡é ¯¨ÊWä)ª!Bþ3H­÷~Sûàõ&äq AZÛá§d¤þóný’¦–h§×hñ°<•UYrST±ðoƒ'+Ä8'ijxQ¾6j ñõaÁF¡ö`vöy·d9P(έ58/¬Tíà`$¿¹×LÂfˆãí®1ߘ‘p0ÆŠô$ <ä uêÞÐlw|…*©Úßz½€GXão%ù±ƒ1èkͧ0¼®=ïQÄWä™ ^6É·¥Ã1,^Åe6‡,&0v[+ñùz9L£"H•í*J%õ`™‚óâ}Šo7$å‹„ˆÎj^„ñ¨Y<É8÷ 廢f˜å[‹ìë³àOwA4¹Ôz½³/ÐñØ—‹Äç|hæÚ,|CN Çü+ÿ SŪ¾2¿Q}²= oú¹EÀŽ;7=å°EÈíl¤ÂÈÛÅQ²Áæ´{cE#;pßÞW—”‡o'ÙÈMä°ð·ûNJ†Å›`;鄆ŸyÓárwc¡;ŽHÇ)*» "¥ß?ˆ“ôZ—ÈA Îå(ÜÓø˜˜ ±_˜»ìûíMnNœ®›â$VÕ—*ëùMü~þ“!†rÛà^Zø8…¡"ÉT²%?Z ð“~.?ÖYM+°`x‡?%®inß¶uã…Z<ãÍ×Zœ¶7<'òIÑ©¥[Ä2~àr¿gÚ…ñ 3o¸*ý8¾8eT²žiû|+1¾cHdpŽå Åøwúk ›ùY˜tPÏ"€?Â_Lâj,c>üja²b>¨Š˜· NÀå‹?YdŠêbí¹œJ°!Õg!lyéÝ;p|Óû)HècfÀ¦ XD8”ð#{¿Gheܤm/ôwƒ ¯~¥‘^z¢y†'Ò«évŒlÃÒáNx›yÕø …óxŽÕóX.‹ù72~=l^s EÙ„Ââ|ÆÕ¡ÀHÛé›ié§&‡<\fp¨¤è±W¡Œ²-BÇœ£Ã5ô²)$¥Òqõw¼DÀ:g| ‡lÜü‡®x7wO ¦UÖ¼–Ò~xH°;Šǵä«Ãr _]•œ“R×ê1D¤«"ÙIA#<6z…þé|½Âº—àjoѲ~-ö¬A(Ù„¼©i¸9oküqÞé­ÊŠ~ç{£†£‡¼0?(µ‰jtPòBepGœœÐ=ØÛ ÷ß3ŠW”úÙP-Kì:´‚Auñž ÊzS„ÞHߨ¤ëŸß×ZØVŽ+*{~ÿŽ—NÃlµ?.&ØÂ÷Þzñˆ;ÓçÙÀ`T‹ë%¸Æ61N×Þmò¡óÏYØÄ†wÞòÁõ‰Q…Ø9¼H9T¶Â9.¾ÝÏ÷=iëîÏ‹˜³¦ÈN–t¡þkŽÊóæ „R ¾±Yp!ùí 0p3o qãùDAˆK0{½øl (ð“f&ºõÿSŒ¸ºå ¦¹®ƒð¸{?*t³ JÆHKläs.,b¸ñ²ñÉî¾ÎX&Ø+ámÑI6ý³WII+¸ã Ģ hªO+(@)È“Rmd‘M´m¹ZY\fšèSÈ ýDl—kQ[¥`ÝsqÀÖ|ìÚMË¡ lDæ‘N–­Îú¯×î GJ0â­~CŽj„NR3û5x˜É/»À˜}v‚l1òy;„î‘)ÌÚøÍAk¬üqÁÃ¥úpß%9ÄÜÆyÒ–'_d)¼`+Ó>N¶Eåeb¥ºNmž˜É+4yÎJhzíÓXcÖ™.B?w—W—Mž58ÞÒDz@ð§YFq–@a¬„ކMM{ 0å…¿8e÷†º~†‹aø>¿gÞHTµM‰E»üé-¤ËàtÀQ'C£\TêЫ™í«áœ[ŠÖ)F2°ŸÿMw&4è͹`Ç’ˆh2Û儃ġÒ[)=ù"4–˜h¼¹ñpD{DUÃt{0-ôîÁdÞ-¹m*r&Q-y9>빇©PR%¸KûðN%óÛ›ŒLyòA¼ýp„ð‘[ Åák(Ž]V­9ªæÿ~’­÷U*¢ñCFBÿLòÆ+Ì5½d©­/ËH¾ÙùÀó=þsÜz3þiÐù«¥oÜŽ‘àòË%Í“ïßâØ&[¬2»¤Ù!… ïÊpÚ>2ðƒ¤ZëöÈL …ÆGì¹:d¼Æœ®ÊHDŒR"%^ q»ØÿUäÏ3è§J’¿à`-Õñx!1’OÅ;éä'Š"^÷XÒQÈX%ËI¶J6ÝcŽÃØç©Óf!uÅa 2ºCûp¶cE¯„“Ã’s±í¨$"½ë‰ÖéÚü¨ŸM!f²u1z‘wÚÙ¹]v×xÙë¹7žø)m¢ˆwõýWC´ \…‹ RKþñ{6;½eŽ„­ÏFcáY_»¿úýS‚nÞ :÷ãi ÚW¬H¹I¨(1ãZüðg^°ç âNRÍé¥?ÄæúYü L³k4þô†fDè"t͇^P=6o‘¤¨°”:ÁòGÿ5ùñF¥ Ü£,Â~¶>Ÿ…q |úÓš•Ðè\\ÉÞiJmqÿ2AT÷ã³a?.ÈC£ W&5l^ ÖøçT’Å<˜‰aÒ_¼#H:!RÏ™õl×HUº•løø¥‚¶ Ozâ²µTñž™g¤U=xÅ“#}lf¨©Þ?³dõáÔH~x†W •#²’èÎ…>Þj/ ù/ý•ÁR*Pˆi½zŒÔÌ­ï|‘êb±&ŸŽæ×/2(+å/ m_Zço„ž;z¤µqq¨Ž^Úw®æX‚£3§œ<£ÖÒ”;Š˜yàSQò¦)¹žÂ””þdk³³ËKí7•Ò'ÄoÅ«ÿt´ 0$ýRÙAl›ýÝ$º~UK²üzP+õ…ÕL;’Yz9׿Šà¾½¶,QkÍÝ(Y[÷8Sâ«€sãõ.ÂñSHÌõ(åêC“=‡g3g$ôg?1r¹¶Jãzê/õgÙXš úôÛÖÔw®WΜ­Y„':ém½§Tœ¡÷¶åÄ>ªéXçìm/ù™G—훦ÿWÞ û_v̈lb9ÆVbFk©î2—?ŽUýg¶â~À™¾þ ·!™.0§2å Q})‹'1ø Þ„uþ›þhZÑŒÐðN'šdpÃöºÁ›îI€;Pé+µÚ³&ža¥´´Åi¾¸ÿ*Õ[~+8F\ùè}ÍV)N¼f¯nÂŽZq·þßùàÝ#ékdr:hÆ}Z}í¿n•’š‰ºU±µ/ž»w³a4.“‡º f·¸GÂÝ•Lѳç]“K„],Sš[¥ò¢Y~|˜Xcð'ˆ­øtíKHÚ…|YHZ_ü„þÂV‘Ád„j#(E6;o,]Ç|ü›Ê¤ß’äîeÊSŸm6’²#ð’—åýˆ™^2¦[ê?¯Gf¸\Ý?‡DɈ‌º ú…ˆßN(H@|sù„Üž ¢€­—þçç$õ»ÄGí:¾lPy¨S.BÎÎ囋ÄðFBý‘DþŽSM#Êrk‰BoÇë1ÝÖ²kõ1o±b¹gÁW²Ÿœ;ÿ/_r ûèªÛ<öz—Àô©Adœ­staŽs‡;9LÒ3Ôe*?ÞqÈ9††sO;» 1Ÿª’ð®„$/®g[,éÒ^znCÜcQ óÖrÜ•b›d« ãXlU›JŒ‘¬diøW¹š Hñ+ ÷|OÓèÆY(9Ó}Ù…D'x¾gí-´)ò$ÞýOè°ÄVq œýï=ámo¹ØäË[%óƒ)ÐÓõÍÏ[Š kì/Õ0W¼ùrâõvÄ%CCìT)T³QôRæ4×üí·ìê/BÐú¢•ir ÕÕÆLp¥‹ÙÆA†ºñÿ$iÑ×ô ’Ÿ²!·lríxÅéßi-†Ë eœÔs½hãôŸ’ëSIKÚëx²&êbÅ'#Ù,¦†—è½&I8'‚Ã%Â\ Åß÷ÿÿ˜ŽÞ ûuaãDןüÎV úy¸¬?˜æYª ñC,óÖqá?j¢`íùcýËõïË®C!fˆa(àt;«|í,Ú ;h+j¢œQض·2†Õû%åcn‘V5*$DO³>ã&©KªyXŠ"K:cËR·”.LIuöõ%Ë‚ÜÃÛÊ\gЊr—­Ó”¥NíWJµ³]ë=#œûâd-[õ1èÆ*²¾k¯âìë°)šRü‹ ‘,@&¯”æqÙtu:¢,ãC‚  HDx©!lÕ¤VVù+Âr_pm…ò¡FdKBÖ×” kIJwöš“‚2œâ–hérZ²yuÛ@Æ©Eþ=•i‰fe;õ’~4»6¦‰4“×ì- ¸ ]¯qžø½Ë°¡Ìonï¾v½=Ûñþƒ-ÕO °zøh ½U¯Ÿfd„nAX–ªE` ?qÎXT3þb¸õóÖ{Œ ÏièêL£&ëf\:ûÌ”›”®Y@qO…­X«$”æ†b…RŠ^ˆP½Žj;œ²Šóóífý{¯“ß!@=¯ O=­çÃñ©¹»Ô7Yæ7þÁÒç^?oƒا)¿¶¿ÿ`G­DáÃù£CÅ'V^H ,„"ÿŠeŒöŸØR5©•T}jeþÌâ!ùt=à×+ÚÁ‹ô€_²×S1Óo^•häwhÈ[æ‚6s±?V±Ÿ–hVÀ§¼«Ë$c s; ~½[¬Õ+½¾#-Y-ê„Ys>–F @hÀ÷¹éžõ™ïBÅß]!Rxÿ;WëWŒL Oùå>BCPC Ú¤vð .y‘$(»€"-u~l™7û…žrb½€Wø7.<Ó/+¬‹¥Ç/ÔÆÿYR8ÞÓY‡¾ÍfêñR¢ì¹\¢Ó<敌‹øå êj¤@-î2¶–Š+ö•3T¼ÑâP ß Åÿ>;Èš<œÚxÅÏÚPISlÃòëç÷«øá"hmsäüÓèéC¯š@g í×Û/iƒlÝ8-;Q Wr[ Õ:üòú6’89Å#þò/°¸íŸQE×úÄ@Bs/ßÂsä/W‚c®"ß úÃu{ÏÀg, ­ ¨BùYšM¡"B'þ—¦#Ȧí@-}òã»ãž—ŸÁZcÆrÑþv1)Ì&"‰¯Ýù}ß—«x÷ñ|yÎ÷I1qÓ(ÿ_Sf\—yXm äÿ‚CÕ\Ê>Z Ûì!Ó¥Ÿ`—W±|b9P*˜dœ|@N0 Æ»¼RÂïâzm Kÿþÿ}1SeYcü–ŠEyu”r ¿ »^åÀˆ°Z ÞÀ¥ÊÿAhÕÕ OþÎÝvÂ+9œ‘ûúw?Ý­>ˆ©³MD* ÇÈnÌìZ¶>Ä'zç/^#Z™4Ó¿üÌ6¢fü¤qA@!j¡šd2µ£g?¢¨Ç^¨©U…n˜Ë±jIMù—ëß?'˜C|ÛäMZó³| ¬€†>ûIï5ÏàˆðVƒ/]tÕk ålCo@+Kš{¡Äkż$ÖÖƒ6Øó†'Ú‘5‰ÔÍÑ#Á™åó=‚(Æ0 œûë§KŸ óNSëèw¾Ä¿]i#UU›mrݻҌAß Ý…ìŸ¢²ÇœÌ«tŸå§{šçk˜ß-rX‡on<²¼¡¿¾0Êk¸æ&3ÝDzü<•s.×Xúï <-ÛžcB  ô’>Y ?kW°Aee`Oé…\ã@SIL„&5¨‰¾—ç*“iu+›g„:˜æ’òäâ”\~–7ËX)úõítµ1]ÓM}gWZ ññóW‡Û”±<Šv!¹Y-Ë&:ÉÒs& 0ÿÿü®sYk÷z“öÄ2EÞú`‚jñ÷_Ê„ªxécíw{)#LΘ?ߨ–èu‘6QîÇMjù'jý•/:Lx)V)¹Ï‡*rœ“ˆ²?á&?®ûY£<ðð¹7¿ÅðÓcqÂHõ¼íâ0¢äK…’½9?îhçFë6f;²ÜN>cuË\æj“ ±ˆñM¢ÜÖ“Æõœä9LtkW;>ÜþPhz)R0UÂ-@#…¡Fòt¥ ªê?r peЗWh8Íþedˆ©øÄF…ŠñÉøÂ„ç…݈Y04v©ŒrVÞñgBò›øJ­„JÇfH„væWâÄQkc‡vGY&«óûŠƒþž•|€BP”Aø]3Ä무©¬¨dÊØŒ»ŸtK3—oôóf%‡“PVÃki®%9 7Ø©ÖPM”[´%áZý’æÆ ÓΦ$â§XbCSzyr]3X+#5ùöOH;£‰vÅŒéü¿â¥§» é®KÓ§ä*Vœ4¨lËHp7mÂÉ ±óDì€Ù ÉZt^º±w瓨i ²ù[óŸ_8­Á߇æeåC(r åÂ9Pb‰. ùՃºAËæ€q{-oO餸&$X¼×Äv u´,æ•!¥«¤ÒE•ryÀ¯c¾›sý£¨HHp,|q¨/¦ŸãfœHË«`uˆq“IGß³9ǧYífRi~çmQŠ¢¬ö–¥HÔè"h<´fŽb~Íòfï'íš1êjö6 )”ôÚœF\† p³ýÐlö½ïpÄì¢Ñ~Å5Z$¯ä5S<ªð…š!+øi£0PóÞ–ß;­ou•Žý^|âîx¦ØÿA`V9]  Î-Ôfò¿ªQM¿¿xÍaõGr隈„ÀJúåHœ…r´ð •Èî÷È«÷ ‘aG¿z›Ò;L/>Òc`=™OɵÎc»Íç¦T°³dqg<™À‡_6 Cóçëù>ÑðÇÐWîÒùŒc¿qH0C™€¿t_Ì2N"ôóù«_Ûß‹Œ öæ«á6t,ð5!Š9B‹%mD¦sÊû ×ÿO”ÇgŒP0t¤ û~WÖì›S aZLõ©hÆíÕõ„ïPˆ$^=I+žòà?Êɱ½àá­Ö“Gm жÉÖùJ~591 \ãÂo;\Ù–rx¥žZ'ìî$9º<®Ê»«#§ŒU×Mߊ£f /†Gzçðô©¾Þþ‡£ÝöúeöúJë?‡£ðï+ÃÓƒøwáü=&¿‡¡@õæ…žÔÛq2bGìŽé›A`#_>kÉëµ?¯DA"<˜»Œ·+ b€²uÙ¯zL#w“Äk)Ÿ¼±Æ×·ždú,®gü]]ñRåk3Y 3ÇCe7¡Ð_j£ „·‰QX¦µà­»ÌJL?FÂ.¿:ŠyåDì$Dx“‘ÇŒïm ï('£Î,?Þ**ëá¬ñeß â‰ö‡Õü[ 䟫]9¿qƒ‘VݱëêØ~í°€Øyωuu~;,¿ø<>ãZ†¢¬Hsƒ«ÀçÏ~«^{'ÎÉ ë”0º1NœTnøAÎàzðï¼i|d å›âê•ûÝrkÐþ ÑÁ6ò™6Y…7Ntƒ`£ýE"…ÁÊ?”En“ﯤ0Û/$\{ KŸ ð.≨ã“í‚ù0VAªîI]+ö®6¡Gs ågAî,dÍ3²¢¡ä¢õ9ÁSõö¤ñ?ÁõJxX©O÷d™x‡3úeF`OTÌ"Ðס¾™)(DX_ K¸Äõu¦÷“XáH ݰÑ, 8hlE;„#‡Vj/moí…8Íì0862™ó_cH¾]Ü–h‡µz:¦XŽBo€n/)n›<5¯É|»KeëåQŸTÓ+•$X^i ¯œýy#¶°YØ7‰lÂIwåliŸdõyÃ6©Þøaá£ñmÕ5 wÅY¤Éžíxæ­EbOçªÀª=ù_JÅpéä*~]ÈÎ$+ùªRQóõW/;‘Œ€j1Ý–Œ,÷?£¦]‰¦ÂUþ.ÿTÑ aV6âNKˆ=ƒhU.Õxóh‡CïÞ_ gx×Ù®ÓtÝÐÚÄ@jÅJ¤1̲Lß|Ë.nöCQd ‚Þ Œ¤là_Ùù_UíÄ@ˆRQ"¿ç"\  ¡¢±#ŰyÍýÞÉuwSF"•Ø ­µNÒmè’Û.(tUȨ鎵‘ %D“UÇcðŠ©>£`JвacŽ)e[5ª¼÷¥ãýŠeAPñw¹¶;™Ÿ ´·/)õ˜á®¾IÆ °ÿL(!'ÛIjß'MsäY½'|Ìr'R …7â vä‡ñêmruCX¯ ˆU;²¦ÔüÆŸ[Š:Ýí0è%P %ÏÔI.YPŸV=GDúö…FXfx†§ÜIsáåö6¶ÊUôHºpßÚR“lm¯­` AÉÚ„„ñ¬“¸UQ<`؂ޗüu¼½‡À¸~%Z‚°‰7~U´ÏÞ¤õ²8hl¿©±:ÔÈÃÓQm b\å% Ú¬EV˜øXÄ£^7UˆwÁÛA¬£:}f¦ !D°i0d´ºÑŠÒ&HÓ’hx» e4æ2€ÓòqwyüŽj'ׇ¿¬­Ð©Ã$‚)‡jcót‚èBV¨öÈÿV"ËA BÕ“ÕVN%› ŸÊw—ñ¥æËåR¯wÎüLÿã²:Iy‚¡¦9²qPb¾ÌÆÏìÓ(š[gŹm^9&Jþî{äºÅ‚F"«Fh˜aë¦Iƒ…q÷öz¤µi:\tÓ´SÀG‘¥ò<ù„À.ùœkV‚ Ál÷5 +ëÚcŧ˜,MØf*Ròy^ðfÙòÄì±µXì‚<Ã’š…²’¡bv¤ó¿ú"Wõ'E÷ÇOy÷Y­{ŸwìD.i”q©2ïÏ•kƒ—/ë(÷ v=‹tÂWböñÄ—©k~@Ÿ;Ü’@Í!K‹JE¦Þ«˜L®¬'á{±¼$GIr‘nó¾UÚòq²iS]å-•Ì÷"kŠ:pÆþ_m]F8ˆì5ÆK‹¬/¼m6g#£Å˜½Ûnk*³ÿÚp«yÅ+º]@{œ'Sp€š§üÑþ•⦀pKXÞÐ+‡+€LlÙHï»Gãß‚OÍäZˆÒbœ…#냶2Ó¹ÿ(ª°7èé}}AuË$³ Ê[pëýpÏOë™Vd x»`»ç1þ§åìæçéa¶Õ)ô¦É‚PÀJ²Ã*è#¼`L0*´~×;Æ­½©Š™Ú–{AÈÔ/½_{æO+œ»/‡å"G¿é>§|àOñƒ†Çèu!qŒÊ;ìÚz“Öžœ)Xv‡æGˆ¹©è€á튘$ ðA, …*z’©•Ϙj[{¸tÊ•²Ü嚃Ê"†Bc?ˆ›7!6ü™f'æB„r-a¡tºˆ’޲bÛÐ$’Ú”Êmñ€*yð³#Ø_»e-SœÉáÍl™;u?Ư|¶< ±½ šn ;:ˆ^—Y]Úƒ[ºááRë(~n2#ü¬"g?]XTs@ž”|¨K Æ$l³Ø"‘7ŒO@ô&-Q߉…úÕxþG8×úrМGwGps<—:‰/x^VûGM˜` ‚y š”ç–éŠÚuV&0ó |sOè•©„¯uyŠ˜-®ÓŒ,ã$–Ãú9‡ø«UâFPÄf3#ßÊtŽÂ$V î(Ç©ÎfÊzÆ!›6Z«uöÌÜ”,Ã_M—ÆARþBt=À²Ó–kå7U% .õÄ$):£ä“d¾tR$åmAøÉZ¶q/ì‘È`JtQvâ}ÚUSѪ’RqÒZœGJ:k}¯OÛÌWÿ1ÞOGF,v£ÆVqQ$»«^™89±SpW˜7˜Z‹¯Mñ6]ˆùf:—±Ö_Ø–OäÈé•.6B$¡›ÀÅnÜëaúk JF)—¿Y;›]ao(ÒéBI›p ãtÞ«WìAH=")«Î-ðF}öö©¢ÿztŠ1¶WOÃøæSÃ,³a#U$ÇQÏáoîFN±-ì§\ ŒôPw¿¾ ÿn$Ô3Ê+rK7DOFýÊÒMÒ<-Þ;>ylz{h KâS¨$¥[Ófz'æüqéñmçé9‚J^›ZÅVY¸K(ù]ö$ WPðé¯!ˆ«‹Ñ{ÈÁRGŽªºÁUUÿL¶ L’I~S®ð 5åL$Õ j|ºÀÓeÑðÿ[ Vú$@ ÿ/ú»ç›vã=DòÎ:ñ3õ'aÔæç¬“×Ô9°8…pÓ ±Œ'¨ŽÉž‰sr‚ïYb•ÈúùÕ-l I¸ºãšxuÒµ0Öž¸¼ã<#vç§Ò8’Cåê%s?z½ $Ô?»£ä¹7"®n÷K›š¦ªZÜ ( ô‹ÑJ·N¼g¡6«aÄMX.ë! 7 –†fóL̓=c¢- êîG;#½6\R+‡Fæ§7j¥á¿)DŒôŠ¡•Éç©YAÊ\ÕrÖ×°†/yö ¾ã`K©É?ùNŽZýâb& [¡ÆËäJ!`š"n±[µ¥ÉF9ñ%„Qg<Œ‡qúEd¹f\P^–ƒðWbØD=Ëã->£ÞI JYî¿|H¢DÐxiýÅùÈÅþ¼àBÞñꜳ¼ÍSD½? ÂnÕñèäÝ”ÝØn†~礯$v“‹¾1 ¨ß sVq×ÎIAtçÿb^ å÷ŸJ­Œl–iƈôœ ^8WÕ´kY#oZz©g Ûó·úÿ fýøW‚4õd¶ Ëý)²w}e½ —X˜…±±ˆ:¼•%´Ý´ƒc|¸ÞØ©ÃNQà´ÿ1Ý¡&©__bͬïÍ>;`¾®ù3UF™oC˜¸F=Ô˜ ‘¸Å”]„šsô£‘ÆjÙü ÀuK×ÌgL,$k:¤Æ}R]².´)t‰¬è3W¢öÅ‚ØÝ ƒâosÅŒî6äý¿‡Âà•Jð¢áýjE²”ÖÞg9æ]´<©/ŠTi10+% J_…½ûû]çÿpžày´¢È.(‚iV‹Ž:#T3àÂnócóA«r¿ ÙK­RqÔHû§ž¼ƒþ¢ý_"Å”ŠºàR©ò‡.f˜ñ ÃQ'ù‰C(m;ö¯òvl ‹7Æ]ÅËI‰,ë—ùy0¹Ñí¼~òÄd4ã-+-Æ»¤3éª{ÎÅÿ݈ØKZ÷Eטö•3cJ¯;…rZ‹8NeºæM™µ ;LÉ v¡¢e}o7ŒÆ¯xçúHÜ.ã –±Wñ–"‚I7Æ6vóÜÍ=$Ý…‚œ©dŒþ‰Tl}躥Òß•˜tïfP*±ÿ&†/\–E+Œ,¹<@(ô¡—Ï¡SŠ2¡ÔB€ Î/ðfo°Ìç#²ÖE ú>§:s5± ¥Ô©IæžÐý哿‹™µý˜¡F@ñÃ+®æpÏvvâG z'4ÑS‡ïÕÁ­álx¬ @¿©/&»™_EpÑÿ4žÒžcR¾Ÿ<”ñ2O|÷qÉÍ£ÑbAÃå1nYí4ÝõêKU,¦¿áRŠšŠt˜¡n\åñue‹ŠzfL2صüQ»®"ø$utDÒõ σkõt¯EŽß¸Þy_îq(åF1 mome™‡êWœ.³,÷ÜØOr>¡Ô0¿Ûêp4 Tß­}0^üW½Ðù„¦‡~šÉê fR?@;Ð…86~/AMœê¢²‰Ù$¬ìŠŽ³‚²ïRoõ°;?¤pjÏw$mGkÜ|aÌÍûÿ÷pe«H1x™œaHÀÕ¥kèJ0Å9ù IPKF4‚vwáÊJpž@¯YG×ÑËÊ®4ˆÐ|gn¹{ÂÝ]´¿p¾ˆm7‘çk[Z«as0ÒAÃrE5 ‘jÊæÁAƒà ×û.2ÖßÚõö³g-„I¶[Фþ¹ï˧¾ØiÚWå=„®s†ïrÜ>š “±w;-&\v§ïÅæE³Äƒ†À¿ÊˆŠd©ûR“­€öÛ©êËÄÀùo[óŒ%K°hcšeRÜT0Ýâr7WnqŸQÇfvhÎN…’·ä(,¶âŸÑÀEeÒs÷Ð.€2:¸9ð ÕÚ¥·V”xv탕lM-°ÃÁù¯E@ü•opïçâµæ}ãç" TV5âEòÒÝsŠr­°©í¸UI Yé¯gh@’ÔC›wrf!ò¶ò1Z‘•FéršŠœèã)ðO¸q@ËRÚ‰¥*ô VÇÅb1½±ƒÑðÐÊ•¡ì¨­ù­¢Jœ¶†øC’ ù7÷÷-¶¯ÂÝ;L3&àR¹á{$DŠÉñÊ.OsÏC¿ìŸ.äò*ûÄcv\~4IäàzXFP~JÊüM$-wN±õЀ'dÐC:ø[ÂixQõ#0°¹ÍM¾Ý—ua°Ïá'–]3ùè®ü—4xXæßeg Mµ2¶i}àç…€Ø%-Æwé¹Ò€ Ç9WŽ*¿¤6zàßÕ÷àAž§Ž›¾I.¤°,y9‡^&£)UÁÃ5˜LùÙ¶ t"@°Uïq¾Ð/üÿE±*¹ÿUÕκRY¸¢`äL™H°ÐVD»ˆÁ(椠”ÌJ´USö,áÌíînyÉ÷ «YsÄ(‰fD©žÖ£r†z¿;s”Gšç»«à‚HbÞ3 g`ð}~NÿgnÜÐåõ)ÓÀ¤’Kó-Nˆs‘cÐÑøÃáw.`uT´oø¤÷ÝÇ-ò+xf%DÜ›÷ÊU1F^Ó¡{ÙÔ»œ§è¯Û†dÁs%SxÉ¥Úky ÿ$ô¯,+$ê@(ÐÔ*|< Ü·£íGvõt\éÇd“H¬Bh™$¯ú“—ÝFR¨Üü³O¼§“™ñMÊŸ­%ˆ`özÞjнñß¾s´Í*'/D°J\¶Џ`£g ½g5ŸÊ8×gŽzþE *‹:tç¾®aÕïŒS˜I¢!˜êðÌ­‡™ÕP½2䘋|'T`Do\¿Õ4퉟ڤ.vµ€|¢G÷ž—UóÓ'#“Ö\9¨çÅš¡³¿ßáðŒD€qï}]‘õo·- ®¼Ò'ía•Ïd[òb‰àN¾;Cä9ÑïÞ¶C9é/-Þ„¼UOÏLÑÙ”Fñÿ)a±6â³o+dŒeIb¬lËvËšRe»dâž:…¤„¢›†ŒæËµZ”ì$ܤ†×åǯǽjPØ„if¥W´.†C4¤†C@w¨Èð/;F̲ŒãKì·”bºËaT¯À›ô˜p Á§«mÃÝ{\{=eÊWšýÔè²Ô?Ë ð±ðL¶•dKjé± KãÇp5ÓÙA/¼|+©N›g/`ÎR>èqÿì±h;9Ëô±-•cbZ?,®[ kKÑ;[qÎö"eÌ6b§#lÁìêo¼H*s•¶ ŸÈ««pê~Wtì´.;K_íg7Ú=.u PËLظøø}ƒúó:¿çì#ænjhÚÜEw}úåXÔŠÈ9öR8µÊ¿y…w„¨ô²·ÜÐúÿãgÉOŒ)0Ð¥èˆo·5#ϫ㠼 Wo„òb6÷>B^JÿrU»Ú=°æð""\ hë É–~_Ä<ýÂM)¨™“Úní–ïxÔ’nÿ+½:Ô—ãgHdÿ™áDåÛ†u#f±Õ ü—ý³a4*wCM¾¿ù×ꀧP b|4Ûl'½P4â©—öïvd»BÂ…_î¿ðÏ´áèîc°š üIðNr †&­G]QàU*\9 øÆ–9¤g7ýC<1ðh>ϹԫœË^>¬\|ÊÎòzê2jÎ×540)b-ð´ã9VqA`jwO ü»I€wR6ò²^câÇ3—(ýQ3©bù ƒy«äXsÝ@¦-“Â3 º¦øU.MjGÙ×ÄAÞÛàl\…*ÎÇ銩_}R'4'Èz¨¸žòÃi÷ßéõ" Ëo™E\%ƒ(A=ñ%«í>$O©On Žösnù‰;ÌS«‰®D¿éíxŸ—ä'.¶fu»ÝòÔÓ.žÀ:±YÊîGªõÚqz¾b ˆìmYñ‹Ó÷ˆÂÑf?.–Ë`Ï>Ôé"ù-ÍÈë‡1¶›wÔÇ-™¯¥º‰–ÊãG àtÅÔ ÓèZÄæ`€øÌ«»6Cs§„3u…Ÿ+&r)\x´•”“{ŠmE|áóAQÆ®?Äqu®LŸªlm»¹y^ûƒSúFÑT6Øs‰H08#¡S¤?"*¢¹;µÝùG_™m@îfæ áxOuÞ ü£¾Ÿó£0ÖMQþ¯ o‚ejQ®ÍùêU“Lð-¶Z>@AÇ.©ÉQsΕÊä¡´W"sk~ª¢ñ»™ê7ê  4ØG@‘,X•<ߣbz·øc¯-«‘+ܵ?ËðU"Å¿¾Ê9mæz¶ÚµàN <îšþŸ°Æ? ºhs¦ Šêû_ñ*ß'<ع¬Š}}ÛÂ=CP6O»©Y ¹O+¿Üå²~ô;Ä8öã*-1qÏP‰ÒY52À)ÃûÇ u¼ì-_UM_¶/‹[Ì’*.‰ïä]Üß ³M½}ÿV'ƒqâ•ÂñhŽwLˆ Z@™Ñð2‹d0Þáܨ/[b™Ôݪü­/Ž(Ãp"mXbé\IY›àß°Dá{:Ã6›o¬ll2s…CÛ)6ƒ3^Ê9Oú1îÍž¥Î…°ÿyõ´SVК¹èÔ`¡ÿ RFAŽJ-i†CUJ1˜s°Ã µïA¬wòC>F%ÃJ~^~©,å–=“M:CÅkhI$Tܪ_ @N¼y`äU’‰iprž'YL¬ÇÏx åæœMôÙ ›@£Õ-»˜ª‚ål›xáŸ×’(/Ñ¥FhçoËBœjUqýÓÍ[ fÚM‰˜¾C‰ó;$Ó:>›&‚±(„3“=aJÁ÷zMÎÅŒ)4"¤²Õª4™·å^ë\/çMÚ?Õ„ÅV)1§$î)Uõ¬«µë‘®ˆšDßLÎÇ%ï¾ß)ƒîáÓUCD6l€¹ª8æfƒß`L½Ío~ˆSÏ©ï3QøcÖÕVèƒã(Î>,¹ܬ“ß„MSã“xtgN…4NgœÄ×^2=¯x-¡»•c¶íÈý¬n[FRîµµÿE³=œi“HƒMÞ>ÔwÏ? GK±U§Lrþ%g}Uh&q¶hïZ!G&Fióçº ¸<޶^µ^íàáMq/IØC<èÿ¡hèIõ;ÚÅ̘,ȧ˜Ã”å4Æt–uD/;â[^÷ùiþ=¸ žUüø‘½ÐöL¯ÿañFTb‚ )À šÈªUEŸwè‹Æ$ìæàã#»Bž5²æÃÔôƒz´ì ¤‡|v°PDþå/N9¶{o~œ[9ÃïBsù¼ /[«1ºôH~R+‘C¨h0—&š»è¿é¯$tpÂx+Aœâu ¢äó„ä£\WWµÎ•¸“æÉ.ˆ"…—$Ö´´°«UåZŸ?²a$3Í$ø.ÂÜòQ/0gV’¾†Ò#hÐsÙçh$*ÄÞ™Œ9=ù[Oç W< “'tÁ –Ç…ð³¥ÉjƒFšv'pË•ߢgsɺO–|º¸Øß?ÐlLš 3QrZƒämAô&ê¡ãï -ù³‚å˜bD©7¼%¤‘~õœÕlÙÓ4øTSÿ}þp? pÓi÷Vd‰pA)·ÈúšØüÁP=²@Ùí|êŽbÑuk&W Cé¿»S¡ç`˜\þ.OCÑnã£ù¯h1̤T%Ü«ûŽ7¯ša®ŠÝ6ìWÓeÊ@ýryAÏâï …ެЦ;ÍáO]Ó‚øi6/÷Ù€c¤ƒJ'3&œ,‘œÀmþtXÇ=û0¼å6°³ÀF+ñØýK@ÅÒ™ØM¬o̤U“”ð€>|I.Ñ&íìÎ_PÀûë- ED•ËFøóO•—+ÅØ¦)2SûÊtD‡"ÐwkáfO¹¾ž2ÿ^:Bn@!ß<5Y'-i.?„‰Ò‰!OGõŒwA3ÆGÈI!Ü]?Ò_þ|¢„ËÀ8É BÚ”»ï€~¾…{­Œ7)K2#ó±]¤^÷¹Øè4?ðÓŠß¡§™¤‚H{ªó+v¤àÜ$€ßëB&ëÂÏ9¾x\ù¹zõsF+‹X©e”îE@Ôõ^'4ÜWiŒì¦7Gu1ÀdCþBü’FNí¼v!$à¨×ýü+Ó„æá—ñÝê²ïÈyy)8ƒñŸe˜$ª*0í þ*&mN¾·¯_× ZßPæûã™ì(ݬ|Æ\øSú x™NP 4$|!0zëÆssƒÌ¯ …eBŽÎ;sÊÖ ¯”˜ÛLz3U쵚daå*mð’P:qe8ȘTPi’>y·éÀà𦒭¬HÞÏ­%eªcÓwgåc¼kÄhÙ™æÈ§?—ÈIaqßCA²ˆÿ~ÅU,'¶Uû2—éxÎgÑDÞŠkzíG„™Ãù'¨¡/éóEÊÅšûŒú_Ÿ·Çl'Øö`¡ˆÓä÷ÿ+èçŸÎú©±A»: §øÄ*s]ðF•RÞrò_˜Ì±®fÆÁè9l(Ú<÷gG”Ææ× ‚Gù„ìÁ5¡`âG]*YÁ6KÝÞí$£º ùÐýRѦmñµ­Q^@Å1„¤2@…³ÂŽ/n¿­âAú;:ê>“ª¶¼æ„Bkyû©‘1gú I êmß½_màØ|Εó;…‚B0­\»¢üD«¶^€¼}.™ßO­À@o' ÜoÝr²Æ©tmJù &ùU/ûn>ˆƒÊË£fðo™\WÛ. R ºÏùÙ­Ìvâèl'e 9š» Kfß¿øœ«8ƒ˜²Ù7A6hSuMƒjÒJN.\è/°Jˎɦ!1ÿ³ä#ðÓ(úU»%Q˜‘®£4ËêÔd…3ÿP¶‰êW¥Sä¥\n˜×j¶f•¬xΣÍÃàj"·ð1[-¢[^ݹ?„7î²O7Ÿ°Lil’p¦@ßã3·Ö[T”‰ÓÄìTd½µ›ÏÅ@òæTÓO ­¾¿]÷ûÀL,«ÆÈ€ezm¬&ƒJuÒ£b¯<íŸéÝ?¨sÿ«™ÛiTi#ø€û€€†Díþð+¤$O?8ÁÒ¬ƒÁéÇ¿©ÎCè?}ᦿX¶Þ¦· –k^DÄ ÁC?Lpöב°ú‚C •è/'G"Àùéîac%]÷B±‡ãÏŸU‰¶¯?Mœ-/ÀLž’nXþõ¨dÂÜX: `ý¯ÛY!çÞ߬M`””·égÇ´4öÊLg²À=¢1ù÷¡N^lã‘ù Ôqa»U‰vªù-¿ŽWå/ o’U_‚.˜4ãËÄLµ$€"¶}ÿdP^#!¶àa…ñ³Öb®‹ðˆµ‡eyÛt¸‰‚àÖ¨{ÅÐb 4LXF¦‰m_LRïç®ýÎP'kÔ’tg š/›¢˜Ñþ?ç^ˆ¡Yñ4-gÉž_+Ñá™úù Qß7ׯEÓ»ru»,ߦ8j˜ ä¦úN-d|MT–`nI¯.i+-­‡G]²çšic«MÌÉ«¨«JY#‡)t¸9qþòñT'Õ¢9$žläzBO<7ñîr® Ôní6E‡bØèÝøö8I—AÈÔê+W¬Ë9›ÎHBÚâÂ=›½_F½¥lSëh'Š}e·Xù°\!LWæUãæ—Kç=Uç– hÁl]‚‚PãK‘AÜl‹ Sj?<%’úÀÑTpÿ œ!TÐó¸ô¼gï…`b¬ðݺ3Êö¦s¡¨ýåñ-‰mÞiЙ´èJ¥z•SLÖ0£m0¡#2pAî¨EŽ®1½xÌ?–¹0‚ìAyí.tK¤†W²#N¦náûÏqeŒþåÿ Áø¹ÞíÛ}xàðßÇ™&yð‘|o0XÚ•YñKÝõéû|ÄñÕzˆÐ ÷·úWm`òÀU“„½¢I˜$c34Ö`öñ8͕ʚ‚T¦8VµLoæ9«îÀ·@LÕºh›><·s6ˆ$ïc‚Èkng.ã*ß™5ŸÛÞ°¥ Œor¼äŽ=#L“Ê÷OïÎSÒZ:ïsÕ¶n©ÛMkÇ܈HBë–†Òr$¿Lõ}öÅ1 4 ®xYÈ´*Í+$QÇžØÑ¦.zx@hhàÐImNQk{”†+©Í¼–¹Í­ä¾)/ðö’ê ñZúN@²p °­‡¯ŒˆÑ‚cÝcÜx…íŸc  aNØg 2·wA(à™…ÓÞÍÔê0ô¸²n-šøExoê#."lÐò -XC»ïpø å«lð}›þ쵬_ŸÆI#b Îu}[CØ÷¸)fæz¡Þœaª `¬¿$aŠL¾mÂíuDÈgݤ›7{{Ögª%$«]xp|Ÿ)F Õ De( W|ƒf (ë%/ËÄx ƒ®—D 8:8‹ÌŠîŸ¬»˜v ¹™I[õä¹ó̃ZS\œÔð£Çp¡µt¬V‘J9ËYál01ßb¶àÞ~‚^qñ”L§¨*,Èïö/£ zž’$ ×@‘ÇŠ*Î6ê™Þh⤵Be¶ä'¯ §IòéDã];Ë 9Êa$1PÃ;o E·áTij"ñ:…Ï]¹_¢*bÝëÍ ¢—½e}Á £õgËçÁ_ŸØ:yòH>Âoù–ÆoSp…êìªwíá{yHœK|ºPq9ñ`oŸ’âÁ²'øú´°,l@¿¿™ÔÌ5‰1éÈ·^ÎãòΧ g/'ÅP²²¡>Mµ¤óMÍûŽÞ›f„“w#Iò!0‡EœV¨¡R1Òùñÿ$j‹KG-¼ýîg§šý½eåM÷ÉU&8s˜cD¹KÝp_!38êÿHÔ6F™UºE£€û1jÐxd=ÆÀ‡€žêTJÊÓoÿü*p'œ#óõrâÒ/ãÝ+\‚¨‘¨6 ‚Ý9Ô^º¶ÃµT+c¡§Úzê“Rùú<ÌñRé•ç"\¯HhËýÛ˜ƒÎ;v¬HäÂy·y¶ ‹,qØ]&<1 HjPÛ31”eR3ØQåÎ(Ò½$’¤÷O N!ðßgĆ;9œÝ©_àœ_Æë/ÛâŠíʺâ€z¨ß¨Ñ—öYé MXݧ³]0™­2$‘Kâ×1XDWÏï¤ äúþ“7–X̚¦™…r|©å¦ê)¬¬Á9mKþÌJô±>GÎu\E"òTùv‰¥H—Àáã‘—  ¼¬©Ôb™öõv¿)Þ)Á„Ó99ùë;@ƒ^—ùgf©l'¢FãÉeeF1²³‚ü·,{pMÈP'ÊGElžcË_ý¼ëe ] u‡øD¦µ¯ÑE+¹”·’f;ÛîbYÂEò4¨—½ÌЭjõyÀ@)jþˆƒ²ÉðqWÄê¶äñyŸ ` õêLtö5ìp¶ÍO+¸àBÔšzßUÌÜèlU?IÞ_EpHýܨå ýt'¤B°pGlàÆ¬=< ÃL÷ظŽØ¢†SƦÍÞ\~v@þ=ÆßdxÄJ¼ðàkv[ëÐM*+ÁYr÷…A`ùüÉXÀÚˆÓÊêþ‡-Ò˜}Ó[ÛsYCWFmR:µÇŠCˆ¹ÂÓ5 ¹B)4£—ä÷ï\n,XDx†{õÄ4²Gæèb¹ûåæ­¾)é‘IåÑÚ²Ÿh#×kž©—COÏ‹uÐj X5ò"›;Ýa KmŠþÎ|§I÷3ZÊ€˜”gBã*Yç*¥yQíùŠÒݾ{Mà¡¥8aÀ¦8fj½œ~7yÎ[\3ÞuAN1L½ê,ƒø©Q•äuÿlçõjsr½Ú…~äà÷´©­ðÿÿû±Þã'ŤØ}4µØ&ˆb6ߨõƒà®Ktö+¨ÖôÕ3‚CÔ¶…—㔟fÌï0à,“zÇ~YjéÀ…æÿv§ªpsĤ÷8°&b4d-3å°´ýÏ2·•GFg}\’ñµaøÔk=ö2ôéј‘®¢.Cê’eV]NÉ/n3|‰ªšv yÚµòT6ý§¯mlÛu:ýG祥äz-ï²Úðñƒ‡ ’fÿ@_:‚Sé§XÃ9…õ©“9k}ªJ!Qí‚×´Þ²‡unInŸÓÛä¬_xøJKÞìpØaU©¿¹|Ñ¢ÿmˆŠ¼~^º {.ÏÛ°~å´ðGK·^àv¥µ·ûÞ€5ÅxTè5§–Ñà÷6ê›0æAH )(5¸}V Žjx‡üRDÒO‹I¿Rê;¯%Yúï#‹ó¥ hBw±6_ ™œÆ žýÉqÓ]LR…ÐúMiYÒŒ¹xâ‹U¾þüÒæ²z6½© ‰À¦O˨BIe€ÔJ&äÂ,üõº}vÂçT„RNâðw-g.èÐí[ŸUÀ·/ùâùg]á‡úï#¢+d ¥ÎÅ’>”SÍ›Êbf¶ö«·ªõ`PgÀeûD69ŸçÕ.Ub™Å‘s,ñVvj•mHoS¾ösdƒú+é¿¢¯ñÞa>ù"W;­ØN~ î!D>h Â7šef]耑U©µ0D³¤ÀCl! þ]Çž:=>M ¦‡Îñaĸ#€1›3©•ÿ|ñ ¶Öç"ä¨ }©²`.\ä`óÝÛ…ÕÿE¿ÛÒH´N)gÛæ÷â¶k¦`$r<ùaóÜÒ¸Ãx`3;ß„µzg& ç^Ï”ÃWCíSʨ·Ç9gÌÄñ³kK…G;uy’ú¶ -Vvjú<'u(aÀÐP£#ú½iÁNÀHêò=òµ^NÑh*ä}þ˜6GhÞØÀ~Ì7–Xñ9¦À±šˆÓ½!åqX”²ØƒG¥)9Æ@B®/† pìR,ÿ/qOÁ7yÆã:ôÉNo*äúœ­¸Yô™ Â€´¥æ!Dñ©p2øÆ"´PÃ̃ÄAøØÚœ[1ËxˆÎä'5éÓ¾ŸÞ¶iÿcàŽ½}ÓÔ¹5=÷<-?J²¶²/úí½bS9U…”Ÿ&öì}¹Zrî1î;wÊ9µTæ'°_¯ó;ùˆâ×ßýdpü ãU•±îð{u“;@4K™šå‘½–B0ŽÿIð_ý}¦ùãS0#ì«Öz^¢ÕÊ+`™ì-)é_ç¿çð§ÿB–þð©søT?›þ7ð©ñü(_á@ÿü(@ðTp¾Â]^¿+’á†nÁ9J/;³ÈP}ÛÙ ‰rŒ·³åÑp¼/ð;p"íí첸"Þd{ô™˜çÃ݃~ÃÍïiöâWâkï²ãõiØïŽˆÅ˜=Xôn¯˜¿D«ha‚<þê·b8ûŽ’14÷˜Ûl@ýÅÁrwoôJW´1µ9ÐÓ»¢R½ ¥ q ;·ú%+¿ôrr£©—wÅ~íúg²'(Ü0h âëп#d.æ^å9Ê‹Šx.;èd Äž"ï­a}››ÊÞO<—¨GB^ú+èöüðí~°5Yä«\™YB ÕÊÈI(+Ýa5ÀñN{b™ª\áÏò[¥ûÈÕºøCñ?†g! 5‰Xq„Š„ÎšÁ Ü>B*:g6ž­ÌsäNP^©F-u|Ýà¾z‰÷mмcìÔe\ý¼–¼hB¸YL¶ÞÎc÷ó&‘<\ÉV Ò²1ÕïaùóW8Ù˜ª-sVÜN3¹šñÕÏ!¾š­£º€­!à­6‚÷ \þ\eÂBø#ʧ׿ÿln!QGHRÇE‹½õð&—ÇyõFž^@Ò›S†óê<¼¥2¥aúï>¨ÓËÈ?©/ sa¬ìôZ„r¦eYéÿv¤É1Y›Ð·:Ø EÝ›©¯ÍçS„ƒêD–†p6V„šF@™9£ LÓ¯K,Fõd¹˜X‚¬Ma‰¶ˆ?‘F3i-6ó¦-½U³JY" Ãöá‚rÂ`ÄŠ•ÿúÜîax1®ëG#µ‡ï+u"«ØJws<4)ZëVábš`»™á¡IÇrÕ†xX¦˜.æxhOá{lFf’2÷€p™SÅâ{…ºÞþá¬;òÐ…:£Ã6[ÁãÖç+Š”G7—?P$…Ä´ cᲿ¨cb‡3^¿ á#r;(#O«¤Î˜0õÂò}¤Å†ŸÇ»TÉvŸ,ôÓBžê¸¥(Ì~yU¾òÃ&)–ïNw!ÿ<,=ä^}³ÿv›*sdEæ*~ÑéÒ@g_rg>ÑéÒ@g@»Î|£Ó¤€¿ÿÙopenmotor-0.6.0/resources/oMIconCycles.ico000066400000000000000000001425761500530174600206140ustar00rootroot00000000000000hʼnPNG  IHDR\r¨f IDATxœì½ù³%GvöefUÝûöîFc³q1Ã!)ŠÃ!%†([¶¶å°ÂöÿàÿÊaËA2(’’Âm“6Eq™’³`8ƒAhƒ½÷î×o½ïîU¹ø‡³dÖmP³ ±ßŒéÁ{÷խʪÊsÎw¾³$°ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±÷a˜zõñü7ÿ¿d€Â1z vô_Ö áš˜j _üÕ²~Þëñ¡ëùCÆ ßüã–Lj¡…A‘b¤”RÔc1ˆ1ÂZ À ¥c,RаÖÁX‡” \½…_øÍÿiýì×ãëEøãÅgþCò³ÛˆÝ)%$Ü)%ÀÐC£}#}Ú;OJ H ÆZXëc€±1Xçàl…˜"¬¸ ˜z _úõ¾~'ëñ¾õb+Æ¥¯ý~Š~‚à[bу ? ~‚u }¢ß­¥¤„$ÇÈgªè¿ÆX‰kA ÆÆV¨»@µ…ŸÿõÿfýŽÖã=ŸøÅõâ·þ(u³}„nk ®‡`±–Ÿ¡= / þ‚€ìÎ9„@ÊÃ9‡˜"Dê!g"Åk-Œ±ˆÁóõkY ëjWÃV[pƒsøÂ¯¬y„õ¸ã¹˜.?ó'©Þâ)†ž//ÖžŸ¬uŒ$àÞw°ÖÑIÚÇ@H?1ä=À9WUz^ËJ…OÂàÀÀ wÂX0Ò ea`¬#…`+[Ã4{øâWþ«Oäû[û7>Q èÅoýqꦷ$ÄàY³ß.0ÆÀwRJhÛÁ{¤‘RÂ|:…«jÌç3cá»˶ÓsÌ-ÎΦˆ1awwÎï`kk››pU…ªªa¬…s¤HH¡¤wPy(`-}ŸD 0Õ~þþ÷Ÿ¨w¹÷g|bÍsù;)ú©Bú<¬µˆ1ÁÄ}Þ.—˜Ï¦8=9Áb±À»c=fK¦®BÂÑxãj´]@„Œs1‘¥÷!¡©j‘|‡‡÷j|ú‰sØÝnpáü¬³ØÜÜF3Àƒª®™_p¬“(r È‚Üðg€±„H dv×ìáé¯ü—Ÿ˜w»?ùøØ/’¿õÇ©ÜR`¸Nœu–à6 –íˆÓ铳îÜÞÇѨÅÛw˜†ÑX8WÁ:>Âë0 Ÿ+gácBå¼÷0Ö(ä1)ÒH)¡[.º%ž|`ˆÏ5¸x~<°‡ÝÝÔuÁÆ&†Ã ýŽ\+Æë,cd¶j") †/0äAÀضÚÄÿÁ¿øØ¿çõøÉÆÇza<÷ÕßM)ÌÔ/ P¾k[„Ð-Ÿpxx„ÛwF¸vØbÒ:t¨1ØØ@Š ÖY†áÖĘÀn:“•EÔŸ-+ƒ"Ä|BJËe !ú{¶+üìgÀ?ˆíÝ]ÔÍÎ9E-Æ:ß*¿`C ÖU°®f†‰Jë ·;ØÃÓ_þ§ë÷¾?úøØ.„çþâ_¦»l}™ÅïZ‚÷³éwïìcŠG»ˆÝÝ=¸ºf+o $V(€…º 0LZ$&)ºhùxðq ŒÛX£ƒOøøØ½üK_ÿý»)b숩çX~‹ùû·nâú¼qý cß M`+ln cBUU,d)Ffèù€#ªªRóoŒa%ÆÝF“ƒŒ5ˆ!Éþ9õ\‰‚æĘ(d:vkb=þîñ±yÙ/}ç?¤vr¡[²ÿ)Y'%xßáøðׯ]ÇÕÛ3¼u˜`ªUUs˜Î1D'ØnŒ)¥•-*™Œ3Ë1 &hè/ ¤S$v_8ç*xï•õÏaG(Jˆ!À{‡€Ï?2ÄÏ}î"yìaÔuW×÷¼8¹g ::vO€XD9(¼ ©H¹ ô»LSoã‹¿¶ÎJü¸Å ~þ¯þMòËc͹#¸oà½Ç|6Áþ­›xûê>._["T›p¶B2ÖXKÀ|† ²Xý~ŸQRÏ9GÏÉ>‰³ü$ùGŽ¡è)ˆŒÁ‰Wð>( €ÌÛR2‘\'„@ C±ÅÓŸÚÆòSâÂÅ ¨ëªºê%QÎÕ)XWÁ¹š+0HF£˜Œ”c¸çï0lµ Sïâé/ÿç‹õ²y|ä_襯þv ~ÁÖ 1´Ë%ÎNqãúu\~ý×N-6··c Áwì+¬Žš dÕ[޹S > eìÁf­Að 7ú›s]×±`‰eO0 Å™/Dñdá‹* ëÞ{¤`¿ø¹=|î©páâƒnl*)„VC‚'¹¢–Á¼ƒàÓ±²’ž')’s;€möðô: éc1>Ò/ñ¹¿ü­ü‚è®”³õ–ó9öoßÄ«oÜÂË7ZØÁŒåX½µp…óªÊà|˜y'C,§ ²Ò¶Wèda×[ÜÒ¢"%ÄâwËÂ.Ü‚µ¦—Uh%e8%xOåÅ!¤à±YE|é³»ø™Ÿ~Û»{¨*§IEr-[U€¸ÆÂÚšù\D¶þ½{fâ2±ÂJB&&P¦¢áD¦jvp_øûÿéGz-}RÇGö¥=÷—¿•RlI¨b@ŒÞw8=:į¿…Þá,lÀÕ \U1dwú}ÉÄß^!pŒzƒ5A{Iù­Xy”¾{U9…íeÊ/…sépéó¯Bî*¾n©8B zIC¦ëÐ\‚ïðжÁ/ýìƒøìgŸÄpcS‘ЪP[W‘вGcØ­IÈd D-@ŽCO –u’.M ¶­wðÅ_[£ƒÊøH¾¨çþò·SŠ "âS„ï:ÌgSÜÅK?¸†7öZ»º®QqvžsV­˜dØ•B(þz¿’pÖ ë<`Œ~ž‹~ÃéœÊ™!çÞ¯„MO!èG¸9̘âo!$ÔÆãW~æ~æ§ŸÂÖöŽ 8õ!0*¤ÖVHpìfDuox¦„ dþ|íÄÅNz¬ˆ¦wÿîTåÀÜÁÏÿÃÿî#¹Æ>)ã#÷r.}í_¥fdõ™)NðÚ«oà­\=µhC4M£ŸÅ u]+¹& VF)ôt8i‹B‘LC£´Ü¥µ,­»ã¬@Iã-« SŒœ; ÍD2Xž_F_1%ND2è4’‘|‹_úÌ&¾ôÅÏqÝAÍ™ƒIÅUŠ«õÞ5dÉB¿ªJ¬ðwÝ»)Ž"¡Fk,`‡pƒ]|áËÿì#·æ>Îã#õ2žÿúï¥ØMb€}ãÑ ^xþ%<µCk6P75¬upNªñ(ßß9‹¢†ùŒµç!Pl9>_Zt÷Xk£2 ¿ElèßV }r‰±Q‹oyN’k@BˆåÉT1 Y)Ô"~ùs;øÒžÄöî9’?‰@¢‡\Ѩ„8 §áÓUBQC™aXVQ–CC°@ œ§IU0Õl³‹/üýü‘Zƒ·ñ‘yø—¾ö»)úûü¡ëpz|ˆ¼ò:.]i±ÀÃA£~zd"N ½sUÏÂ’B m‰„€ªªÔ%Þ+# çà¹Ä{æ*D`9r‰0zÊ W$š{Ž/]š«÷AYI;vÖ í<‡$~êA‡¯üòç±³wN 3‡­c+ï ÀÚ˜„š‘ ÉŒ :Ò Á0I(H¦TÒ8¥iГ"'«MØzOÿê:Eùý‰~ék¿ŸgˆÁ#²Ïz|€×_}Ͼ>CWïÀZ‹ªª²ôÏ 8A¤¶'Ð¥ßMǵ¼²£ÏÅÿ/-xY°Sº¥KЋ`%rÑZDZ:¾—'À G9‹2ªä‘‚oñÙk|å—> \„uN•RŠ¢Ì$XP:±ÑÕ iÎ=x/Ãh‚S™ÿUd”ÈŠRÜräo†”ޏX†xלÃ×Þ—ñ¡È—¾þ)vc²^ èºãÓ#üà¯ãÒ[ Ìbƒºi`ŒÕºycdÑ9%вOËqzkU cŒÊ”–èûõzB_†þBˆªP„sœN ’È,z©DÊl@Qàs— 9"DêoKÈ.ѽyïcÄO=TáW¾ô)\xà\Õ ¥À.…0-+Ik*¤¢ÛQaÚõùYkþ‹;AõeT ñÿ 以geT S}F*†|.ä"¡ [máçãøÐ¯ÓêøP?Øç¾þ¯SlG  ëZœÝÅ[o\Á oÏ1ê4ƒ…âœã$—ì‡WU¥Â)V3¥2ž…8%µî"Ä¥ÀPá#nõ»¥Ï/kya¬º’a(‰F%˜´fÀhafäûÊH®m­sÚå‚D)ž<_ã+_z>ü•4óÜ5E¹@†cûZߢ²þÖVHÑ߀¢¤ÄIX†]‚Œ¾(Ô*ý bï6“•R1ÉèU2²Ëâç×IH÷q|hä ó$¿8†$®ø®eŸÿ5¼tÝcìpk5Äääž2®.I5¥ ÐÉLEBæÂ=k¬‰<=áÍDà*b(…XEŠçç¿I>þ*‰(J¤ä­t½€¢vî|‡ Càýòãxì‰ÇàåDÈu\å .î@Ê$)P@z:P¬xLÖ8À°å/îAo¶@_yž©G{˜b 2RL‘ä=%[Q6¤¡Æ©Æm¬;!½Ëñ¡|x—ŸùÓÔŽ¯¨u1`2:Åk?xßzy _í¨u—<~Jï% # 9uEÄß=VY w´o¶äŽ-dIþUU&WGOÐÙª® ðªÈø»²KDQ z¾ýƒÜG™:œ;Ř9†:àüÂ#xêÓO ®À€Âs…O/œûç&±©—8‚< _-¹ Q‘_ ÙÁ*ê"o¥¨N4TÊ ‰¼°¶BŒ^=6AIªpŸL,ÝÇÂÞG ýÐåê÷DEGHج"~ãKãÓŸ}UEŽH&]ϲ&”>Ká*É| åH¾»àv°ÂŠâÉÓóÂSIبs¥.ì!‡~"ûSe2’ð 0ŽÂ`„ô#ŒÝºôõ?HÉOb€÷F'Gxó·ðì«g˜¦M4Mé·© ŽØf­X ‰9‰€FNó*Ü@±¶x¬fö•9ýòßBiÈdзܥ+qïwÉ'@Ùÿ{êøo0¹å¸œ·GLƨ²$D!}—Xý*uøÏ~ù1<õÔ£nlóá.FÎƱBÌpÊ„ÁÄ]éer† |)ѾòÕ”½¬6m!ý#÷ÄVFV¬€"[ñÏiEY¶Þ„­÷P ÷ð³¿ð•Ýšÿ LJêa\þöŸ¤vzHÁwNñêË/áÙ×§˜aÍ ³!FÔU•‰2^HÖRl\Ⱦ>$¤®„Ì+ ?€¾Ÿj­ƒ÷ÊD±çÈt~ypȘ«ÏeX$äŒBr ¤{2otêÊhD¢ä# EQl½…/þúû¡ZûÔ¨>è ”ÃÏï Å€<ºå7¯]Áë7–˜›m4 %ùká àC^€ò/„@E>Âô#[fÇ­¼Ú®Ó})ü}KN–ˆ¿~T@¬w_aÆ8F«ÌuAš §fÀV<öPÀ{9§(‘Ä嬅lBŠð¡ãf¡ù~ =CL½çCæ²Âw^¼ƒ½½mììƒs,K¢\R‚1‰"<á¤âJÑÚ» @E¶ äùJ“<[ “¢"rÛ$‘Hx–¤ÿ!…Â!ÎX–\KW$ÙL…ø‹˜¤`ŒÌ˜[¤¥Øá…¯ÿ.MÑ5°Í¹Ol҇榟ÿ«?H¡#¥ßµ8Ü¿…oÿí+xý¨A3Ü`KE¶Dá³1=!Ößô»2¥Wtäó2 HZl­¦íŠB .ÁªñN©¿Ža²Ôˆ‹!ßËýú.§µ¹ uwò©#¥’È×WëÇnøùÅbÀW~zOÿÜg0ÜØÌ›‘XW hǤ \9‡L¥¹©äˆÌJÏDeï‹ I¹×|¾ü|ÅŸ·ÌôË\Sñò ‚ËÉR‰CŠ}WPyr_Œ’ŒdÀéÉ´–jªfü%!}(nôò3šºé $Îôâò —ñì[-R³k ê¦aK}KëV¬ cD¨¢2øîÁ2l'JBjD°G£f³‹¼÷ØØØÀùóç±½½]ÜAÒ Ã2±§T«Äb©|Vó Ê¿—£¬\Eò]šœ @?ës°!xʰá~óï=ŠÏ|ö)ä¶âYÈ­±ˆ0ÌÒ¯*‚‚x”‹òß(ºÝ%9N؉²XFH€ÍBoD9:V\£пiº±tXF>¯D©h C߻Ӕ³²pü¹ÑkØz¦ÞùX÷IüP¸Ýô&"bŠh3ìß«7ðv •1T9`r{”^øØy毹e–Xx½ãú —írÁPÛ¶8>:Âx2Áb±@Œ]×áìì “ñŸûüç14„—Õ´àr”P½l¶ªŒrÕ`?Æ/ˆ£WwÀß…Ure¨S”†ìwH舄s¼LøÆ¥;ØÙâÂÅ‹¨ë]SÂŒÑùÉä\ÿ¼Õè z¿«ÿžÈyÖ_·KW¥ ÌG⾚՘”ƒ “æ$&q„3 J%¥œJ-Ï0“Ùdí=gMr¢gc@jÇ@;Æs_ý­dmC®üÚý±Rö‡òÞŽþúߤ=UÁùGwðƒ×ocÔ Ñ £[N^©~šA£çßS„…ˆ::®oKeçÜú2)'¦„ù|޶muñI2QÇ''Fßµt+€¾W²Ð˜{¡9ÐC%YHòwß)#±?ß‚ô+QG1oš/ ¼„sU]ád¼øÊ-´ËEqYR)¸)³þD)¬úê½*‚”’Sê¡ Q*rœ/yô”+„2÷À²B“¢ gûÏ2Eý±öQ­iv1ä^‚G†Êß}õwní“¢eåCÞÌĘH„Ÿ ¦„Ñ‘6[Eâ”êü,RäÈC*¢‚³ú¬!b‘H)ª{fµa+CÍ› s­lÕΖ]H?>‰“s%ò<…7 k#÷:€~Ž”TQ „å).}õwÒ‹ßøwIEð)€çÿê_'°¯æ»wnáú­1ŽÛõ¾ç†®„rìHŒ~9/[@±`ʽÂ-(ƒò÷šëÿ¥ ¥DñÒ#@Ž+£%ѱú+‰<%Q)‘ˆÒÒ+$E¹è2r §ûåÁ¦7OSܳ$ÉÈpù;–R˜ê‹ŸœãÊÛ×ñöaB]7jÍjW9ŠTYoñSR¨K,¬}ÂMXâ,ˆ1ek+BcÀ>rU)é(Ç‹2ð®¾2\ADö›yÙX|^,Rñù3LÏð_¾CŸ8,Ÿö€“c¨³²Š(>"°ZûãpýÄã¥W®)л7D&îÓʦ§rG†'^x‚œ¶ öÑÁJT&§='öŒ¼ôY±ârTï‘bÇ ¦xÆeËW¼~NRO€Þß$ᆎ“ÐBÔŽÄ‘“‚Ô•ÐÊKÓ@¨F9à{‚i´h(éü²A!ž $º¡Ž˜ºl¢„…B"Wo°²fÍÄ:Â-ÄÅ]\ú«û¡Sï«xùûßàÆžó?¼{Wö;t¦¦ì1ÐVÛy1WÚ%Æ–ic¤@È_éÞxdåÊœ¥_,n´Í«¯‹†!wiUåçò÷24'ŸË\ä÷X,QJï”)xG 3M©§|äwù?znÌ]HÒOy~ÙÔ4öÒwYÈÂeÒ/R^ݳoœâê•›hÛ9[âZEʤiö‹ + A/9WA¢BPFÞ9ßK•àÝ,”™oPM’2ÿSâìF‚ìÒçAäÔØL,J$#2!™˜|¤LN19ƒPïGSˆù¹%™‹ M@2¥œšø‰.»™~‚ç¾ú»éåïóC£ÞWÐMn¨&žâÆ}œ´5šº ù´Þw¼Ð¹G2Ù"…þÀ‹¹c‹ß‡²ÑWá³÷^­¯øÊ ׋ù üî‘=¦ßwÀCŽŠJæ!Çbåœ ÍÑ/1Î.Cn< pä +/ʤü~Œ m×éÜ鳌`Ê­½Ä’žˆz,ÆP¤Å'‡g^:ÀxtÖsSDY¥˜;#‰Ž™IäB,fÁäðªÜŸ¹%H%#~ŽÕ‡~b’rú¬øÿd'f‚ãB JÂýŸ†,Ú»ªVÁeç¦÷éþyŸE2¡©Ëy%² r$&¥„Z,N^Ååïüù‡B ¼¯ ufG£Ü<ô¨šžŸjU¦*“výY.ä'†¢"¯çä—‡Öå?Bêã7œ­¯« 4„$rÌ¿®søP¾/®Þo¡HVÇåßÖ‹¢(ï/+¢þ!¥…—%ôÕ}ˆu-wDˆ-n…O-·Y#¥z8M¸rí.º–’žJm)Ñ ½×XBxÉÍ!Ï ERÊ„÷¤ƒyí)˜T -Cuy®„öÄâGê¢äˆ½ÿ¢Ž¤Pž ÑCP%#×(„Î1§ú³ãÄÏÑ«K’”€¤;Po)q¤ ´ã«xásJø IDAT|6áû¦^üæÿ•$9e9›àúµ[¸56ð1ÂYlj)ô¢Éºß›ý&1b Õ‰•¥B€äÆ–ô]º~™ˆ#ƒ@¾²ÐE k¯•мj¬P¸·O X'ÿ2Je¯{™G s\ôÕç£ÊÈÂX ‡Ò5¥“}ñ²e¹UÛ÷ü›§˜ŒÇtnóswF ü‘Î: %&ÚŒBi£~3˜ãñ1fëL’ï_v<ŽÙõÈ÷#%Ý¢è¢F‡UE9ka«A†þå3Á´{>.ß3@…S!†ò@¢Â(IËe!Š ´'xîkð*÷MÄv¤>ÑÝ;·pó …­7P×M±¦Gˆ9v­C`¡åůóEد„ߥe,sæ«Oms©.ÍÒ+ÏCSH…‘_:Fvî‘ï‰R ×RáàcdëðÒµKgá¯,8±Ô“ÉËå²77U†’À×U+ª 0»ÙéWæ’b²b§óˆý»§¬”Á–•~)ž…Ä/DÀ D,­ª•Ð®Ôø'=Ÿ1Å=ñφ >þºXqXg‹^ "|÷…) Z¾ÓÈŸEÅ[ƒ” ))|ô»Áï@Q6O|~ú:@‘I.P2Æ"†ÑOñì_üö¦Þpù[”d îùtŠÃÃcœ, î8^cÒu]S"P" ,Ò¡Zº8$÷]oªH”À½î sI*•V¸ –<@ùY]×:õÏ‘ýDA#ò=±ÔeF¡ •^UZéó‰.1&L'\¿~W®\Á•+Wpxx¨¨BW!~¢¼á*è\ e‚R0#‰Î8g©å: ^zëËå’›/ç1,´é 2³Ï/çDb‹.èÇd‚Ï0âËGý'JD,² »uªlʈi¸È]PBDRa#Nê"-ç%"ǘB9 %WÉØJ×¥ ¹VäM[KÒRR“»I:Fø”ïÿÅÿþ(÷E$F ÞLÎNqýö-%þ ûžÞwEí~ŽËŠU«¤”d²Ñµú~{™v›€ºò%¯ ¦^Î_^§®’”ð䪟.ײ‚‘9­¦ —߇ÉU‹ÅãÉD[.—¸ví޳åf„ Ñ qu¤üØZS |FIN­rÁEf×8:¢ý2§ÁÄ«Iz„>b¸¼ò)ÏMž $¬(ïI{HèN«‰á”Nkˆ£È( Þ G\õ,öû E½HÐ5J’ѯÍN„ €()c‘›¸Å`ºF­F(혞é³ö¿½ïJà=W¯|÷Ï©Ü7íbŽý;wp8µˆ êK ¹f-§ß/Î1i£ež,l–ëैG „ÛÖRf\YУpœç' CKiA{ð*÷rz¹ýM/Ä](] ÓÉwï%ûÊh¡›ÙlÞS@r/×®]Ãh4ÒkÉ3“çäY™Ê3“yTU…å²EÓ4ê3‹2PBÒÑ~ ÎZWáÙË70ŸNɨY›séa@½Ä²¥êS¸— xVŠšŒÍÏ2%€Û‡ áV68½‡Ó AeZ„N†YùûC|½ÌåŒÅ-,+5ÁÊŠQIJКERÀ÷,ßddD!ʲBžŸ\?¦„<`,žýó÷ ¼ç  ›íÓ ãÑ1níO0Tç_¹ H mÛqJ%[±BȂċSN»Ì]~lÚ¯Æà«Ê¡´e¬¾OA-TË•]ŠUÔœ&,¨ ~–F¿$D>VbBŒpbFUåÉÉDæ òû’ÞâNôINI1öJhÆ´”<·ïýÙ¿|ß”À{ª^yök‰=t݇w÷qå0 &*ð‰Ü%'Þð®kÉ 2|_6wÍÉ0«h½1KÝw€lu´Va¥KÁ)BI (-¤Ì5Ëmv–È"»ö9ŠPF+"‚zêÉÛ÷ÞS+²"´(ÇšÎ9L&܃pP¸3Y™æû šÌ#(…vXJ=E% ± Ào`6!ÅœD%ÈËJ² ˆQ.ɰ «òˆ*€1ˆ`Š¥Ì–Y]@c¡¢œäZP¸Nþ‚pÌu$VÂ0Yˆî¬ÃlÞákSܸ3ÇɨÅlÞ’Ьðd“UmdÊF+·lLZ¸E›§ä Bçj^ëŸÅ÷ap&¢IøþWï}QïiK0??à‹˜œâÚCÌBWI¨Œ@ÕÔÞÃY§‹†¢^Yq! WL y™/´dßKøœ!=eÇYKP·åRàLåð™\³ì ìs‰éø[X†‹Ê¬TéÉÏ@mv]‡år‰ÅbÀ@ü{ùYPÁÉÉ .^¼Ø»§¨ Ï©Ï-<µO—ôè2iTHdÞŽ7±6âõ; |a2Ãpc Òí×XbÉi?«èB÷H1û視YñÙmÒNO$œúžu]„˜ƒ‹lz¿ K½çbumÈnH|ö‚‰ØØhÓ/\[ 2 {›5v7v6†ƒAmQ×Ψ0ÆI"eEcDD^—Q•[WÕïÐÛ ñ/6ÍðÜ×þ ýâoþcqÿÇ{ªb7à»û·nà­;-ŒÛ‚“äœHlð¹Ã-@Ä P)¹bƒï:Äqz:Âb±ÀÖÖvwv´Äµ´î½“1¢XÍ Ë>(-ŒŽÃ’©Fœe†ô«HAFɈ"x§PbI2êóYQ*¨!¨(¡¶(¹ßªªÐ¶-æó9º®C]×}¤$s‰…”sôˆJëTù¤”h qcè¹Ó]`ÖF¼uå{çöÐ4bm·ÅæØptGšƒª%$óY & ³%\²ðÐ_Õ§H…%µ6—p+—#îTH d “!‚2„UÒRp" Ÿxh7[,|B´»ãNõ…3 [‡a•°³Yckh°9¬0hªÊÀ9ŠÂ”F&ð¾ÆRnD’÷É÷LO–ÒŠ gÐ-NñÜ_ÿaúÅßøï™xÏÀågþ$…Å]¤1Ÿâêµ»˜„lmµƒêû}ö¹A/‘Býh²ÓÑ£ÑmÛb<cc8DÅ@éË;çrLc”,Ñêð•Bº*Ä2¿R V¿[Bg%Ÿ ›}ô Ãò˜,€Y0cJX.—½h„[¢™ÕdÙÏ€|Q‚>y(ùø«×VWP—W7Ná{ !àÍ[SüìOÏ0 !>°ø·DÆE߯"²ßo]p:2K, [±å$+Žæ9Šg$ºÀÐ6ñ,̬ Hy­ö òÍXÃ{(Ja’)žkF&ÎYlnX<~¾Â[]á%E ÞG´æ¿?ÎÖ»²ÀöFƒøô#œÛ­AéÎQ¹âfR €u™I BuJ'äÒuì¦wþ#RöîÇ{Ƥv¤ßu8>ÜÇÍ£¶ªigà*òu%õWªÿé¿}œÏç˜Íçj»®Ãþþ~BdÖ^ ³&í”ì?[O-ö1T¥g‹¿[k5 ¹~ð5„”¡¡; w=@–X†ÔDNV=>À£p^’Îf³{ ÿj¡OÉÙ^e¢(Ó’»ÈœYé2q¨-Yù>""òΨPg¥˜ôzâ. ÑG÷Ì HÃæ\`¹·#qI™;!^DŠ÷ îAq=zFÎ]–Ü_„ Ä J@"&r'1%ÍV,“«.¿yˆåb®sÓÜÔ«ÁïͰ—HPnÎͦ”Ý”úï\,¡Í¾? ‡ðG1x½®vÊo‚EÁö§ìÆ•hA|’˜"67Þ“xÅ;! pØÏ@Pé'BÄáÄãöA‹”L«ØÜhpí¨Ã³o/ðíWgxæS|÷•^~ó Wn-qçî £³ÓÙ]çѵmÁ%üíŸþ¯ï‰xÏ\YËÅ'£Œ°`:  ìd¸n¬U+0, TU%›rhȬ€°ûûûØÚÚb Ý÷§# ìr!S¤¡c+I 3)% Ajz1ŸÒw–y÷;"Æ~G_ £„21)[É^¾Œ\Xkµ q©pbŒ‡¸pႆ…è+÷¨ëo‰ 'dÆXUz=³Ü´”„¦ $˜º?îpóæ]|îópUÃë<çÉg]L÷ë}ÐçYö<Ô²]1yd²Î˜þƧýã’>39Þ:ËéÇœû_ìž„âÑê”I& 'ԕçÙÀíÓ1ÚÀ.\L°Ž\”9 ‰+ÿ+…®#eä=ðÖþœk°»Ý 1ƒÒ4ž«0º½DŠ §“%€„£™ƒ;›Ã¤c–p&a³±Øj€Í >¸‰ ‹ˆïýùï¤_þ'ÿó}åÞðâ7þ]2̰NÎF8žuU3Q|`„¶©¢”`Þ Q,<–å¥Ù?==Åññ±BxÍÇç¸1†à<jJ¼½m— ½%1'+úG÷²zM=!!»9ÅWƪß^úx2[€ÂÿöKÌ_2÷ž|òIlnnR̸eP>!+ ø¶PhŒu¨êbÁ½FVrZ¯@|è(M?Õ*sRQ"¡ï|DÛE´Ðu]8Ò!ÂNýý"»H„²1¡w”‘”ÅFQ— KšÛÖV'.Ô í“¶ O)aÐ4T,•ÄÍ ·F¶€sÎbÚF¼usŠÎûŒŽð๠ÃÊhKz¦L2' õó.ápÜáúiÀ+·–¸rg©­Éb7Æ÷¿v›Š¼' …Àw-NOŽ1Z¤–@USƒOÒ  uS£m[µ¾²³M×uZ\"‹¨´ÖZ`g{à PŸ]¬³ m ¢ìsì ‚1ý »ÒW_%øúÖj…ÉWK“Ç;…ÿôÜ1"0ô×cV®!h Œ"<úè£ØÛÝ…“܈"µZ!‘™ µOsìƒrg$Æëâ#SzvYq˜ïïÚÑgã9¶¶wô’Æä$†ß…”"§ò¹˜Üx3!Á°‚躈ù"âä¬Ãhp6ë9ZPU [‹Í¡Ãî¦ÃÖfª†Ã†™/Šn$œXä"È;‹)&â£Dñóº{üÁnžÌ0ïx ±òœ˜&$Ùi)%b*åº7Ž[<´7Å£oC¸’­ÍíX\=Š4³'" [¤Cýáúáœ38Žt7»‹ËÏ~3=ý÷~ý¾ ÷Æ`­>ŸN°0´³€MZ¼#=é5ÿ2»»»xà( *pò*”KI| Ù*îT×yµ¼z¡ÈÃIß—ô[L ˆÑ à­kG¸pauÊ{7ÄBɱtÃ9ÚÚÍU’TO.¹F¤ &“%Þ¾5íӈeÈÔŒøþ¤ˆ&`B°©,•ÁùMƒ‡Î7ØÝr ªŠ·=æe&rìžÏl¬ ÃZ—B›;[=Wá­ZOPEEYŒ¡¿d„@ø‰¼~kó{ ¯7àñ‡¸~LMV"g³OÐTÎq‹:´v®ß]bw§AÝ8 ‹“·¸ þˆã¾»—¿õ'ù³é§ã/¡ê?K9%[zWø†5¢øë@£"°GGG˜ÏçË.§„[êïÆ«°ÞÅ>6§Ê–ì¹ ¹nÐ~zeqL..…¾DïDÌCݦÓ)‹…v@*…/ ”:Þ ô¡‡Â`À{ùþs9çò>K¾BÚ›Ðýôt®2¯âþB”-Ê’Þ#\¾2Âøl ÉÅ×°!߯±9ÛŠ¢/æCÊ+ßçٸų¯áêqBÙi(É=‚š ÌO wdÑEœÎ<Þ>hñÝ×'øö+\~cŒƒÃÚ.*„–.Ç«QcÀÛŠçÌSk ž|¨Áæ€BŒ’Y¼ï½ùo E=B 8]·ô9G7v¶+œßîÓôD^˜™€sïˆÄp{äqzÖ²±¢>—¿÷7÷Ÿï ù)Àêäð.NçYƒ‹ïd9åÔI{oHïyy))ˆ_q»p ß§Oùb±ÀíÛ·ô¥(S\o"Ü"eÆŸ¼ÄU¸ßKR2 zíUQ `ŸÀÊ!B…æ…^65•ï– Nþíííá±ÇCÍ-Ðåy•s,h%©*a;QŠò·ÌØ£—AI|wg’HßKð^ïàpLÏ(åJ9 rAlb_=0(¼»Æ"äãI‹—®Î1Z@·-_CÂÖ¢m[8v'%EWž[BBH £Y‡#à[¯žá™ËǸ¹?ÇbÁÕ{ÊÑPï>cœÂ~iÿMvvxì\Õ¿FÊ®„4©U%¯Üô¼vsŽñ¤U—ÎYàÓlrž E$R97¢k;H‹æ­Ç[·fè:*©O1`qòæÆaÜÀäK»œc<™cÜmôYוæQï)åÑæŽ)ÊpóF»ilnnb8b8j[nQ ãììŒæ‘X›Úþ-J¢²Ê±ŸL³jµKÂOTnÙ³¯ôÿKA/ÏQZÞ’G€¡L; û•±~U@Ãx衇”ô“aŠkŠ_il¿’±b ^–"Ëü5‹²ˆ”H-…ï:ÝAî_ž{‚Åõ;g¹¤–•‰ÐHɵ!¬\©4kËõÞ'¼qcŠÃ±×^‚j¥‘õˆ,ó'„×)Òi•»ðH°8ž—®.ñìkìÎCÁ;DZî`”ÛÒ)j1 O<8@ãòþ€2ÿ¢ö¯ìïïYJÀ´ ¸zgŽøù`o§ÂfSôw,¢ñ1s‰·N[œŒZ΋HˆÝÏ?ó—ïÜWðòwþ4‰†ŸMÎpp²D—šºAŒóÅÆ/&J@ï…“ã§e(ncc[[[úo8bccMÓ`8ê¾{÷n®ÂCë™q/É1dY,æa”g¹¬\,–Ê+¬ ÿ* (@y]¼[ÿÒ­‰‘ª}aý…ñßÞÞî¡–”røsÈ»IZo íaúŽR)(\ˆ(JtÊû#ZŽÌÈ3"w*÷>¼~´Ä|6e…K!³¤ª"§å"I¡ ·é…å*ZÜ: ½M64Ü[(X€¢,’¹—£ F-¦s¹W£SÂÉ,á¹+K\~ã ‹…‡sûðÌÄCHNvSøšÛ[ïh\3»hÈnœÌ[êV$ïÀZjöæÝG- njƒ§.æý Ú¶•!5’ÿ¸¹HJoï·ˆ‘SÚÑ[?D"ø¸¯ ´#nŒé1ŸÏpãIÚ¶E]U4²¸e2N*…'ïˆ#Ô gø5MƒÁ`€Á`€ÍÍMý½illl ®kL&“äx¼†¥–›YÈ~pò÷Å‚¶Ç*“‚ä÷Ùlkh¡rqÊ(3ìD¸ä<¶6Ê÷_¨å/£1Feî‡Ã!~øalll(B(r¡æF\ßß6V*ó» š“¬rß?ðÁÇ„ë'—Þ˜`4^ÇdÉðH¼ßn3V9U"Ÿ~t¼O-$嘪*én%Ê åHùñoï{´m`ÇÍ›7qxx¨v@Þ ÏdþAÎx<¾'×_Žl]666páüù"‘‰Ñ#Ç‘/¯B,Ö’ž=ÃÁ` QPXz.tvhÎ2,ž™`¶UrÒZ ënÎ1›Ms#¹|â’WQ È ÒrþÂhÒ©2pU&‰Äíá,õ‰@b²L¶‚ÏÈ· „œ4™¥wÁ=$,$ɆƤ._Yàìl©×€<šp¤á¡ ƒžòq’÷g²Jÿ‡ÀnUôEÄ30^xÜ9l‰#I çvضò#RÈÃËn0ËMUUð!âÕÌf„šRŠXœþäû¦Lò 뎎Np0¡eE嬲Àfå{”‡¸+PÎVòGR\ VœazÂ> 42 !C8>>Vë//C¼ò ItÛ¶F˜Ngz} ;¹^óšÏï½ÇÉÉ ®^½Š“““œÅ·y(ABJ ³ÙLÝ AÂrwœ:»±±‹/*›OD %~1•iÒI³(6‹Om 8£2çé#yîq˶l‚ V£%9›ŒÇ3ZØFÜ@¬>¡¹ÐCc1’¢Ÿµä*XQ)1OÂÑ ^;ÎUÔ4F ‡r7[(ºG¹oŠdP‹´¨JCš˜Ç3ßža6[*å¨soB3;›,7þ {ˆ¬,‰Éè*ç¯7ß¿ÁíS¶#efÅÅm£íðr©Ñ0¯¼o1FÖŒ—ÀþáÁ·L<<÷7ü¡€û¦bê¿%¦Ó9’­µUR×u4ƒbCŽÜ¾dÙ½ïèåkúh¿n*´r•ƒ–¬2"0Æèç³Ù .!’v hö–X4ï=F£Ѷ­ZzÍR¤4·°ž!, ܺu ·nÝÂt:íEJÒ1ƈŽxc4G¿ŒÍ _ãÁ¤~E ¯¤ÐîEe>„ÄÆ~‰²“(á2Š î@&&½*LåeФ*…êü>+ïÓ³Wû±À)ó86oxÊe¯ @ëé:ï†Â!× ˆ2”f°ô|EÁrrÜT¶aŸZ7eø/F)+à`Üáõ«cø¸É‰¸¹hhÐXœÛ$+ V`ôœ3 ÷(iïEi˜Bó¤g6Ø @ÂÞö€ e$ª»™Q§ÓëZWáíý%|0H‰ª"ÛñµŸDlïxõ…¿M‰{¯-ç3L¦Œu(ž±”Z«•vFöYOºe—,|WUÚII!o÷W^ȦØç~Õ (Cy§Ü@¤—×_Ì}6›a4áììLx×uªq ú×½x­¼(­Uˆ]»Äññ1®]»†7ß|S9 ûÎír‰³ñ™ZíL¨¥^ÿ‚Gy„|Z HÁ퇑V2øL¶«a¤Ï2‡5H,WÁ ˆR2†r0DÓ3\ÅJ‡I¶ nß=C`$D®¸ÿ¥{$©Æ2Ê`Ô]bBT>nĹÜÒ)22|:£a¸ÈfÔmŒ€<“tà‹‰š€·;ܹ;eò2r7#Î:5UíðÐ^ Ù¥HÉà hä¾…ð»5ù:TEhp8 Ô)È:loUp†ž¥jçNÅÂëˆÒ“5ß¶-ÆË„é,÷dˆa¾ýg?6 ¸/µ¾B7_Ï IDAT–Ë9f-àCDUÕ é¤IJ¥vÔÒ1¶®k~¡È!)^1IZp¶Fô∄JHÉ ®s×!ƒhuÝx.~¼øÈ‹ÅMÓ`>ŸãôôT…«ô»E».o†ò™Ï|\ÑäªFI’ò>h]¿ ï=º”3u8ku_À>‡]y®@nÎØ)1Éf3\–ùVOÆ Žé2àäô ÃÍ-$ /†ÀV‹%‚I5ñ÷­{ż«ÊAºÚÈû=µŠž9ÎoüÂg‡4›8›züàú ÇSn±E×ü"é¼ÖÎÓŸw¯ß˜ãéÏY îJ%aLc±µYa{àp:ë8@U­É{ !fRÕ‰ZHø™>_t '£››[¨ªˆ½ ‹YÇýø½•¡×sa¶¡cîžy<ÕyX;º³[tï‹HaŽ‚÷˜ŒÇèR­dKN‹d«Q‘k 1yÐK6 •ã*^ü¢ÁeA•á4äû·Ëe¯ù§X{ìñx¬m¶(þž·ëjÛu]+4Q&É ”,»>Õß‹pù®CžhÙÎ+"1çó¹~÷±ÇÃÞÞ9”Š5£Q}y«÷%×&ɽé"Ô$½ZžT/JQ’J&'´ähDÑÍØõ¥²©+ ¹§£9‚*ì¬qìAK3 Z[!%Êi7ˆp6GbˆÇèz BrÍ«+ŒÄ¾3 ôùÍ[›ì¾è¾÷æãyi>KÊÔ*¡hŒ„#ÉÊ'—pã¸Ãcx<ú0•+1h,ö6 ÆK§ï§|GLÊ%Å®rˆÑ(áyí¦”pû¤Ãƒt¨*‹óÛ·Ïá&QÔb4ˆàmššß´yÍÉ4¢ó@Óp„/|ç«éç¿üW¹ö¿sÜ' ‰Ëe‡Y—àaá 2ˆ½] ^ \%e——¼l©sØÒ3Jˆ1'¶HÌÔ±ð‹õK)/GH¶Òg!`>Ÿ#„€ÙŒzK/$]Y}(×,«Ëž¦†²€€ŸNõXA2ùìâÅ‹xä‘GVÒãÉ1áÒ§Þs:÷pÖæ”göY…p-†ÍÊ®Å&w*–{t%ó)ï³×UÈZ$á9`pûp†Ÿn—hZAH[ö¡S7/¥„­~4ç÷nô¿!*ß:Ñþ{¢t­émœÛÛÀçZ¼<“^yÇá”èýP'hº–D¢¬sxõÆçvk œåç;XgñÀn…§Ô×bá3²²¦ªæ„ŸHŒä¼'…tpf0›uØÝi(Â`<`¤˜ˆ¶µËÛ”©Á1ÒI ètÎ+Z™ÁXº !ÔU¥S ndXÜ<˜a¹hQ7=UÕˆ¡¥ölË–H±”`RL " I]B4Îñó´_£Äé…mר=€Ù’jôáŠ#á¡ó5Þ:è°ô¤(Hé“àv¾S2ÚÚî, àxqçpO=¶ “hÛ.Ú 1áüîµkÑvÖYtWÞ%wc"„£.5Ú2ŒˆX‹éÒãäÌcwgˆ­M‡Æ%,|^²ž’"ƒIé’B¥çu÷´Å£ é½Åˆ8;ü±d÷¾D¤ Çb6ÁÙ”ö8K1ê¾~ÆPVX]×Äú3/ õ×ÙסrLŠûl=/Pð ?‹ö¶ãí¸­Eåe­ñgeX°L@)cÚ«ÿ4Á/S”C^Еrr¬„ëº.vÜÉ/sÀE:²”üc žzê)ìîîòsLúß^q…«(…§ôåW7Àf„ Ï®¼G P 1+&ÃïS”LY¨$D¢@_ !J˜íl0™’5+‰·ë=1DN ÂïY©ÉÈ{ñ Žõ>(ÑFsá„ã(›ËDL–T³`XPSvvœß,¶‡cÄólïþ*WqÖ ÅÕ»K´màä¥ü,77,v‡ÙOÏ®…´ô¦kÐV÷òNrw)g%]Ùâö©G×yl j4ÕJIwˆ+.hñþ9ÔÛu'sƒe+‘ …å%»ïZ¼òì׌AŒm»Àt…RhCÊOÙš-°ì 8ÕQzùçzmREê†S dätÉ(]×0^Uõ=.‚(ÂGþsÕhQåïZ”ßKÅ"‚TvüµÖjŠ®„'K¥S^{{{[wô1È“–HB„ 4U*µ21G„NFð^Y{ù¸<· ú<Ät¼‘…,:QÎÂÅPØ3§ËÌ•«ëpp8Õÿ{êRIÂÂÙnÃCíH ²‹G±ucFdM ߉û˜H™,=ж‘s èyVÎ⡽ •×&0c9—Ÿ‹gLJ‘Fó€ãÓ¥61¡†' uí°·AÍC£÷BÎÅ”´Ç¤¬ Ê 4ª¸ZÝ£Ââp0žv°x`§Qê=…)­Xr(¬Y×5§Â;›-1›Ó–çÔ¼Ô⹿ù£9ø®@òsÖÆ ‹ù£Y„«œ ár¹ä"&@@Z^Øu‰M{ßõld7ì¢Êâ1ºhÄÂh1‰µ½¹,ø²’nÕÚ–Ü€úÇÅŸ~”Ê¡$³dç]9ŸlùïܹsJØÒ˜ž5úÉ<Ì 9²µWƒå9­Ð¹Éœ Ík ŵvÞ{FRF…^Ü“šëïE!HOGI/Þ?"¢ÕºJ-­„Ŭ•ü ²à MMï´ó0–B¼Iròó]ÞåXãâªtÎÁÇ„ñ” žàÜùÿâOÓÓ¢6§£—û/Zk‘ŒÅÍÃ!ÊšŒÓ^ØeH|ŒÙ+)“+1‘†.q»9‹Á ÑãCî-aÅF ‡ä NR„•‰pFΛw§V÷ÐU88å¼›ªFŠ ÝìàG”Þû ¢ŸñBX.æð©âHI­šlÚ9žªp¸Àè¢Ò´JC>^ ÔDQ´b™j¹ÚL$Ƙ7-@.ëâeQ”Ÿ—Ÿ¸G1”®B)P%·PúÚå¿RÀ÷vwug£Õû–ãò5>JH0%ðYil^æ¤Ê4¥¿¯]‡™ Ë‘…*»]+Ï&DÙ·1dî„yWU88£P%ÇøÔóÏZ—yCÖ½v@m3¡+]ƒ…HèuÕuáÛS%è}ÀÝÓÈЊ Û[5¶ê,è)A7õ Çs~BN*’kŽ[‹éŒ£üåÎí6¨]N@ª˜ôã…|u =n ,jG®Œ 'ióvë¸Åbé±3—#gÂÜq¸u{@J3FS\ÃÇÞGDNPCXüÇD¶7Þ=Ô^»kgXt‘ûñ{e‚[jÉ$ 1j¬°óä{æJ0±ÖY*ém/…’ø#B'ÿ•l¯œE˜Mi‰Å¢T“bÍËZñe7"¥[PºçËVfR§ Y‹ ÞûO„Z zÊ,>¹€¢[NÙqJЉp˳’@I"f¡.ŽÚ£×uÕãJe£ì­]ˆ4× Ñrp8^âìtĈŽÜ8k\æ ¬£Ä›¡÷F…/ûÛyÓVi.$®\Ê•$Tu…Ó™´ \T•Á;µºº‘t÷_™#({6kqrÆÊ‚Ÿµ«j ‡.lÊf!eÛ2Ò=Qç˜ÃЛuv…¬uZM¹g"k'½¹ùhŒhCÂÎÐP7d&ÈmX‹ÊUÍ<Ä ò»\âÒ·´>÷¤ì¹®k1wð¦†÷Ãq¦X´`á¥U×µú r3²M—|%Ë,Ö.!­ÄŸKb‰1¹aƒ\·¬é/y²¤¸ª²—Ü@IîÉßêºÆp8Ä`0€sú]9^…|Ï9§Ù}%3Ÿb.–…!™³D!44Z$•L½„îÈ/õšL%‰¼Ø…\Ÿ¯R%BäwÉÑ›]‡”’·¦xo€áöî2àätÉ¢Ëùÿ’—@ˆ€øÊmê\H#Ä¢5VKw%w¿$t«ªÖ”\Qúm°ð‘ÓòörUåpaÛ¡âœÙw1!'—‰Ù’.HÆ쟶žîݲ2ªª çw˜0´’^Ýß0Ær”1Ó6á¡ÝÖ9 Lqw!âæÁÖ› ¹Fòý”€ƒA¥eÃÖQÈW¸’q8:mµã`ÐŽ´=ß•xõ…ï$$Z ]»ÄÙDÚ3f*3T/!qJÙ‚WUÎ`+³îúñßL¢D,PÁ‰`Rì Hiùôåð<Êri’¡h.ç\E àE*ßv_|ÿ2|&!H…Â!e1žL‹í·2b¨.× ¤Œ2"3ÇAC¨2ïÔ’ÃUås‘€ìP:·(!Y¢œËð§ÌAx€ñŒ6%ÖŸü~ùG‹87G‘^z_²m˜shšš¬x]³ßNþ<…Ý+^§‰1>&ÐF=’Gkb0`·‘Ÿ'ñ3VatJIµ<šG,;Î4Òò ¸°ÛÀiæ)ÉU…r<éAc±Q;%­i>Ä‹M–mÀù-Ùý99B*»R¢Öæ9È:ó!âàÌ«"b7ú‘dø])€ÐÍA»´F´Ë9=rgZ`gó޳B˜ˆÿH †ª0ü²$qƒ¬bTNüSyQ!xþ½Üj«ŸÚ[úî)%õ»Û¶Õ¿“š¿Ÿ]„Jˆ+¿KŒáp˜}hþ½D4ß ¿Ç1™L ¡µ’´”88=ƒ²”9ç-H~„¸YuÓ-¦¢ºK¥22P†JË;(‰WÃ.‚KâQÖ%ʪê gã|×#o8ËŽ’r²Ž†È›q ‰ëôýɼò^ R” R©I€ž«õËE $©ýçgä(¥˜ºQs”¡x’í+J)w ¶h}BÛ K&ÎDlj “5ºeÄ"nUÒ3PÈ@ SŸÛ4ìãW0wŒËÌæ›Ëû+´—}Ú.bo+ó2ÖY}N,VÍI‰ØŠ6µM¡Ååg¿õCÝ€wç$ÊQN)a1›aÖYÔU¶HÒêX,K×QOû¦h: ÖþÒŸ^‡ì!( ¸m)¾Ù¶­.ì²0)'Ã8g9^žóîå}ª*+3÷ZkΩ‡ˆ3Ö®ê>§»êr‰ÊÊܹn{F̈#FœÖÅíXz¿°ôaKP1º¶~Î÷‹|{éÑpX«7%Ö, m‰¶Ó“&Kþ£:õq°«‚–"#'ïˆÓaÊ#HzÒ[Ò>«aŠÇ¼TÀÍ hrŽÈÃNN¼aP|c»é¬¥`™\I¹udÁ¶†Ûc@q£ë Áòóý ¶EæcÅ8ª4| ¸Ÿ+JK¨eAJ’­Ÿ¼› D?ÐR¥,CÎ3w„¥k2îïîŒöËEoÊ;nÇn\xz*îª1FÛEZíºw)&ÝE)ùò¡{½¸ ©=6àK|1¸æ"OãP«?B®ØT zµ›PóåË—Ö›àNŒkÇw%M>æà66[Ÿ%[fi †£”b×#5q¶K:ƒÖKªV^ [Uab/T|æïPÔ+äPéVTs¡ ^ÄnJˆd[UUŠŽÁFx!P‡ Z„8ÑØ¿?:A}^Ã1eFQPLAŒ3)0,oïs¥…]v`ªõêøPZ¡Of8¥is Y>·!'¬-â|ŸÀY˜¾úÓZÃË×3楷—"XÐg:ä.Õ¶¬Ê%€Ê®Ay «à%yV¿)è€ÌàNRq\1Í)ÚCæf’Ô{ñƒvu“ž«ê.‚æ4òõlÍ6 @s¼>ܱ¾<Ýei¨ã8¾ñ3¾Ø1Lö࣡Aø¿çŽIãfXIް/íÑù0 9j#wpFD“}®Ð C<¦•ã´)ˆX KMÜ}‰0óX¼×èOÓ0Ýk4ÒÉÔR á{šFÕ* ; áõ,ÎD(´}‰t#× Æ=º†¦~Ϊl¸b½"UA.âŒòø³Ze‚iÖ&äXéZ”l`«î™PM8¥Œ”$ì¾»R#GŠ›ì'íÜ`Uöp¬Ê3/+j‹8Û ))ŠÁIBÄ«‡‚yæYÕ„ÞRbCJ=Õm­+V·*øÇì\…˜„Dµ|~9ð«’Ã×FaŒqÑÅeHÒ žçÙÆLùݗ쫈»Uþ›óàDB3Fî!€Úw á÷¥+ÿò¡ñ)ýx{Oþ)µØ—ŽKÎ7ì>_äõ­ëjiÀ¦¼˜óæ¼Ìù©ȼ—/1ÜÞ¨Ä^u ï]dáÓRX=˜ôñg<Ÿxߺõ1 蜀Náíí±ÑJvâèa+Õmƒu Kd¦@ŒiDê ]|ãîaÑt&Ùz†@#ï©”²júÉæ³.ý3¦Z/°Ô¨‘få¿sŽˆÊRdY“Î2çŒØÓÏÅíÁ¾3– @I FùóJs<ž,¨´ù—/ÿw4:9¼xñbÓ„ÄüÞËTÙg„ô›×9 ƒÔæ½ãk¤š®}ÇTKe#î¾¼n!V5éqH½a‰=‘ëR*^ÝKW({D%Úûéhôú§QK{C6g3 £†ŽU§e”6.N‰%YXVGÄÒH Ä`t`ˆL§¤ŸL°†GÒ(6ç„ãÊjRÇ1B†Dlk12•—eµ‘_p\e}QÈ@iˆ^ëZû-md–M# „¦­ÓåÏ;"vp\´ÌnÓ#ÙŸ÷zgÐsë¶i»zIG†d« ì3£[ˆ¸3¨Œ8 7ìQóÞÖY7;*Vóø>´í!`ošáßt| lœÿžù¿'Ö°Ä—â¶lç÷¶²ž¿öW¯^áx<ÚÎÙ D}—eZ“õ‘ˆ×ý"õµ–æH“>%+uÇ×û ¼>¢ŽŒH|º•RÂ4Ž@ˆXi(æ%·5ܯì~DÎ…HúgÃhh6?0ƨòê:e¹ÀJlL5RŠØÑv請6‡“Ò4áXEY‰hUA® Yœ*5,‡!#¦ˆRå£2úZkx˜Å˜ÏwJ¾Òkc©æeEƒ 1)µ;ûÒr HAJ³ò90-ŽªRÔP›J…K`cú~Ñë…@‹nóR¤ý³5pð¡ÌhC·¤nO )¨' 48ã$ø&ÝwDrÐûO[à­™!ø°œ‹Ö³è<Ò}ª²Cn°ÝÍiˆ@¯ PD¤OÏi›÷Òpè8¸˜=˜¸, îïï4Љ:]IvÓˆ­39êù²›U6ŸÜ+¼àIm Ó8èÀÎ7õxŒÓT£µÞ@´®+Rεõ9v ˆ «Fe4ê. N€“¥¬!G ­çW3vqº=·¢+ÇÑ× ¢ sNÀ¸@¶Ì²®ˆ4‚€êÖŠ¤²6´î T!D¼º“Ôµ(cUœ(0f{2 |š_RÅi.B#¾:ëTíέH*G§J¬¥7IÏDÎ~¢vF!$ÝÞ͛ͦÕ^úy¯wr!ôúñ²®Òô¡Þ”;7 ú}­—™ HCËÛU:_ºräCaimš&[Œ«3>_æê×ÛÃI¿Óó{æ~]b»Ëgm@2—¿zÀ¿¼ƒ9ýý~¿·¿ã1~ò“ç`†’s6@ÏdJÑ&±r³aWê3«z\þÏËjÛN)FkÍÄ\›:ì¦÷CÐÉ>G5bѬQ:ÞÖ¢Á(ËqÐMœç×±(QXWåý£35{j“¬‚Áê8c!"ÓÁÎKA±H‹4RNØœ=‘už‚VУ o}s’Ô´ ¶€ÚÔ1ò³ ç‡Aï,è‡NÀ–JSvÑQm¥4\qš9q©Èý,³Ð§×µhÇŸpŽÇ#€‚ŠáiÄVH7Ž1¢Ù0)CâçË}¼3ˆÖ‘~2¼ä¤ôg"qãcâÀXIËØs…¹cÏa9Ý–?•ÔNpɃ4!ͺ }¨ý¶h€ß{<À#Ö>Eðzþï=;Г;1Њ»> ãÀ‰‡ðÚnoo1Ï3È]€KS|¤C´?¥„Qû(–²½ù`Ë´ë$ð¸ØÛ”!]D4Ž£9%1Ž`àÏœñ&07/²€k)–só~ó0J´WEñgÈò•S6ƒdßA­:3Sœ£t2 €¶%jhì•ëÉYæüQåi]ɢ낞â°zƒaGUŠ^Ö Rèmì$Éç´Å rN( XJÃ~7Hê ™(N¸÷T-kgÅVÕgÜOƒ¦ÕbOlãÚ¸{X6ŸwséøÏ{½ €5ØB£0Ï·ÞÎk¶ ˆ?¬ … ÎïúD©9+΀B—ƒ( X]Béœv^ìa«ÿýiØ÷žS2ÏÁ|íp8Ø}ðw¾…“¸‚ßýq2Ÿ}ö™åtП!~u»ÒºþÑMf8<Œ£¡Ï4:«ï»ëðm°ûd„ý|6L<¦è S¥þ>Áv(¹}<®$6JW0ã@k¢ý utn2£O×¢^9eà ’J ‰™ŠI“EúKÎ ©ÓÉ»ÃètâŽÀvãA4`]Š»yÓ82/y»8FÒMö¾öA(ëRbÁ˜AJ£@03ØR´ë%¯fHZiŠWsŽ)ñÞDwqÛyúó^"y,ùøºðTnÉçd÷‰QH+ê<ϸ¿ÀñxÄÃÃƒä¥ g™&Øÿ;Å8ƒËƒu¦wûPLö³{c4€Ž*0´šó”Í×ZÃóçÏFj Gÿ†8 dâuÜBvÏÅÆewº0Ø/È‚ôߣsÚ·ÖK–Œ*<‡ G'Ûð™ Y)+n_?èçóöª ±0bô2nÍ´V5,^{±FÒ^[-ÍÉ@Å '°ß¢ÇŽÔÓù—µ·6³ºÀûN1iÛt1œ@Ÿ"p\ÃHŽG¡!G%®„ Â#LcÖ0I»5…Öˆ\‹ÂZo bƒÜÙ~0'#ØG´çÕZüc¡Xm0ø‹^ï¤ ÈªÖU<`’Áã˜ÐZÏ«sîe>TÒ0åƒúì³Ïp<Ï’În·Ãáp°ÐˆuçnØ,Å%‹ŽªÉïõêh¤ KeiðøÆnN£âßœa|¿?.wJöÓ0ýÎ ÀfxʱÇRJøéOŠ×·¯pqy墡Ðé¦v?Í4ªåèAûŽ ‰ÑÇñxZÇV¤Í9Û=äœMpƒçâõKIJõúrFsø w¸ÖÆ!c 1 hàlˆZû¤ÞЃ€yòsírã¼Ík¹†ôk–*0Õ)µ §,~Û âŸR@ŽÀQiÕr/½¤)CE«\IÔE‡€(éŸr,X ¬vé}he!*Œ¥Ê£à"1àÑÅ€ÏîgnCPy²Þ´KßClZÖ^¶õiÑf¤ðŽp ’2Ñë@ã7(UK9©Ý‡Ád–š‚+!Y¼»»ÛìÊ¥ˆ:ﬡ­ð±ÓÔÛï÷8Çç† ™æV<0¶;9wÚªÀäñ8›Ñq§”ðððÐË.¥˜Ä å"óëóÚ¢}ïwYÇ¥ñŸ:`j†ðÿþ‡ÿßÿþ÷Mƒ€‹ží¾"îI\¡X”壜ªXHˆ÷÷÷eÔ*ÃO9šìp8à[ßúÎ4M;ˆ®³ð"ª=2bøï¯=+X+ðé‹{«ÊÈ‚hˆbWM§›®‹cލu6’È‚d0­c«pϺËÌ·&Ƴ,ŒXÚÚÜSÌ>I™ŽDvï4(£2 ã`xÌÝýŒÇ7£\w•ßOSÆ~7á¸V%¿E’ö©×A«1Çゔ،~ ­ª~ IDATXêdéZVétÅ"ZÐY§oIÉ\‡¤NK’’âüâ24‡£ý¢×;ªw©êªRÝQ;˜§Ä˜\¹©"Æ DXCÀŽ6×Üؘ«UwöZ+þæoþÆBN¶ÝÒˆÙÙç™pô°@¯lsã·KƒQÁ÷zY†ïç±|º@ZrkÒ{N‡ã FtŒ¨Zü×ý׸¿¿Ç×¾ö5<~ü§ËF;Ö²,hµâþþÞ&ã³Ýãíí­×ï¾Ò1M^¾|‰#¾óï %©XæYw«ÞÉÜx³ãjvšq At¿ZU°¢sEȦËQõë"”ì5(­vÞ<뜲ðã!k9"w çÜçH„ˆ†jϦ´=ˆÄfÄ(c€ãÍzîß•}¸ks8JΖµÙ´"¶À‹÷êó ™²JRì-¶94±óƒæ iDŠÒ$kBÀñY?ƒZ †<ˆ9"†AšíÖRÚ†¤©‚®=ÈØÅª¼‹ÏÇÞÉHFâq^0h¨ÖE=¢1·bÌæQÉå¦AûR cš&÷0ªñù«.~¾NØçÚþØ4^ +âòØäîR­HùÏ«åó\/Ø—x3ÌçßÄ(¥þÅÊ@­?ýéOñüùs{¼¿ûû{¡ç„Á¦i²,8;;ÃñxÜ0ßv¿t­5üøÇ?Ƴ§Oqu}-Ï'w@ö´´ÉH$€,DØ3bG'ó0÷¡!v*p©ÊsøZE««ò¢å®ó²`šdÂRRùx/ÕžRSž Ã(k‘å°@j'¤×®Ëªƒj‚ ôJŸæŒèµ—²¢Ô¬Äà€hÒuÀ4&¼ž‹¯!¨,;S¥Vu@HÃ݃ôì§„it¼›:¸(”ç¬6B|¤Ô‚– aBc¤Ñû_øŠ)a)LÝ´ú9¯wrUÛÖ*–ÒYIË*’Ñ-Ä(ž³ —ÄhtñÞ ‡ù!û–U¾¿¶»ò)àÆ]‘FÍè€Ê<”ÂÆÁð:ù/ÿžçôø_~7áûØÉÇ—å{î<>ñÑÄíí-¦i² Bt.···ˆ1Ú1¦9/^¼@ÁÁiÙòx<sÑs^ÝÞâêúzã°Nï‘•„䢬Ö$—®¥34©²;¯ÎÀùl ”"VS–ŸMYûãKT%šZ­¶žRÆ2/›áœ¬(aª¬x8ê9¡9u«HÈÐ^a]›•Gè @òmJn—Z8â¬61¬ ´ »>K±,µÕR-uY–Ã0‚­’gȵ€œ¦¼ž5Ô&')es²STù4“l8jÐ$ÐÀÕÂg5~Þë@LÙè†ÓÔët•4-û©d¶uc,Ü­<çwMÆq·ñ ÖïÈ÷;¹_X§Í/þo}~þ¶Çóáµw$6ÆRÚƒ„»µfe¸œ³+×¥O šˆÎÝÚó_AÑZÃ4eİ j¾^jg’ gN&F¬Ö¿/eÇÁžeÄZ¡ÙAÿMˆ­A#fCÕEÁ‡ÌB] *E.}û%Äq? Ñ-³Z’*vc¸HùM†ˆT¦á"ðR ÖÔ‘fdÕÿ#Hi>XæœÑp¥æßšˆ¾9”d”aК8™ýnç.Ö/@~ç*Ô¤sÑä†bÿ„†²vO}<Î2Ê1¶-¸§{\lþw4îü\È>²ð;ÏÏ Ýùò†ïØ;¾Ç¿x <.Ýø|øïÉŸÓÈP£D•‚ujñ˜ÿïB:2ÎÅ+ÙÇ‚9ª»»;3âNÈêÀ'¥ËK)Øï÷š®,g… §1§ë®ÛŸ“ÃQVÑï¯AØš;æAÎEÙsÒ¶ªÀ[¥˜S4üHz ÄP)ÒS7 ÏJvßap¶£¼—’|Ô_=Ì=*cE£A…ˆÞlļÎ`‰9c–š—ÝV=¯F€M»B`uŒ4ßdçÚZáÒ+ÑjCHBû]5î˜0@IJ.˜"°ßI*± í—u•ÉÙÚ=M“¤wY؉ AR‰/;ˆ1£6æ,9E”VUA +ܽ•ÅåÃæ•³³3<<ïL}äÀ(€üt±¤Ð?3¦Ôôç%57¥ˆ)Œã€3š–(ƒ ˆ{C®­a-B&+ªwGV_äˆì*Ÿ)%,óŒ<cé 8! ã2§½®†ø‚ME”ÖÁW~µT9V‘u[Q±ßíeÈY0ˆ²ŠñBdÁÔý ¶€µÉF¶¬«õ3ðó^Ú‚X#æ²b78;Œ(ËŒÖøL›¶MyÈ8gq¢(EÒ²Ã1M"M&òâ#Šr¦qT©6é8첦J@ÄÖU¿ýõŽ€9DZÍX›°%÷ƒD×Lô“‡ª¹d¸†ítš3r!a³s®g»Q¾ó]{xÐc^î ×7JF">—[šâ¯ÃLJÝÞÙøˆäð>Ž£…è OÓî¦Þ¹Ð‰øÿ0ôч úüõÀ63Pêý*žÄȪæ—^¿°§RtV yþ„².2¤ƒ©Cˆhu‹‚<ÏýÃb G’Hç[-"¸1/3—† á ¡Ë•ñºRŒ˜†^SçN,¥Ù™CŒHªþ[[E[;7eP'S¸»@© ¥öñ጖‰†À9)Jå,VÎoò€y™|\$絜MÉfkÎk•hK×98à}gn¼ÞCÞ}® ¿ iNDTÊ'’×”Ö” ¨;«âkѱґÆ^²©§†— ]=À’!"ÝôUÜ!xèÏe2\úÉ3ÐÏ)€Ñf;~²¬*×Î ²[2…<–# Ä#¡/X×yè”N¾ˆÌÁuÖ ÌóŠ¥ Jûù²,ÂHÚH£µê Ää*?M³Ì ¾°ÀãZ1Šc“^±U©²,Øå @gŸü{œv\­U¬¦oq¶S)ñÒp,ÆQ‚:=8GÓМÆîl[Òð%7…8èÎ õÏ1 XÃuYElAL¶rÀi8KÅ/®SņÇòັø4À…N ÓÐd·SžF <¦— ÷å´ôU‚ÓÝÿm¡¿w6»Ý?f„Ù“û{F"à ‚+žÐĪ Ù~ÀvÈ*ÿÞw*^\\Ø5o1Š‘jg$TmÈ¥IµVUê®Õ¸:“’Zntþ9(é¯èám½T]ØEe¥"¢4qPCôÞÄàUûÇ „„†Ex1*S5hþ,جbDhd!ª’h)eäÔS߈d6ÁýQõ'J§˜6dt+k3§.‹C†ŒQsšeY7šMÿv7Øï$:YKAEÔ™ G§ö€®{Ȉ!"åý/°^y½c3zøm"0Â(|mîÔšS™1´†i­…’NÊ^SïåA€+6ó=¤óƒlŠÓ`|ÞÛÿ&w€ÿÒèNS _R<Ý•ùòÎÃçó§ï¯?¥„óósåI©…Žc´†q¸ë9e’þÌóù´„á·ôˆÃôc2®Ëž`úg¢ó×ENàÙM"8*išŽs"±”²¦‘Ì«äÂRJ‘´$«Dˬ-¾9mJ…ÂìkÈ‘ŽGrùP¡áp0CãD)iÝ¡qœ°–UÓTVVL‡ 14s~¼ÿEyü,kßß?`ÚMZ~kÖQ™SÂ4DÈÇ%d-ä;H¹ʺ¤ZðZ b¨ÈJ°ó¢·USéV+Fí”rÂ8Rÿ@²âðùàÝ”l!FÆ.Æ8ðb»®_èä‘Z­ÇÝågÐÇ-Sj€Òd%Ôe؆Ó̃…™Øå­èHNsq–i$>ÿ[OñeH`[ú;E。{’Ñ¡ÿõŽÁ×éý.¾y8ÎXùwüÞÓ~ý9½C¡ÁŸ¾‡ÇâÿsÎxüø±RPW÷žÞ$²>d—p,šñ3o§³óQu½ôa ÍWU”Œ„ŽI@£‚€“)ÂÜù j¶®qOpv³’^ú X4JŽG4ÍaÅ¡ $­‡/Bþ‘*¹×Ð2Z;XK([ŠD1FLYR FjW¼|=‹ãÔÔ(猺® Zr ty³¢<ûV+v»Qî­Û]ËÚp,]@µ”"Ó‡j¹¾šP‰›¢¤<uXÊâ¤Jź,8X—9%œïTµ6¼¾[ìYP'©ªË1â|’ù‡Têù€ïýÎï¿}aû5þyoøE¯ßøí?!ÊLó”³ä}:¶ÈnLˆ4†ˆG4ãÔÅ ÀI©Õs¬o ã¹36õ²§ 4½×ÿíæ¦co˜áq½X~Õ¶"$ô»¹?†¯ð÷Þ!ðüþÚHú‘MK»ÊÆQ;å‚ uúû”kæ\y >õ¡ƒôU €½æ[ú2 Ÿaý¬» =´¥ !˜Óá$_ž¿(ˆ!ºÐ ÂW?BŒX‹°ß(=Þª°çe–F2‰{Á:|kB+æ¦PUUXî-ËñôÇ쎫áxmÍü‰Z~Ž”ÖêíáÃ0¨HˆÈ©Mã€ýÄç.)E-ËZpœU†MŸ‹ $„øQ1›(ÍGDèé$KY‘£Dä/ðó€*..vÆçŸK wÓd€¤lš ÝȈ³˜D¶,MW_Ȇßq.  0N{œ:Š‹ÐZÎY‰=2HnqyP/™Ê÷ù]À¦¡ˆŒ9“Ýým;¼O ¼áz#ò_>Œ÷Ç;Mü17;«¾ï´WWW6édz9 ´¡;æõ¾È+øŽÚD#³í|¢h±`ȶ°›»6Þ‡)ë½f¥º6­}Ïób€«$j%ȨÏ-ºÅoΰ«Ù®¥ï¸U%æ¹²,¯­Â •DSŽ&å2û\ªõî غ´ymÃ(ë”#Ò–yƺùˆi' Ý–¡aHªKȆ¦VQTy‡!;rŒÅç&UµØ°Ÿˆ¨ŒCÖõ,÷¸ËAÇ™E,kË»®]õ™JßÀ€VV<º> µ,@þàŸþ·Ÿ»ûËU¼ëK›8Rqv9ìF˜`8º® lti+Ÿ&0„ èê²>„÷Àÿ™båþC©ó@>ïõÎ ¦jk§¦1a@×ù(Ú9Î ß}€M* }‡õ;s­Õr>þ s5Q…íÚéüÐýníK€>D›‘ò=þ{Þƒw §ï÷×èÙwÜMÉÊ£Ó€óós;6wÇÌÝÚõ“óYùk¢‘2„çË¡³-ßÔGð¤%Þ“”˜º˜ Ÿ3Ÿ#1^¿E-±«ê&Û¨å±\BlBG¶à¸È{Çq°Ô°:õ`*@‹Ð‡:\7]*9 Á;oáÐ×Ö?CqjQspaÕ…(X¹!FÜ?̸Úk%ªr‚’¬ûû£48éªsæ"Ž£aJU†ˆ(AçõŒN«­+f‡è¢¨VðäzÐÍ,àÓWÅ>Ocnêh®BÄ“Y€ Ãîñ·ß/üΟ÷ÊgâýsÆùù9öCŸo'óÜ’-ø¬(*_VÜ.ØUZôà|ëö«]ëþ4ßöFê¿ä˜õ c÷Nçôo¸Ó˜ùUJÁ<Ï8â8C÷ÆîÃßqöåäºË„cˆ¾âIôÀwkZÈ 0êõÉ3äù½t9B¸(¦µf¬„ðáò¦ŽO‡@ટÇ~¤Ø‰gVö4O® æ0X5ZTðCÂf›˜Ü¶y:! è3®ºx¾qŽ-H$Ú´1JΟ5ôã-˜¦Q‡³Ê±ÎwZŠÕÝŸ‘ÆÃ\-Š•9•]72¥´?¸1ŽCp7‹ðºV锄L—ftðøbÀ~? VàøpÄúôA£ eÇjÄ{œÔ²âúí­‘ë÷þé÷…Âà™€@Ì{HËvÂnÀÍYÄóÖq›&¼ïÇŽYz pîZ|qõÎhbò9o}Z@[OÁ9Ÿçò¼<wFšGåIšñéï˧Kðçó”cËÿ//mç]k—$•€eé©cžq·g…„Ïj]»%ïC0˜„êêò~±®Ë kPÞ‹üô².(¥Sµà<¯CÇ}éqÇ‘rÒÁÒÏÝ•šúl+–] –³k;1¬ež1Œ#–y–]m,Ƴ,ú”’–¡W„0hz »ô¼TÌó¢]ÊU¨ÂÖ“ãAD§„ó ¸ºÜéœEñ‹‡ÿÀ{p!ï@èsÚŸá|/J©!&×ÞÙÃ|ÀÉo崭ʎ߉¥¼’ŒZ‚´P2ä÷ä–=º t#öh4oa9 }‡$ÕîgÞ`ÌyAOLžãm/ÎN•}CŒÈ;0gr‚+ˆ°D§T-‰cÍ›ã3%ð*BQCH€ŒTxI (ä÷‹³écÚКuuÆ(sñB«8.«u¿µpqÔØ›ðñ£F|A«ÖäPÝI´†‚õä·*&Gm±‰sª=/ ÿ4 hb ÇE€tuY…ª…®T‹p†q0FßÍ!áòb©ÐŒhŽ Ÿ¾Öy„¬°¬ Z X×C±®Ò•9%à|ß1–ãRñ°çE4{©5¥„ýqs5‰ž`­øôÅÇ9‹$Y µ,( ‡O.¦i@€:ûñ‹¡ÿ|½s ð~û÷CâÇi‡‹³,Èé@æÞ=ç®øð|Û ã/æ=§µx:„¾[7ƒ H˜Gy¥Ó°Ÿ9,€gÅÕ*3Ìóla?C}~O'àÿÖ‡û–¢”­H ß3Ž£i!ÈX*¹8Å'Æd»eéÉn0/‹…³l8ñóØè’")Ë$Pu‚ K`>½H)ãá8Û1ø;Šá_­aYEÿnYfûý‚¨épOè¤ikqJ*ñÓD(ƒQÎZŠ*GsŒÒ —z³®Ú%锤i—RðÙkéü#}ZJ­]bîpvf8uP+¾ñDB÷Ö J!¶ñâåâ mâÎQÆ1äÔ¨eÅã˦) –< Žke&a{ažÓÄ´7àÇ/éxlÕ„Q¥sRžÍ£‹hÊÜ ÓÅG¿”ý¾s gÎVäaÂÅÅc:⨳>mCdnÐz÷œyrÀ i&*ŠÌèAò}~ -Ç2iÆ£ì Ù}(ÀœõóxNÀÕ»c× à5øŽÀÓÿûï}ªáéÏtè¼aÈûdÚ¯—<[×-ôDR¤¥£,oŽÅû&°Ç˜UD—>µ7ž;£*éÚLMvï0s–H/ç¢õ:ƒ­qvcGð·N¿˜QùÎÎâ'w°r/œ*±1ö>r¾Haƒ1e0~ìí°t"QÇM «Ý_jÈ‹²ªz./ƒ((˜l+L9¼sð¹õÛ@AÓo<~ÀŸÏ÷ðw§z‡d“U%“HIt;ôö󱓲 噎Ú;ÎÎ1_gj°Ø³î]âdUc¿ükš~tñU1:Ÿ~ X—‡ý(F;Œš®­ÌÊî™0í¥CÀ|œ-”Ÿ•_߬Eôï ëiBpB(RÏAÆd¥„ÝФESZ*~úbÁ *7¬åÿI9Òl£hJ3þõ¯]`c¯8D–B@—µ¢pWg¸ºßï…#¯ç÷å,þŸa6;Ø€°I yèÜ]i¨@oªñFïÒidÁûô»9ïq𦠒5$ 8ÑÛçîæNíå4^«gòu’KC„€©‹…‘Â›ÒæÛVhbL?øÙ¼QV Áá7N#HÞ8 .­¸¤;6 ”>FG€aç3* |(C8R”1`ÀHxªšJ‰fd…ÐaÅ)¼¾›ñW?Yd–?ÃÆ¦§ ”U§î´ ,ÊD¼9$<¹JúÈ;÷ ¥ŒÏ^ÜâXEt3Ù3í¥æE5 [­Øïv# b¢ õ³[™£É”íááAÖw©x|V‘£¢"þögvÛ7¾!'”*NðñÅ *ÉroÓŇ¿´í¾ð½ßû'á/þýÿÙÁ] øÿ_6t<’Ïüpì9Ç$[t +@Ïþ >»ª¸#ÕRðêöÖ ›B•t~wöØŽ÷݆tH†„Çþpœ¹7¸gÈù—w 2ÿnœ!Jy‰Ê.uðÉñ…,”Uš‹l9_–œXvLjÿ{U`ïtD?Í=0úiÐgkRÞºSU4SåñŠOË2#´†››Kù[%‘F”Ë^U7ˆ¡Y«s« ~†ˆœæE©Îm€€‡‡£0ÅC¼x9ãê2àaþŸ¿zŸÞ£ŒÅÑ+DSG™j4üúÇ{qߔ֛äkøÙËÇEû ¦iÀÝÝ=†aeÖM«kYðáդῤÇ÷«öc´Š:Ãh*ž\O)!´†»‡‚OoW,kÅ8HdCÃnˆØ¥>>Ç£Ël fˆ?øÑ¿ü¥Âà}a?cÄ´;`¿‹h刂hµcVúÝ÷ýºiX>§¦±Gp}Õ.‚˜ç¯_¿6'ãÃ}ë;wÀ¡ñ®So/6BŒ»>æÖü™' bÈlÛ=EþO CY:¬ûû{œŸŸ»¼¿ëÿ ªÝ£ æëℨ¨äxþ­#í 0ð”ω¯’´Ö4Ÿvuî°åpl¡§ Ö§Q»ƒ!â“G#ÎÏ÷†¤ÄnPyoÒùwˆ bµÉ¬ÀRd7•{=Hc¾1=‰Â9‡.æÊõt\+þÃašq÷°âõ\°×ê+·Õ¤`ˆDRrÆ7'\œyÉ6ép•M¦áo_E›U‘yŠù8«SÌ ˆ’”T+îîWÜ=̈yÀªÑÖnÚ¡Ô‚.örÌ~öÙ=r¾ùd‡ÝPqs1àü0b·ËH±é(ऌŸßûÿ¶×{s¢´"¥W;œï nZ?OQç•Ë‹á)ÃÚZú¨¯fŽBê©^µWvŸ^ àÏhð÷÷÷Ú>ÛÀw cçµy–€ÍB{[iì¼S.Àé1x^þmJ /^¼ÀÙÙ™(‹Ömí]¼Pp“ÌÀk°Z´Ì†“I:4Dɺ 7ålÀ+G[1EkUˆHÒ+У’œÓf\™w&ÔøàzêÏC«!Š¢.FÙY«r:–Úõ'óÿ""ÆAzÝålzr!ÎÒtbP€öÿKSGÌ÷­Éó]õ3¿¿¿GÖ Ãäís†%Ó©GgßúÚ•¦…î@ïïx(ò|J“Ö\›½0Ñ€8ð³)a¿K!Iø_»‡Þ±ÉhlÖ»#¾þôL¨½Zú|t½Ç\Mîi±4WœGÔº"ÆŒ?þWÿó/½ûïÑÄámù )˜¦ /¤3© b³[ï*ãÿ…<±Øbó ¶O’é%<+–büó‡‡ûMIŽÈÜn·Ãõõ5ÎÏÏßÈåOÖ—$}ªà œ¿óž¯õ{ÇCÀϧ4ž ýüùs|òÉ'ÚMÇF „Zƒ1á’rÈ»1Xßê¨6A2¦þZ³J¶å< ú¡*ÆXûŒFqÀÂ,džê)ÚtLkøæÇ×½d[™ÞIt"÷ϵ@P·`^fÔ”ö Aï—bMG!u6Ó4Y/Á£íè‹‚•L evž‚Íz¯¥™Ò[*æu6ÞC)+SÆ÷¾¾Ç);WbF)"k^ËŠ—¯WÜÞ/Æò hlµ¼”Ü€›³ˆýá`…|ì÷kF 3ZYq½‹¸>ßã06\|rŽ«‹h Ã8¡ÖÓ$΃•yÞ\ƒº.å)#ä‹_Ùnß›ù¬/SÂþp†ÃðÜ®@i ‘†«õh.F¡b7#³xê¨xNßEÖÜ6¬•0šµ{šw‚Ð4Møøã1©~Ð|¾fïsvZž:ï NþS'ÀÈpJ:p (äÃ|ñ⮯¯ø¤Ñ¼ P!­—€¢`LQ<ÓSéìD+¥6a½ù9€¬ ÈŽLNC¿g?MòX!Y4”½@(º~±Ï¸º:s –ü½_TÛÀªý,ÆŒT&NÁ±¢MAI{=j“¡ò¼dM°•\®µWDh+³‚1蘲ªÕ&™©”‚€ïmÄÕ娘†êüÛ0Ó âùKÅn”êƒ`U«–,e |ÿÁÕ€Zfäa@hR-9ßüö7&œDhTf4jkp–çÙZCÊ£I}ÉÚѾÿ4 …ˆZgÙý[Cô/ÿÇ_i÷ÞkpÀz/ùùáìO¯þã ¡q2„þëwB.DæÆ4r' U}°VnÓâááwww›]}á‘ëâò䉿ßÍ} ÁÅ~J8âu½\Çkõ@šwoë&ä¹<¥ô”òÜ'¾òÚ"†A8ì²/Áúâ;¢/å–S€uÛAGÞ~2£á³kfy¯‚ˆ·Eî^ûµê°¥Û´Ú€\Ÿ 8œ ³‘%`Á ÖµSŒ…u'lQ„ˆ!GÔºjH°‘ÿ’b…£9k\­ÚSç¿–*ßk”Ávs™0”´>Ï4/`Ú1ê{xöä*åõ7­å·Z°, Ÿ¾šQ*ÏSE{³5ᶆ:¯8ÛOØçŠë q&UI@ÃמMhmPg*b©Qõ “äyÉ(rq¤)@§½®3$•’JÁxþµ_ÁZûë½9€ßüÁÂ_üû×bHØŸ_âéã=Î|z\¼)Šé›;:¨Ö”âùæŽ pç”æ£y>ª¡÷R Ù{t|ð..$D:5d OصI.PŠèIà Öïú~çïèÄÆq¶ßn§M+=¥ ÙZóýúî»ÝºêAmg–=q…RVë²(!'ÛyHéíåÊ­ºQÀYòb`2”‚Ç‘¶d ¶7AMê¦Qµðµö§QJ½!@êߢ\$ح܇Ðzåd»z.söªìFæ½Mwýœ89GSJ­F™¶.¦=Š1¬Eµ[°ÊȲ,Øßy:â£ÇQdÍbF­’:„DϤJzóêö5é=ɸºº.ØçSÀõÙ€óCÆÕå1ã°ƒn¥ì$ØKe¥§R!¹It*_‘RQÖ€83áPÈsyÀïÿ“û+ïþÀ{Ä ­< #®o®p9Ýáõ+ YŒš»Õ¾jEgûqÇ|Sƒ¯nŒ²k½zuk†[k5âG\]]Ùï¹3{ž†`?rÀ8fâj-Ò¥)“°‰)$á6póàÿ[³6ßÖT£ éºJ¢EÀ¥CB‹RU/¾ñ«Xéæõ^@¯PîcÆåÕ5žœÿ'ü䎃«ñÓ9™s–pè$÷Q,Ønˆ¥Èô[6ìøÜÜóî?ù䛢ë# –û騧”_ïüßxLJÃaþ3œöÇfªáKst$€,Ðûû{œiô#e&>žh9-nއT꺧ì‘8½¡¾ú J[É1O8â}sz™›]÷>àÑÍ¥`MØžFõ…€~€ ßä<‰Ö>€iÐvØÔ§±§ž%ÞE |>ÎÚ3PÿßjLjXÆ”]z‡†¶éb 1bJßûxÀGŒˆ±—é 1!ØÜ¿§|øx½‚Ø#Q‚rº8Äáµ ZÇ*ׂäõKjJ…ôÑh1’20ê ‚ÔÂ~ˆÑDÈÓ~÷ÿù;íþÀ{‘ë¯ïÿ៲Ëvg—xö䀌b»Ë}°¤°šNÑ}¾¸cöÒ‡ÿÃþ(?÷‘@­2ñ†FäßçÁggXÏsxA³³3ÜÜܘ®ý:Ái±{ôÓNŒ­5ÜÝÝáööÖp?îlTƾ3«@§A^ÏC9nß|ª1é€ÍÄͨÑѨ÷ÏXÚE’ÎÓ‹Œý^d¨¹[ŸVMüxqv¯µö#ž\P¤ØâO9#"wÝ´™ J¢ Ôø‡„ζ¦zS«4í¦ÉœïÍ®á÷¾s†Oží­1JÔ“²VO´<3HIÊ|g‡»Ý 5x•õœy B«¦uaÄ)a˜âÝKè/ÎÔxNÛÐð©å¬(è öuó­/j–¿ðõ~S1M¨åˆqÚáñã+œ·˜4B1úàgî<Àvh'Ï8 O‹÷õë×Féeå Ö­úNk OŸ~°QÏña/_~G¾Ánâ Ñz"ÃÞ%Ò:9­‹ÍúnH ®Ë¬º Q]B£K_‚tvf“¯uE‹ !f„V5ý‘‡©ã¹¢"!WøÁÿ³wÞý÷†kar…„ó‹K|t#ÝjTzñ‹˜y- 4žWeµa]‹åm¢¶ÓÃ~ ׋µëR©çÙ³g8ÎÌ[r÷z2Ïš¼G¹éj­Ö1è ¿µ†Ë‹ œŸŸovpîŠ|‘¿À”Â;%}÷4âñ‘ÆË—/ñúîî ¼Àð‘èª.ð #Õ}…ÁåîÜÁIŒ¡fŸ U‰è¤i4tܾ ê“oÀF¡¦!BkUÕ„„øÃ–Ycài¨‡~pÀy¥žµøeƒ@´J±,‹V•`S¢8¥x™g™¡QRÐ4bH]&üþw÷øoža7‰cd´#)¬éSsN§‚T"(kˆièLy°çÁ¨…ù}ƒ4sI/;ñš¬L4µ÷*ÌO¥!ÉàO•/#öñÇö?½ã¾ðÿè_Éù€ýÙ>úà »!}rS¦rŽ€!k)½a…þ–â¯_¿F)]–Ëïú\Èûý×WW`o9s_nž¼CðU†ÆŒB|štÀoÚíìý@w*þüb¥ÇõU^7ÏåK¡­5¼xñb“îxœ£1Ò£~,•ÆÐ;÷ÖR2¯‘Ž£ƒy*¶!V/÷Vb$w·VníÇ€ÃðøñµõÿӈЂåñ!fKWXþâ=Õ²b¾ÿ­ œÛ FŠ¡yQvØ€‡ãƒ±ùY3JZ–gÓ€Ï+~øküÎw/ðèz¯‘=É5ºQË€¦3Ó¨òu™ӯɧ”m‡nìzcw_‘Ò–ÌéVZ.mÚX¥/‚R¯ù9 „”[amBÚ=ùb†ø_ï?€(¢‹Ã¸ÃÕåûä)´ÛV¼_¯¡l!EÛçyÁýý=€Nà9¥åòïonn°ÛïÍ­ÞïŽÇŸûÿôœR¹Èv>ªç,Ë¢*²]•¨:0hÀ¡¦;UsP;kãõˆ?q7¼xñóñ(Öåõ1F›Â  nïaFÜèêBF‰V!jÝ< çª’ßCËf:9‡¢«:³­áÙÕ„œ5ÌmÍÀ¯¥Ü•t ‡ÿœNA^ áúrÀï|û ]HšgצHzF"MÊhGMÆœ1 àÙå€ïœñ»¿6âûß¾ÀÓÇlìCg”dgÖ\Ÿ¼íðÍÄ:u³Ðž™ («Ý›jל‹ ²‹V_|l8ƒ—ÇWåáÖ•©CHöúÍw2ÍÓ×{Ç WX?EÊÎ/¯ñìê9n?!D––zËmçÅ‹±I홋—¥ªÓݓ҇õã6i„¾:PÛ¥±üyí}îøü—À¢?RT͸€N\ò†ÐÓüŸ:& OÝñ×ÀkcúðâåK¤œ0Ž“¦GEÄ=c/„€ùxTv©™³\8Ï‹*5¹bMÍè˜YBý¼Î˜Hã5‰L–<ÿï‡Ñžô”Ùª|¾Ä€bÔ°>(NÂvï„G×?8 xþé=~z›ð“ŸÝ£FaÒ]œí¤ p°?ß%œMÀõňó³KŒ©!ÜÑÉsˆ"hNè mÒÑb­,%„¬ËŒ}jŒ¿7èæ˜}ê«û[Oûõû®ÕUtŠo› [rPÃd$0ÈZ»$y¼êœ’¿nª¿|ñ×77r¢:|L ì,5ZãM¿ŽœÖe5ç‡[n%ÛrV¡ÐÍsýæ¯UëÖ9<}r!㼘*¹tKìPåÀS§˽Á9¡n CjøøÙžÜÌøîÇ#–µb-*º €b܉,˜Ljî¹Eòøc–c=˜38ÝGÆx1·ÖîËaШM»sVNÐüºêD`ŒjYÐÑ£,¿³—ª4åÀë”ê¯|îZÙXT % FL—ßú¥Õ~¾ÈëKqòJ@h¦=]Ÿá|ü?{èTL«3‡ÞËïK]>”f#‡74B¢­~~ÀI]ëëm»yJ}¢¯øs˵n…2¸sòzN9 Ì™ã2:0ç€`a¬OG|/‚Gú‰ )˜‡Œ««k®¬ÎŠaµÐG‰1?5ã®}P¯~¤Î¨Óÿ£Ij°,¢¥×Ü} û°ï軄««3sŽPv›üMBQ' ×Ój•YýDLPÄ\Ðófõôa0ŽÀ]A¸i…®µšêO€“b SÌ ˆ1EÍÁWÚТE!­Um†Rú³FŸ­6Ñ]MRœ™^DÒ©5¼'^ÂϽ¬’Ð˰sFè=o¢ÕŠáì#üðÿ—ïÝø/ €‚Ѐ”\\^áæ`€À)72 ¶xü ámõùišðôéS›; ájwFˆq;ôiXïßësxºi žÚìY†@°tÆ“häLÛh€—ò;ñÛî¹ÖŠÏ>{—/_Jþ ôz{mȃc ….‚)ÎVeª¢È^4À”v`Nrj­aÕ]>'É? NÓN?>¦3 OÎ¥ëÍ?ç %ÈMÐûfºR .¢(F>€¢`¤¤<‚è9£ –<¥.ßúðSmVjM¦ðÊõiGbÊ Gêý]ý·Ï² 1kÄ4¨ÑW÷*سE®µVRÖÅè˶™ä1io‡~àg#„ñ—z±1äÝ#üÁ?ûâ:ÿ¿ìëKt×V~:¿z„OØ ô~³îc]=”csÏ4Mšy"MŒ¦® @d{.Þ™n'Zö–“wJ¯w<ž.ì£àMcY¬as 2ËÞìeP'ä~NɰSßOÀ•NDbØžû@OJ©Ú(#5óRв1\kMXrCÎ>ÇÐËt\è¦ß_XcTRðìñ™D±«8 à„_ô'UÇ‚qwì•ùû¤r_ŒR „(•8F©í7siÓú\Ê" YÀÑb\cT®£S‡ÁJDìs+›F?¶lvÞª!»”˜ÂqÓ¯ªøTH„³@`ÕhïÚS2jr€È¹ð›_Ìüá¿ø¾4ã¾Dð›?üÓ -`'ÜÜpHگχØÎDãñ%7VŸ¦ÉvJJŒ»Ý777:0¸1xÊó_†× [¶žñlÒoĆÔêÊhâH$7 ç;ó|„áslNGö×A ÔG¼öçÏŸ[Šc4õ†â^&-Ä>/1¥Þ¤Âó°§^Œ½c+þ90ÕŠ»Ž)à£gW`ù¶§m¬uË¿R—p¿Ö†V—,«Œ´ê‘]ÔR›PéHå+n¤Æ´•NŸ—îöÅÏ9ì8Ü£„Þ¥TÉÛ墨¡œV;P«rPµÚPÔW¤4j„‘5ÇgõH®§j`×,¡…¤1¨[°óËÃñGö«‰|ü2¯/ÍÈÑ' @›ƒnðá•6Ä„‘.HÿN{Ök­Øí$ ÇÑœÁõõ5v»¿ÿ—Çâ¿Þ±ø®9‰ º GçùÖÊY`ºÑÎoÍvXãÔ® ,ˆý6*à¹jíú‚@§ ó{ lŒxñÙg&®êU"̇ڢO/¨;ÀÝ=„`ŽÂ^ZïfXû¸¼:×8¢ V‹#$PPZ„KVרÓ€e¾G)«±ñ$BͤM7°’…ª8 i¾I*#€‰²`¸†Rš–%#ШY‘†òçÿë—nüÀ—ì~ëý7!/¯?À·>¹À.V ‹¶yÁ(ªbŠÛù¨/à4ßœŸŸ»Ý¹¸/‹?æCD«28€Ìëxc¬µšö<ÿÎc ¾ÔÇ·Ëqôeã¶4²ÙüÎ…hL)áÕí-ž?ÞsgA4"û´å­Â1ÓF|fþ‹ÎmÕ>†a8+ûí|ëöûÔ# 5ôšµ{U  Ö݇D š<¼fŠÃÀlðú˜nñUµ]7*¸Ö%âù.òèÖúó#á ÌÝkE âŒDô­hå¢n6F;hU[u+BdÜ] @ÌÐäSÏÕ!% öJ[%UÐJXÈøãý¿}%Æ|Ù€„Ø3L;Ü<¾Á·ŸŽ‡õÐlSÆRŸdîxŒCOp©sõún¯çti„wþË¿˜oØp÷=øçVšRz”`㥣ÓtçÙìÌè)„\s³1²a³Ó{àK¡<öÝÝîîïPJµ¨†­¼òÌä_òæœúùýõU sSŒªL$ÃIbŒ˜—¢:O/<ûð‰Ñ‘¡¬7ÉñE»ƒ}Á H HÑHB ‘KºÂ™‚/ ¯>SQˆÝw¾\ÉèŒê<=ºÓ’³uûEHå ›g”Сà¶Î"<ü‹Ú!SGS% )ëÑ9ä`‰U•J©@S~K•ÈæOÿÍÿþ•?ð8€4>Ë!Wžâ›0FΊ/&üй`\˜^=|¥ÃàîïólIø°ß{îÍïÝÂç{OÓ3ÔÖlüâ‚dzªùÚ>BØðêy üb9‘ Cò#ì¾àuŸâ€8£O?ýÙf7îú­ÜÙú„]Á=4€8‰êvVv¡+ZCONɨƿýÝGŠþwÐPiá=À™xÁR ãÙ€¤rb ´ÖP×Eõ!™‹QubÔ¤çsè94Ì X92f]g=Å–ÛEÅ5ÄÈ;ÿ_ñ-OƘ3ÃþAœ¤öONÀ™2þœN½;X¶ ‹sÆI@r¥?ú¯¾Zã¾ð½?ü³@ø8íñäƒÇøÆ#e;Öd3Ž-p¶–­œö©aðåóöpò³ÓðØîô¤”ò½¾NÎÍiu€Çâ‚¢Úî©£ñ×ÝJ/1Ú¼ºÐ $»Ý®çáîïù{ß/@žÂº.vœ|Ësxy5:Aî£rŠ”õ9Ó‘Ô&ÔÛ˜ÄXk“é@Ýìð_ûXZbTHƒQ A-¯øÔÉ.òŠºèûk7)óéýR<ÉvWi^^K|Aôþ3f(µWºðŠK| ¤í IDATTk/I˜.„8"ôN6Jš›)a²ci@YŽ:‘IʈÖáª)@Û±•p7îŒ6~ôoþ¯Üø¯À@HçòoŒ¸¼y‚¯¸GB£¹K²{š3Eð%6¿»ÛÂ×…œú]¹—ç(ùLn;fÛ*µº/ßù(ƒÕÙ·a>?|9fOm¨ËGGÐËX Ëý§ðÕïhX“±·£²³`«9!H}YV{^L xΔüH¬î…8‡˜S æg#ΨØ÷²öÛ@se? ¤é+üÞöúJÀ?üÑ-•›LÓ}ø_¿éå7ŠÛÜû´4ç Ð ž7~¿{wÇ6`$ÿÎ3ò¸31”¦Ñé‘6×åCn¿ó÷ße-ÖÍc´ã}·$±…8‡éÈðXER2ì‚¢Áfb“ÞDøNGž;ëñ„í(;fÖ>÷u-æèCÀ7¿þDQmÀÂ!«¼»¨‡¾“ÀEi³•¦¢Ö¸³Ï0VaÇQ$Z  RYs˜<P>8Ñ­3f(Ç®+ó405L¶q02hMêö­*ÛLÓ„G!»¸¦Iƒ6>eK“B ¢x­eS´f‚8­5äÃ3üÉ¿þ_þÎŒøŠ„á!@š.¯ñíO˜2çÜõœ•h°wžÃÅPÝ×ÕßÜÁ»Žw§»8 Œ»‡'ùðç ×I¦Éi'Ÿµ™‡-›‹Nz ã)ÉÑý=ï›ï¡óñNŽß“(u<> –Õ9“^?çNXkí¡W–Ó‘mŠÄ˳VüÖ·¯pus¥Ü‚f‘Ôäf‰ ’›Œ#G¶TG>'¸R£ä×”ü"JY6Ÿ÷‹l¬‡D?¿²¨Ê˰NIm„øÄõ0ô°? ßq%H@D7[«fܾÜiý*òÀ°.â¼–yAL*dЇäµB@j §v7ßÅþóÿþïÔø¯ÐüÖþm·b8dz§ðÑóTŽ‚î¡;ÞH;' ô&Ÿ·{Ãöïõ»5‚w0}‚žÑÂì•}Tò%?q¬,–IÉ ¨Òt#•°ö¢µK ›O¢ž¨kSR7J‘mÒ¯RÌÀcLX–#Á b­ª‘‡iºÄáéoá?úçÆ|…@ÎvP°/ââú¾óɆ؜áv­;ÏÓ\­Ü…í¾Ì¶Aà±Åø`ë,|Mžsêhˆøcøóm¨Å.ð??-%|ó;¾ä±ržUÓ^%ÊxýÞ LÓ„ËËK+‘2Ÿç5¦Øİ·®Öb #/•Jl¢á{_¿Âå…#þÜ*9ûº,hµ *à%5¡B!‚Æ·*RidNR‡¯µ*ƒ1C4¤=‘ Õß ièmÊ6k‚ÏSÆG¨–·ËsϽuZkó~s!MªA?”*ÉMƒ±+Ó0éIЬþsB)fQÒ1äe9Šãæë¿‹ßþ½?ù{aüÀ—Ú ø–“>Äòò? `w¸À“'—øèòõ³ÖÃHW#——2Ï[ÀÞbì~„’ËíÝÎJ ÑïÖ=¥v.~¸½Ì$­´3z®ïŠŒRNÓO3–£ÊÏmŠoìš~äö&2@*=ü1 ...,5)¥˜N¯{Ñë,Ž,Ĥ\W´¹s¥¬Úóîq×R[ðß~ìŽÌþ°,3´9 Ð-y"ˆ‘d†ÓÝ`9ÂËÂÿÖ°”U„5Ÿ\jAmžA*€ÝºH©±A¢¤U•”›ÊÇ:†PÐê(댄®œò€ch•мÜTD±x4! ÕR‘´Yˆë׺• šr@Ï0]~?üG?v}ÿúJ#€ßüំ˜ÏÌË_=z‚o<P5_ÛöÁÛNìŽÑwém=¶ûyÄž[©7R¬žvèÏJÝ-3$¿Ë³ǧ(>ïö/‰^° Å]Ń9¿¼‡ˆ<Ë„d@ú¯««+/ÕÏ·*Àä¶h·Ÿ,Þm%%™i/÷ é|©S* ¿ññ9®5÷ ¸š ·ÚPK34]œJÔP\ÁÐàïOÈ7bÀ\‚Ô”ð=hý]puÌAÂ}]¦©Ü\RN~)¢¯k„9»†´1‡_zQ)ŽÞ­Ÿ_ÓkmµÌ¦ ÜEÏP‘Ðе-…ÑsRHg¸üø‡/øŠ#HûgX^ý%€†ýá~øOÿã_ãÇwÛ›MgykkX3pj¬fT'!¹ÇÀ§ §Õ_2ôÀß˯>Œ›kè AX§»ùxlîê4’Z;MšÇån}ÚþLÔß;Þ#û6÷ݚʱ÷bùÏí][“Õuþö¥ûœ37]f¤q`° $À Nì²ý¤RIUžóË;¶WåÁ©TùÁ©0q9$Ø–¸Éábè‚Ð}æÌéî½wÖZ{ïn‰ÄŽ1ÌŒöW’ΜéîÓ§÷Úëò­o9 ²Ô…)ÕŠ˜ƒr­“ZãÁûö£ Ã>hñÑcß9ÇœzÁ9š¨`xw¶¸å5˜˜9o›&zBö^Œ…A€1;±ï(Vž¡ï`ì$þq÷™_Äz¾xwäæ{&êòIH‘?+!P2±²”È#þ? ¦˜j{=z<çìví?ˆ‡{jK.|Á§n8öuêù¿YÑÝ{–ñùÛ/áÊÛ-Z‡ÞŽKHC#…)Án8G^He þ4Ÿ|7ïIreuo í„-ØÍÍÍè †ÖÉ“H2㈻ õk”ß‘)°CÃ# Há(PU€]M~H³dhèx<ŽZ‚º®{â¢yA2ñ$¾*F˜zùµR¸}Oå•=)ç 9Ô'¢ŠKzBž¢2ŸP‡5»ì´Kw1`LÅõy›}ŠeÀk´í ÚPæ^1g`MóŠ«KÞw¬ÛÇ9 ²2ñ¢0AqŽ 5E)M:~’Ù7ܵ¨íDC¢ÏãÝ ZWÞq¾¥”…V€64ÎÌLVpâ÷×õiâS7`æÖàÖß…RÀdaÜó—ßÇ›8ÞÒ¢fË“rÁ &;Æ ±>pƒQ¸q& _Àòz"í¤Ø??F®£—âøÔ^›‹}åþ®>öï²ÐÅ0!„XÛ—Ò B »°ãË|À4$E„KTžŒjrùåZ‰2f$ðÝÄáûö¡ªëx-bäRYÍ¢ëÚx®¥¼R)âàžK‡&æu|p±1GóŽˆ`Cm·&n Îu0¨ ™Gê:“‡ ¸ ‰“DP¶b¯ÅhkbØES€EŒ9ÆJŒ'~¨*!Uù)NP/À£O~sÛ,|Á§[`»É¤ztü¬!Ĥ )_‘·ú’¡ ÅŽÌpIÉÑð컸€†]ÀdqG>¡‘\[Ÿ™€‡žú+õ«Ÿüm@ šñÒžeõQ0§ž –$'wÒa)À±¶æÏᘠ#y Îpþ&(ÇÉA…j¼=Þ‹ãŸÀÞ­ŠÏÔ€¯"ÌÎ#z4•Õ5º2Å‹¯¯£ ¦·ƒ ]~ñVHm°âåçùa 0§sæ‰1ÙegÒ"c IÀx=b0@ñ<)é ºÁ¤Î“*rÝb<èüýÎÆÜe—søüè«çùŠÊZâ-d.µìp²³æ¥@)C’H…ÕÀ‰Ã°wy„V+5ŒÑ6 ué ëú,ÅkåÑÈ»ÔdÝÍ»¶RDÉ¥\œš°1 B÷¥üߦ†V]Ç‹šE ="B—©¹z=* D¢ä7}ƒz²£¥xèØÖaìý¡ð™€Ã_ú–:õÂÜ&Œ1˜[Ø…;îØ‡¯u8õAr‡‰½|÷õ B¿[pø;äú¸hÄu÷>SRêcÏ™¤üÜÑCz»XÊ] –îr¶_2Dý~!GA’¡ L1U: ^äô]ªùs¾#ó0ºN&Ô˜HjŠITˆá¡ÄÚã_Ø‹;î\…±”@”feí\ÒÊ!÷<“pR‚ÍXÓÓEô1 ¡Ð!xmhw&õaj;&HõD4#(7‚t­º¶ƒ ?ö(ƒ@V™¿#»øb{¶!@£žìF5¿?þôŽ_ô9>sP(pêù¿ à)AK»—ñ¹;×qþÊeœ_O-¤‚Ü#¬u¾“Ëß{ ©îž\ö›ý,rè³®; ÏÈg^F“?% RlžœD£ñö­À¡k›¸úÆf¾Omͼ謩48,Ùå;¹¸ñéýy¼ž*£Q¦©ã{fÙpΛP™KŸvú|¡ÑëÜH#q­”<}êÒËêHøXÑ!Äáž’+2›È~÷…HÓ¿1,jA‹ÊhÍ2íË Nöœs”ÍÆÀX‰[Oç&!…‰¡]ÿ,6cBË'i&oÂ9«»ûV—cè#‘Ä"‚ŒF×6DTòJ×ÜwÅ$®ÊÒ«éè) ðÔœ t¿€’Œ!(Øj ïê#àà™D¤”%±Íº†ïű¯üaÆfß*ز7ïÕŸÿ(øÍ³L;§I+W/]À›oÁ¼9ÅÌ÷ËW@Z0ùΛ‡Ãú:zòovœ|‘åD"9~OiGås“âïpG–’”°ýL †%BúèéÚsï ¯\—x‚”+ð1¬ˆeÆ®ÃÑ»qâ±û˜ëÏ](„Pµ9Ý„¶5¼k!Ÿà:N¾9ØzÄl½tÝÒãŸÏˆ^Lü>Ä8ñ°VN"(Í\ ¿€å·•†™,£ž_ÁÃ[¼Ï~»`KßÄS?ýǺëü/Š/_<‡Ó§ßǾ3Cëd°ÇžÌ!ÏYtùŽgçóDšì੆Íï¨BÊ©Å@* ¦¤,¿¾W"Ïw;yMŒˆ,Þ<< C›<ü‘&¨< ï‰eHŽãÅÕö>àöݾþä}XXZâ×åºßk"uÜM'Þƒwqï5y¶’fÚõkðA Ó‘˜z”‘”2è:ªˆº¯ä”B$ In§ë!½ ëî7ÿ Kvd#jµlL†n}¶;ÈWDt4–(sÉ #zy(q³j±þø±Ûp×Ý·ÁÚQÏE§{DáBÓˆ`Šb´*ëÌøeƒ>`«W–áY£Ì4žY})ï‰];†íÁñgþd[<—;ÛæFŸzþ{¡‹»^ÛLqåâ‡xý×çð‹wgœ¡–ΰÔJÌ=aø$… Üøxï±<§ðÕÇbÿê2l5¢ÏÒä p×ßl61í³êÈ4ü*J2ÂŒŽ_7,ØÁ#±9“/×ϵ2*õPv¼õÂ~<üØ“ÛæyÜ)ØV7üÔóß Þ·¬ßàº.}x¯œ>×Ï:8Ê]Å xKß,«Ÿï®âŽ÷“iýÎBiÍÕœÌV DS@Î-ç½YY1‹~h!^øÒ{cÅ`Þ{¯-WJ†FE‚ÑÁåžé;ÐÕF ûqô‰¯o»çn§b[~'Ÿûn@èbr©ë\ºp§Þ8Óg[tA÷vÜœ_ô+‚´»È”Ùø{²ÀCHüóŒé'®¶@ÊWyâqÈÚC“‡y ÿ"ŸËqÏ@_ÅXÞ/ýy' V Z½{GÄd~>˰ò.Ä´m‹®siÇgý>aÙ¥¼JA•éFP†“|†(S‘L·1Pf]/á±g +bÛ~)§žûNqV!´í&¦×¯â7ïžÃ¯Þ^Ç¥i? ‚†Œ?Áp·9þy™è{zÒbr, òÅÙ—äÎéó‘¥74^qœyV§O†Â iiá8.y7LìåÙyyÍZC”’4"«/&Õz%A”s4|BfÉç³äóZ9'8Û¯4ì®pâá5¬Ø­m2BQ§?•+‰çß±"Ћ³ñHtÃNàÉ5 ß5ÐvLÊNPÍ­àè_ÛöÏÒ­ˆñ¥üÉ·kÊ‚V\×bº~çÎ~„WÞºŠ÷.; Í‹9ˆ\> ƒwÛA‰.º·J¡s•µQ‚ÌZ‹¦iz9…|——SÎ3 ú¡FR–œxPiGεDX¸wu‚'ŽÝ…¥]K™‡ÁJ8äÉÈ9Ð6Åú¬ÃŸ“…Dä“î“áÏA½Pª¹e<úÔ·vÄós+cÇ|dú¬:ïZÌ6×qõò%ü×Ûñú™­ïsú¥œ÷qŒ»ÜcVdaæ¡Ãǽ7¿®<ᘗ‡Ä$Qð¤ŸPQS–WÀ¡;çqì¡;±°´H×îçg@}Lñeà2ù¾ƒåܤ²K%C[O³€¹=·í=üÂŽú"O½ð¡Ií©Jm³‰éú5œ9{¿øõ5\ÜL ˆúý…jØCÊm BÜ•óŸ 3ü9;/ï£j/TÖ íRŽ@†dHò~Ú­µRX)¹w7>ïm˜Ì͇@ÈE¯Ð5›lP4f³–F]ÒPLò Aè»Ô M S/áø³¾£ž“‚„÷žòo? nvé†úºë̦×pùÒeœ~û"NŸi0“¶sÕîzÃD[ŽÜÈ{rW?§çÇ/jü¾g0òJD2„ 3ýVk:¸ˆ{îÚ‡…Å…8›?eû%§àE'eȸ y×.@UY4M +ýü&× H~Ò cUÀÞyƒCw/áöÛ—±°°H±=·ÑÊ(¥à»м»s¼mi¾€ç¾üX¯¯ôÕdÇž.qý­„ûeŸ>ùú|7…\øà†çIDATO¤ñŽ{×[tí ³Í).]¼Š÷έãý .o´.…y^:ùé$DÜqoF÷Í+ @bö =ƒ¼4˜{!%÷ÀZÕE‹ÃŸÛk{1¿¸;é«õÒܾ Çÿö]|H2Û>€ÿ`ªÌh7Ž?ó§;ö9(øß±ã¿øWþ£à6ÏSI+ºò\w$òÙΦØX_LJ®áÍ÷®á½Kº "îfm¹y’¯WÓ²úyrÝsÞNŠä!ˆÑñ)1ˆ€»,Ž|~/Ö¬`<³fž&5^Mòâ!ø8˜#†"Pè:êÓo;j½U Pº‚íB½°¯ˆjì|oüâÅÐ\}ï’@Ü“c\íѵ 6§ë¸rùÞ;{ïÔâìÕ.fÛó…žÇù7k:úC=$¡ RÇ'ú©ÕSYo\iܾ§Â¡{÷byyÆ“¹¸Ãkª¡Eö ‰ËOÆ…2ü²øiŸ‚­'-݆#_|ö–øÎ ~;ÜRÃ+/þ0øî Ó‡¤à$Z1 –lfS¬__LJ®âÝsx÷B‹ÖÖ»£f"¥ÒbÎÀÔ)—¦úVQæÚE‚•5PÁa®R˜k¬íà®;–±²²Ä*½20@QÛ0Í/`ýÀz|Ú¢mfðtùM½€jn¹4ß|,n¹ãµ—þ%t ÕjÅ}–^â.ï±WÐ4›¸~mëë3\_o0u¸>í0kë›6[çZçÓ Ï8»ÞÁZqE8Ç»æ VöÌaqqŒ¹IÑh„ª²°UE}­!3„onÝ‘ÿ‰8‰wdºÎ!¨ ìd/Žíà‰¶Ÿnه䵗~Úõ3ЊFJå1z õ¹'ÞwHÓ{©ÕÕu¼ëàC@;kÑ´¦3ÌZ‡éf‡kë3L›€Ú*¬­,a2ÖXX˜Ãx2†µ†5À7DÙ¥9œõל´ä®=­tä(pCP<œ7PvxøÇ¿|Ë~§¿;nù‡åõ—º³ðíµÈÇ'J¬‰ä›ÀÝwqK;là˜¯”‚cÁËàå5MŠ:ÑÀpˆ =BÜaM¾ I=%e*/WòACÙE˜¹}eFÁÿåÁÉpêgÿüì#ê ‰ÎÛ¥TDi×3ÿ†Uq˜»/»µÖ}~Œ?ALú!Òq5‘x€]|(¨ôxGN”¸¾à÷Gyˆn‚×_~>tçàÛë´CÆÃ׆X&èdR^A<³÷² }ŠÝóØÃ`C‘@ÉHÈä ‚]Â#O±Ì‚Oåú?ðÊÏþ)¸ÙEâÆ /ÀµW>Ýõt;¿_Ê€ Jf\!Ÿ $¿G@i9&Õñ•™Ç‘§ÿ¢|G0”‡ë·Äë/¿|;…k7 àà» ÐÂ¥L† Ø _±0§„ œC4xC™ 0”C™1L½€CÇË4Û‚OåAû=ñÆÉ—Bp \;Eè¦nFÿJ*8`ìPŽ<ý—åžì,ü/ƒG¦]?IEND®B`‚openmotor-0.6.0/resources/oMIconCycles.png000066400000000000000000001451531500530174600206200ustar00rootroot00000000000000‰PNG  IHDR\r¨fViTXtXML:com.adobe.xmp Scene 2019-02-11T23:19:23 4ì/U€iCCPsRGB IEC61966-2.1(‘u‘Ï+DQÇ?‘Q$ÅâVhPbc1“_…Åe°yóæ—š7^ï$[e;E‰_ þ¶ÊZ)"%kbƒžóæMÍ$snçžÏýÞ{N÷ž ž`RÓ­2/è©´÷)ó¡¥âÕ4ÑB›ªYÆôìX¢öyO‰o{œZÅÏýkÕ‘¨¥AI¥ðˆf˜iá ᩵´áðŽp£–P#ÂgÂݦ\PøÎÑÃ.¿:wùÛa3ðƒ§^X‰p¸€µ„© ËËéГ«Zî>ÎKj¢©¹Y‰íâ­XLJÂ$£ø¤a™顟^YQ$ߛ͟aEr5™ Ö1Y&N‚4Ý¢®Jõ¨Ä˜èQIÖþÿí«èw«×ø üÙ¶ß;¡b~2¶ýudÛ?ÇPú—©|þÊ! }ˆžÉkP· çWy-¼ [Ðüh¨¦š•JÅ=±¼Bmn jÑíYnŸ“nÈW]ÃÞ>tÉùº¥_^9gâ6ø%| pHYs  šœ IDATxœì½ù³%GvöefUÝûöîFc³q1Ã!)ŠÃ!%†([¶¶å°ÂöÿàÿÊaËA2(’’Âm“6Eq™’³`8ƒAhƒ½÷î×o½ïîU¹ø‡³dÖmP³ ±ßŒéÁ{÷խʪÊsÎw¾³$°ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±ë±÷a˜zõñü7ÿ¿d€Â1z vô_Ö áš˜j _üÕ²~Þëñ¡ëùCÆ ßüã–Lj¡…A‘b¤”RÔc1ˆ1ÂZ À ¥c,RаÖÁX‡” \½…_øÍÿiýì×ãëEøãÅgþCò³ÛˆÝ)%$Ü)%ÀÐC£}#}Ú;OJ H ÆZXëc€±1Xçàl…˜"¬¸ ˜z _úõ¾~'ëñ¾õb+Æ¥¯ý~Š~‚à[bу ? ~‚u }¢ß­¥¤„$ÇÈgªè¿ÆX‰kA ÆÆV¨»@µ…ŸÿõÿfýŽÖã=ŸøÅõâ·þ(u³}„nk ®‡`±–Ÿ¡= / þ‚€ìÎ9„@ÊÃ9‡˜"Dê!g"Åk-Œ±ˆÁóõkY ëjWÃV[pƒsøÂ¯¬y„õ¸ã¹˜.?ó'©Þâ)†ž//ÖžŸ¬uŒ$àÞw°ÖÑIÚÇ@H?1ä=À9WUz^ËJ…OÂàÀÀ wÂX0Ò ea`¬#…`+[Ã4{øâWþ«Oäû[û7>Q èÅoýqꦷ$ÄàY³ß.0ÆÀwRJhÛÁ{¤‘RÂ|:…«jÌç3cá»˶ÓsÌ-ÎΦˆ1awwÎï`kk››pU…ªªa¬…s¤HH¡¤wPy(`-}ŸD 0Õ~þþ÷Ÿ¨w¹÷g|bÍsù;)ú©Bú<¬µˆ1ÁÄ}Þ.—˜Ï¦8=9Áb±À»c=fK¦®BÂÑxãj´]@„Œs1‘¥÷!¡©j‘|‡‡÷j|ú‰sØÝnpáü¬³ØÜÜF3Àƒª®™_p¬“(r È‚Üðg€±„H dv×ìáé¯ü—Ÿ˜w»?ùøØ/’¿õÇ©ÜR`¸Nœu–à6 –íˆÓ铳îÜÞÇѨÅÛw˜†ÑX8WÁ:>Âë0 Ÿ+gácBå¼÷0Ö(ä1)ÒH)¡[.º%ž|`ˆÏ5¸x~<°‡ÝÝÔuÁÆ&†Ã ýŽ\+Æë,cd¶j") †/0äAÀضÚÄÿÁ¿øØ¿çõøÉÆÇza<÷ÕßM)ÌÔ/ P¾k[„Ð-Ÿpxx„ÛwF¸vØbÒ:t¨1ØØ@Š ÖY†áÖĘÀn:“•EÔŸ-+ƒ"Ä|BJËe !ú{¶+üìgÀ?ˆíÝ]ÔÍÎ9E-Æ:ß*¿`C ÖU°®f†‰Jë ·;ØÃÓ_þ§ë÷¾?úøØ.„çþâ_¦»l}™ÅïZ‚÷³éwïìcŠG»ˆÝÝ=¸ºf+o $V(€…º 0LZ$&)ºhùxðq ŒÛX£ƒOøøØ½üK_ÿý»)b숩çX~‹ùû·nâú¼qý cß M`+ln cBUU,d)Ffèù€#ªªRóoŒa%ÆÝF“ƒŒ5ˆ!Éþ9õ\‰‚æĘ(d:vkb=þîñ±yÙ/}ç?¤vr¡[²ÿ)Y'%xßáøðׯ]ÇÕÛ3¼u˜`ªUUs˜Î1D'ØnŒ)¥•-*™Œ3Ë1 &hè/ ¤S$v_8ç*xï•õÏaG(Jˆ!À{‡€Ï?2ÄÏ}î"yìaÔuW×÷¼8¹g ::vO€XD9(¼ ©H¹ ô»LSoã‹¿¶ÎJü¸Å ~þ¯þMòËc͹#¸oà½Ç|6Áþ­›xûê>._["T›p¶B2ÖXKÀ|† ²Xý~ŸQRÏ9GÏÉ>‰³ü$ùGŽ¡è)ˆŒÁ‰Wð>( €ÌÛR2‘\'„@ C±ÅÓŸÚÆòSâÂÅ ¨ëªºê%QÎÕ)XWÁ¹š+0HF£˜Œ”c¸çï0lµ Sïâé/ÿç‹õ²y|ä_襯þv ~ÁÖ 1´Ë%ÎNqãúu\~ý×N-6··c Áwì+¬Žš dÕ[޹S > eìÁf­Að 7ú›s]×±`‰eO0 Å™/Dñdá‹* ëÞ{¤`¿ø¹=|î©páâƒnl*)„VC‚'¹¢–Á¼ƒàÓ±²’ž')’s;€möðô: éc1>Ò/ñ¹¿ü­ü‚è®”³õ–ó9öoßÄ«oÜÂË7ZØÁŒåX½µp…óªÊà|˜y'C,§ ²Ò¶Wèda×[ÜÒ¢"%ÄâwËÂ.Ü‚µ¦—Uh%e8%xOåÅ!¤à±YE|é³»ø™Ÿ~Û»{¨*§IEr-[U€¸ÆÂÚšù\D¶þ½{fâ2±ÂJB&&P¦¢áD¦jvp_øûÿéGz-}RÇGö¥=÷—¿•RlI¨b@ŒÞw8=:į¿…Þá,lÀÕ \U1dwú}ÉÄß^!pŒzƒ5A{Iù­Xy”¾{U9…íeÊ/…sépéó¯Bî*¾n©8B zIC¦ëÐ\‚ïðжÁ/ýìƒøìgŸÄpcS‘ЪP[W‘вGcØ­IÈd D-@ŽCO –u’.M ¶­wðÅ_[£ƒÊøH¾¨çþò·SŠ "âS„ï:ÌgSÜÅK?¸†7öZ»º®QqvžsV­˜dØ•B(þz¿’pÖ ë<`Œ~ž‹~ÃéœÊ™!çÞ¯„MO!èG¸9̘âo!$ÔÆãW~æ~æ§ŸÂÖöŽ 8õ!0*¤ÖVHpìfDuox¦„ dþ|íÄÅNz¬ˆ¦wÿîTåÀÜÁÏÿÃÿî#¹Æ>)ã#÷r.}í_¥fdõ™)NðÚ«oà­\=µhC4M£ŸÅ u]+¹& VF)ôt8i‹B‘LC£´Ü¥µ,­»ã¬@Iã-« SŒœ; ÍD2Xž_F_1%ND2è4’‘|‹_úÌ&¾ôÅÏqÝAÍ™ƒIÅUŠ«õÞ5dÉB¿ªJ¬ðwÝ»)Ž"¡Fk,`‡pƒ]|áËÿì#·æ>Îã#õ2žÿúï¥ØMb€}ãÑ ^xþ%<µCk6P75¬upNªñ(ßß9‹¢†ùŒµç!Pl9>_Zt÷Xk£2 ¿ElèßV }r‰±Q‹oyN’k@BˆåÉT1 Y)Ô"~ùs;øÒžÄöî9’?‰@¢‡\Ѩ„8 §áÓUBQC™aXVQ–CC°@ œ§IU0Õl³‹/üýü‘Zƒ·ñ‘yø—¾ö»)úûü¡ëpz|ˆ¼ò:.]i±ÀÃA£~zd"N ½sUÏÂ’B m‰„€ªªÔ%Þ+# çà¹Ä{æ*D`9r‰0zÊ W$š{Ž/]š«÷AYI;vÖ í<‡$~êA‡¯üòç±³wN 3‡­c+ï ÀÚ˜„š‘ ÉŒ :Ò Á0I(H¦TÒ8¥iГ"'«MØzOÿê:Eùý‰~ék¿ŸgˆÁ#²Ïz|€×_}Ͼ>CWïÀZ‹ªª²ôÏ 8A¤¶'Ð¥ßMǵ¼²£ÏÅÿ/-xY°Sº¥KЋ`%rÑZDZ:¾—'À G9‹2ªä‘‚oñÙk|å—> \„uN•RŠ¢Ì$XP:±ÑÕ iÎ=x/Ãh‚S™ÿUd”ÈŠRÜräo†”ޏX†xלÃ×Þ—ñ¡È—¾þ)vc²^ èºãÓ#üà¯ãÒ[ Ìbƒºi`ŒÕºycdÑ9%вOËqzkU cŒÊ”–èûõzB_†þBˆªP„sœN ’È,z©DÊl@Qàs— 9"DêoKÈ.ѽyïcÄO=TáW¾ô)\xà\Õ ¥À.…0-+Ik*¤¢ÛQaÚõùYkþ‹;AõeT ñÿ 以geT S}F*†|.ä"¡ [máçãøÐ¯ÓêøP?Øç¾þ¯SlG  ëZœÝÅ[o\Á oÏ1ê4ƒ…âœã$—ì‡WU¥Â)V3¥2ž…8%µî"Ä¥ÀPá#nõ»¥Ï/kya¬º’a(‰F%˜´fÀhafäûÊH®m­sÚå‚D)ž<_ã+_z>ü•4óÜ5E¹@†cûZߢ²þÖVHÑ߀¢¤ÄIX†]‚Œ¾(Ô*ý bï6“•R1ÉèU2²Ëâç×IH÷q|hä ó$¿8†$®ø®eŸÿ5¼tÝcìpk5Äääž2®.I5¥ ÐÉLEBæÂ=k¬‰<=áÍDà*b(…XEŠçç¿I>þ*‰(J¤ä­t½€¢vî|‡ Càýòãxì‰ÇàåDÈu\å .î@Ê$)P@z:P¬xLÖ8À°å/îAo¶@_yž©G{˜b 2RL‘ä=%[Q6¤¡Æ©Æm¬;!½Ëñ¡|x—ŸùÓÔŽ¯¨u1`2:Åk?xßzy _í¨u—<~Jï% # 9uEÄß=VY w´o¶äŽ-dIþUU&WGOÐÙª® ðªÈø»²KDQ z¾ýƒÜG™:œ;Ř9†:àüÂ#xêÓO ®À€Âs…O/œûç&±©—8‚< _-¹ Q‘_ ÙÁ*ê"o¥¨N4TÊ ‰¼°¶BŒ^=6AIªpŸL,ÝÇÂÞG ýÐåê÷DEGHج"~ãKãÓŸ}UEŽH&]ϲ&”>Ká*É| åH¾»àv°ÂŠâÉÓóÂSIبs¥.ì!‡~"ûSe2’ð 0ŽÂ`„ô#ŒÝºôõ?HÉOb€÷F'Gxó·ðì«g˜¦M4Mé·© ŽØf­X ‰9‰€FNó*Ü@±¶x¬fö•9ýòßBiÈdзܥ+qïwÉ'@Ùÿ{êøo0¹å¸œ·GLƨ²$D!}—Xý*uøÏ~ù1<õÔ£nlóá.FÎƱBÌpÊ„ÁÄ]éer† |)ѾòÕ”½¬6m!ý#÷ÄVFV¬€"[ñÏiEY¶Þ„­÷P ÷ð³¿ð•Ýšÿ LJêa\þöŸ¤vzHÁwNñêË/áÙ×§˜aÍ ³!FÔU•‰2^HÖRl\Ⱦ>$¤®„Ì+ ?€¾Ÿj­ƒ÷ÊD±çÈt~ypȘ«ÏeX$äŒBr ¤{2otêÊhD¢ä# EQl½…/þúû¡ZûÔ¨>è ”ÃÏï Å€<ºå7¯]Áë7–˜›m4 %ùká àC^€ò/„@E>Âô#[fÇ­¼Ú®Ó})ü}KN–ˆ¿~T@¬w_aÆ8F«ÌuAš §fÀV<öPÀ{9§(‘Ä嬅lBŠð¡ãf¡ù~ =CL½çCæ²Âw^¼ƒ½½mììƒs,K¢\R‚1‰"<á¤âJÑÚ» @E¶ äùJ“<[ “¢"rÛ$‘Hx–¤ÿ!…Â!ÎX–\KW$ÙL…ø‹˜¤`ŒÌ˜[¤¥Øá…¯ÿ.MÑ5°Í¹Ol҇榟ÿ«?H¡#¥ßµ8Ü¿…oÿí+xý¨A3Ü`KE¶Dá³1=!Ößô»2¥Wtäó2 HZl­¦íŠB .ÁªñN©¿Ža²Ôˆ‹!ßËýú.§µ¹ uwò©#¥’È×WëÇnøùÅbÀW~zOÿÜg0ÜØÌ›‘XW hǤ \9‡L¥¹©äˆÌJÏDeï‹ I¹×|¾ü|ÅŸ·ÌôË\Sñò ‚ËÉR‰CŠ}WPyr_Œ’ŒdÀéÉ´–jªfü%!}(nôò3šºé $Îôâò —ñì[-R³k ê¦aK}KëV¬ cD¨¢2øîÁ2l'JBjD°G£f³‹¼÷ØØØÀùóç±½½]ÜAÒ Ã2±§T«Äb©|Vó Ê¿—£¬\Eò]šœ @?ës°!xʰá~óï=ŠÏ|ö)ä¶âYÈ­±ˆ0ÌÒ¯*‚‚x”‹òß(ºÝ%9N؉²XFH€ÍBoD9:V\£пiº±tXF>¯D©h C߻Ӕ³²pü¹ÑkØz¦ÞùX÷IüP¸Ýô&"bŠh3ìß«7ðv •1T9`r{”^øØy毹e–Xx½ãú —írÁPÛ¶8>:Âx2Áb±@Œ]×áìì “ñŸûüç14„—Õ´àr”P½l¶ªŒrÕ`?Æ/ˆ£WwÀß…Ure¨S”†ìwH舄s¼LøÆ¥;ØÙâÂÅ‹¨ë]SÂŒÑùÉä\ÿ¼Õè z¿«ÿžÈyÖ_·KW¥ ÌG⾚՘”ƒ “æ$&q„3 J%¥œJ-Ï0“Ùdí=gMr¢gc@jÇ@;Æs_ý­dmC®üÚý±Rö‡òÞŽþúߤ=UÁùGwðƒ×ocÔ Ñ £[N^©~šA£çßS„…ˆ::®oKeçÜú2)'¦„ù|޶muñI2QÇ''Fßµt+€¾W²Ð˜{¡9ÐC%YHòwß)#±?ß‚ô+QG1oš/ ¼„sU]ád¼øÊ-´ËEqYR)¸)³þD)¬úê½*‚”’Sê¡ Q*rœ/yô”+„2÷À²B“¢ gûÏ2Eý±öQ­iv1ä^‚G†Êß}õwní“¢eåCÞÌĘH„Ÿ ¦„Ñ‘6[Eâ”êü,RäÈC*¢‚³ú¬!b‘H)ª{fµa+CÍ› s­lÕΖ]H?>‰“s%ò<…7 k#÷:€~Ž”TQ „å).}õwÒ‹ßøwIEð)€çÿê_'°¯æ»wnáú­1ŽÛõ¾ç†®„rìHŒ~9/[@±`ʽÂ-(ƒò÷šëÿ¥ ¥DñÒ#@Ž+£%ѱú+‰<%Q)‘ˆÒÒ+$E¹è2r §ûåÁ¦7OSܳ$ÉÈpù;–R˜ê‹ŸœãÊÛ×ñöaB]7jÍjW9ŠTYoñSR¨K,¬}ÂMXâ,ˆ1ek+BcÀ>rU)é(Ç‹2ð®¾2\ADö›yÙX|^,Rñù3LÏð_¾CŸ8,Ÿö€“c¨³²Š(>"°ZûãpýÄã¥W®)л7D&îÓʦ§rG†'^x‚œ¶ öÑÁJT&§='öŒ¼ôY±ârTï‘bÇ ¦xÆeËW¼~NRO€Þß$ᆎ“ÐBÔŽÄ‘“‚Ô•ÐÊKÓ@¨F9à{‚i´h(éü²A!ž $º¡Ž˜ºl¢„…B"Wo°²fÍÄ:Â-ÄÅ]\ú«û¡Sï«xùûßàÆžó?¼{Wö;t¦¦ì1ÐVÛy1WÚ%Æ–ic¤@È_éÞxdåÊœ¥_,n´Í«¯‹†!wiUåçò÷24'ŸË\ä÷X,QJï”)xG 3M©§|äwù?znÌ]HÒOy~ÙÔ4öÒwYÈÂeÒ/R^ݳoœâê•›hÛ9[âZEʤiö‹ + A/9WA¢BPFÞ9ßK•àÝ,”™oPM’2ÿSâìF‚ìÒçAäÔØL,J$#2!™˜|¤LN19ƒPïGSˆù¹%™‹ M@2¥œšø‰.»™~‚ç¾ú»éåïóC£ÞWÐMn¨&žâÆ}œ´5šº ù´Þw¼Ð¹G2Ù"…þÀ‹¹c‹ß‡²ÑWá³÷^­¯øÊ ׋ù üî‘=¦ßwÀCŽŠJæ!Çbåœ ÍÑ/1Î.Cn< pä +/ʤü~Œ m×éÜ鳌`Ê­½Ä’žˆz,ÆP¤Å'‡g^:ÀxtÖsSDY¥˜;#‰Ž™IäB,fÁäðªÜŸ¹%H%#~ŽÕ‡~b’rú¬øÿd'f‚ãB JÂýŸ†,Ú»ªVÁeç¦÷éþyŸE2¡©Ëy%² r$&¥„Z,N^Ååïüù‡B ¼¯ ufG£Ü<ô¨šžŸjU¦*“výY.ä'†¢"¯çä—‡Öå?Bêã7œ­¯« 4„$rÌ¿®søP¾/®Þo¡HVÇåßÖ‹¢(ï/+¢þ!¥…—%ôÕ}ˆu-wDˆ-n…O-·Y#¥z8M¸rí.º–’žJm)Ñ ½×XBxÉÍ!Ï ERÊ„÷¤ƒyí)˜T -Cuy®„öÄâGê¢äˆ½ÿ¢Ž¤Pž ÑCP%#×(„Î1§ú³ãÄÏÑ«K’”€¤;Po)q¤ ´ã«xásJø IDAT|6áû¦^üæÿ•$9e9›àúµ[¸56ð1ÂYlj)ô¢Éºß›ý&1b Õ‰•¥B€äÆ–ô]º~™ˆ#ƒ@¾²ÐE k¯•мj¬P¸·O X'ÿ2Je¯{™G s\ôÕç£ÊÈÂX ‡Ò5¥“}ñ²e¹UÛ÷ü›§˜ŒÇtnóswF ü‘Î: %&ÚŒBi£~3˜ãñ1fëL’ï_v<ŽÙõÈ÷#%Ý¢è¢F‡UE9ka«A†þå3Á´{>.ß3@…S!†ò@¢Â(IËe!Š ´'xîkð*÷MÄv¤>ÑÝ;·pó …­7P×M±¦Gˆ9v­C`¡åůóEد„ߥe,sæ«Oms©.ÍÒ+ÏCSH…‘_:Fvî‘ï‰R ×RáàcdëðÒµKgá¯,8±Ô“ÉËå²77U†’À×U+ª 0»ÙéWæ’b²b§óˆý»§¬”Á–•~)ž…Ä/DÀ D,­ª•Ð®Ôø'=Ÿ1Å=ñφ >þºXqXg‹^ "|÷…) Z¾ÓÈŸEÅ[ƒ” ))|ô»Áï@Q6O|~ú:@‘I.P2Æ"†ÑOñì_üö¦Þpù[”d îùtŠÃÃcœ, î8^cÒu]S"P" ,Ò¡Zº8$÷]oªH”À½î sI*•V¸ –<@ùY]×:õÏ‘ýDA#ò=±ÔeF¡ •^UZéó‰.1&L'\¿~W®\Á•+Wpxx¨¨BW!~¢¼á*è\ e‚R0#‰Î8g©å: ^zëËå’›/ç1,´é 2³Ï/çDb‹.èÇd‚Ï0âËGý'JD,² »uªlʈi¸È]PBDRa#Nê"-ç%"ǘB9 %WÉØJ×¥ ¹VäM[KÒRR“»I:Fø”ïÿÅÿþ(÷E$F ÞLÎNqýö-%þ ûžÞwEí~ŽËŠU«¤”d²Ñµú~{™v›€ºò%¯ ¦^Î_^§®’”ð䪟.ײ‚‘9­¦ —߇ÉU‹ÅãÉD[.—¸ví޳åf„ Ñ qu¤üØZS |FIN­rÁEf×8:¢ý2§ÁÄ«Iz„>b¸¼ò)ÏMž $¬(ïI{HèN«‰á”Nkˆ£È( Þ G\õ,öû E½HÐ5J’ѯÍN„ €()c‘›¸Å`ºF­F(혞é³ö¿½ïJà=W¯|÷Ï©Ü7íbŽý;wp8µˆ êK ¹f-§ß/Î1i£ež,l–ëैG „ÛÖRf\YУpœç' CKiA{ð*÷rz¹ýM/Ä](] ÓÉwï%ûÊh¡›ÙlÞS@r/×®]Ãh4ÒkÉ3“çäY™Ê3“yTU…å²EÓ4ê3‹2PBÒÑ~ ÎZWáÙË70ŸNɨY›séa@½Ä²¥êS¸— xVŠšŒÍÏ2%€Û‡ áV68½‡Ó AeZ„N†YùûC|½ÌåŒÅ-,+5ÁÊŠQIJКERÀ÷,ßddD!ʲBžŸ\?¦„<`,žýó÷ ¼ç  ›íÓ ãÑ1níO0Tç_¹ H mÛqJ%[±BȂċSN»Ì]~lÚ¯Æà«Ê¡´e¬¾OA-TË•]ŠUÔœ&,¨ ~–F¿$D>VbBŒpbFUåÉÉDæ òû’ÞâNôINI1öJhÆ´”<·ïýÙ¿|ß”À{ª^yök‰=t݇w÷qå0 &*ð‰Ü%'Þð®kÉ 2|_6wÍÉ0«h½1KÝw€lu´Va¥KÁ)BI (-¤Ì5Ëmv–È"»ö9ŠPF+"‚zêÉÛ÷ÞS+²"´(ÇšÎ9L&܃pP¸3Y™æû šÌ#(…vXJ=E% ± Ào`6!ÅœD%ÈËJ² ˆQ.ɰ «òˆ*€1ˆ`Š¥Ì–Y]@c¡¢œäZP¸Nþ‚pÌu$VÂ0Yˆî¬ÃlÞákSܸ3ÇɨÅlÞ’Ьðd“UmdÊF+·lLZ¸E›§ä Bçj^ëŸÅ÷ap&¢IøþWï}QïiK0??à‹˜œâÚCÌBWI¨Œ@ÕÔÞÃY§‹†¢^Yq! WL y™/´dßKøœ!=eÇYKP·åRàLåð™\³ì ìs‰éø[X†‹Ê¬TéÉÏ@mv]‡år‰ÅbÀ@ü{ùYPÁÉÉ .^¼Ø»§¨ Ï©Ï-<µO—ôè2iTHdÞŽ7±6âõ; |a2Ãpc Òí×XbÉi?«èB÷H1û視YñÙmÒNO$œúžu]„˜ƒ‹lz¿ K½çbumÈnH|ö‚‰ØØhÓ/\[ 2 {›5v7v6†ƒAmQ×Ψ0ÆI"eEcDD^—Q•[WÕïÐÛ ñ/6ÍðÜ×þ ýâoþcqÿÇ{ªb7à»û·nà­;-ŒÛ‚“äœHlð¹Ã-@Ä P)¹bƒï:Äqz:Âb±ÀÖÖvwv´Äµ´î½“1¢XÍ Ë>(-ŒŽÃ’©Fœe†ô«HAFɈ"x§PbI2êóYQ*¨!¨(¡¶(¹ßªªÐ¶-æó9º®C]×}¤$s‰…”sôˆJëTù¤”h qcè¹Ó]`ÖF¼uå{çöÐ4bm·ÅæØptGšƒª%$óY & ³%\²ðÐ_Õ§H…%µ6—p+—#îTH d “!‚2„UÒRp" Ÿxh7[,|B´»ãNõ…3 [‡a•°³Yckh°9¬0hªÊÀ9ŠÂ”F&ð¾ÆRnD’÷É÷LO–ÒŠ gÐ-NñÜ_ÿaúÅßøï™xÏÀågþ$…Å]¤1Ÿâêµ»˜„lmµƒêû}ö¹A/‘Býh²ÓÑ£ÑmÛb<cc8DÅ@éË;çrLc”,Ñêð•Bº*Ä2¿R V¿[Bg%Ÿ ›}ô Ãò˜,€Y0cJX.—½h„[¢™ÕdÙÏ€|Q‚>y(ùø«×VWP—W7Ná{ !àÍ[SüìOÏ0 !>°ø·DÆE߯"²ßo]p:2K, [±å$+Žæ9Šg$ºÀÐ6ñ,̬ Hy­ö òÍXÃ{(Ja’)žkF&ÎYlnX<~¾Â[]á%E ÞG´æ¿?ÎÖ»²ÀöFƒøô#œÛ­AéÎQ¹âfR €u™I BuJ'äÒuì¦wþ#RöîÇ{Ƥv¤ßu8>ÜÇÍ£¶ªigà*òu%õWªÿé¿}œÏç˜Íçj»®Ãþþ~BdÖ^ ³&í”ì?[O-ö1T¥g‹¿[k5 ¹~ð5„”¡¡; w=@–X†ÔDNV=>À£p^’Îf³{ ÿj¡OÉÙ^e¢(Ó’»ÈœYé2q¨-Yù>""òΨPg¥˜ôzâ. ÑG÷Ì HÃæ\`¹·#qI™;!^DŠ÷ îAq=zFÎ]–Ü_„ Ä J@"&r'1%ÍV,“«.¿yˆåb®sÓÜÔ«ÁïͰ—HPnÎͦ”Ý”úï\,¡Í¾? ‡ðG1x½®vÊo‚EÁö§ìÆ•hA|’˜"67Þ“xÅ;! pØÏ@Pé'BÄáÄãöA‹”L«ØÜhpí¨Ã³o/ðíWgxæS|÷•^~ó Wn-qçî £³ÓÙ]çѵmÁ%üíŸþ¯ï‰xÏ\YËÅ'£Œ°`:  ìd¸n¬U+0, TU%›rhȬ€°ûûûØÚÚb Ý÷§# ìr!S¤¡c+I 3)% Ajz1ŸÒw–y÷;"Æ~G_ £„21)[É^¾Œ\Xkµ q©pbŒ‡¸pႆ…è+÷¨ëo‰ 'dÆXUz=³Ü´”„¦ $˜º?îpóæ]|îópUÃë<çÉg]L÷ë}ÐçYö<Ô²]1yd²Î˜þƧýã’>39Þ:ËéÇœû_ìž„âÑê”I& 'ԕçÙÀíÓ1ÚÀ.\L°Ž\”9 ‰+ÿ+…®#eä=ðÖþœk°»Ý 1ƒÒ4ž«0º½DŠ §“%€„£™ƒ;›Ã¤c–p&a³±Øj€Í >¸‰ ‹ˆïýùï¤_þ'ÿó}åÞðâ7þ]2̰NÎF8žuU3Q|`„¶©¢”`Þ Q,<–å¥Ù?==Åññ±BxÍÇç¸1†à<jJ¼½m— ½%1'+úG÷²zM=!!»9ÅWƪß^úx2[€ÂÿöKÌ_2÷ž|òIlnnR̸eP>!+ ø¶PhŒu¨êbÁ½FVrZ¯@|è(M?Õ*sRQ"¡ï|DÛE´Ðu]8Ò!ÂNýý"»H„²1¡w”‘”ÅFQ— KšÛÖV'.Ô í“¶ O)aÐ4T,•ÄÍ ·F¶€sÎbÚF¼usŠÎûŒŽð๠ÃÊhKz¦L2' õó.ápÜáúiÀ+·–¸rg©­Éb7Æ÷¿v›Š¼' …Àw-NOŽ1Z¤–@USƒOÒ  uS£m[µ¾²³M×uZ\"‹¨´ÖZ`g{à PŸ]¬³ m ¢ìsì ‚1ý »ÒW_%øúÖj…ÉWK“Ç;…ÿôÜ1"0ô×cV®!h Œ"<úè£ØÛÝ…“܈"µZ!‘™ µOsìƒrg$Æëâ#SzvYq˜ïïÚÑgã9¶¶wô’Æä$†ß…”"§ò¹˜Üx3!Á°‚躈ù"âä¬Ãhp6ë9ZPU [‹Í¡Ãî¦ÃÖfª†Ã†™/Šn$œXä"È;‹)&â£Dñóº{üÁnžÌ0ïx ±òœ˜&$Ùi)%b*åº7Ž[<´7Å£oC¸’­ÍíX\=Š4³'" [¤Cýáúáœ38Žt7»‹ËÏ~3=ý÷~ý¾ ÷Æ`­>ŸN°0´³€MZ¼#=é5ÿ2»»»xà( *pò*”KI| Ù*îT×yµ¼z¡ÈÃIß—ô[L ˆÑ à­kG¸pauÊ{7ÄBɱtÃ9ÚÚÍU’TO.¹F¤ &“%Þ¾5íӈeÈÔŒøþ¤ˆ&`B°©,•ÁùMƒ‡Î7ØÝr ªŠ·=æe&rìžÏl¬ ÃZ—B›;[=Wá­ZOPEEYŒ¡¿d„@ø‰¼~kó{ ¯7àñ‡¸~LMV"g³OÐTÎq‹:´v®ß]bw§AÝ8 ‹“·¸ þˆã¾»—¿õ'ù³é§ã/¡ê?K9%[zWø†5¢øë@£"°GGG˜ÏçË.§„[êïÆ«°ÞÅ>6§Ê–ì¹ ¹nÐ~zeqL..…¾DïDÌCݦÓ)‹…v@*…/ ”:Þ ô¡‡Â`À{ùþs9çò>K¾BÚ›Ðýôt®2¯âþB”-Ê’Þ#\¾2Âøl ÉÅ×°!߯±9ÛŠ¢/æCÊ+ßçٸų¯áêqBÙi(É=‚š ÌO wdÑEœÎ<Þ>hñÝ×'øö+\~cŒƒÃÚ.*„–.Ç«QcÀÛŠçÌSk ž|¨Áæ€BŒ’Y¼ï½ùo E=B 8]·ô9G7v¶+œßîÓôD^˜™€sïˆÄp{äqzÖ²±¢>—¿÷7÷Ÿï ù)Àêäð.NçYƒ‹ïd9åÔI{oHïyy))ˆ_q»p ß§Oùb±ÀíÛ·ô¥(S\o"Ü"eÆŸ¼ÄU¸ßKR2 zíUQ `ŸÀÊ!B…æ…^65•ï– Nþíííá±ÇCÍ-Ðåy•s,h%©*a;QŠò·ÌØ£—AI|wg’HßKð^ïàpLÏ(åJ9 rAlb_=0(¼»Æ"äãI‹—®Î1Z@·-_CÂÖ¢m[8v'%EWž[BBH £Y‡#à[¯žá™ËǸ¹?ÇbÁÕ{ÊÑPï>cœÂ~iÿMvvxì\Õ¿FÊ®„4©U%¯Üô¼vsŽñ¤U—ÎYàÓlrž E$R97¢k;H‹æ­Ç[·fè:*©O1`qòæÆaÜÀäK»œc<™cÜmôYוæQï)åÑæŽ)ÊpóF»ilnnb8b8j[nQ ãììŒæ‘X›Úþ-J¢²Ê±ŸL³jµKÂOTnÙ³¯ôÿKA/ÏQZÞ’G€¡L; û•±~U@Ãx衇”ô“aŠkŠ_il¿’±b ^–"Ëü5‹²ˆ”H-…ï:ÝAî_ž{‚Åõ;g¹¤–•‰ÐHɵ!¬\©4kËõÞ'¼qcŠÃ±×^‚j¥‘õˆ,ó'„×)Òi•»ðH°8ž—®.ñìkìÎCÁ;DZî`”ÛÒ)j1 O<8@ãòþ€2ÿ¢ö¯ìïïYJÀ´ ¸zgŽøù`o§ÂfSôw,¢ñ1s‰·N[œŒZ΋HˆÝÏ?ó—ïÜWðòwþ4‰†ŸMÎpp²D—šºAŒóÅÆ/&J@ï…“ã§e(ncc[[[úo8bccMÓ`8ê¾{÷n®ÂCë™q/É1dY,æa”g¹¬\,–Ê+¬ ÿ* (@y]¼[ÿÒ­‰‘ª}aý…ñßÞÞî¡–”røsÈ»IZo íaúŽR)(\ˆ(JtÊû#ZŽÌÈ3"w*÷>¼~´Ä|6e…K!³¤ª"§å"I¡ ·é…å*ZÜ: ½M64Ü[(X€¢,’¹—£ F-¦s¹W£SÂÉ,á¹+K\~ã ‹…‡sûðÌÄCHNvSøšÛ[ïh\3»hÈnœÌ[êV$ïÀZjöæÝG- njƒ§.æý Ú¶•!5’ÿ¸¹HJoï·ˆ‘SÚÑ[?D"ø¸¯ ´#nŒé1ŸÏpãIÚ¶E]U4²¸e2N*…'ïˆ#Ô gø5MƒÁ`€Á`€ÍÍMý½illl ®kL&“äx¼†¥–›YÈ~pò÷Å‚¶Ç*“‚ä÷Ùlkh¡rqÊ(3ìD¸ä<¶6Ê÷_¨å/£1Feî‡Ã!~øalll(B(r¡æF\ßß6V*ó» š“¬rß?ðÁÇ„ë'—Þ˜`4^ÇdÉðH¼ßn3V9U"Ÿ~t¼O-$嘪*én%Ê åHùñoï{´m`ÇÍ›7qxx¨v@Þ ÏdþAÎx<¾'×_Žl]666páüù"‘‰Ñ#Ç‘/¯B,Ö’ž=ÃÁ` QPXz.tvhÎ2,ž™`¶UrÒZ ënÎ1›Ms#¹|â’WQ È ÒrþÂhÒ©2pU&‰Äíá,õ‰@b²L¶‚ÏÈ· „œ4™¥wÁ=$,$ɆƤ._Yàìl©×€<šp¤á¡ ƒžòq’÷g²Jÿ‡ÀnUôEÄ30^xÜ9l‰#I çvضò#RÈÃËn0ËMUUð!âÕÌf„šRŠXœþäû¦Lò 뎎Np0¡eE嬲Àfå{”‡¸+PÎVòGR\ VœazÂ> 42 !C8>>Vë//C¼ò ItÛ¶F˜Ngz} ;¹^óšÏï½ÇÉÉ ®^½Š“““œÅ·y(ABJ ³ÙLÝ AÂrwœ:»±±‹/*›OD %~1•iÒI³(6‹Om 8£2çé#yîq˶l‚ V£%9›ŒÇ3ZØFÜ@¬>¡¹ÐCc1’¢Ÿµä*XQ)1OÂÑ ^;ÎUÔ4F ‡r7[(ºG¹oŠdP‹´¨JCš˜Ç3ßža6[*å¨soB3;›,7þ {ˆ¬,‰Éè*ç¯7ß¿ÁíS¶#efÅÅm£íðr©Ñ0¯¼o1FÖŒ—ÀþáÁ·L<<÷7ü¡€û¦bê¿%¦Ó9’­µUR×u4ƒbCŽÜ¾dÙ½ïèåkúh¿n*´r•ƒ–¬2"0Æèç³Ù .!’v hö–X4ï=F£Ѷ­ZzÍR¤4·°ž!, ܺu ·nÝÂt:íEJÒ1ƈŽxc4G¿ŒÍ _ãÁ¤~E ¯¤ÐîEe>„ÄÆ~‰²“(á2Š î@&&½*LåeФ*…êü>+ïÓ³Wû±À)ó86oxÊe¯ @ëé:ï†Â!× ˆ2”f°ô|EÁrrÜT¶aŸZ7eø/F)+à`Üáõ«cø¸É‰¸¹hhÐXœÛ$+ V`ôœ3 ÷(iïEi˜Bó¤g6Ø @ÂÞö€ e$ª»™Q§ÓëZWáíý%|0H‰ª"ÛñµŸDlïxõ…¿M‰{¯-ç3L¦Œu(ž±”Z«•vFöYOºe—,|WUÚII!o÷W^ȦØç~Õ (Cy§Ü@¤—×_Ì}6›a4áììLx×uªq ú×½x­¼(­Uˆ]»Äññ1®]»†7ß|S9 ûÎír‰³ñ™ZíL¨¥^ÿ‚Gy„|Z HÁ퇑V2øL¶«a¤Ï2‡5H,WÁ ˆR2†r0DÓ3\ÅJ‡I¶ nß=C`$D®¸ÿ¥{$©Æ2Ê`Ô]bBT>nĹÜÒ)22|:£a¸ÈfÔmŒ€<“tà‹‰š€·;ܹ;eò2r7#Î:5UíðÐ^ Ù¥HÉà hä¾…ð»5ù:TEhp8 Ô)È:loUp†ž¥jçNÅÂëˆÒ“5ß¶-ÆË„é,÷dˆa¾ýg?6 ¸/µ¾B7_Ï IDAT–Ë9f-àCDUÕ é¤IJ¥vÔÒ1¶®k~¡È!)^1IZp¶Fô∄JHÉ ®s×!ƒhuÝx.~¼øÈ‹ÅMÓ`>ŸãôôT…«ô»E».o†ò™Ï|\ÑäªFI’ò>h]¿ ï=º”3u8ku_À>‡]y®@nÎØ)1Éf3\–ùVOÆ Žé2àäô ÃÍ-$ /†ÀV‹%‚I5ñ÷­{ż«ÊAºÚÈû=µŠž9ÎoüÂg‡4›8›züàú ÇSn±E×ü"é¼ÖÎÓŸw¯ß˜ãéÏY îJ%aLc±µYa{àp:ë8@U­É{ !fRÕ‰ZHø™>_t '£››[¨ªˆ½ ‹YÇýø½•¡×sa¶¡cîžy<ÕyX;º³[tï‹HaŽ‚÷˜ŒÇèR­dKN‹d«Q‘k 1yÐK6 •ã*^ü¢ÁeA•á4äû·Ëe¯ù§X{ìñx¬m¶(þž·ëjÛu]+4Q&É ”,»>Õß‹pù®CžhÙÎ+"1çó¹~÷±ÇÃÞÞ9”Š5£Q}y«÷%×&ɽé"Ô$½ZžT/JQ’J&'´ähDÑÍØõ¥²©+ ¹§£9‚*ì¬qìAK3 Z[!%Êi7ˆp6GbˆÇèz BrÍ«+ŒÄ¾3 ôùÍ[›ì¾è¾÷æãyi>KÊÔ*¡hŒ„#ÉÊ'—pã¸Ãcx<ú0•+1h,ö6 ÆK§ï§|GLÊ%Å®rˆÑ(áyí¦”pû¤Ãƒt¨*‹óÛ·Ïá&QÔb4ˆàmššß´yÍÉ4¢ó@Óp„/|ç«éç¿üW¹ö¿sÜ' ‰Ëe‡Y—àaá 2ˆ½] ^ \%e——¼l©sØÒ3Jˆ1'¶HÌÔ±ð‹õK)/GH¶Òg!`>Ÿ#„€ÙŒzK/$]Y}(×,«Ëž¦†²€€ŸNõXA2ùìâÅ‹xä‘GVÒãÉ1áÒ§Þs:÷pÖæ”göY…p-†ÍÊ®Å&w*–{t%ó)ï³×UÈZ$á9`pûp†Ÿn—hZAH[ö¡S7/¥„­~4ç÷nô¿!*ß:Ñþ{¢t­émœÛÛÀçZ¼<“^yÇá”èýP'hº–D¢¬sxõÆçvk œåç;XgñÀn…§Ô×bá3²²¦ªæ„ŸHŒä¼'…tpf0›uØÝi(Â`<`¤˜ˆ¶µËÛ”©Á1ÒI ètÎ+Z™ÁXº !ÔU¥S ndXÜ<˜a¹hQ7=UÕˆ¡¥ölË–H±”`RL " I]B4Îñó´_£Äé…mר=€Ù’jôáŠ#á¡ó5Þ:è°ô¤(Hé“àv¾S2ÚÚî, àxqçpO=¶ “hÛ.Ú 1áüîµkÑvÖYtWÞ%wc"„£.5Ú2ŒˆX‹éÒãäÌcwgˆ­M‡Æ%,|^²ž’"ƒIé’B¥çu÷´Å£ é½Åˆ8;ü±d÷¾D¤ Çb6ÁÙ”ö8K1ê¾~ÆPVX]×Äú3/ õ×ÙסrLŠûl=/Pð ?‹ö¶ãí¸­Eåe­ñgeX°L@)cÚ«ÿ4Á/S”C^Еrr¬„ëº.vÜÉ/sÀE:²”üc žzê)ìîîòsLúß^q…«(…§ôåW7Àf„ Ï®¼G P 1+&ÃïS”LY¨$D¢@_ !J˜íl0™’5+‰·ë=1DN ÂïY©ÉÈ{ñ Žõ>(ÑFsá„ã(›ËDL–T³`XPSvvœß,¶‡cÄólïþ*WqÖ ÅÕ»K´màä¥ü,77,v‡ÙOÏ®…´ô¦kÐV÷òNrw)g%]Ùâö©G×yl j4ÕJIwˆ+.hñþ9ÔÛu'sƒe+‘ …å%»ïZ¼òì׌AŒm»Àt…RhCÊOÙš-°ì 8ÕQzùçzmREê†S dätÉ(]×0^Uõ=.‚(ÂGþsÕhQåïZ”ßKÅ"‚TvüµÖjŠ®„'K¥S^{{{[wô1È“–HB„ 4U*µ21G„NFð^Y{ù¸<· ú<Ät¼‘…,:QÎÂÅPØ3§ËÌ•«ëpp8Õÿ{êRIÂÂÙnÃCíH ²‹G±ucFdM ߉û˜H™,=ж‘s èyVÎ⡽ •×&0c9—Ÿ‹gLJ‘Fó€ãÓ¥61¡†' uí°·AÍC£÷BÎÅ”´Ç¤¬ Ê 4ª¸ZÝ£Ââp0žv°x`§Qê=…)­Xr(¬Y×5§Â;›-1›Ó–çÔ¼Ô⹿ù£9ø®@òsÖÆ ‹ù£Y„«œ ár¹ä"&@@Z^Øu‰M{ßõld7ì¢Êâ1ºhÄÂh1‰µ½¹,ø²’nÕÚ–Ü€úÇÅŸ~”Ê¡$³dç]9ŸlùïܹsJØÒ˜ž5úÉ<Ì 9²µWƒå9­Ð¹Éœ Ík ŵvÞ{FRF…^Ü“šëïE!HOGI/Þ?"¢ÕºJ-­„Ŭ•ü ²à MMï´ó0–B¼Iròó]ÞåXãâªtÎÁÇ„ñ” žàÜùÿâOÓÓ¢6§£—û/Zk‘ŒÅÍÃ!ÊšŒÓ^ØeH|ŒÙ+)“+1‘†.q»9‹Á ÑãCî-aÅF ‡ä NR„•‰pFΛw§V÷ÐU88å¼›ªFŠ ÝìàG”Þû ¢ŸñBX.æð©âHI­šlÚ9žªp¸Àè¢Ò´JC>^ ÔDQ´b™j¹ÚL$Ƙ7-@.ëâeQ”Ÿ—Ÿ¸G1”®B)P%·PúÚå¿RÀ÷vwug£Õû–ãò5>JH0%ðYil^æ¤Ê4¥¿¯]‡™ Ë‘…*»]+Ï&DÙ·1dî„yWU88£P%ÇøÔóÏZ—yCÖ½v@m3¡+]ƒ…HèuÕuáÛS%è}ÀÝÓÈЊ Û[5¶ê,è)A7õ Çs~BN*’kŽ[‹éŒ£üåÎí6¨]N@ª˜ôã…|u =n ,jG®Œ 'ióvë¸Åbé±3—#gÂÜq¸u{@J3FS\ÃÇÞGDNPCXüÇD¶7Þ=Ô^»kgXt‘ûñ{e‚[jÉ$ 1j¬°óä{æJ0±ÖY*ém/…’ø#B'ÿ•l¯œE˜Mi‰Å¢T“bÍËZñe7"¥[PºçËVfR§ Y‹ ÞûO„Z zÊ,>¹€¢[NÙqJЉp˳’@I"f¡.ŽÚ£×uÕãJe£ì­]ˆ4× Ñrp8^âìtĈŽÜ8k\æ ¬£Ä›¡÷F…/ûÛyÓVi.$®\Ê•$Tu…Ó™´ \T•Á;µºº‘t÷_™#({6kqrÆÊ‚Ÿµ«j ‡.lÊf!eÛ2Ò=Qç˜ÃЛuv…¬uZM¹g"k'½¹ùhŒhCÂÎÐP7d&ÈmX‹ÊUÍ<Ä ò»\âÒ·´>÷¤ì¹®k1wð¦†÷Ãq¦X´`á¥U×µú r3²M—|%Ë,Ö.!­ÄŸKb‰1¹aƒ\·¬é/y²¤¸ª²—Ü@IîÉßêºÆp8Ä`0€sú]9^…|Ï9§Ù}%3Ÿb.–…!™³D!44Z$•L½„îÈ/õšL%‰¼Ø…\Ÿ¯R%BäwÉÑ›]‡”’·¦xo€áöî2àätÉ¢Ëùÿ’—@ˆ€øÊmê\H#Ä¢5VKw%w¿$t«ªÖ”\Qúm°ð‘ÓòörUåpaÛ¡âœÙw1!'—‰Ù’.HÆ쟶žîݲ2ªª çw˜0´’^Ýß0Ær”1Ó6á¡ÝÖ9 Lqw!âæÁÖ› ¹Fòý”€ƒA¥eÃÖQÈW¸’q8:mµã`ÐŽ´=ß•xõ…ï$$Z ]»ÄÙDÚ3f*3T/!qJÙ‚WUÎ`+³îúñßL¢D,PÁ‰`Rì Hiùôåð<Êri’¡h.ç\E àE*ßv_|ÿ2|&!H…Â!e1žL‹í·2b¨.× ¤Œ2"3ÇAC¨2ïÔ’ÃUås‘€ìP:·(!Y¢œËð§ÌAx€ñŒ6%ÖŸü~ùG‹87G‘^z_²m˜shšš¬x]³ßNþ<…Ý+^§‰1>&ÐF=’Gkb0`·‘Ÿ'ñ3VatJIµ<šG,;Î4Òò ¸°ÛÀiæ)ÉU…r<éAc±Q;%­i>Ä‹M–mÀù-Ùý99B*»R¢Öæ9È:ó!âàÌ«"b7ú‘dø])€ÐÍA»´F´Ë9=rgZ`gó޳B˜ˆÿH †ª0ü²$qƒ¬bTNüSyQ!xþ½Üj«ŸÚ[úî)%õ»Û¶Õ¿“š¿Ÿ]„Jˆ+¿KŒáp˜}hþ½D4ß ¿Ç1™L ¡µ’´”88=ƒ²”9ç-H~„¸YuÓ-¦¢ºK¥22P†JË;(‰WÃ.‚KâQÖ%ʪê gã|×#o8ËŽ’r²Ž†È›q ‰ëôýɼò^ R” R©I€ž«õËE $©ýçgä(¥˜ºQs”¡x’í+J)w ¶h}BÛ K&ÎDlj “5ºeÄ"nUÒ3PÈ@ SŸÛ4ìãW0wŒËÌæ›Ëû+´—}Ú.bo+ó2ÖY}N,VÍI‰ØŠ6µM¡Ååg¿õCÝ€wç$ÊQN)a1›aÖYÔU¶HÒêX,K×QOû¦h: ÖþÒŸ^‡ì!( ¸m)¾Ù¶­.ì²0)'Ã8g9^žóîå}ª*+3÷ZkΩ‡ˆ3Ö®ê>§»êr‰ÊÊܹn{F̈#FœÖÅíXz¿°ôaKP1º¶~Î÷‹|{éÑpX«7%Ö, m‰¶Ó“&Kþ£:õq°«‚–"#'ïˆÓaÊ#HzÒ[Ò>«aŠÇ¼TÀÍ hrŽÈÃNN¼aP|c»é¬¥`™\I¹udÁ¶†Ûc@q£ë Áòóý ¶EæcÅ8ª4| ¸Ÿ+JK¨eAJ’­Ÿ¼› D?ÐR¥,CÎ3w„¥k2îïîŒöËEoÊ;nÇn\xz*îª1FÛEZíºw)&ÝE)ùò¡{½¸ ©=6àK|1¸æ"OãP«?B®ØT zµ›PóåË—Ö›àNŒkÇw%M>æà66[Ÿ%[fi †£”b×#5q¶K:ƒÖKªV^ [Uab/T|æïPÔ+äPéVTs¡ ^ÄnJˆd[UUŠŽÁFx!P‡ Z„8ÑØ¿?:A}^Ã1eFQPLAŒ3)0,oïs¥…]v`ªõêøPZ¡Of8¥is Y>·!'¬-â|ŸÀY˜¾úÓZÃË×3楷—"XÐg:ä.Õ¶¬Ê%€Ê®Ay «à%yV¿)è€ÌàNRq\1Í)ÚCæf’Ô{ñƒvu“ž«ê.‚æ4òõlÍ6 @s¼>ܱ¾<Ýei¨ã8¾ñ3¾Ø1Lö࣡Aø¿çŽIãfXIް/íÑù0 9j#wpFD“}®Ð C<¦•ã´)ˆX KMÜ}‰0óX¼×èOÓ0Ýk4ÒÉÔR á{šFÕ* ; áõ,ÎD(´}‰t#× Æ=º†¦~Ϊl¸b½"UA.âŒòø³Ze‚iÖ&äXéZ”l`«î™PM8¥Œ”$ì¾»R#GŠ›ì'íÜ`Uöp¬Ê3/+j‹8Û ))ŠÁIBÄ«‡‚yæYÕ„ÞRbCJ=Õm­+V·*øÇì\…˜„Dµ|~9ð«’Ã×FaŒqÑÅeHÒ žçÙÆLùݗ쫈»Uþ›óàDB3Fî!€Úw á÷¥+ÿò¡ñ)ýx{Oþ)µØ—ŽKÎ7ì>_äõ­ëjiÀ¦¼˜óæ¼Ìù©ȼ—/1ÜÞ¨Ä^u ï]dáÓRX=˜ôñg<Ÿxߺõ1 蜀Náíí±ÑJvâèa+Õmƒu Kd¦@ŒiDê ]|ãîaÑt&Ùz†@#ï©”²júÉæ³.ý3¦Z/°Ô¨‘få¿sŽˆÊRdY“Î2çŒØÓÏÅíÁ¾3– @I FùóJs<ž,¨´ù—/ÿw4:9¼xñbÓ„ÄüÞËTÙg„ô›×9 ƒÔæ½ãk¤š®}ÇTKe#î¾¼n!V5éqH½a‰=‘ëR*^ÝKW({D%Úûéhôú§QK{C6g3 £†ŽU§e”6.N‰%YXVGÄÒH Ä`t`ˆL§¤ŸL°†GÒ(6ç„ãÊjRÇ1B†Dlk12•—eµ‘_p\e}QÈ@iˆ^ëZû-md–M# „¦­ÓåÏ;"vp\´ÌnÓ#ÙŸ÷zgÐsë¶i»zIG†d« ì3£[ˆ¸3¨Œ8 7ìQóÞÖY7;*Vóø>´í!`ošáßt| lœÿžù¿'Ö°Ä—â¶lç÷¶²ž¿öW¯^áx<ÚÎÙ D}—eZ“õ‘ˆ×ý"õµ–æH“>%+uÇ×û ¼>¢ŽŒH|º•RÂ4Ž@ˆXi(æ%·5ܯì~DÎ…HúgÃhh6?0ƨòê:e¹ÀJlL5RŠØÑv請6‡“Ò4áXEY‰hUA® Yœ*5,‡!#¦ˆRå£2úZkx˜Å˜ÏwJ¾Òkc©æeEƒ 1)µ;ûÒr HAJ³ò90-ŽªRÔP›J…K`cú~Ñë…@‹nóR¤ý³5pð¡ÌhC·¤nO )¨' 48ã$ø&ÝwDrÐûO[à­™!ø°œ‹Ö³è<Ò}ª²Cn°ÝÍiˆ@¯ PD¤OÏi›÷Òpè8¸˜=˜¸, îïï4Љ:]IvÓˆ­39êù²›U6ŸÜ+¼àIm Ó8èÀÎ7õxŒÓT£µÞ@´®+Rεõ9v ˆ «Fe4ê. N€“¥¬!G ­çW3vqº=·¢+ÇÑ× ¢ sNÀ¸@¶Ì²®ˆ4‚€êÖŠ¤²6´î T!D¼º“Ôµ(cUœ(0f{2 |š_RÅi.B#¾:ëTíέH*G§J¬¥7IÏDÎ~¢vF!$ÝÞ͛ͦÕ^úy¯wr!ôúñ²®Òô¡Þ”;7 ú}­—™ HCËÛU:_ºräCaimš&[Œ«3>_æê×ÛÃI¿Óó{æ~]b»Ëgm@2—¿zÀ¿¼ƒ9ýý~¿·¿ã1~ò“ç`†’s6@ÏdJÑ&±r³aWê3«z\þÏËjÛN)FkÍÄ\›:ì¦÷CÐÉ>G5bѬQ:ÞÖ¢Á(ËqÐMœç×±(QXWåý£35{j“¬‚Áê8c!"ÓÁÎKA±H‹4RNØœ=‘už‚VУ o}s’Ô´ ¶€ÚÔ1ò³ ç‡Aï,è‡NÀ–JSvÑQm¥4\qš9q©Èý,³Ð§×µhÇŸpŽÇ#€‚ŠáiÄVH7Ž1¢Ù0)CâçË}¼3ˆÖ‘~2¼ä¤ôg"qãcâÀXIËØs…¹cÏa9Ý–?•ÔNpɃ4!ͺ }¨ý¶h€ß{<À#Ö>Eðzþï=;Г;1Њ»> ãÀ‰‡ðÚnoo1Ï3È]€KS|¤C´?¥„Qû(–²½ù`Ë´ë$ð¸ØÛ”!]D4Ž£9%1Ž`àÏœñ&07/²€k)–só~ó0J´WEñgÈò•S6ƒdßA­:3Sœ£t2 €¶%jhì•ëÉYæüQåi]ɢ낞â°zƒaGUŠ^Ö Rèmì$Éç´Å rN( XJÃ~7Hê ™(N¸÷T-kgÅVÕgÜOƒ¦ÕbOlãÚ¸{X6ŸwséøÏ{½ €5ØB£0Ï·ÞÎk¶ ˆ?¬ … ÎïúD©9+΀B—ƒ( X]Béœv^ìa«ÿýiØ÷žS2ÏÁ|íp8Ø}ðw¾…“¸‚ßýq2Ÿ}ö™åtП!~u»ÒºþÑMf8<Œ£¡Ï4:«ï»ëðm°ûd„ý|6L<¦è S¥þ>Áv(¹}<®$6JW0ã@k¢ý utn2£O×¢^9eà ’J ‰™ŠI“EúKÎ ©ÓÉ»ÃètâŽÀvãA4`]Š»yÓ82/y»8FÒMö¾öA(ëRbÁ˜AJ£@03ØR´ë%¯fHZiŠWsŽ)ñÞDwqÛyúó^"y,ùøºðTnÉçd÷‰QH+ê<ϸ¿ÀñxÄÃÃƒä¥ g™&Øÿ;Å8ƒËƒu¦wûPLö³{c4€Ž*0´šó”Í×ZÃóçÏFj Gÿ†8 dâuÜBvÏÅÆewº0Ø/È‚ôߣsÚ·ÖK–Œ*<‡ G'Ûð™ Y)+n_?èçóöª ±0bô2nÍ´V5,^{±FÒ^[-ÍÉ@Å '°ß¢ÇŽÔÓù—µ·6³ºÀûN1iÛt1œ@Ÿ"p\ÃHŽG¡!G%®„ Â#LcÖ0I»5…Öˆ\‹ÂZo bƒÜÙ~0'#ØG´çÕZüc¡Xm0ø‹^ï¤ ÈªÖU<`’Áã˜ÐZÏ«sîe>TÒ0åƒúì³Ïp<Ï’În·Ãáp°ÐˆuçnØ,Å%‹ŽªÉïõêh¤ KeiðøÆnN£âßœa|¿?.wJöÓ0ýÎ ÀfxʱÇRJøéOŠ×·¯pqy墡Ðé¦v?Í4ªåèAûŽ ‰ÑÇñxZÇV¤Í9Û=äœMpƒçâõKIJõúrFsø w¸ÖÆ!c 1 hàlˆZû¤ÞЃ€yòsírã¼Ík¹†ôk–*0Õ)µ §,~Û âŸR@ŽÀQiÕr/½¤)CE«\IÔE‡€(éŸr,X ¬vé}he!*Œ¥Ê£à"1àÑÅ€ÏîgnCPy²Þ´KßClZÖ^¶õiÑf¤ðŽp ’2Ñë@ã7(UK9©Ý‡Ád–š‚+!Y¼»»ÛìÊ¥ˆ:ﬡ­ð±ÓÔÛï÷8Çç† ™æV<0¶;9wÚªÀäñ8›Ñq§”ðððÐË.¥˜Ä å"óëóÚ¢}ïwYÇ¥ñŸ:`j†ðÿþ‡ÿßÿþ÷Mƒ€‹ží¾"îI\¡X”壜ªXHˆ÷÷÷eÔ*ÃO9šìp8à[ßúÎ4M;ˆ®³ð"ª=2bøï¯=+X+ðé‹{«ÊÈ‚hˆbWM§›®‹cލu6’È‚d0­c«pϺËÌ·&Ƴ,ŒXÚÚÜSÌ>I™ŽDvï4(£2 ã`xÌÝýŒÇ7£\w•ßOSÆ~7á¸V%¿E’ö©×A«1Çゔ،~ ­ª~ IDATXêdéZVétÅ"ZÐY§oIÉ\‡¤NK’’âüâ24‡£ý¢×;ªw©êªRÝQ;˜§Ä˜\¹©"Æ DXCÀŽ6×Üؘ«UwöZ+þæoþÆBN¶ÝÒˆÙÙç™pô°@¯lsã·KƒQÁ÷zY†ïç±|º@ZrkÒ{N‡ã FtŒ¨Zü×ý׸¿¿Ç×¾ö5<~ü§ËF;Ö²,hµâþþÞ&ã³Ýãíí­×ï¾Ò1M^¾|‰#¾óï %©XæYw«ÞÉÜx³ãjvšq At¿ZU°¢sEȦËQõë"”ì5(­vÞ<뜲ðã!k9"w çÜçH„ˆ†jϦ´=ˆÄfÄ(c€ãÍzîß•}¸ks8JΖµÙ´"¶À‹÷êó ™²JRì-¶94±óƒæ iDŠÒ$kBÀñY?ƒZ †<ˆ9"†AšíÖRÚ†¤©‚®=ÈØÅª¼‹ÏÇÞÉHFâq^0h¨ÖE=¢1·bÌæQÉå¦AûR cš&÷0ªñù«.~¾NØçÚþØ4^ +âòØäîR­HùÏ«åó\/Ø—x3ÌçßÄ(¥þÅÊ@­?ýéOñüùs{¼¿ûû{¡ç„Á¦i²,8;;ÃñxÜ0ßv¿t­5üøÇ?Ƴ§Oqu}-Ï'w@ö´´ÉH$€,DØ3bG'ó0÷¡!v*p©ÊsøZE««ò¢å®ó²`šdÂRRùx/ÕžRSž Ã(k‘å°@j'¤×®Ëªƒj‚ ôJŸæŒèµ—²¢Ô¬Äà€hÒuÀ4&¼ž‹¯!¨,;S¥Vu@HÃ݃ôì§„it¼›:¸(”ç¬6B|¤Ô‚– aBc¤Ñû_øŠ)a)LÝ´ú9¯wrUÛÖ*–ÒYIË*’Ñ-Ä(ž³ —ÄhtñÞ ‡ù!û–U¾¿¶»ò)àÆ]‘FÍè€Ê<”ÂÆÁð:ù/ÿžçôø_~7áûØÉÇ—å{î<>ñÑÄíí-¦i² Bt.···ˆ1Ú1¦9/^¼@ÁÁiÙòx<sÑs^ÝÞâêúzã°Nï‘•„䢬Ö$—®¥34©²;¯ÎÀùl ”"VS–ŸMYûãKT%šZ­¶žRÆ2/›áœ¬(aª¬x8ê9¡9u«HÈÐ^a]›•Gè @òmJn—Z8â¬61¬ ´ »>K±,µÕR-uY–Ã0‚­’gȵ€œ¦¼ž5Ô&')es²STù4“l8jÐ$ÐÀÕÂg5~Þë@LÙè†ÓÔët•4-û©d¶uc,Ü­<çwMÆq·ñ ÖïÈ÷;¹_X§Í/þo}~þ¶Çóáµw$6ÆRÚƒ„»µfe¸œ³+×¥O šˆÎÝÚó_AÑZÃ4eİ j¾^jg’ gN&F¬Ö¿/eÇÁžeÄZ¡ÙAÿMˆ­A#fCÕEÁ‡ÌB] *E.}û%Äq? Ñ-³Z’*vc¸HùM†ˆT¦á"ðR ÖÔ‘fdÕÿ#Hi>XæœÑp¥æßšˆ¾9”d”aК8™ýnç.Ö/@~ç*Ô¤sÑä†bÿ„†²vO}<Î2Ê1¶-¸§{\lþw4îü\È>²ð;ÏÏ Ýùò†ïØ;¾Ç¿x <.Ýø|øïÉŸÓÈP£D•‚ujñ˜ÿïB:2ÎÅ+ÙÇ‚9ª»»;3âNÈêÀ'¥ËK)Øï÷š®,g… §1§ë®ÛŸ“ÃQVÑï¯AØš;æAÎEÙsÒ¶ªÀ[¥˜S4üHz ÄP)ÒS7 ÏJvßap¶£¼—’|Ô_=Ì=*cE£A…ˆÞlļÎ`‰9c–š—ÝV=¯F€M»B`uŒ4ßdçÚZáÒ+ÑjCHBû]5î˜0@IJ.˜"°ßI*± í—u•ÉÙÚ=M“¤wY؉ AR‰/;ˆ1£6æ,9E”VUA +ܽ•ÅåÃæ•³³3<<ïL}äÀ(€üt±¤Ð?3¦Ôôç%57¥ˆ)Œã€3š–(ƒ ˆ{C®­a-B&+ªwGV_äˆì*Ÿ)%,óŒ<cé 8! ã2§½®†ø‚ME”ÖÁW~µT9V‘u[Q±ßíeÈY0ˆ²ŠñBdÁÔý ¶€µÉF¶¬«õ3ðó^Ú‚X#æ²b78;Œ(ËŒÖøL›¶MyÈ8gq¢(EÒ²Ã1M"M&òâ#Šr¦qT©6é8첦J@ÄÖU¿ýõŽ€9DZÍX›°%÷ƒD×Lô“‡ª¹d¸†ítš3r!a³s®g»Q¾ó]{xÐc^î ×7JF">—[šâ¯ÃLJÝÞÙøˆäð>Ž£…è OÓî¦Þ¹Ð‰øÿ0ôч úüõÀ63Pêý*žÄȪæ—^¿°§RtV yþ„².2¤ƒ©Cˆhu‹‚<ÏýÃb G’Hç[-"¸1/3—† á ¡Ë•ñºRŒ˜†^SçN,¥Ù™CŒHªþ[[E[;7eP'S¸»@© ¥öñ጖‰†À9)Jå,VÎoò€y™|\$絜MÉfkÎk•hK×98à}gn¼ÞCÞ}® ¿ iNDTÊ'’×”Ö” ¨;«âkѱґÆ^²©§†— ]=À’!"ÝôUÜ!xèÏe2\úÉ3ÐÏ)€Ñf;~²¬*×Î ²[2…<–# Ä#¡/X×yè”N¾ˆÌÁuÖ ÌóŠ¥ Jûù²,ÂHÚH£µê Ää*?M³Ì ¾°ÀãZ1Šc“^±U©²,Øå @gŸü{œv\­U¬¦oq¶S)ñÒp,ÆQ‚:=8GÓМÆîl[Òð%7…8èÎ õÏ1 XÃuYElAL¶rÀi8KÅ/®SņÇòັø4À…N ÓÐd·SžF <¦— ÷å´ôU‚ÓÝÿm¡¿w6»Ý?f„Ù“û{F"à ‚+žÐĪ Ù~ÀvÈ*ÿÞw*^\\Ø5o1Š‘jg$TmÈ¥IµVUê®Õ¸:“’Zntþ9(é¯èám½T]ØEe¥"¢4qPCôÞÄàUûÇ „„†Ex1*S5hþ,جbDhd!ª’h)eäÔS߈d6ÁýQõ'J§˜6dt+k3§.‹C†ŒQsšeY7šMÿv7Øï$:YKAEÔ™ G§ö€®{Ȉ!"åý/°^y½c3zøm"0Â(|mîÔšS™1´†i­…’NÊ^SïåA€+6ó=¤óƒlŠÓ`|ÞÛÿ&w€ÿÒèNS _R<Ý•ùòÎÃçó§ï¯?¥„óósåI©…Žc´†q¸ë9e’þÌóù´„á·ôˆÃôc2®Ëž`úg¢ó×ENàÙM"8*išŽs"±”²¦‘Ì«äÂRJ‘´$«Dˬ-¾9mJ…ÂìkÈ‘ŽGrùP¡áp0CãD)iÝ¡qœ°–UÓTVVL‡ 14s~¼ÿEyü,kßß?`ÚMZ~kÖQ™SÂ4DÈÇ%d-ä;H¹ʺ¤ZðZ b¨ÈJ°ó¢·USéV+Fí”rÂ8Rÿ@²âðùàÝ”l!FÆ.Æ8ðb»®_èä‘Z­ÇÝågÐÇ-Sj€Òd%Ôe؆Ó̃…™Øå­èHNsq–i$>ÿ[OñeH`[ú;E。{’Ñ¡ÿõŽÁ×éý.¾y8ÎXùwüÞÓ~ý9½C¡ÁŸ¾‡ÇâÿsÎxüø±RPW÷žÞ$²>d—p,šñ3o§³óQu½ôa ÍWU”Œ„ŽI@£‚€“)ÂÜù j¶®qOpv³’^ú X4JŽG4ÍaÅ¡ $­‡/Bþ‘*¹×Ð2Z;XK([ŠD1FLYR FjW¼|=‹ãÔÔ(猺® Zr ty³¢<ûV+v»Qî­Û]ËÚp,]@µ”"Ó‡j¹¾šP‰›¢¤<uXÊâ¤Jź,8X—9%œïTµ6¼¾[ìYP'©ªË1â|’ù‡Têù€ïýÎï¿}aû5þyoøE¯ßøí?!ÊLó”³ä}:¶ÈnLˆ4†ˆG4ãÔÅ ÀI©Õs¬o ã¹36õ²§ 4½×ÿíæ¦co˜áq½X~Õ¶"$ô»¹?†¯ð÷Þ!ðüþÚHú‘MK»ÊÆQ;å‚ uúû”kæ\y >õ¡ƒôU €½æ[ú2 Ÿaý¬» =´¥ !˜Óá$_ž¿(ˆ!ºÐ ÂW?BŒX‹°ß(=Þª°çe–F2‰{Á:|kB+æ¦PUUXî-ËñôÇ쎫áxmÍü‰Z~Ž”ÖêíáÃ0¨HˆÈ©Mã€ýÄç.)E-ËZpœU†MŸ‹ $„øQ1›(ÍGDèé$KY‘£Dä/ðó€*..vÆçŸK wÓd€¤lš ÝȈ³˜D¶,MW_Ȇßq.  0N{œ:Š‹ÐZÎY‰=2HnqyP/™Ê÷ù]À¦¡ˆŒ9“Ýým;¼O ¼áz#ò_>Œ÷Ç;Mü17;«¾ï´WWW6édz9 ´¡;æõ¾È+øŽÚD#³í|¢h±`ȶ°›»6Þ‡)ë½f¥º6­}Ïób€«$j%ȨÏ-ºÅoΰ«Ù®¥ï¸U%æ¹²,¯­Â •DSŽ&å2û\ªõî غ´ymÃ(ë”#Ò–yƺùˆi' Ý–¡aHªKȆ¦VQTy‡!;rŒÅç&UµØ°Ÿˆ¨ŒCÖõ,÷¸ËAÇ™E,kË»®]õ™JßÀ€VV<º> µ,@þàŸþ·Ÿ»ûËU¼ëK›8Rqv9ìF˜`8º® lti+Ÿ&0„ èê²>„÷Àÿ™båþC©ó@>ïõÎ ¦jk§¦1a@×ù(Ú9Î ß}€M* }‡õ;s­Õr>þ s5Q…íÚéüÐýníK€>D›‘ò=þ{Þƒw §ï÷×èÙwÜMÉÊ£Ó€óós;6wÇÌÝÚõ“óYùk¢‘2„çË¡³-ßÔGð¤%Þ“”˜º˜ Ÿ3Ÿ#1^¿E-±«ê&Û¨å±\BlBG¶à¸È{Çq°Ô°:õ`*@‹Ð‡:\7]*9 Á;oáÐ×Ö?CqjQspaÕ…(X¹!FÜ?̸Úk%ªr‚’¬ûû£48éªsæ"Ž£aJU†ˆ(AçõŒN«­+f‡è¢¨VðäzÐÍ,àÓWÅ>Ocnêh®BÄ“Y€ Ãîñ·ß/üΟ÷ÊgâýsÆùù9öCŸo'óÜ’-ø¬(*_VÜ.ØUZôà|ëö«]ëþ4ßöFê¿ä˜õ c÷Nçôo¸Ó˜ùUJÁ<Ï8â8C÷ÆîÃßqöåäºË„cˆ¾âIôÀwkZÈ 0êõÉ3äù½t9B¸(¦µf¬„ðáò¦ŽO‡@ટÇ~¤Ø‰gVö4O® æ0X5ZTðCÂf›˜Ü¶y:! è3®ºx¾qŽ-H$Ú´1JΟ5ôã-˜¦Q‡³Ê±ÎwZŠÕÝŸ‘ÆÃ\-Š•9•]72¥´?¸1ŽCp7‹ðºV锄L—ftðøbÀ~? VàøpÄúôA£ eÇjÄ{œÔ²âúí­‘ë÷þé÷…Âà™€@Ì{HËvÂnÀÍYÄóÖq›&¼ïÇŽYz pîZ|qõÎhbò9o}Z@[OÁ9Ÿçò¼<wFšGåIšñéï˧Kðçó”cËÿ//mç]k—$•€eé©cžq·g…„Ïj]»%ïC0˜„êêò~±®Ë kPÞ‹üô².(¥Sµà<¯CÇ}éqÇ‘rÒÁÒÏÝ•šúl+–] –³k;1¬ež1Œ#–y–]m,Ƴ,ú”’–¡W„0hz »ô¼TÌó¢]ÊU¨ÂÖ“ãAD§„ó ¸ºÜéœEñ‹‡ÿÀ{p!ï@èsÚŸá|/J©!&×ÞÙÃ|ÀÉo崭ʎ߉¥¼’ŒZ‚´P2ä÷ä–=º t#öh4oa9 }‡$ÕîgÞ`ÌyAOLžãm/ÎN•}CŒÈ;0gr‚+ˆ°D§T-‰cÍ›ã3%ð*BQCH€ŒTxI (ä÷‹³écÚКuuÆ(sñB«8.«u¿µpqÔØ›ðñ£F|A«ÖäPÝI´†‚õä·*&Gm±‰sª=/ ÿ4 hb ÇE€tuY…ª…®T‹p†q0FßÍ!áòb©ÐŒhŽ Ÿ¾Öy„¬°¬ Z X×C±®Ò•9%à|ß1–ãRñ°çE4{©5¥„ýqs5‰ž`­øôÅÇ9‹$Y µ,( ‡O.¦i@€:ûñ‹¡ÿ|½s ð~û÷CâÇi‡‹³,Èé@æÞ=ç®øð|Û ã/æ=§µx:„¾[7ƒ H˜Gy¥Ó°Ÿ9,€gÅÕ*3Ìóla?C}~O'àÿÖ‡û–¢”­H ß3Ž£i!ÈX*¹8Å'Æd»eéÉn0/‹…³l8ñóØè’")Ë$Pu‚ K`>½H)ãá8Û1ø;Šá_­aYEÿnYfûý‚¨épOè¤ikqJ*ñÓD(ƒQÎZŠ*GsŒÒ —z³®Ú%锤i—RðÙkéü#}ZJ­]bîpvf8uP+¾ñDB÷Ö J!¶ñâåâ mâÎQÆ1äÔ¨eÅã˦) –< Žke&a{ažÓÄ´7àÇ/éxlÕ„Q¥sRžÍ£‹hÊÜ ÓÅG¿”ý¾s gÎVäaÂÅÅc:⨳>mCdnÐz÷œyrÀ i&*ŠÌèAò}~ -Ç2iÆ£ì Ù}(ÀœõóxNÀÕ»c× à5øŽÀÓÿûï}ªáéÏtè¼aÈûdÚ¯—<[×-ôDR¤¥£,oŽÅû&°Ç˜UD—>µ7ž;£*éÚLMvï0s–H/ç¢õ:ƒ­qvcGð·N¿˜QùÎÎâ'w°r/œ*±1ö>r¾Haƒ1e0~ìí°t"QÇM «Ý_jÈ‹²ªz./ƒ((˜l+L9¼sð¹õÛ@AÓo<~ÀŸÏ÷ðw§z‡d“U%“HIt;ôö󱓲 噎Ú;ÎÎ1_gj°Ø³î]âdUc¿ükš~tñU1:Ÿ~ X—‡ý(F;Œš®­ÌÊî™0í¥CÀ|œ-”Ÿ•_߬Eôï ëiBpB(RÏAÆd¥„ÝФESZ*~úbÁ *7¬åÿI9Òl£hJ3þõ¯]`c¯8D–B@—µ¢pWg¸ºßï…#¯ç÷å,þŸa6;Ø€°I yèÜ]i¨@oªñFïÒidÁûô»9ïq𦠒5$ 8ÑÛçîæNíå4^«gòu’KC„€©‹…‘Â›ÒæÛVhbL?øÙ¼QV Áá7N#HÞ8 .­¸¤;6 ”>FG€aç3* |(C8R”1`ÀHxªšJ‰fd…ÐaÅ)¼¾›ñW?Yd–?ÃÆ¦§ ”U§î´ ,ÊD¼9$<¹JúÈ;÷ ¥ŒÏ^ÜâXEt3Ù3í¥æE5 [­Øïv# b¢ õ³[™£É”íááAÖw©x|V‘£¢"þögvÛ7¾!'”*NðñÅ *ÉroÓŇ¿´í¾ð½ßû'á/þýÿÙÁ] øÿ_6t<’Ïüpì9Ç$[t +@Ïþ >»ª¸#ÕRðêöÖ ›B•t~wöØŽ÷݆tH†„Çþpœ¹7¸gÈù—w 2ÿnœ!Jy‰Ê.uðÉñ…,”Uš‹l9_–œXvLjÿ{U`ïtD?Í=0úiÐgkRÞºSU4SåñŠOË2#´†››Kù[%‘F”Ë^U7ˆ¡Y«s« ~†ˆœæE©Îm€€‡‡£0ÅC¼x9ãê2àaþŸ¿zŸÞ£ŒÅÑ+DSG™j4üúÇ{qߔ֛äkøÙËÇEû ¦iÀÝÝ=†aeÖM«kYðáդῤÇ÷«öc´Š:Ãh*ž\O)!´†»‡‚OoW,kÅ8HdCÃnˆØ¥>>Ç£Ël fˆ?øÑ¿ü¥Âà}a?cÄ´;`¿‹h刂hµcVúÝ÷ýºiX>§¦±Gp}Õ.‚˜ç¯_¿6'ãÃ}ë;wÀ¡ñ®So/6BŒ»>æÖü™' bÈlÛ=EþO CY:¬ûû{œŸŸ»¼¿ëÿ ªÝ£ æëℨ¨äxþ­#í 0ð”ω¯’´Ö4Ÿvuî°åpl¡§ Ö§Q»ƒ!â“G#ÎÏ÷†¤ÄnPyoÒùwˆ bµÉ¬ÀRd7•{=Hc¾1=‰Â9‡.æÊõt\+þÃašq÷°âõ\°×ê+·Õ¤`ˆDRrÆ7'\œyÉ6ép•M¦áo_E›U‘yŠù8«SÌ ˆ’”T+îîWÜ=̈yÀªÑÖnÚ¡Ô‚.örÌ~öÙ=r¾ùd‡ÝPqs1àü0b·ËH±é(ऌŸßûÿ¶×{s¢´"¥W;œï nZ?OQç•Ë‹á)ÃÚZú¨¯fŽBê©^µWvŸ^ àÏhð÷÷÷Ú>ÛÀw cçµy–€ÍB{[iì¼S.Àé1x^þmJ /^¼ÀÙÙ™(‹Ömí]¼Pp“ÌÀk°Z´Ì†“I:4Dɺ 7ålÀ+G[1EkUˆHÒ+У’œÓf\™w&ÔøàzêÏC«!Š¢.FÙY«r:–Úõ'óÿ""ÆAzÝålzr!ÎÒtbP€öÿKSGÌ÷­Éó]õ3¿¿¿GÖ Ãäís†%Ó©GgßúÚ•¦…î@ïïx(ò|J“Ö\›½0Ñ€8ð³)a¿K!Iø_»‡Þ±ÉhlÖ»#¾þôL¨½Zú|t½Ç\Mîi±4WœGÔº"ÆŒ?þWÿó/½ûïÑÄámù )˜¦ /¤3© b³[ï*ãÿ…<±Øbó ¶O’é%<+–büó‡‡ûMIŽÈÜn·Ãõõ5ÎÏÏßÈåOÖ—$}ªà œ¿óž¯õ{ÇCÀϧ4ž ýüùs|òÉ'ÚMÇF „Zƒ1á’rÈ»1Xßê¨6A2¦þZ³J¶å< ú¡*ÆXûŒFqÀÂ,džê)ÚtLkøæÇ×½d[™ÞIt"÷ϵ@P·`^fÔ”ö Aï—bMG!u6Ó4Y/Á£íè‹‚•L evž‚Íz¯¥™Ò[*æu6ÞC)+SÆ÷¾¾Ç);WbF)"k^ËŠ—¯WÜÞ/Æò hlµ¼”Ü€›³ˆýá`…|ì÷kF 3ZYq½‹¸>ßã06\|rŽ«‹h Ã8¡ÖÓ$΃•yÞ\ƒº.å)#ä‹_Ùnß›ù¬/SÂþp†ÃðÜ®@i ‘†«õh.F¡b7#³xê¨xNßEÖÜ6¬•0šµ{šw‚Ð4Møøã1©~Ð|¾fïsvZž:ï NþS'ÀÈpJ:p (äÃ|ñ⮯¯ø¤Ñ¼ P!­—€¢`LQ<ÓSéìD+¥6a½ù9€¬ ÈŽLNC¿g?MòX!Y4”½@(º~±Ï¸º:s –ü½_TÛÀªý,ÆŒT&NÁ±¢MAI{=j“¡ò¼dM°•\®µWDh+³‚1蘲ªÕ&™©”‚€ïmÄÕ娘†êüÛ0Ó âùKÅn”êƒ`U«–,e |ÿÁÕ€Zfäa@hR-9ßüö7&œDhTf4jkp–çÙZCÊ£I}ÉÚѾÿ4 …ˆZgÙý[Cô/ÿÇ_i÷ÞkpÀz/ùùáìO¯þã ¡q2„þëwB.DæÆ4r' U}°VnÓâááwww›]}á‘ëâò䉿ßÍ} ÁÅ~J8âu½\Çkõ@šwoë&ä¹<¥ô”òÜ'¾òÚ"†A8ì²/Áúâ;¢/å–S€uÛAGÞ~2£á³kfy¯‚ˆ·Eî^ûµê°¥Û´Ú€\Ÿ 8œ ³‘%`Á ÖµSŒ…u'lQ„ˆ!GÔºjH°‘ÿ’b…£9k\­ÚSç¿–*ßk”Ávs™0”´>Ï4/`Ú1ê{xöä*åõ7­å·Z°, Ÿ¾šQ*ÏSE{³5ᶆ:¯8ÛOØçŠë q&UI@ÃמMhmPg*b©Qõ “äyÉ(rq¤)@§½®3$•’JÁxþµ_ÁZûë½9€ßüÁÂ_üû×bHØŸ_âéã=Î|z\¼)Šé›;:¨Ö”âùæŽ pç”æ£y>ª¡÷R Ù{t|ð..$D:5d OصI.PŠèIà Öïú~çïèÄÆq¶ßn§M+=¥ ÙZóýúî»ÝºêAmg–=q…RVë²(!'ÛyHéíåÊ­ºQÀYòb`2”‚Ç‘¶d ¶7AMê¦Qµðµö§QJ½!@êߢ\$ح܇Ðzåd»z.söªìFæ½Mwýœ89GSJ­F™¶.¦=Š1¬Eµ[°ÊȲ,Øßy:â£ÇQdÍbF­’:„DϤJzóêö5é=ɸºº.ØçSÀõÙ€óCÆÕå1ã°ƒn¥ì$ØKe¥§R!¹It*_‘RQÖ€83áPÈsyÀïÿ“û+ïþÀ{Ä ­< #®o®p9Ýáõ+ YŒš»Õ¾jEgûqÇ|Sƒ¯nŒ²k½zuk†[k5âG\]]Ùï¹3{ž†`?rÀ8fâj-Ò¥)“°‰)$á6póàÿ[³6ßÖT£ éºJ¢EÀ¥CB‹RU/¾ñ«Xéæõ^@¯PîcÆåÕ5žœÿ'ü䎃«ñÓ9™s–pè$÷Q,Ønˆ¥Èô[6ìøÜÜóî?ù䛢ë# –û騧”_ïüßxLJÃaþ3œöÇfªáKst$€,Ðûû{œiô#e&>žh9-nއT꺧ì‘8½¡¾ú J[É1O8â}sz™›]÷>àÑÍ¥`MØžFõ…€~€ ßä<‰Ö>€iÐvØÔ§±§ž%ÞE |>ÎÚ3PÿßjLjXÆ”]z‡†¶éb 1bJßûxÀGŒˆ±—é 1!ØÜ¿§|øx½‚Ø#Q‚rº8Äáµ ZÇ*ׂäõKjJ…ôÑh1’20ê ‚ÔÂ~ˆÑDÈÓ~÷ÿù;íþÀ{‘ë¯ïÿ៲Ëvg—xö䀌b»Ë}°¤°šNÑ}¾¸cöÒ‡ÿÃþ(?÷‘@­2ñ†FäßçÁggXÏsxA³³3ÜÜܘ®ý:Ái±{ôÓNŒ­5ÜÝÝáööÖp?îlTƾ3«@§A^ÏC9nß|ª1é€ÍÄͨÑѨ÷ÏXÚE’ÎÓ‹Œý^d¨¹[ŸVMüxqv¯µö#ž\P¤ØâO9#"wÝ´™ J¢ Ôø‡„ζ¦zS«4í¦ÉœïÍ®á÷¾s†Oží­1JÔ“²VO´<3HIÊ|g‡»Ý 5x•õœy B«¦uaÄ)a˜âÝKè/ÎÔxNÛÐð©å¬(è öuó­/j–¿ðõ~S1M¨åˆqÚáñã+œ·˜4B1úàgî<Àvh'Ï8 O‹÷õë×Féeå Ö­úNk OŸ~°QÏña/_~G¾Ánâ Ñz"ÃÞ%Ò:9­‹ÍúnH ®Ë¬º Q]B£K_‚tvf“¯uE‹ !f„V5ý‘‡©ã¹¢"!WøÁÿ³wÞý÷†kar…„ó‹K|t#ÝjTzñ‹˜y- 4žWeµa]‹åm¢¶ÓÃ~ ׋µëR©çÙ³g8ÎÌ[r÷z2Ïš¼G¹éj­Ö1è ¿µ†Ë‹ œŸŸovpîŠ|‘¿À”Â;%}÷4âñ‘ÆË—/ñúîî ¼Àð‘èª.ð #Õ}…ÁåîÜÁIŒ¡fŸ U‰è¤i4tܾ ê“oÀF¡¦!BkUÕ„„øÃ–Ycài¨‡~pÀy¥žµøeƒ@´J±,‹V•`S¢8¥x™g™¡QRÐ4bH]&üþw÷øoža7‰cd´#)¬éSsN§‚T"(kˆièLy°çÁ¨…ù}ƒ4sI/;ñš¬L4µ÷*ÌO¥!ÉàO•/#öñÇö?½ã¾ðÿè_Éù€ýÙ>úà »!}rS¦rŽ€!k)½a…þ–â¯_¿F)]–Ëïú\Èûý×WW`o9s_nž¼CðU†ÆŒB|štÀoÚíìý@w*þüb¥ÇõU^7ÏåK¡­5¼xñb“îxœ£1Ò£~,•ÆÐ;÷ÖR2¯‘Ž£ƒy*¶!V/÷Vb$w·VníÇ€ÃðøñµõÿӈЂåñ!fKWXþâ=Õ²b¾ÿ­ œÛ FŠ¡yQvØ€‡ãƒ±ùY3JZ–gÓ€Ï+~øküÎw/ðèz¯‘=É5ºQË€¦3Ó¨òu™ӯɧ”m‡nìzcw_‘Ò–ÌéVZ.mÚX¥/‚R¯ù9 „”[amBÚ=ùb†ø_ï?€(¢‹Ã¸ÃÕåûä)´ÛV¼_¯¡l!EÛçyÁýý=€Nà9¥åòïonn°ÛïÍ­ÞïŽÇŸûÿôœR¹Èv>ªç,Ë¢*²]•¨:0hÀ¡¦;UsP;kãõˆ?q7¼xñóñ(Öåõ1F›Â  nïaFÜèêBF‰V!jÝ< çª’ßCËf:9‡¢«:³­áÙÕ„œ5ÌmÍÀ¯¥Ü•t ‡ÿœNA^ áúrÀï|û ]HšgצHzF"MÊhGMÆœ1 àÙå€ïœñ»¿6âûß¾ÀÓÇlìCg”dgÖ\Ÿ¼íðÍÄ:u³Ðž™ («Ý›jל‹ ²‹V_|l8ƒ—ÇWåáÖ•©CHöúÍw2ÍÓ×{Ç WX?EÊÎ/¯ñìê9n?!D––zËmçÅ‹±I홋—¥ªÓݓ҇õã6i„¾:PÛ¥±üyí}îøü—À¢?RT͸€N\ò†ÐÓüŸ:& OÝñ×ÀkcúðâåK¤œ0Ž“¦GEÄ=c/„€ùxTv©™³\8Ï‹*5¹bMÍè˜YBý¼Î˜Hã5‰L–<ÿï‡Ñžô”Ùª|¾Ä€bÔ°>(NÂvï„G×?8 xþé=~z›ð“ŸÝ£FaÒ]œí¤ p°?ß%œMÀõňó³KŒ©!ÜÑÉsˆ"hNè mÒÑb­,%„¬ËŒ}jŒ¿7èæ˜}ê«û[Oûõû®ÕUtŠo› [rPÃd$0ÈZ»$y¼êœ’¿nª¿|ñ×77r¢:|L ì,5ZãM¿ŽœÖe5ç‡[n%ÛrV¡ÐÍsýæ¯UëÖ9<}r!㼘*¹tKìPåÀS§˽Á9¡n CjøøÙžÜÌøîÇ#–µb-*º €b܉,˜Ljî¹Eòøc–c=˜38ÝGÆx1·ÖîËaШM»sVNÐüºêD`ŒjYÐÑ£,¿³—ª4åÀë”ê¯|îZÙXT % FL—ßú¥Õ~¾ÈëKqòJ@h¦=]Ÿá|ü?{èTL«3‡ÞËïK]>”f#‡74B¢­~~ÀI]ëëm»yJ}¢¯øs˵n…2¸sòzN9 Ì™ã2:0ç€`a¬OG|/‚Gú‰ )˜‡Œ««k®¬ÎŠaµÐG‰1?5ã®}P¯~¤Î¨Óÿ£Ij°,¢¥×Ü} û°ï軄««3sŽPv›üMBQ' ×Ój•YýDLPÄ\Ðófõôa0ŽÀ]A¸i…®µšêO€“b SÌ ˆ1EÍÁWÚТE!­Um†Rú³FŸ­6Ñ]MRœ™^DÒ©5¼'^ÂϽ¬’Ð˰sFè=o¢ÕŠáì#üðÿ—ïÝø/ €‚Ѐ”\\^áæ`€À)72 ¶xü ámõùišðôéS›; ájwFˆq;ôiXïßësxºi žÚìY†@°tÆ“häLÛh€—ò;ñÛî¹ÖŠÏ>{—/_Jþ ôz{mȃc ….‚)ÎVeª¢È^4À”v`Nrj­aÕ]>'É? NÓN?>¦3 OÎ¥ëÍ?ç %ÈMÐûfºR .¢(F>€¢`¤¤<‚è9£ –<¥.ßúðSmVjM¦ðÊõiGbÊ Gêý]ý·Ï² 1kÄ4¨ÑW÷*سE®µVRÖÅè˶™ä1io‡~àg#„ñ—z±1äÝ#üÁ?ûâ:ÿ¿ìëKt×V~:¿z„OØ ô~³îc]=”csÏ4Mšy"MŒ¦® @d{.Þ™n'Zö–“wJ¯w<ž.ì£àMcY¬as 2ËÞìeP'ä~NɰSßOÀ•NDbØžû@OJ©Ú(#5óRв1\kMXrCÎ>ÇÐËt\è¦ß_XcTRðìñ™D±«8 à„_ô'UÇ‚qwì•ùû¤r_ŒR „(•8F©í7siÓú\Ê" YÀÑb\cT®£S‡ÁJDìs+›F?¶lvÞª!»”˜ÂqÓ¯ªøTH„³@`ÕhïÚS2jr€È¹ð›_Ìüá¿ø¾4ã¾Dð›?üÓ -`'ÜÜpHگχØÎDãñ%7VŸ¦ÉvJJŒ»Ý777:0¸1xÊó_†× [¶žñlÒoĆÔêÊhâH$7 ç;ó|„áslNGö×A ÔG¼öçÏŸ[Šc4õ†â^&-Ä>/1¥Þ¤Âó°§^Œ½c+þ90ÕŠ»Ž)à£gW`ù¶§m¬uË¿R—p¿Ö†V—,«Œ´ê‘]ÔR›PéHå+n¤Æ´•NŸ—îöÅÏ9ì8Ü£„Þ¥TÉÛ墨¡œV;P«rPµÚPÔW¤4j„‘5ÇgõH®§j`×,¡…¤1¨[°óËÃñGö«‰|ü2¯/ÍÈÑ' @›ƒnðá•6Ä„‘.HÿN{Ök­Øí$ ÇÑœÁõõ5v»¿ÿ—Çâ¿Þ±ø®9‰ º GçùÖÊY`ºÑÎoÍvXãÔ® ,ˆý6*à¹jíú‚@§ ó{ lŒxñÙg&®êU"̇ڢO/¨;ÀÝ=„`ŽÂ^ZïfXû¸¼:×8¢ V‹#$PPZ„KVרÓ€e¾G)«±ñ$BͤM7°’…ª8 i¾I*#€‰²`¸†Rš–%#ШY‘†òçÿë—nüÀ—ì~ëý7!/¯?À·>¹À.V ‹¶yÁ(ªbŠÛù¨/à4ßœŸŸ»Ý¹¸/‹?æCD«28€Ìëxc¬µšö<ÿÎc ¾ÔÇ·Ëqôeã¶4²ÙüÎ…hL)áÕí-ž?ÞsgA4"û´å­Â1ÓF|fþ‹ÎmÕ>†a8+ûí|ëöûÔ# 5ôšµ{U  Ö݇D š<¼fŠÃÀlðú˜nñUµ]7*¸Ö%âù.òèÖúó#á ÌÝkE âŒDô­hå¢n6F;hU[u+BdÜ] @ÌÐäSÏÕ!% öJ[%UÐJXÈøãý¿}%Æ|Ù€„Ø3L;Ü<¾Á·ŸŽ‡õÐlSÆRŸdîxŒCOp©sõún¯çti„wþË¿˜oØp÷=øçVšRz”`㥣ÓtçÙìÌè)„\s³1²a³Ó{àK¡<öÝÝîîïPJµ¨†­¼òÌä_òæœúùýõU sSŒªL$ÃIbŒ˜—¢:O/<ûð‰Ñ‘¡¬7ÉñE»ƒ}Á H HÑHB ‘KºÂ™‚/ ¯>SQˆÝw¾\ÉèŒê<=ºÓ’³uûEHå ›g”Сà¶Î"<ü‹Ú!SGS% )ëÑ9ä`‰U•J©@S~K•ÈæOÿÍÿþ•?ð8€4>Ë!Wžâ›0FΊ/&üй`\˜^=|¥ÃàîïólIø°ß{îÍïÝÂç{OÓ3ÔÖlüâ‚dzªùÚ>BØðêy üb9‘ Cò#ì¾àuŸâ€8£O?ýÙf7îú­ÜÙú„]Á=4€8‰êvVv¡+ZCONɨƿýÝGŠþwÐPiá=À™xÁR ãÙ€¤rb ´ÖP×Eõ!™‹QubÔ¤çsè94Ì X92f]g=Å–ÛEÅ5ÄÈ;ÿ_ñ-OƘ3ÃþAœ¤öONÀ™2þœN½;X¶ ‹sÆI@r¥?ú¯¾Zã¾ð½?ü³@ø8íñäƒÇøÆ#e;Öd3Ž-p¶–­œö©aðåóöpò³ÓðØîô¤”ò½¾NÎÍiu€Çâ‚¢Úî©£ñ×ÝJ/1Ú¼ºÐ $»Ý®çáîïù{ß/@žÂº.vœ|Ësxy5:Aî£rŠ”õ9Ó‘Ô&ÔÛ˜ÄXk“é@Ýìð_ûXZbTHƒQ A-¯øÔÉ.òŠºèûk7)óéýR<ÉvWi^^K|Aôþ3f(µWºðŠK| ¤í IDATTk/I˜.„8"ôN6Jš›)a²ci@YŽ:‘IʈÖáª)@Û±•p7îŒ6~ôoþ¯Üø¯À@HçòoŒ¸¼y‚¯¸GB£¹K²{š3Eð%6¿»ÛÂ×…œú]¹—ç(ùLn;fÛ*µº/ßù(ƒÕÙ·a>?|9fOm¨ËGGÐËX Ëý§ðÕïhX“±·£²³`«9!H}YV{^L xΔüH¬î…8‡˜S æg#ΨØ÷²öÛ@se? ¤é+üÞöúJÀ?üÑ-•›LÓ}ø_¿éå7ŠÛÜû´4ç Ð ž7~¿{wÇ6`$ÿÎ3ò¸31”¦Ñé‘6×åCn¿ó÷ße-ÖÍc´ã}·$±…8‡éÈðXER2ì‚¢Áfb“ÞDøNGž;ëñ„í(;fÖ>÷u-æèCÀ7¿þDQmÀÂ!«¼»¨‡¾“ÀEi³•¦¢Ö¸³Ï0VaÇQ$Z  RYs˜<P>8Ñ­3f(Ç®+ó405L¶q02hMêö­*ÛLÓ„G!»¸¦Iƒ6>eK“B ¢x­eS´f‚8­5äÃ3üÉ¿þ_þÎŒøŠ„á!@š.¯ñíO˜2çÜõœ•h°wžÃÅPÝ×ÕßÜÁ»Žw§»8 Œ»‡'ùðç ×I¦Éi'Ÿµ™‡-›‹Nz ã)ÉÑý=ï›ï¡óñNŽß“(u<> –Õ9“^?çNXkí¡W–Ó‘mŠÄ˳VüÖ·¯pus¥Ü‚f‘Ôäf‰ ’›Œ#G¶TG>'¸R£ä×”ü"JY6Ÿ÷‹l¬‡D?¿²¨Ê˰NIm„øÄõ0ô°? ßq%H@D7[«fܾÜiý*òÀ°.â¼–yAL*dЇäµB@j §v7ßÅþóÿþïÔø¯ÐüÖþm·b8dz§ðÑóTŽ‚î¡;ÞH;' ô&Ÿ·{Ãöïõ»5‚w0}‚žÑÂì•}Tò%?q¬,–IÉ ¨Òt#•°ö¢µK ›O¢ž¨kSR7J‘mÒ¯RÌÀcLX–#Á b­ª‘‡iºÄáéoá?úçÆ|…@ÎvP°/ââú¾óɆ؜áv­;ÏÓ\­Ü…í¾Ì¶Aà±Åø`ë,|Mžsêhˆøcøóm¨Å.ð??-%|ó;¾ä±ržUÓ^%ÊxýÞ LÓ„ËËK+‘2Ÿç5¦Øİ·®Öb #/•Jl¢á{_¿Âå…#þÜ*9ûº,hµ *à%5¡B!‚Æ·*RidNR‡¯µ*ƒ1C4¤=‘ Õß ièmÊ6k‚ÏSÆG¨–·ËsϽuZkó~s!MªA?”*ÉMƒ±+Ó0éIЬþsB)fQÒ1äe9Šãæë¿‹ßþ½?ù{aüÀ—Ú ø–“>Äòò? `w¸À“'—øèòõ³ÖÃHW#——2Ï[ÀÞbì~„’ËíÝÎJ ÑïÖ=¥v.~¸½Ì$­´3z®ïŠŒRNÓO3–£ÊÏmŠoìš~äö&2@*=ü1 ...,5)¥˜N¯{Ñë,Ž,Ĥ\W´¹s¥¬Úóîq×R[ðß~ìŽÌþ°,3´9 Ð-y"ˆ‘d†ÓÝ`9ÂËÂÿÖ°”U„5Ÿ\jAmžA*€ÝºH©±A¢¤U•”›ÊÇ:†PÐê(댄®œò€ch•мÜTD±x4! ÕR‘´Yˆë׺• šr@Ï0]~?üG?v}ÿúJ#€ßüំ˜ÏÌË_=z‚o<P5_ÛöÁÛNìŽÑwém=¶ûyÄž[©7R¬žvèÏJÝ-3$¿Ë³ǧ(>ïö/‰^° Å]Ń9¿¼‡ˆ<Ë„d@ú¯««+/ÕÏ·*Àä¶h·Ÿ,Þm%%™i/÷ é|©S* ¿ññ9®5÷ ¸š ·ÚPK34]œJÔP\ÁÐàïOÈ7bÀ\‚Ô”ð=hý]puÌAÂ}]¦©Ü\RN~)¢¯k„9»†´1‡_zQ)ŽÞ­Ÿ_ÓkmµÌ¦ ÜEÏP‘Ðе-…ÑsRHg¸üø‡/øŠ#HûgX^ý%€†ýá~øOÿã_ãÇwÛ›MgykkX3pj¬fT'!¹ÇÀ§ §Õ_2ôÀß˯>Œ›kè AX§»ùxlîê4’Z;MšÇån}ÚþLÔß;Þ#û6÷ݚʱ÷bùÏí][“Õuþö¥ûœ37]f¤q`° $À Nì²ý¤RIUžóË;¶WåÁ©TùÁ©0q9$Ø–¸Éábè‚Ð}æÌéî½wÖZ{ïn‰ÄŽ1ÌŒöW’ΜéîÓ§÷Úëò­o9 ²Ô…)ÕŠ˜ƒr­“ZãÁûö£ Ã>hñÑcß9ÇœzÁ9š¨`xw¶¸å5˜˜9o›&zBö^Œ…A€1;±ï(Vž¡ï`ì$þq÷™_Äz¾xwäæ{&êòIH‘?+!P2±²”È#þ? ¦˜j{=z<çìví?ˆ‡{jK.|Á§n8öuêù¿YÑÝ{–ñùÛ/áÊÛ-Z‡ÞŽKHC#…)Án8G^He þ4Ÿ|7ïIreuo í„-ØÍÍÍè †ÖÉ“H2㈻ õk”ß‘)°CÃ# Há(PU€]M~H³dhèx<ŽZ‚º®{â¢yA2ñ$¾*F˜zùµR¸}Oå•=)ç 9Ô'¢ŠKzBž¢2ŸP‡5»ì´Kw1`LÅõy›}ŠeÀk´í ÚPæ^1g`MóŠ«KÞw¬ÛÇ9 ²2ñ¢0AqŽ 5E)M:~’Ù7ܵ¨íDC¢ÏãÝ ZWÞq¾¥”…V€64ÎÌLVpâ÷×õiâS7`æÖàÖß…RÀdaÜó—ßÇ›8ÞÒ¢fË“rÁ &;Æ ±>pƒQ¸q& _Àòz"í¤Ø??F®£—âøÔ^›‹}åþ®>öï²ÐÅ0!„XÛ—Ò B »°ãË|À4$E„KTžŒjrùåZ‰2f$ðÝÄáûö¡ªëx-bäRYÍ¢ëÚx®¥¼R)âàžK‡&æu|p±1GóŽˆ`Cm·&n Îu0¨ ™Gê:“‡ ¸ ‰“DP¶b¯ÅhkbØES€EŒ9ÆJŒ'~¨*!Uù)NP/À£O~sÛ,|Á§[`»É¤ztü¬!Ĥ )_‘·ú’¡ ÅŽÌpIÉÑð컸€†]ÀdqG>¡‘\[Ÿ™€‡žú+õ«Ÿüm@ šñÒžeõQ0§ž –$'wÒa)À±¶æÏᘠ#y Îpþ&(ÇÉA…j¼=Þ‹ãŸÀÞ­ŠÏÔ€¯"ÌÎ#z4•Õ5º2Å‹¯¯£ ¦·ƒ ]~ñVHm°âåçùa 0§sæ‰1ÙegÒ"c IÀx=b0@ñ<)é ºÁ¤Î“*rÝb<èüýÎÆÜe—søüè«çùŠÊZâ-d.µìp²³æ¥@)C’H…ÕÀ‰Ã°wy„V+5ŒÑ6 ué ëú,ÅkåÑÈ»ÔdÝÍ»¶RDÉ¥\œš°1 B÷¥üߦ†V]Ç‹šE ="B—©¹z=* D¢ä7}ƒz²£¥xèØÖaìý¡ð™€Ã_ú–:õÂÜ&Œ1˜[Ø…;îØ‡¯u8õAr‡‰½|÷õ B¿[pø;äú¸hÄu÷>SRêcÏ™¤üÜÑCz»XÊ] –îr¶_2Dý~!GA’¡ L1U: ^äô]ªùs¾#ó0ºN&Ô˜HjŠITˆá¡ÄÚã_Ø‹;î\…±”@”feí\ÒÊ!÷<“pR‚ÍXÓÓEô1 ¡Ð!xmhw&õaj;&HõD4#(7‚t­º¶ƒ ?ö(ƒ@V™¿#»øb{¶!@£žìF5¿?þôŽ_ô9>sP(pêù¿ à)AK»—ñ¹;×qþÊeœ_O-¤‚Ü#¬u¾“Ëß{ ©îž\ö›ý,rè³®; ÏÈg^F“?% RlžœD£ñö­À¡k›¸úÆf¾Omͼ謩48,Ùå;¹¸ñéýy¼ž*£Q¦©ã{fÙpΛP™KŸvú|¡ÑëÜH#q­”<}êÒËêHøXÑ!Äáž’+2›È~÷…HÓ¿1,jA‹ÊhÍ2íË Nöœs”ÍÆÀX‰[Oç&!…‰¡]ÿ,6cBË'i&oÂ9«»ûV—cè#‘Ä"‚ŒF×6DTòJ×ÜwÅ$®ÊÒ«éè) ðÔœ t¿€’Œ!(Øj ïê#àà™D¤”%±Íº†ïű¯üaÆfß*ز7ïÕŸÿ(øÍ³L;§I+W/]À›oÁ¼9ÅÌ÷ËW@Z0ùΛ‡Ãú:zòovœ|‘åD"9~OiGås“âïpG–’”°ýL †%BúèéÚsï ¯\—x‚”+ð1¬ˆeÆ®ÃÑ»qâ±û˜ëÏ](„Pµ9Ý„¶5¼k!Ÿà:N¾9ØzÄl½tÝÒãŸÏˆ^Lü>Ä8ñ°VN"(Í\ ¿€å·•†™,£ž_ÁÃ[¼Ï~»`KßÄS?ýǺëü/Š/_<‡Ó§ßǾ3Cëd°ÇžÌ!ÏYtùŽgçóDšì੆Íï¨BÊ©Å@* ¦¤,¿¾W"Ïw;yMŒˆ,Þ<< C›<ü‘&¨< ï‰eHŽãÅÕö>àöݾþä}XXZâ×åºßk"uÜM'Þƒwqï5y¶’fÚõkðA Ó‘˜z”‘”2è:ªˆº¯ä”B$ In§ë!½ ëî7ÿ Kvd#jµlL†n}¶;ÈWDt4–(sÉ #zy(q³j±þø±Ûp×Ý·ÁÚQÏE§{DáBÓˆ`Šb´*ëÌøeƒ>`«W–áY£Ì4žY})ï‰];†íÁñgþd[<—;ÛæFŸzþ{¡‹»^ÛLqåâ‡xý×çð‹wgœ¡–ΰÔJÌ=aø$… Üøxï±<§ðÕÇbÿê2l5¢ÏÒä p×ßl61í³êÈ4ü*J2ÂŒŽ_7,ØÁ#±9“/×ϵ2*õPv¼õÂ~<üØ“ÛæyÜ)ØV7üÔóß Þ·¬ßàº.}x¯œ>×Ï:8Ê]Å xKß,«Ÿï®âŽ÷“iýÎBiÍÕœÌV DS@Î-ç½YY1‹~h!^øÒ{cÅ`Þ{¯-WJ†FE‚ÑÁåžé;ÐÕF ûqô‰¯o»çn§b[~'Ÿûn@èbr©ë\ºp§Þ8Óg[tA÷vÜœ_ô+‚´»È”Ùø{²ÀCHüóŒé'®¶@ÊWyâqÈÚC“‡y ÿ"ŸËqÏ@_ÅXÞ/ýy' V Z½{GÄd~>˰ò.Ä´m‹®siÇgý>aÙ¥¼JA•éFP†“|†(S‘L·1Pf]/á±g +bÛ~)§žûNqV!´í&¦×¯â7ïžÃ¯Þ^Ç¥i? ‚†Œ?Áp·9þy™è{zÒbr, òÅÙ—äÎéó‘¥74^qœyV§O†Â iiá8.y7LìåÙyyÍZC”’4"«/&Õz%A”s4|BfÉç³äóZ9'8Û¯4ì®pâá5¬Ø­m2BQ§?•+‰çß±"Ћ³ñHtÃNàÉ5 ß5ÐvLÊNPÍ­àè_ÛöÏÒ­ˆñ¥üÉ·kÊ‚V\×bº~çÎ~„WÞºŠ÷.; Í‹9ˆ\> ƒwÛA‰.º·J¡s•µQ‚ÌZ‹¦iz9…|——SÎ3 ú¡FR–œxPiGεDX¸wu‚'ŽÝ…¥]K™‡ÁJ8äÉÈ9Ð6Åú¬ÃŸ“…Dä“î“áÏA½Pª¹e<úÔ·vÄós+cÇ|dú¬:ïZÌ6×qõò%ü×Ûñú™­ïsú¥œ÷qŒ»ÜcVdaæ¡Ãǽ7¿®<ᘗ‡Ä$Qð¤ŸPQS–WÀ¡;çqì¡;±°´H×îçg@}Lñeà2ù¾ƒåܤ²K%C[O³€¹=·í=üÂŽú"O½ð¡Ií©Jm³‰éú5œ9{¿øõ5\ÜL ˆúý…jØCÊm BÜ•óŸ 3ü9;/ï£j/TÖ íRŽ@†dHò~Ú­µRX)¹w7>ïm˜Ì͇@ÈE¯Ð5›lP4f³–F]ÒPLò Aè»Ô M S/áø³¾£ž“‚„÷žòo? nvé†úºë̦×pùÒeœ~û"NŸi0“¶sÕîzÃD[ŽÜÈ{rW?§çÇ/jü¾g0òJD2„ 3ýVk:¸ˆ{îÚ‡…Å…8›?eû%§àE'eȸ y×.@UY4M +ýü&× H~Ò cUÀÞyƒCw/áöÛ—±°°H±=·ÑÊ(¥à»м»s¼mi¾€ç¾üX¯¯ôÕdÇž.qý­„ûeŸ>ùú|7…\øà†çIDATO¤ñŽ{×[tí ³Í).]¼Š÷έãý .o´.…y^:ùé$DÜqoF÷Í+ @bö =ƒ¼4˜{!%÷ÀZÕE‹ÃŸÛk{1¿¸;é«õÒܾ Çÿö]|H2Û>€ÿ`ªÌh7Ž?ó§;ö9(øß±ã¿øWþ£à6ÏSI+ºò\w$òÙΦØX_LJ®áÍ÷®á½Kº "îfm¹y’¯WÓ²úyrÝsÞNŠä!ˆÑñ)1ˆ€»,Ž|~/Ö¬`<³fž&5^Mòâ!ø8˜#†"Pè:êÓo;j½U Pº‚íB½°¯ˆjì|oüâÅÐ\}ï’@Ü“c\íѵ 6§ë¸rùÞ;{ïÔâìÕ.fÛó…žÇù7k:úC=$¡ RÇ'ú©ÕSYo\iܾ§Â¡{÷byyÆ“¹¸Ãkª¡Eö ‰ËOÆ…2ü²øiŸ‚­'-݆#_|ö–øÎ ~;ÜRÃ+/þ0øî Ó‡¤à$Z1 –lfS¬__LJ®âÝsx÷B‹ÖÖ»£f"¥ÒbÎÀÔ)—¦úVQæÚE‚•5PÁa®R˜k¬íà®;–±²²Ä*½20@QÛ0Í/`ýÀz|Ú¢mfðtùM½€jn¹4ß|,n¹ãµ—þ%t ÕjÅ}–^â.ï±WÐ4›¸~mëë3\_o0u¸>í0kë›6[çZçÓ Ï8»ÞÁZqE8Ç»æ VöÌaqqŒ¹IÑh„ª²°UE}­!3„onÝ‘ÿ‰8‰wdºÎ!¨ ìd/Žíà‰¶Ÿnه䵗~Úõ3ЊFJå1z õ¹'ÞwHÓ{©ÕÕu¼ëàC@;kÑ´¦3ÌZ‡éf‡kë3L›€Ú*¬­,a2ÖXX˜Ãx2†µ†5À7DÙ¥9œõל´ä®=­tä(pCP<œ7PvxøÇ¿|Ë~§¿;nù‡åõ—º³ðíµÈÇ'J¬‰ä›ÀÝwqK;là˜¯”‚cÁËàå5MŠ:ÑÀpˆ =BÜaM¾ I=%e*/WòACÙE˜¹}eFÁÿåÁÉpêgÿüì#ê ‰ÎÛ¥TDi×3ÿ†Uq˜»/»µÖ}~Œ?ALú!Òq5‘x€]|(¨ôxGN”¸¾à÷Gyˆn‚×_~>tçàÛë´CÆÃ׆X&èdR^A<³÷² }ŠÝóØÃ`C‘@ÉHÈä ‚]Â#O±Ì‚Oåú?ðÊÏþ)¸ÙEâÆ /ÀµW>Ýõt;¿_Ê€ Jf\!Ÿ $¿G@i9&Õñ•™Ç‘§ÿ¢|G0”‡ë·Äë/¿|;…k7 àà» ÐÂ¥L† Ø _±0§„ œC4xC™ 0”C™1L½€CÇË4Û‚OåAû=ñÆÉ—Bp \;Eè¦nFÿJ*8`ìPŽ<ý—åžì,ü/ƒG¦]?IEND®B`‚openmotor-0.6.0/resources/oMIconCyclesSmall.png000066400000000000000000000344261500530174600216110ustar00rootroot00000000000000‰PNG  IHDR€€Ã>aËsRGB®ÎégAMA± üa pHYsÃÃÇo¨dtEXtSoftwarepaint.net 4.1.5dGXR8‡IDATx^í‡{Çuöó¤÷Þ«íTÛ‰„.qI\%Y{¯¢D‰¢$õ¢ƒ@,` ’ Ø{¯¸$‚ ØÈIžü1óß9sv×t>QͲr÷yÎ3³³³»û¾ç=gfö^üLy+oå­¼•·òVÞÊ[y+oå­¼•·òVÞÊ[y+oå­¼•·òVÞÊ[y+o?±íñ­3…ǃG öî_ÙQxtãPaläʤx¸¼}R¶±‘K“\Ù^xpµ7Ü¿´E¬;Ü»¸)ܽ°a¢ßîqìòÖpÿòæç<mZ˜=í…ÐY·$ j#ÁCŠpi³’àÁÕ5È êPìu8F¯÷Iîpº¬ôöðZ¯z=’|ëd{ØÙºP$^¼}ÚTÀÜ  Ï×ú‚ Ì"ô˜´{J' *Áõ¸îü™/†î¦—Bñp‹†Ï3î]ì5؉›‘AÔPQÜ«ê06TY¼ïMÌùÆsðtlÁ/$ûô1B¨ 8 ’º“ëΘ1]”eJX2grØÛ¹"Ü>MÂhŠÀh5ºEÀ£®$p2¨:ˆ2hîÐ$LH2¹OÔálYžf{xm—‚Kb}Oë¢0oÚ3a:ñ}ö,Kd>‚È .TpFo׺·Å2%…{¿Ö@%ä ³ÄÈfNŸ: ‹E}Ö†;š nÌF F!eT%†’! ¢ JÔ¡¸»0vëdYþ·íá@¯€¿9Ü:ÑÖVH²&Yü,â¼€3ož§À¸x8Ћ-Ê€vð½¯[Jœ'µs}WH€M•dqMÕÂ0t²CI`J D`ÂI€Wð£Ü¿ !L,_ˆÊÉ`ÄØeêpó0£‹ÂøÈŲ:øöp`Oñ ¿nZ«ÃºéSü˜Á»l;h©—»-Š%ÇÚ_Îóþ©9ø”® ©p_î?}ú´Ððæ¼póx›„.¢›…ÛÂ=!&ÁIÕsepcÎáÑõ>HQ<ü— ‹}EÆÞÃþúIʦN6ðÑ<ð¬40s€Qßè~ŒkRב‚z¿ðä’{S)T¾:; n5\ؤá%P¸ ø!PH¡Ä0"äaÂH¡yCB ÔÁ&¡öÿß £7ÿöéuacav˜6åEß¼ÓÌc<À-\˜ÇuôÇ•N;/’"^ǽ_ëôAò HÀga”À<Ã/Í ×¶ÄœÀI°5Ú¶pW È”ÁËD”j%Já¤HÔAˆ „è+ŒÞ<úÉT‡ñÛç'ñGœéTðgN›,,ßɼ^@ÒRL½<î;¨´AŒ äØ÷Ç™Ÿî+!°X'€žÌže$xuÑL&¶J(°5r–»BÌ•"xÐU¼MÃEž7L$ƒç B‚„ Jˆâž0v룋OŽ:ô1¼ÚßõŠNÆøt”z|©9è|i_oOûø¾÷µ3W„4ØÄ‘@>ÃPHÐZ¹( ‹bøüž8î^ÌÉøNUˆH€÷R @Їý‡‘¥Êðh`·ªƒNQß:õÓ©\Ù&’Ú^žóœfûHq:¾OÁz€nœûo|#|ñ‹_ ÿöoÿ¦çBÏ òþV÷k;èÍÍ@Ÿh€ïƽfN›úÖ¿™'…Y>`à—š*€x¾! ‘Jm£ƒºØƒ+B5B†RB0̼q H8÷ã½\˜Ä‡g©¶må4ñ,Æù&ý奃çZ™·ùðï;ßùNø×ý×ðùÏ}.|êSŸ’áÛTíO^'­;ð”€ìej%p#(D æÏž.ïo’|À昻ì·/lQSð5,D"°¥Äp2ä*‘ƒ/Š fáAÛäF¸ˆ¦„°Drôã¼xeãý-áà†eaÖ´³œÆzÌ@K³öÜûñÛßþvøÒ—¾>ÿùχÏ|æ3áÅ_ÌÎñ~~.@{û¹ç³è|ŽR"øç#Bæ0QĨ€œ@g/#Ì6‡·£ (9Ô"9Ü HJH¡"\2åðýÜ<\¤„0xùðZ¯(C_qläâÇKF‡N\5émAëËÃÕñº£6_ÇöÔ Äüž¿hQì3Ï<£ÒOø»¿û»0M†m~^zþðÅØÏ?ÚÉèiéàk0s†‘@Œ9‚--¯øÀBÁ]Éþ®}ç¼Õ±´n 1Q%LŒ 9A¤¤ˆQ‹¤p2dä0ñ$…€ nÃØí³"<<  --oLÕÌšq· Ú’¾´<«ûþâÅ‹•ãðƒ„o~ó›aÒ¤IªÊ óã®ãdà¾ÔìÔ\TúÕfêt±M˨€Ð5cJ8·§N@\Ø( Q È‘™Gb]€µº•¤ð6%Ʋøä J ^o³ðà \!ŒùÈâÑCÅÃOf9/Þ¿=œÜö†fýº„6ž¨Ã¹¬ÒðĘ.à=ÿüóš|ùË_ÿüÏÿ¬ëÇõšñÝMï+m¥d(op3'í¼[05¼¾d†N37À,áÝ‹,du‹×' '–¶OT kpÈaûVw¥pbÐ'Þ,WŠTr2ô †ñ;?¡—cy‹‡Ôøúõ~~ÙÃ×2Ö81?ææ€âý®1|ík_Ód]üRãÚv^Ï¥ƒHí‹Dn„]0‚b$½ëVhàDJ€sPµî“IY¬/í§¤HÀOÃHžhZ=K.QX!l´ñ``OxXÜÿÑ’`|ø´dþ=á\oeX0S?²~yÈÀû¾“€w ^if¸ujA6)rDÊ2ÞÑ\Áˆ¡õ |ê^:àB‚s¶Ï54·àܨF#‰Õ¥=ÂÉ@©m±n„€ ¢ -¯ö|t$:\$k]W%O¤ÉWð`¼îÉŸ'z¥fÇP#Ç”)SÂw¿û] øêW¿j׊ýþ·:f$˜¯‰ã׿þuÍ!þñÿQIÐ&ÿæõx»ÂÁ§ä\Þ#8²¥B€€¶Ir^X]oàGеTB0“ÉàÇà”±.¥O=?¦íÕÀÃm©*L PUˆ¡âÊG@‚ÿ¼_œô¸¸[§P—Ì–ØÏ«Yâ]x™{ŸÊ¿a©ç—à8î%`}ÿûßW`\ÏûåfÞþ$ãs<#çB¾ð…/„¿ù›¿Ña¥ÐÍrB0TËH05T-Ÿ«¯”y ~û ¯¦ „ª)¢*ĶŒÚ¢Ñ–nûêùþÕÃ]aàhW> 1L €’CêVº™R`J%‚‘áÁÀ¾—£7ú ÈwÂ0C†N:ßüGäC¾ù ¦‡…ÔúɶPÏùÞ÷¾§à#áOÙî3q_‰"ub8£’H¼Ÿ¹„OúÓêÙì £Z& àC|†Óâˆ@€òPpÛÁVà»rDeP‹˜ Ñ|ŸkrS!ƒÔ¯êëBKScØ´¶%ìê^Žìj¬ ƒ'7Ƚ,ÙyJ#ƒ« û÷dÔðpðCœ8•¡ßàñö°tÎóšP©üCIºð>dž„¢ϱRh]̆ƒ‹ ™JÏÍÏ2 ˆóNF¢>£˜ ÏL ¬ÝޱFaVW-‘›'ƒ|áö™.5÷zÚ†OwÆ:¤0B(YÔ"1Ü”|ÙÅöSblélµ…†P]S'V⦶. õaMKs8׿VÉChB-®ãópÍ\YŒ›?¼!âãbo8ºyE˜9}Š>,ó|‹ÿ D<ðOÿôO׳\ êclñâ\f&ƒ `>™9™üž”žø‘@2„üÜç>§ @]½;DÁt NÏæÌœµŠ÷[À‘‚›:jî¨; º ðŒÀÉøÔ7„‹ûÛC/V]UUµZ¯’:dhkn²ñCw8¹w]¨«kõu¡«­)ìØÐöo_Îôµ ùP¬m< FŠüï 5ó,‰‚¢äà;/•áù—És x±´ \ ‚ƒm¥íœÇèá›âýÄ|ˆÇL"$`|ŸÏþå¿!*’>FM§N ›–© ð61ÓÀÉê! Sºùþ•CíáHOkèßÚlk §ö¬ G:Â-Q ëaœ®Dˆ%}º;BeU€^+d¨Sð+#Pƒ¾-öDXÝÜ*+k¤½ÞúJ?úܱFÉúàú‘–£ƒýÅáÓ]aùBÞò±™?àòï+rx<"à 3õz” «Gð NdÜ à`? xŒ{2ôïÿþïª:º˜$òÏ‚ó p4÷ô õ¾*B4Í„(KÌ”×–©@š{ûðéµjC';Ãæ@¨ •Õ¡¢ÂlÕª*©:4j¶Îúp¶oµ1 N»Ž‘èBÿšì€«×Š%D¨­© ×wÈy„ ­zS !IT–†ú0tŠ/Çl ã÷n~pùÀãë{ÂÙ]UaîÌ)>ï÷Yöï“.*Çb<ØtNÿþáÄ?«}DÝLAu@ gŸHÛÏñvb6Þi˜;Àû!ÓÊx¹ƒ;ÁÜ tH à”(›÷C=Žn«ÖØ‹  &óØ:}07¯m+ìU|4Úï­•áÍ·*¤­*¬i¬ '{[Ãp$×q`Ûãµ¢Ùuórc[A pýغP]eA5(!åžîfU–û×ú?>Y`½zKÓbñaŽH%ð ' ý%@ŠÉ RðRóܘ`O<÷Üc”©Ññ Û·¾õ­Ìû!$‚Lîåi`}âq#2ÌÔ9öÂK ¼ªÀ rjm¯+œÛ×. Weü[++Ý Òæ@¢ [×5ˆ§¦°kžß·&¬”¾+WaÒ_ëI)í§%´2Po÷{r¼¡®N²VsŒÑ‘«ï_Ænì-0ÔXù’x¿ooøæóÿ®¾" x¨$fžm¶åß ÒПq<ÞL,¦ýÇ‘€ãô‡0Ä~>öKAÏê ~¾¹·côÍFB®ÿÖ+s²<àõ ZŒë[ÖÕ+ø€§²Õ1Žpžz¶ªCeXÛR+!¦CÇc)Y–n*  rΕk(qôZ«Âo® ÍuÕáæ‰µB–ÕÒî÷6SÂI¹£«A¯y÷rïûWÑÁýárC˜?s²>@<ÐZ'f"èN#Å\}¨Àç÷ÇÁ&xÀ9Ï=÷¬*RNøøªõà\îç ;µ \@0À‡êÅ\Kôâ J˜cN ÞŽåòÏu(gϘnµ<€á ßf6oíÒxÞRgÀêÃ`‘|PÄv3  hôX¬kuA¯ÃË´n›×Öé1SŒü:~]®u¤§E”h%KîÙ*VU„k‡Ú”ožyï*ðߣoO"þܸ\bç4}€>ùã@¬nKÁF;ƃtÏ ¼*’‡È> _úÒ$A0£¸€íDàÞHšøA0ÓÁuóýüx©×çÀ{%blú´©áØöðá Æk ¬Ö×V©Wº ¸wc´áµÚ® àd1U°ãa÷ÆzUÀçÚG{šõ<¿¦öwpÅhïj­Õ¾Ý=îÆ1ˆC¹kCƒªÊÝ˻޻ ¼óö•ß ín- —.þhæo* :ÈÈ¿’åõ”Äv0€<÷Üsð_ÿú×Ôë>(öÅ/~Ac:9É$É¡Á‰Á±¿ÿû¿×:÷p0]æ­îDcd¿¿~ívMÎ!¹ó<‚¼@- }*$Ìø½éÓµÚr…·/îxoa`l°?\ØSæÌ`þ?&€XJµX·˜Ÿ/{»ùÙgŸµi[ÉÞQ2}’<“€ÙC_ÉsÙÿÓ?ýS%ÂýÑ)ð¿ÿû¿>#ÇнÀP—ci›÷sÀ)ù»R"X¿„8ÒÖÕ°LÀŒ ÈÀ ïæA›§`”ïV_]!Ã6#À~ 8^ºâ €3¼ËÖh?œ®¦Ò€Ì­Ôœ£JÚí~•a»p‹Žè³*4Öð®J5UU:Ô‘QË£ÛO9'ðߣw&Ê ýk7gIy x¸ óp--$h[¢ Þæ @Fÿío}KóFœÀ¿/ª"ð‘øAˆ¿þë¿ÎrÈ@ì‡Ô O/3äí ¦’d¢"è1€mÞε1¦†+_+‰ ¯Œó’Fw–±ÞѬ1Ùc³Iož 4I^ñh»ö¿´uÖÇ  ¬…Äu ÞË5 |3’¿uÍ5V—°PW]e$”>ôC j«r ÏÉ^2Þ¹Ðótaà‡÷ ¬v7,Ò‡“…`yð*÷,P‹àÓæ¡€`àáÀC Aª NWˆ@béàR:àN Jowp½ž{{~>F»÷…øì¿ºx–©ô;„¢Ôé˜ÄmÇ4ÊêF¤ú²OÿÃktæpâ9Þ·Jg÷üÚÛ»@®á„ÂvvÖMVömbúØîÃ$ÑÚ–‚ÖéKÙ³^r>ûÀ§ ïܹXx<°+tTÙ Ó="èf€cÿ½-íÃü< $ 0…›Nþ@”À‡y¥ Q$,øè0àó)à éÒaž·§uŽy]÷)!‚X4wº‚’) «÷¶F`ÌÛ,ÙW™í´Ýk¸q¬=ÔT[âè ùy\gmsµ„›Þ½©Qe`Ëqúõ‹J¬’pa¨ ]­¦XK}MØÔ^?Í(n^[¯×{ûÒΧ$Àí3ºܺR¼IzµDP€5æ›çSú1O1öm‘h–z+æ t 6ô£¡€Qðabš$r,#@1#AܧîÇÒºZâííÞ?¡’ˆMUDÀ0@/ö¯VPV‰ˆ9°êmLîП\ ®ÆÁ3Ð0v^kCmF2xÚl)'B¿ ÿj! Ëñj‰óF¤êÐ,ØÞ)Ê¡ûÖÖ'xE-Bûî¶ñ¡c^mX!M^ÏÃUPuáÇdÖ¼>Û R¨jHÉ<ñ?Ë|€d<ÀÀ'…`žàsqž ž¦Láëè|#‚ÀÚÌËÙOÓæýü¸ö‰ûù9Ò‡ºŒøa MEˆ‘Ó­,î”gê&àz}ß–FáckÁ§}b߆BÎ/Ð÷ØNò !S¢`÷ÆF7ð6'‹AMõµaÏ&ˆcda¥¼@§›Ï¬ZâǘCÍkÓõ!xbؘÜ9øÖ–ƒIx€Ô™¬|¼ß àÞï!€„'F2øiHsÎO3ù €J[¢¶åžŽy?¯k)}ñzïÃõxòr³Às<õº$w:4‹€zâe‰žŒí\_¯‰笕$Î=˜jÈdí„ Â ‹=\ P ã9¼[°Ed]•AÛ¢Úˆ5ÔV‡ƒ¢c]‚c¼0$¤bý"Bûî¶ñ› ¼qZñ2köð,ö0.À |(hÇØççÿŸW½|JØ“@ ¤ ೄÀ|Žï|ŒyÔ!•{J>gJ>×½—i?ß·¶œ,, ŸÚY›)3ƒ€Éª 9Ø&Ëî±®0¶ hô‡Ûê2ÀÕä\—ùÊÊ*Q•5ªWdHhײ¾6çïé¶÷h÷s©× xßÀ®mä)Ô²êh³—Úw· öøƒßZÊd‹Iª{?$à!!á€h€ xøäÉö6àé‡ÌÛoÒ„,ß=yÿô§MÚ–¡@ŒûÓI ßú­ßÒÙ@·ßüÍß”{~GïW:Ä£dGbe’ÏBèùÊW¾¬ªÃïññzÈìÀ§%çÓïðÖêÀÏËX ìИÞPkïÇûªy¦)Á¦ö:O$»O½Þêç\9ئ}Ž´+!TUô˜½pÒÙZNïY­u÷r+«•çú,/Ñ•I9¯ªª:°ìü” 06ØWà¥Å×MÍ€7ðÍÃ×#ã$n ˆ$gLØšOØ0… Hدþê¯êT.¥Û¯üʯèÔ®—¿ø‹¿~é—~I­´žÚÏÿüÏkÉõ¸¿‡ ÍD1 Dâ³ð9˜A„@õ/ iÙ-U÷~öö®{Ó¦ƒÅ)|UxÝZo J‚8@dìÞbɱ˜i^O^Ê9ÚYYnëPuXóp©‹±ÈsUr†“N;ŽÔ„Kû×h^B9õËÚôÞÚw·±À[%¯.Dï°É ‹ëxrŽW£È4^Œ43FOgîÒ9ýÔÅ Â0ﮆý”4¿ð ¿~ögVÉاL C›ï;Éü$%€S:ø[ÓÃæÕ¯+øü” P@…Ätó~Ÿ0㾃I英ˆã á$pÐ÷ØÎV½6á…˜N?®Ç1o–DÜ£ #ŽA4¼±®V€ðz'¯Š]:Ðþô 0ªom +O•‡ai™´y`8‡”2tCÒñ¬sÒx’G8ññ¾gü®.Ô}Jbaä N.W'd‚,uq’q ‚ëß%fmbñyÀšš¥:P\˜Äjfï2Åô”ÌÐÑŸ?lk.ÞŒóðÖ3{I»dÆø\põMaéÇ«d7Ov ìàôMâm r¾å€_Ë—Kjj„|ë/“FhßÝöέ#: lxÃd_GB2n_À;âa$~¨mþ 9‡Éq&Ò! Ù?êAÁH"Qz’˜’ÇÆ”8 Ù‡\˜÷u²±pD?ïï%×wh"?w:A„‘¬oZ® Àï!Xbξ rˆ¼¾ è·1ÐÞÇ÷Òw·@ûÚ½Ôù€Iyx0ÃÀuš¸!å®^O®µµ³Qxêjì˜]K"×:¸£5ݹZIQ-ä mu#¯ñ ¦§>QxxmGh]%c|<÷ U°°à#›  ¯—~ßð©àt(˜NAŸ €(Š+@a„˜TA\1P!½§÷Hˆ!!÷uâqˆÆµظßL½ž¿M>7ûN`^†ÙÑ.I (" À A‚¶8)8¥ñ]êžÔáµdèFF[×Õ«G+xQ´Ÿ˜eìíJâv¥ì›çÛqŒ>!ß°óÍÛ©óVñÞÍMª œ‡­k‘{‹¢Ü>·åéð÷/êëൠ20µŒEpð1B¥ƒîí#†a¼–N¥s¥ÓÁÀç\PŸt ýÞ”ú9ãý½Ý¼yºbx_ߎ³Ï߸†¯ ìßTs¾ákI qš·x ¤’aD\iÖ·ˆ„Œã½Ý@ŠàÊ~dñ7³K¿“»['€)û67kx¨“ ßð)ùž@ñh‡¤Q? íaK'+Œ¬ô>%î ¯÷†-Íö­Љàóà0€Òó?‡Ëj ðõHà/„ú<‡r '+Á#@êýú’ûbþ9ølfQî¥î€;¨ûøßC„áK"§v|~a|³¾më™:coGº{tfBÚwmd*ذV<Ò`ŠAÜ5"׊~š+h¿Üû±£=­áº Uä˜ß«IFœËb £!@®¿kc³ŠÕÀƒOG€ÿ½S½¾;ìj[ª% ð‡éûxŒæ±ÝÃAúðñ8T€PÀ´0¡ öP)|Z¸4àñ) ¸&÷výÞû:Øþyü3z›’ ?æÒæ×cZ˜—C™ FþÉl&p~ƒ—=-Ù3SPŒ”$w··¨¬3h’„p°ˆÕaý–ƒyõ¼3ìénRb¨¼Ó?àܾ6 x¼·ÓÇ^1ïÌæ bߢº ÀÓ¿<6¸7Ú´Bˆ•%^}å`» ëP^‘¡ž´3O°[3(Ù~c%€€_[[þ¬¬wŽ<ý÷Æoî÷Ö†síaéƒ.‘wlâ¾÷‹ Äciàk„”éÈ ÍP4ðD°‘ÞÓÉ8Áäs»z¥€O @ÏêÇ(=˜=sºxo{œb9Øv˜u#qó¸˜dý:I@,ìÜP!L%m$ÈÎð!Ãþ­ÍJ,Ë个…ÔÒÝÕa&° àzö_]-£‡ƒ’8®SàicØÖÌDW9¿õéäß·wnŸ”Þ–-œ¡ÀûC¤d±Çë<|/ýÁú1?‡Lº4 žæköRÀ—Ê>À{öÏœJâ÷ðûdŸEÛø¨+ƒ¬}b˜ÀëÙ7•0"PÇ Áây3t bLÕßèDóvfëPƒ¬–F€+y×/ÿ:W¬˜…s/@ daöÐ<ó|$}}[ƒïEa¨g# út´;tŠ ´èý Ö³žÜƒ²þ=¾Cêý5ú ² Ûeˆ`ê¹$ÐRöíŠÞ/ ÙQ®OλrˆéäNI%Óç×ËpðÆñÎpÒYüzÍõÍ †Ï<åPºñË`c7ö„}]Ëõáøv`½ä¡¹2`þ^ 'þþ7¾akÿÌ;ð>ÓçC;Ÿ©£„í‡ ô'<˜÷úçH½Ø€´r"±‰ýd_A€—ëeÇ" °–ê—Åûí¿A&t ÀÙ½âÑñãõx3Ⱦʰ”DìgŠ—¡Òm*`2MŸ®5 :]kCÅN]>Ö¸/Ǹ>Æ 1xœ5‹ýƒ\söokÕþ5’°`Ä|Áð™ áÎ¥÷ù á±Á¾p~OM˜;;Ÿlñ‡Šç»ô»•>lb¨o_üdxçÃí$ýÜP O =Tø”1‰!!ùOÃ/æóÑn!ÂLU#‚œåÑ8æu€·ÀŒÐ¿©R·iàM R ¨a1ßb9 ¨ ûRÖÕ2&¯RYö¡1\Ž‘Ø1눌×Y®`À—>J*©÷tÙdÒÅþ¶ì:üˆï@Œ#;Z4Ä\=Ô.ûöù$ö‡‘ »Þßo¼sëX<Ö–.ÈãhoÍ›t$×4ûQä¹Bºvà„HG ˆk¤¦'s`ÝÛÝ&Ãü¸”ª’ð,2P€q|W³z3@¢x5àkÌŽÞ P„Ov@ â°gÒoEÊqU‡h\ït\$:ÓÇ7’¡­JÀhrŽs†}üŠØí³À¯†½3|¼ˆôÕ.7Yu¯â!ùCN=ÐKà3Ï|_³|€Ãs¤? ð:m“0áS´)|¾BÐŽ¥ó ”êÕÜ7ZúyR£ s°KÃæ*`嬰\@â?#ûRˆÏ¸þl_›Næï’M h”*ßÑÓ3BH½¶Pöv7+€ÏÏÆ™; èM2¦_¿Zä|K‹NIÌü<[Hé¥_Aþï?€ß ”¡`aôzoØÕ¾LŠ…{ˆüRXþP±üXþõo<–x„ûoð£P”mœƒZ@!4ò9{^2uòp}_`‚6ÿ ˜«‘6ÿ\ƒÒŽå$ƸŸ·×½jÞ/ò ð~÷X~´‰q=ÞM°î^_>€×2’€o £L!Ã>Ë+Ö…ƒÛ›ÃQ‘r^ câÈç~¹‡« pkW“}%“àÎ¥=ïßû}cFðêÁ¦°`Ž%Iþðüa»ùƒÄK™àA¶‰×$l»PÀD7ß§ä<ä`9p¹—ÿ¤“£ŽbÐ…@eèo¡ '@i~àŸQk;ýå3'ç9‘ ;D8´…wm ˜U@ÀrXGsAw‰dä=S\ÃÀK¼úÄ®V=×|VëbÀTdÝóÚœ~\û*6…G#×Þ¿÷û6>t°ÈJXÍëöyxþÀÜhÇð;ß±o§"–Ÿ×ÄÛ}±ˆýô¸Ÿ¹jÐï'OàìÓnŸi"è.÷þ9ÈÒ¤N¼÷~¦²/‰/ >€ÿÒ]²øÇuªònU•y¼'‚îñÔuœ/ÇšêBïÆýž ȼ^ÁË®Yjr?FLO<Þ€6Ð?#€(Å­³ÛÞÛ¸ÿÇmï Ó0°}õ+ÙCM“A'I 5_ÌAN< ¯vÏvp/&ñûÞ÷¾+íy,%}1àž>Ì+ÜÙgÓÏë²ò}ûܼYÞze¾þHÔƒ+üW‘DÀS/4oÅøå.^Çâ;L˲@Ä škk5a;.’Î{|™r(P¦ ¤‚,`ê=òv¼ßÔÇÏ¡O—Ü??NûÈ…žðÃÇw?8ï÷0pi_}X4À'>`¯``’‡}@KÇÒ}ê$„€I‡0Ç(9ßûj=îsOð¡&†7§*e€ç CÔô8döìߥëj\žÉ? h p(&€( D%dzJÇ0Œwûù©ÔÃŒ€QSOæ|1Îw ½¯mÀú¹·ÏòB2HÝAï' qnKxxóCúW÷ïÜ>¡¿•Sµ<ÿúWjþ`Iö±;À:x@LêýÎE¼Ýû9J uñ\€¼ƒyèÏg£Ôï,JI»V'€Ï8™©Cæ£ÛkMþed/à':̾ïçJ+„{®ê@ê9 €J>¡ÇhŸèÉvmÌïcǬ¿+„À+øg7‡·/÷}8à³I a`Ç ò ÒÙ>Èöðì‹ $f$~¥€»åmVB‰r€THΣ¿Ÿ“ªçq>ùŠ~®Ôèt(1ÄóÉüY ª+sôJõ:±èùHµƒô#Yyf9èãÀ» XŸ«×Óú†x?9®×rÐNý ²6%À¹mø¾­ ËÛ×Áxx^b.î ÝMK ð:9Àë ÐK÷ºï§ø Ï €îÁ\ƒc~>ez]Ì÷)QBáùÔ1`òÙœœÜÇ ë#%e$ÁÂy³%[oSàù׸ö€èf ;p‰¸¶ÓÏÁ5`ÓþžÐ¥ÃAÈáQ¯t ¼€-åmâ)ðÔEö¥þÑ€ÏöÎðI]â߯,]8[¨?\@ ¾0(ïÿgE2‡÷ãÁéJsq×CÞ Þ?»†”))ôxrßtXˆ’0"T')–ÁA7ˆI9oîìpåàêpÿŠxÿUþ1^f@:xµ |h—{»›‘cï×2’C@Ç»©óξ{¸y¾Éz£7\;Ø–.²ìš‡ÿn½Ÿ¶'€i`ÏÇ!¤ÀÏIK¯c)ñ•…%Ï NNŽyéààùÈkª|Y¼¿[½ãû‘$ƒ€i^ž{º›’pÅ£}?ëKób#’ŽÙS‹`çÎ;ü‚¸ÚÚük‡‹ÿóŸã?ð}{çÖ‘ððêöÐQkãw7÷P7€qÀžd¤@ð\VùH$ŸÔ/ýç\¿Ôà9ß÷_1Qï^ï tÌ8ß×Á'öoŽc}‘dZã~g4@5ÿQRDOpñæ¡“¼mD0ÀQkóà²èøí³’0Ä»Ò ÿ`gøÞëöÎÈ™ÂØÝáê¦ðêó¬…€|ÌÁ*5@M-SɈ݀èI ›_3½.uîçu÷ø”˜¶ç›ü+Ø($ˆ jß\¢’ïÉÿVÞA5ݳi3ïvpLKpä\·Ê»‚  ©—;h§’Ã<|XÁ–sϼع­_¼ûA¬ê}ЛŒ¯‹õu­8lÿºíIà“´°·Q§=-1†€ä¥c:?OûE€©Ûuýúñ^b~o'€—îù™ôgf±Büï©WàÕû…¼ë¦Ù»Ö“võt¼–Ñy°©…Ÿ=œx®ž-/%qÞ<\ ‰àÕëÏï÷¯+>¾sãã¼oB€I£¢¼)ÓR±8{ø@‰`=ÉxŒ}b7“7€D&“ü:ÞÇKoǸ¯ß;Ýx‡®`ÛÏÚå ÖT±TßöÉb?™¿z¸„€¨*íYæ·èÕl±=z2ÿn¶ñ[GŠ|{èÚ¡æðÚÒ|$à 9`©¥ §u&r| ™E$Æóéy¾8DÝK7ö1ß?%$жHˆT |™„1æò=ö³ògC6]=\äÏ·’¶˜©+à Ù¬„ :t“co€si—!¥Øí³L,±/J3pHd~aüÁí¯·ÿoÛøÐ =aÿÆ·ÄÛrOħðÒ67Ï|üNBH»_'½®¶%uÆ»éç`_GðSéOÁóç†3{š|[L³oR6Ø„ŒÁfç¨Óù797"DO—óG$Ž#ëž~ë ]_¸s±·ðxdà§ôtÜ?‰„Ù2þ㦊-ÆJ€¦MË„K–Øy¼äá+{ù( 'R 8%í^O¥$p㘯_äÞ?'ìèxKÀß’Oæïà§nqXo ;à”˜%~Är›¡So?¿Möó¸.Þ^|0xê§ôÒP0v£7\?ÒV½f@x9ØZÆz)ðÞ'9­§×ó:e >m:eé¾[N‚¹¡a¯{w‡‡×¶‡€Ï¤OÇm&Îâµ)‚M¬I›z¿ö¥È:@C ‘w€¿}n{¸+YüýÁÓ?=qý½lÿõèö$BÁèõ]aàPKXùÚD 2Àcé`§F{zÌ÷­r" žd9Èùð¯Ôð|Ž-[2_ß¹{xu›`‡%~çÕ¥Ý<<'D”u5ßç8±ÜdX\?,vä“ zé6~먮@‚+ûÛËÌ Ó0àï —¶û1¯jZú±ô¿Ž•ÀK,#A$„ÿ˜5qÿ䮕|’>Jþ3ŠOâ瞉àÀ“À©I,÷qºÛË}áö…ÞÂèâ'Oâßí66د$`ÅðR}XñŠcàM×Ú —‘ IÝÏõv?ÇéñX´÷Mçü†÷/ð÷wW«ç;ø&ý¹ì›´ûPØØ’ÄE°-±Ûî\’Ügàˆ ÝÞÇ¿fû¤mã7=áÂÞBX±l"à^Nðz-o£O 6ýõX<§´î‹B˜ƒïÀ£xþ+K„Ó»%ãGöxL_öˆ1Þ=‰›#é8+o"íZ¿ÐÃbLñáͳÿ·$þi¶±Á}F^èkU+ H,%Aj)˜¾èé1Œ}ºÔÛ¯áËÆ®+—/ ׯ‰Ào ¬hRWðñrÆçØH<Þë–Á³SýÝnB€I¼B6*á€ÿšµ©ù5‘ñ~ɰÜìÜb[<æç¸r¸·» üÆŠWä3ti¶è€üó_¶ ìXFƒ#vˆ§÷óž]aüÞPYâßË B¤öØöªðæ«PÀLvPÕ" ¼=/'‚ïdñÒóžÄo^èl|]ßèÍÀUâ÷ï\ˆÓ¯pߨ ÷¯/>ºPýƒØÆ‡N’ $Ø­!w ; Ë„9ÈOJüJÁw+íçõÜ,Þ¯É?´ÕÞê}$üGB<ÿþe‘}ÀÐœ2H2w÷ÚÁâýë'Ê ÛÞ»6i|øxÕabo¸wqS8ÙSV×¼^yÉ@}Ð¥mÚž‹$x•}±Â[/‡c=õšÙ›Üþû÷ü;°B€‘÷½Å»ÇÊqý£Ú~xç|qìÆ^%Áhq—N¾ð_9··¿*^'áËÁTÊtîÀÁNK;¶(4V. §zÍã t<ÞÀ—qþEñ|Iæî^=€ÆÊqý'³ñb©„ 9@â{÷§v$f/—¤íåP¹â¥ðÚËKÂ’dxˆ½üÒ’°üåE¡nåÒÐÕ¼"ìîâ.®V ðf0®Ëû ®Ê°íJÞ^x|ûJôË6>|²0~ëX`!I2 Ø00)·‡KýÍáØŽB8··Y¿nERG¯q=‚ØYI–mwxpýpñÑð¥²Äœ·ñ‘óäE~ІLŒ (î\!TöÕ«³2\M÷w…G×û‹‡~Š^ª(oùÆ¿«ec7 –+à¹Ml“¤rð`:Z||ã@ôOÚö_ïÆï\,Œ*<¾¾§ð¨Ø«õx¸¼•·òVÞÊ[y+oå­¼•·òVÞÊ[y+oå­¼•·òVÞÊ[y+oå­¼•·òöäíg~æÿT¤©Ï|IEND®B`‚openmotor-0.6.0/setup.py000066400000000000000000000012511500530174600152510ustar00rootroot00000000000000from setuptools import setup, find_packages from uilib.fileIO import appVersionStr try: from pyqt_distutils.build_ui import build_ui cmdclass = {'build_ui': build_ui} except ImportError: print('pyqt_distutils not found, build_ui command will be unavailable') build_ui = None # user won't have pyqt_distutils when deploying cmdclass = {} setup( name='openMotor', version=appVersionStr, license='GPLv3', packages=find_packages(), url='https://github.com/reilleya/openMotor', description='An open-source internal ballistics simulator for rocket motor experimenters', long_description=open('README.md').read(), cmdclass=cmdclass )openmotor-0.6.0/test/000077500000000000000000000000001500530174600145175ustar00rootroot00000000000000openmotor-0.6.0/test/compare.py000066400000000000000000000071251500530174600165240ustar00rootroot00000000000000import sys import os import matplotlib import yaml import warnings import motorlib.motor from uilib.fileIO import loadFile, fileTypes separator = '-' * 65 class colors: OK = '\033[92m' WARNING = '\033[93m' FAIL = '\033[91m' ENDC = '\033[0m' BOLD = '\033[1m' def color(string, name): return str(name) + string + str(colors.ENDC) def formatPercent(percent): if percent < 1 / 100: c = colors.OK elif percent < 5 / 100: c = colors.WARNING else: c = colors.FAIL return color(str(round(percent * 100, 3)) + '%', c) def runSim(path): print('Loading motor from ' + path) res = loadFile(path, fileTypes.MOTOR) if res is not None: motor = motorlib.motor.Motor(res) print('Simulating burn...') return motor.runSimulation() else: print('Error loading motor for test!') def compareStat(title, a, b): error = abs(a - b) / b dispError = formatPercent(error) print('\t\t' + title + ': ' + str(round(a, 3)) + ' vs ' + str(round(b, 3)) + ' (' + dispError + ')') return error def compareStats(simRes, stats): print('\tBasic stats:') thrustError = compareStat('Average Thrust', simRes.getAverageForce(), stats['averageThrust']) btError = compareStat('Burn Time', simRes.getBurnTime(), stats['burnTime']) ispError = compareStat('ISP', simRes.getISP(), stats['isp']) propmassError = compareStat('Propellant Mass', simRes.getPropellantMass(), stats['propMass']) score = 1 - ((1 - btError) * (1 - ispError) * (1 - propmassError)) dispScore = formatPercent(score) print('\tOverall error: ' + dispScore) return score def compareAlerts(simRes, pastAlerts): allMatched = True for alert in simRes.alerts: if alert.description not in pastAlerts: print('\tSimulation produced unexpected alert: ' + color(alert.description, colors.WARNING)) allMatched = False for alert in pastAlerts: if alert not in [a.description for a in simRes.alerts]: print('\tSimulation was missing expected alert: ' + color(alert, colors.WARNING)) if allMatched: print('\tSimulation alerts matched.') def runTests(path): print(separator) with open(path, 'r') as readLocation: fileData = yaml.load(readLocation) print("Running tests for '" + fileData['name'] + "'") simRes = runSim(fileData['motor']) if 'real' in fileData['data'].keys(): print('Compared to real data:') compareStats(simRes, fileData['data']['real']['stats']) if 'regression' in fileData['data'].keys(): for version in fileData['data']['regression']: print('Compared to results from ' + str(version['version']) + ':') compareStats(simRes, version['stats']) compareAlerts(simRes, version['alerts']) print(separator) warnings.filterwarnings('ignore') # Todo: get rid of this. It hides numpy warnings to make output easier to read. os.system('color') filterCategory = None if len(sys.argv) > 1: if sys.argv[-1][-5:] == '.yaml' or sys.argv[-1][-4:] == '.yml': runTests(sys.argv[1]) sys.exit() else: filterCategory = sys.argv[1] print("Filtering to category '" + filterCategory + "'") print(separator) with open('data/tests.yaml', 'r') as readLocation: fileData = yaml.load(readLocation) for category in fileData.keys(): if filterCategory is None or category == filterCategory: print("Running tests from category '" + category + "'") for test in fileData[category]: runTests(test) openmotor-0.6.0/test/data/000077500000000000000000000000001500530174600154305ustar00rootroot00000000000000openmotor-0.6.0/test/data/real/000077500000000000000000000000001500530174600163535ustar00rootroot00000000000000openmotor-0.6.0/test/data/real/n2950/000077500000000000000000000000001500530174600171305ustar00rootroot00000000000000openmotor-0.6.0/test/data/real/n2950/226.csv000066400000000000000000000137441500530174600201670ustar00rootroot00000000000000time (s),force (n),pressure (pa) 0.0,2743.89,470032.15 0.06,6608.285963855422,1470772.45 0.085,6201.956782128514,1470772.45 0.109,6202.303167670682,2125659.55 0.132,5434.455120481928,2125659.55 0.156,5434.801506024097,2637682.25 0.18,4960.677891566265,2637682.25 0.203,4961.00984437751,3061311.0500000003 0.227,4577.256229919678,3061311.0500000003 0.25,4577.588182730923,3404268.3499999996 0.274,4351.994568273092,3404268.3499999996 0.298,4352.340953815261,3695237.3500000006 0.321,4194.5229066265065,3695237.3500000006 0.345,4194.869292168675,3936010.75 0.368,4059.6412449799195,3936010.75 0.392,4059.9876305220882,4135000.45 0.416,3969.954016064257,4135000.45 0.439,3970.285968875502,4306479.100000001 0.463,3902.8523544176705,4306479.100000001 0.486,3903.1843072289157,4451687.800000001 0.521,3835.909452811245,4549045.2 0.546,3791.0802710843373,4549045.2 0.57,3791.426656626506,4663157.45 0.594,3769.183042168675,4663157.45 0.617,3769.5149949799197,4752792.45 0.641,3724.6713805220884,4752792.45 0.664,3725.0033333333336,4823879.9 0.688,3680.159718875502,4823879.9 0.712,3680.5061044176705,4877660.9 0.735,3680.8380572289157,4877660.9 0.759,3681.1844427710844,4919513.55 0.782,3658.9263955823294,4919513.55 0.806,3659.2727811244977,4948196.750000001 0.829,3637.004733935743,4948196.750000001 0.853,3637.3511194779117,4966123.75 0.877,3592.5175050200805,4966123.75 0.9,3592.8494578313253,4973846.15 0.924,3593.195843373494,4973846.15 0.947,3593.527796184739,4975638.85 0.971,3548.684181726908,4975638.85 0.995,3549.0305672690765,4973294.550000001 1.018,3526.772520080321,4973294.550000001 1.041,3527.1044728915663,4966123.75 1.065,3504.850858433735,4966123.75 1.089,3505.197243975904,4954747.0 1.112,3460.3391967871485,4954747.0 1.136,3460.685582329317,4936820.0 1.159,3438.427535140562,4936820.0 1.183,3438.773920682731,4916479.750000001 1.207,3439.120306224899,4916479.750000001 1.23,3439.4522590361444,4894967.350000001 1.254,3394.6086445783135,4894967.350000001 1.278,3394.955030120482,4875868.2 1.301,3395.286982931727,4875868.2 1.325,3395.6333684738956,4860354.45 1.348,3373.3753212851407,4860354.45 1.372,3373.7217068273094,4859733.9 1.395,3374.053659638554,4859733.9 1.419,3374.400045180723,4848977.7 1.443,3374.7464307228915,4848977.7 1.466,3375.0783835341367,4837669.9 1.49,3352.8347690763053,4837669.9 1.513,3353.16672188755,4823879.9 1.556,3331.187329317269,4819122.350000001 1.607,3331.9233985943774,4811951.550000001 1.642,3355.028544176707,4810158.85 1.667,3332.7893624497992,4810158.85 1.691,3333.135747991968,4803608.600000001 1.715,3333.4821335341367,4803608.600000001 1.738,3333.8140863453814,4804160.2 1.762,3356.76047188755,4804160.2 1.785,3357.092424698795,4805952.9 1.809,3357.438810240964,4805952.9 1.833,3357.7851957831326,4810779.4 1.856,3358.1171485943773,4810779.4 1.88,3358.463534136546,4814916.4 1.903,3358.7954869477912,4814916.4 1.927,3359.14187248996,4807194.0 1.951,3359.488258032128,4807194.0 1.974,3359.8202108433734,4806573.45 1.998,3360.166596385542,4806573.45 2.021,3360.4985491967873,4811951.550000001 2.045,3360.8449347389555,4811951.550000001 2.069,3361.1913202811243,4819122.350000001 2.094,3384.142138554217,4819122.350000001 2.118,3384.488524096386,4829258.000000001 2.141,3384.8204769076306,4829258.000000001 2.165,3385.1668624497993,4838221.5 2.189,3408.103247991968,4838221.5 2.212,3408.435200803213,4851390.95 2.236,3431.3815863453815,4851390.95 2.259,3431.7135391566267,4863939.850000001 2.283,3454.649924698795,4863939.850000001 2.307,3454.996310240964,4877040.350000001 2.33,3455.3282630522085,4877040.350000001 2.354,3455.6746485943772,4891381.95 2.377,3456.0066014056224,4891381.95 2.401,3456.352986947791,4902758.7 2.425,3456.69937248996,4902758.7 2.448,3457.0313253012046,4914135.45 2.472,3479.9677108433734,4914135.45 2.495,3480.2996636546186,4924271.100000001 2.519,3503.246049196787,4924271.100000001 2.543,3503.5924347389555,4936199.45 2.566,3503.9243875502007,4936199.45 2.59,3504.2707730923694,4949368.9 2.613,3527.1927259036147,4949368.9 2.636,3527.5246787148594,4961917.800000001 2.66,3550.471064257028,4961917.800000001 2.684,3550.8174497991968,4976879.95 2.707,3528.5494026104416,4976879.95 2.731,3528.8957881526103,4990601.000000001 2.754,3574.4177409638555,4990601.000000001 2.778,3574.7641265060242,5006735.300000001 2.802,3597.700512048193,5006735.300000001 2.825,3598.032464859438,5023421.2 2.849,3575.7888504016064,5023421.2 2.873,3576.135235943775,5034797.95 2.896,3553.87718875502,5034797.95 2.92,3554.223574297189,5025834.45 2.943,3486.7655271084336,5025834.45 2.967,3487.1119126506023,4966123.75 2.99,3374.4838654618475,4966123.75 3.014,3374.830251004016,4823879.9 3.037,3217.002203815261,4823879.9 3.061,3217.34858935743,4647023.15 3.101,3059.7658985943776,4474372.350000001 3.154,2834.5908333333336,4224635.45 3.179,2676.801651606426,4224635.45 3.203,2677.1480371485945,3951593.45 3.227,2474.1444226907633,3951593.45 3.25,2474.476375502008,3688687.1 3.274,2271.4827610441766,3688687.1 3.297,2271.814713855422,3442535.5999999996 3.321,2068.8210993975904,3442535.5999999996 3.345,2069.167484939759,3213070.0 3.368,1911.339437751004,3213070.0 3.392,1911.6858232931727,3000359.25 3.415,1753.8577761044176,3000359.25 3.439,1754.2041616465863,2803782.8 3.463,1618.990547188755,2803782.8 3.486,1619.3225,2615549.3 3.51,1461.5188855421686,2615549.3 3.533,1461.8508383534136,2426764.1999999997 3.557,1349.2272238955825,2426764.1999999997 3.581,1349.5736094377512,2236806.9499999997 3.604,1191.745562248996,2236806.9499999997 3.628,1192.0919477911648,2038989.4 3.653,1056.892766064257,2038989.4 3.677,1057.2391516064256,1827519.75 3.701,899.4255371485943,1827519.75 3.724,899.7574899598394,1617153.3 3.748,787.133875502008,1617153.3 3.771,787.4658283132529,1424782.7999999998 3.795,674.8422138554217,1424782.7999999998 3.819,675.1885993975905,1257510.0999999999 3.842,607.7405522088353,1257510.0999999999 3.866,608.086937751004,1111129.2499999998 3.889,518.048890562249,1111129.2499999998 3.913,518.3952761044177,979641.5999999999 3.937,450.9616616465863,979641.5999999999 3.96,451.2936144578313,863185.0499999999 3.984,406.45,863185.0499999999 openmotor-0.6.0/test/data/real/n2950/motor.ric000066400000000000000000000017041500530174600207710ustar00rootroot00000000000000data: config: {ambPressure: 101324.99674500001, burnoutThrustThres: 0.1, burnoutWebThres: 0.00025400050800101603, igniterPressure: 1034250.0000000001, mapDim: 750, maxMassFlux: 1406.4697609001405, maxPressure: 10342500.000000002, minPortThroat: 2.0, timestep: 0.03} grains: - properties: {coreDiameter: 0.024638049276098556, diameter: 0.08600457200914403, finLength: 0.012573025146050293, finWidth: 0.0055880111760223524, inhibitedEnds: Neither, length: 0.7175514351028703, numFins: 6} type: Finocyl nozzle: {convAngle: 45.0, divAngle: 15.0, efficiency: 0.85, exit: 0.07366014732029465, throat: 0.02603505207010414, throatLength: 0} propellant: density: 1589.2690569181755 name: Ocean Water Final tabs: - {a: 1.5486328404259838e-05, k: 1.25, m: 23.67, maxPressure: 6895000.0, minPressure: 0.0, n: 0.383, t: 3500.0} type: !!python/object/apply:uilib.fileIO.fileTypes [3] version: !!python/tuple [0, 4, 0] openmotor-0.6.0/test/data/real/n2950/test.yaml000066400000000000000000000007761500530174600210050ustar00rootroot00000000000000motor: data/real/n2950/motor.ric name: 4 Grain 98 Finocyl data: real: curves: data/real/n2950/223.csv stats: averageThrust: 2950 isp: 224 burnTime: 3.75 propMass: 5.865 regression: - version: 0.4.0 stats: averageThrust: 2945 isp: 206.512 burnTime: 3.81 propMass: 5.585 alerts: [ 'Initial port/throat ratio of 1.713 was less than 2.0', 'Peak mass flux exceeded configured limit' ] openmotor-0.6.0/test/data/real/o3100/000077500000000000000000000000001500530174600171155ustar00rootroot00000000000000openmotor-0.6.0/test/data/real/o3100/223.csv000066400000000000000000000340511500530174600201430ustar00rootroot00000000000000time (s),force (n),pressure (pa) 0.0,1822.56,167617.44999999998 0.06,2795.0622581668254,541602.25 0.085,3202.143199069669,541602.25 0.109,3202.5281023363996,775273.7999999999 0.132,3361.0569679670157,775273.7999999999 0.158,3361.4739465059733,1024390.1499999999 0.181,3429.6228121365893,1024390.1499999999 0.205,3430.0077154033193,1279505.15 0.228,3498.1565810339357,1279505.15 0.251,3498.5254466645524,1536412.8499999999 0.275,3476.320349931282,1536412.8499999999 0.298,3476.6892155618984,1779599.5000000002 0.322,3477.074118828629,1779599.5000000002 0.345,3477.442984459245,1988724.85 0.369,3455.227887725975,1988724.85 0.392,3455.5967533565918,2162616.75 0.416,3501.1716566233217,2162616.75 0.439,3501.540522253938,2297069.25 0.463,3456.7354255206683,2297069.25 0.486,3457.1042911512845,2395598.8 0.51,3480.0891944180144,2395598.8 0.533,3480.4580600486306,2471512.75 0.557,3458.242963315361,2471512.75 0.58,3458.6118289459773,2530051.3 0.604,3458.9967322127072,2530051.3 0.627,3459.365597843324,2573076.1 0.661,3437.320877471191,2595209.05 0.696,3437.8821947351726,2613136.0500000003 0.721,3460.8731356380167,2613136.0500000003 0.745,3461.2580389047466,2630442.5 0.768,3461.626904535363,2630442.5 0.792,3462.0118078020932,2645404.65 0.815,3462.3806734327095,2645404.65 0.839,3462.7655766994394,2656160.8499999996 0.862,3485.734442330056,2656160.8499999996 0.886,3486.119345596786,2665124.3499999996 0.909,3463.8882112274023,2665124.3499999996 0.933,3464.2731144941326,2671054.05 0.956,3487.241980124749,2671054.05 0.98,3487.6268833914787,2672846.75 1.003,3465.3957490220955,2672846.75 1.027,3465.7806522888254,2674639.4499999997 1.05,3466.1495179194417,2674639.4499999997 1.074,3466.534421186172,2674087.85 1.097,3489.503286816788,2674087.85 1.121,3489.888190083518,2673467.3000000003 1.146,3490.289130986362,2673467.3000000003 1.169,3490.6579966169784,2672846.75 1.193,3468.4428998837084,2672846.75 1.216,3468.811765514325,2671674.5999999996 1.24,3491.796668781055,2671674.5999999996 1.263,3492.165534411671,2671054.05 1.287,3492.5504376784015,2671054.05 1.31,3492.919303309018,2668709.75 1.334,3515.894206575748,2668709.75 1.357,3516.263072206364,2669881.9 1.381,3494.0579754730943,2669881.9 1.404,3494.4268411037106,2667468.65 1.428,3494.811744370441,2667468.65 1.451,3495.180610001057,2666296.5 1.474,3495.5494756316734,2666296.5 1.498,3495.9343788984033,2663331.65 1.521,3496.30324452902,2663331.65 1.581,3519.855502695845,2663331.65 1.606,3520.256443598689,2663331.65 1.63,3520.641346865419,2662090.55 1.653,3521.0102124960354,2662090.55 1.676,3521.379078126652,2662711.1 1.7,3521.763981393382,2662711.1 1.723,3522.1328470239982,2665124.3499999996 1.746,3522.5017126546145,2665124.3499999996 1.77,3522.886615921345,2667468.65 1.793,3523.255481551961,2667468.65 1.817,3523.640384818691,2668709.75 1.84,3524.0092504493077,2668709.75 1.864,3524.3941537160376,2671054.05 1.887,3524.763019346654,2671054.05 1.91,3525.13188497727,2672846.75 1.934,3548.1167882440004,2672846.75 1.957,3548.4856538746167,2675880.55 1.981,3548.8705571413466,2675880.55 2.004,3549.2394227719633,2677673.2499999995 2.028,3549.624326038693,2677673.2499999995 2.051,3549.9931916693095,2681258.65 2.074,3550.3620572999257,2681258.65 2.098,3550.746960566656,2684844.05 2.121,3573.7058261972725,2684844.05 2.146,3574.1067671001165,2689601.6 2.17,3551.9016703668462,2689601.6 2.193,3552.2705359974625,2693186.9999999995 2.216,3575.229401628079,2693186.9999999995 2.24,3575.6143048948093,2698565.1 2.263,3575.9831705254255,2698565.1 2.287,3576.368073792156,2703322.65 2.31,3576.736939422772,2703322.65 2.334,3577.121842689502,2707528.6 2.357,3600.0807083201184,2707528.6 2.38,3600.449573950735,2712286.15 2.404,3600.834477217465,2712286.15 2.427,3601.2033428480813,2715871.55 2.45,3601.5722084786976,2715871.55 2.474,3601.957111745428,2720077.5 2.497,3602.325977376044,2720077.5 2.521,3602.710880642774,2722490.7499999995 2.544,3603.079746273391,2722490.7499999995 2.568,3603.4646495401207,2727868.85 2.591,3626.433515170737,2727868.85 2.616,3626.834456073581,2732005.8499999996 2.64,3627.219359340311,2732005.8499999996 2.663,3627.588224970927,2735591.25 2.687,3627.9731282376574,2735591.25 2.71,3628.3419938682737,2740348.8 2.734,3651.3168971350033,2740348.8 2.757,3651.68576276562,2744554.75 2.781,3629.48066603235,2744554.75 2.804,3629.8495316629665,2749932.85 2.828,3630.234434929697,2749932.85 2.851,3630.603300560313,2752897.6999999997 2.875,3630.988203827043,2752897.6999999997 2.898,3631.3570694576597,2757103.65 2.921,3654.3159350882756,2757103.65 2.945,3654.7008383550055,2759516.9 2.968,3655.069703985622,2759516.9 2.991,3655.4385696162385,2763102.3000000003 3.015,3655.8234728829684,2763102.3000000003 3.046,3656.320639602495,2766067.15 3.098,3679.7445966804103,2771445.25 3.123,3657.5555375832537,2771445.25 3.149,3657.9725161222113,2769652.55 3.172,3680.9313817528277,2769652.55 3.195,3681.3002473834445,2772617.4 3.219,3659.095150650174,2772617.4 3.242,3659.4640162807905,2774410.1 3.266,3682.438919547521,2774410.1 3.289,3682.8077851781372,2777443.9 3.313,3683.192688444867,2777443.9 3.336,3683.5615540754834,2781580.9 3.359,3683.9304197061,2781580.9 3.383,3684.31532297283,2783373.6 3.406,3684.6841886034463,2783373.6 3.43,3685.0690918701766,2785166.3 3.453,3685.437957500793,2785166.3 3.477,3685.822860767523,2785786.8499999996 3.5,3686.191726398139,2785786.8499999996 3.524,3686.5766296648694,2786959.0 3.547,3686.9454952954857,2786959.0 3.57,3687.314360926102,2787579.55 3.594,3687.6992641928323,2787579.55 3.619,3688.100205095676,2788751.6999999997 3.643,3711.085108362406,2788751.6999999997 3.666,3711.4539739930224,2789992.8 3.689,3689.2228396236387,2789992.8 3.713,3689.607742890369,2789372.25 3.736,3689.9766085209853,2789372.25 3.76,3690.3615117877152,2789992.8 3.783,3690.7303774183315,2789992.8 3.806,3691.099243048948,2789992.8 3.83,3691.484146315678,2789992.8 3.853,3691.8530119462944,2789992.8 3.877,3692.2379152130247,2789992.8 3.9,3692.606780843641,2789992.8 3.923,3692.9756464742572,2789992.8 3.947,3693.360549740987,2788751.6999999997 3.97,3693.729415371604,2788751.6999999997 3.994,3694.1143186383338,2787579.55 4.017,3671.89318426895,2787579.55 4.041,3672.2780875356802,2786407.4 4.064,3672.6469531662965,2786407.4 4.088,3673.0318564330264,2785166.3 4.113,3696.0227973358706,2785166.3 4.136,3696.391662966487,2783994.15 4.16,3674.186566233217,2783994.15 4.183,3674.5554318638333,2782201.4499999997 4.207,3674.940335130563,2782201.4499999997 4.23,3675.3092007611795,2780408.75 4.254,3675.69410402791,2780408.75 4.277,3676.062969658526,2778616.0500000003 4.3,3676.4318352891423,2778616.0500000003 4.324,3676.8167385558727,2776823.3499999996 4.347,3677.185604186489,2776823.3499999996 4.371,3677.570507453219,2774410.1 4.394,3677.939373083835,2774410.1 4.418,3678.3242763505655,2772617.4 4.441,3656.103141981182,2772617.4 4.464,3656.4720076117983,2769652.55 4.488,3634.2569108785287,2769652.55 4.511,3634.625776509145,2767239.3 4.551,3657.867281953695,2766067.15 4.603,3636.1012390316105,2762481.75 4.638,3659.262556295592,2759516.9 4.663,3637.0634971984355,2759516.9 4.687,3637.448400465166,2755310.95 4.71,3637.817266095782,2755310.95 4.734,3638.202169362512,2751725.55 4.757,3615.981034993128,2751725.55 4.781,3616.3659382598585,2747519.5999999996 4.804,3639.324803890475,2747519.5999999996 4.828,3639.709707157205,2744554.75 4.851,3594.898572787821,2744554.75 4.875,3595.283476054551,2740348.8 4.898,3618.2423416851675,2740348.8 4.922,3618.627244951898,2735591.25 4.945,3618.996110582514,2735591.25 4.969,3619.381013849244,2731385.3 4.992,3597.15987947986,2731385.3 5.016,3597.5447827465905,2726627.75 5.039,3620.503648377207,2726627.75 5.063,3620.888551643937,2724283.45 5.086,3598.6674172745534,2724283.45 5.11,3599.0523205412833,2719456.9499999997 5.135,3599.4532614441273,2719456.9499999997 5.158,3599.8221270747435,2711114.0 5.182,3577.6070303414735,2711114.0 5.205,3577.9758959720903,2704563.75 5.229,3578.36079923882,2704563.75 5.252,3578.7296648694364,2699185.65 5.276,3579.114568136167,2699185.65 5.299,3579.483433766783,2693807.55 5.323,3579.868337033513,2693807.55 5.346,3580.237202664129,2687188.3499999996 5.37,3558.0321059308594,2687188.3499999996 5.393,3558.4009715614757,2681810.25 5.417,3558.7858748282056,2681810.25 5.44,3559.1547404588223,2676432.15 5.463,3536.9236060894386,2676432.15 5.487,3537.3085093561685,2671054.05 5.51,3515.0873749867847,2671054.05 5.534,3515.472278253515,2662711.1 5.557,3538.4311438841314,2662711.1 5.581,3538.816047150862,2656160.8499999996 5.623,3539.4896278676392,2652575.4499999997 5.648,3517.300568770483,2652575.4499999997 5.672,3517.685472037213,2644163.5500000003 5.695,3495.4643376678296,2644163.5500000003 5.719,3495.84924093456,2637613.3 5.742,3496.218106565176,2637613.3 5.766,3496.603009831906,2631063.05 5.789,3496.9718754625223,2631063.05 5.813,3497.3567787292527,2624443.85 5.837,3475.1416819959827,2624443.85 5.86,3475.510547626599,2617273.05 5.884,3498.4954508933292,2617273.05 5.907,3498.8643165239455,2610722.8 5.931,3476.649219790676,2610722.8 5.954,3477.018085421292,2604172.55 5.978,3477.402988688022,2604172.55 6.001,3477.7718543186384,2596381.2 6.025,3455.5667575853686,2596381.2 6.048,3455.935623215985,2590382.55 6.071,3456.304488846601,2590382.55 6.123,3434.5484459245163,2583211.75 6.167,3435.2541019135215,2576661.5 6.202,3413.215419177503,2570662.85 6.227,3436.2163600803465,2570662.85 6.251,3436.601263347077,2562319.9 6.274,3414.370128977693,2562319.9 6.298,3414.755032244423,2554597.5 6.321,3392.5338978750397,2554597.5 6.345,3392.9188011417696,2546185.5999999996 6.368,3393.287666772386,2546185.5999999996 6.391,3393.656532403002,2540255.9 6.415,3394.0414356697324,2540255.9 6.438,3394.4103013003487,2534257.25 6.462,3372.1952045670787,2534257.25 6.485,3372.5640701976954,2527086.4499999997 6.509,3372.9489734644253,2527086.4499999997 6.532,3373.3178390950416,2520536.2 6.556,3373.702742361772,2520536.2 6.579,3374.071607992388,2513916.9999999995 6.602,3351.8504736230043,2513916.9999999995 6.626,3352.2353768897347,2505574.05 6.651,3352.636317792578,2505574.05 6.674,3353.0051834231945,2497782.6999999997 6.698,3308.2000866899252,2497782.6999999997 6.721,3308.5689523205415,2489439.75 6.745,3331.5538555872713,2489439.75 6.768,3331.922721217888,2481096.8 6.791,3309.6915868485044,2481096.8 6.815,3310.0764901152343,2472133.3 6.838,3310.4453557458505,2472133.3 6.862,3310.830259012581,2463169.8000000003 6.885,3288.609124643197,2463169.8000000003 6.908,3288.9779902738132,2452413.6 6.932,3266.7728935405435,2452413.6 6.955,3267.1417591711597,2442829.55 6.979,3267.5266624378896,2442829.55 7.002,3267.895528068506,2433866.0500000003 7.026,3223.090431335236,2433866.0500000003 7.049,3223.4592969658524,2424902.55 7.072,3223.8281625964687,2424902.55 7.096,3224.213065863199,2415318.5 7.119,3201.9819314938154,2415318.5 7.145,3202.398910032773,2405182.85 7.168,3202.7677756633893,2405182.85 7.192,3203.1526789301192,2398012.05 7.215,3203.521544560736,2398012.05 7.239,3203.906447827466,2387876.4 7.262,3181.685313458082,2387876.4 7.285,3182.054179088698,2378292.35 7.309,3159.849082355429,2378292.35 7.332,3160.217947986045,2368156.6999999997 7.356,3138.002851252775,2368156.6999999997 7.379,3138.371716883392,2359813.75 7.403,3138.7566201501218,2359813.75 7.426,3139.125485780738,2351401.8499999996 7.45,3116.9203890474682,2351401.8499999996 7.473,3117.2892546780845,2340094.05 7.496,3095.0681203087006,2340094.05 7.52,3095.4530235754305,2330510.0 7.543,3095.821889206047,2330510.0 7.567,3096.206792472777,2319133.2499999995 7.59,3096.5756581033934,2319133.2499999995 7.645,3074.85772808965,2301826.8 7.67,3052.6686689924936,2301826.8 7.694,3053.053572259224,2289898.45 7.717,3030.8224378898403,2289898.45 7.741,3031.2073411565702,2279693.85 7.764,3031.576206787187,2279693.85 7.787,3031.945072417803,2269558.1999999997 7.811,3009.739975684533,2269558.1999999997 7.834,3010.108841315149,2259974.15 7.858,3010.4937445818796,2259974.15 7.881,3010.862610212496,2250459.05 7.904,2966.0414758431125,2250459.05 7.928,2966.426379109843,2239702.85 7.951,2989.395244740459,2239702.85 7.975,2989.780148007189,2230739.3499999996 7.998,2967.5490136378053,2230739.3499999996 8.022,2967.9339169045356,2221155.3 8.045,2968.302782535152,2221155.3 8.068,2968.671648165768,2211640.1999999997 8.092,2946.4665514324984,2211640.1999999997 8.115,2946.8354170631146,2203848.85 8.15,2924.806734327096,2199642.9 8.175,2925.2076752299395,2199642.9 8.199,2925.59257849667,2191299.95 8.222,2903.361444127286,2191299.95 8.246,2903.746347394016,2185921.8499999996 8.269,2926.7152130246327,2185921.8499999996 8.292,2927.084078655249,2181715.9 8.316,2904.868981921979,2181715.9 8.339,2905.237847552595,2179371.6 8.362,2905.606713183212,2179371.6 8.386,2905.991616449942,2175786.2 8.409,2906.360482080558,2175786.2 8.433,2906.7453853472884,2173372.9499999997 8.456,2884.5242509779046,2173372.9499999997 8.48,2884.9091542446345,2167374.3 8.503,2885.2780198752507,2167374.3 8.526,2885.6468855058674,2156066.5 8.55,2795.6517887725977,2156066.5 8.573,2796.020654403214,2120212.5 8.597,2660.845557669944,2120212.5 8.622,2661.2464985727875,2034162.9 8.645,2435.6753642034046,2034162.9 8.669,2436.0602674701345,1920050.65 8.692,2255.6791331007507,1920050.65 8.716,2256.064036367481,1793389.5000000002 8.739,2053.092901998097,1793389.5000000002 8.763,2053.477805264827,1663142.95 8.786,1895.6866708954435,1663142.95 8.81,1896.0715741621734,1550754.45 8.833,1806.07043979279,1550754.45 8.856,1806.4393054234063,1471324.0499999998 8.88,1761.6342086901363,1471324.0499999998 8.903,1762.0030743207526,1424713.8499999999 8.927,1762.3879775874827,1424713.8499999999 8.95,1762.7568432180992,1396651.2 8.974,1740.5517464848294,1396651.2 8.997,1740.9206121154457,1370312.2999999998 9.02,1673.4994777460618,1370312.2999999998 9.044,1673.884381012792,1333286.15 9.067,1583.8832466434085,1333286.15 9.091,1584.2681499101386,1280125.7 9.152,1427.0864457130774,1195868.8 9.177,1337.1173866159213,1195868.8 9.201,1337.5022898826514,1121816.5 9.224,1224.901155513268,1121816.5 9.248,1225.2860587799978,1049487.95 9.271,1112.6849244106143,1049487.95 9.295,1113.0698276773444,973642.9500000001 9.318,1023.0686933079606,973642.9500000001 9.342,1023.4535965746908,901934.9500000001 9.365,956.0324622053072,901934.9500000001 9.389,956.4173654720372,840983.15 9.412,889.0062311026535,840983.15 9.435,889.3750967332699,793752.4 9.459,867.17,793752.4 openmotor-0.6.0/test/data/real/o3100/motor.ric000066400000000000000000000025021500530174600207530ustar00rootroot00000000000000data: config: {ambPressure: 101324.99674500001, burnoutThrustThres: 0.1, burnoutWebThres: 0.00025400050800101603, igniterPressure: 1034250.0000000001, mapDim: 750, maxMassFlux: 1406.4697609001405, maxPressure: 10342500.000000002, minPortThroat: 2.0, timestep: 0.03} grains: - properties: {coreDiameter: 0.04368808737617476, diameter: 0.12735585471170943, inhibitedEnds: Neither, length: 0.20955041910083821} type: BATES - properties: {coreDiameter: 0.04368808737617476, diameter: 0.12735585471170943, inhibitedEnds: Neither, length: 0.20955041910083821} type: BATES - properties: {coreDiameter: 0.04368808737617476, diameter: 0.12735585471170943, inhibitedEnds: Neither, length: 0.20955041910083821} type: BATES - properties: {coreDiameter: 0.04368808737617476, diameter: 0.12735585471170943, inhibitedEnds: Neither, length: 0.20955041910083821} type: BATES nozzle: {convAngle: 65.0, divAngle: 15.0, efficiency: 0.9, exit: 0.10160020320040641, throat: 0.034467868935737875, throatLength: 0.012700025400050802} propellant: density: 1650.0 name: MIT - Ocean Water tabs: - {a: 1.467e-05, k: 1.25, m: 23.67, maxPressure: 6895000.0, minPressure: 0.0, n: 0.382, t: 3500.0} type: !!python/object/apply:uilib.fileIO.fileTypes [3] version: !!python/tuple [0, 4, 0] openmotor-0.6.0/test/data/real/o3100/test.yaml000066400000000000000000000006421500530174600207620ustar00rootroot00000000000000motor: data/real/o3100/motor.ric name: 4 Grain 152 Test 1 data: real: curves: data/real/o3100/223.csv stats: averageThrust: 3100 isp: 206 burnTime: 9.8 propMass: 15.51 regression: - version: 0.4.0 stats: averageThrust: 3227 isp: 205.149 burnTime: 9.66 propMass: 15.545 alerts: ['Initial port/throat ratio of 1.607 was less than 2.0'] openmotor-0.6.0/test/data/real/o3800/000077500000000000000000000000001500530174600171245ustar00rootroot00000000000000openmotor-0.6.0/test/data/real/o3800/225.csv000066400000000000000000000270731500530174600201620ustar00rootroot00000000000000time (s),force (n),pressure (pa) 0.0,1742.23,143347.05 0.023,1742.6745846075432,550841.55 0.047,3392.488498980632,550841.55 0.073,3392.9910728848113,921240.95 0.097,3822.7349872579002,921240.95 0.121,3823.198901630989,1236135.6 0.145,4139.972816004078,1236135.6 0.169,4140.436730377166,1612533.65 0.192,4299.041314984709,1612533.65 0.216,4299.505229357798,2018235.45 0.24,4345.149143730887,2018235.45 0.264,4345.613058103976,2421524.0 0.288,4413.856972477064,2421524.0 0.311,4414.301557084607,2814125.3 0.335,4482.5554714576965,2814125.3 0.359,4483.019385830785,3172596.35 0.383,4551.263300203873,3172596.35 0.407,4551.727214576962,3502384.1999999997 0.43,4619.951799184506,3502384.1999999997 0.454,4620.415713557594,3807694.8000000003 0.478,4688.659627930683,3807694.8000000003 0.502,4689.1235423037715,4075358.7 0.526,4689.587456676861,4075358.7 0.549,4690.032041284404,4294688.65 0.584,4758.4885830784915,4438035.7 0.619,4781.755124872579,4562352.550000001 0.644,4782.238369011213,4562352.550000001 0.668,4782.702283384302,4706320.15 0.692,4805.766197757391,4706320.15 0.716,4806.230112130479,4813882.15 0.74,4851.884026503568,4813882.15 0.763,4852.328611111111,4901724.45 0.787,4830.192525484199,4901724.45 0.811,4830.656439857288,4968605.95 0.835,4853.720354230377,4968605.95 0.859,4854.184268603466,5031350.45 0.882,4832.028853211009,5031350.45 0.906,4832.492767584097,5082787.15 0.93,4832.956681957186,5082787.15 0.954,4833.420596330275,5120985.45 0.978,4833.884510703363,5120985.45 1.01,4834.503063200815,5141877.3 1.063,4880.71754077472,5172973.75 1.098,4858.804082568808,5184350.500000001 1.123,4881.877326707441,5184350.500000001 1.147,4882.34124108053,5197451.000000001 1.182,4883.017782874618,5213033.7 1.207,4906.091027013252,5213033.7 1.231,4906.554941386341,5228547.45 1.255,4907.018855759429,5228547.45 1.279,4907.482770132518,5248887.7 1.303,4930.546684505606,5248887.7 1.326,4930.991269113149,5267986.850000001 1.35,4931.455183486239,5267986.850000001 1.374,4931.919097859327,5286465.45 1.398,4954.973012232415,5286465.45 1.421,4955.417596839959,5305633.55 1.445,5001.071511213048,5305633.55 1.469,5001.535425586137,5326525.4 1.493,5001.999339959226,5326525.4 1.517,5002.463254332314,5346865.65 1.54,5002.907838939857,5346865.65 1.564,5003.371753312947,5364792.65 1.588,5049.0256676860345,5364792.65 1.612,5049.489582059124,5383891.8 1.635,5049.934166666667,5383891.8 1.659,5050.398081039755,5400026.100000001 1.694,5051.074622833843,5416160.4 1.719,5074.1478669724775,5416160.4 1.743,5074.611781345566,5430502.0 1.767,5097.665695718654,5430502.0 1.791,5098.129610091743,5447187.9 1.814,5121.174194699286,5447187.9 1.838,5121.638109072374,5463322.2 1.862,5099.502023445464,5463322.2 1.886,5099.965937818552,5479456.5 1.909,5100.410522426096,5479456.5 1.933,5100.874436799185,5498004.050000001 1.957,5146.528351172273,5498004.050000001 1.981,5146.992265545362,5514138.350000001 2.005,5147.45617991845,5514138.350000001 2.028,5147.9007645259935,5527307.800000001 2.052,5148.364678899083,5527307.800000001 2.076,5148.828593272171,5539236.15 2.1,5149.292507645259,5539236.15 2.124,5149.7564220183485,5550612.9 2.147,5195.391006625892,5550612.9 2.171,5195.854920998981,5562541.25 2.213,5196.666771151886,5575090.15 2.238,5197.15001529052,5575090.15 2.262,5197.613929663609,5583433.100000001 2.286,5220.667844036697,5583433.100000001 2.31,5221.131758409785,5592396.600000001 2.334,5199.005672782875,5592396.600000001 2.358,5199.469587155963,5601360.1 2.381,5199.914171763507,5601360.1 2.405,5200.378086136596,5610944.15 2.429,5223.432000509683,5610944.15 2.453,5223.895914882773,5621700.350000001 2.476,5224.340499490316,5621700.350000001 2.5,5224.804413863404,5633628.7 2.524,5225.268328236493,5633628.7 2.548,5225.732242609582,5644384.9 2.571,5248.776827217125,5644384.9 2.624,5227.2013047910295,5664104.600000001 2.649,5272.874548929663,5664104.600000001 2.673,5273.338463302753,5672447.550000001 2.697,5251.212377675841,5672447.550000001 2.721,5251.67629204893,5682031.600000001 2.745,5252.140206422018,5682031.600000001 2.776,5252.739429153925,5690995.1 2.8,5275.793343527013,5690995.1 2.824,5276.257257900102,5701751.300000001 2.848,5276.721172273191,5701751.300000001 2.871,5277.165756880734,5711335.350000001 2.895,5277.629671253822,5711335.350000001 2.919,5278.093585626912,5715472.350000001 2.943,5278.5575,5715472.350000001 2.967,5279.021414373089,5720850.45 2.99,5279.465998980632,5720850.45 3.014,5279.929913353721,5728021.25 3.038,5257.80382772681,5728021.25 3.062,5258.267742099898,5723884.250000001 3.086,5236.131656472986,5723884.250000001 3.109,5236.57624108053,5711886.95 3.133,5237.040155453618,5711886.95 3.157,5237.504069826707,5707129.4 3.181,5237.967984199796,5707129.4 3.205,5238.431898572884,5701130.75 3.229,5216.305812945974,5701130.75 3.252,5216.750397553517,5693408.350000001 3.287,5217.426939347605,5687409.7 3.312,5217.910183486239,5687409.7 3.336,5218.374097859328,5674860.800000001 3.36,5196.238012232416,5674860.800000001 3.384,5196.701926605505,5662311.9 3.408,5174.575840978593,5662311.9 3.431,5175.020425586136,5644384.9 3.455,5107.704339959226,5644384.9 3.479,5108.168254332314,5607979.3 3.503,5063.442168705402,5607979.3 3.527,5063.906083078491,5560128.000000001 3.551,5019.17999745158,5560128.000000001 3.574,5019.624582059123,5506967.550000001 3.598,4997.498496432212,5506967.550000001 3.622,4997.9624108053,5461529.5 3.646,4930.64632517839,5461529.5 3.67,4931.110239551478,5414367.7 3.693,4863.774824159022,5414367.7 3.717,4864.238738532111,5367757.5 3.741,4842.102652905199,5367757.5 3.765,4842.566567278287,5327697.550000001 3.8,4798.063109072375,5299634.9 3.825,4753.356353211009,5299634.9 3.849,4753.820267584098,5254265.800000001 3.873,4731.694181957187,5254265.800000001 3.897,4732.158096330275,5215378.000000001 3.921,4710.022010703364,5215378.000000001 3.944,4710.466595310907,5177179.7 3.968,4643.150509683996,5177179.7 3.992,4643.614424057085,5140084.600000001 4.016,4621.488338430173,5140084.600000001 4.039,4621.932923037716,5104230.600000001 4.063,4599.796837410806,5104230.600000001 4.087,4600.260751783894,5069617.7 4.111,4555.544666156982,5069617.7 4.164,4511.379143730887,5014664.550000001 4.189,4511.862387869522,5014664.550000001 4.213,4512.32630224261,4974604.600000001 4.237,4467.600216615698,4974604.600000001 4.261,4468.064130988787,4944749.250000001 4.284,4445.91871559633,4944749.250000001 4.308,4446.382629969418,4910687.95 4.332,4401.656544342508,4910687.95 4.358,4402.159118246687,4876626.65 4.382,4380.033032619775,4876626.65 4.406,4380.496946992865,4847322.9 4.43,4335.770861365953,4847322.9 4.453,4336.215445973497,4816295.4 4.477,4314.079360346585,4816295.4 4.501,4314.543274719674,4785198.95 4.525,4292.417189092762,4785198.95 4.549,4292.881103465851,4755964.15 4.573,4248.15501783894,4755964.15 4.596,4248.599602446483,4723075.0 4.62,4226.473516819572,4723075.0 4.644,4226.93743119266,4693219.65 4.668,4182.211345565749,4693219.65 4.692,4182.675259938838,4663295.350000001 4.716,4160.549174311926,4663295.350000001 4.739,4160.99375891947,4634612.15 4.763,4138.8576732925585,4634612.15 4.787,4139.321587665647,4603584.65 4.811,4094.605502038736,4603584.65 4.835,4095.069416411825,4571316.05 4.87,4073.1459582059124,4552216.9 4.895,4051.0392023445465,4552216.9 4.919,4051.5031167176353,4517535.050000001 4.943,4029.3770310907234,4517535.050000001 4.967,4029.840945463812,4488851.850000001 4.991,3985.114859836901,4488851.850000001 5.014,3985.559444444444,4458375.95 5.038,3986.023358817533,4458375.95 5.062,3986.4872731906216,4426727.9 5.086,3919.1711875637106,4426727.9 5.11,3919.6351019367994,4394459.3 5.134,3920.099016309888,4394459.3 5.157,3920.5436009174314,4362811.25 5.181,3875.81751529052,4362811.25 5.205,3876.281429663609,4334128.05 5.229,3854.155344036697,4334128.05 5.253,3854.6192584097857,4301859.45 5.276,3809.873843017329,4301859.45 5.3,3810.3377573904177,4268349.750000001 5.324,3788.2016717635065,4268349.750000001 5.348,3788.6655861365953,4236701.7 5.383,3744.1621279306833,4214017.15 5.408,3722.045372069317,4214017.15 5.432,3722.509286442406,4176991.0000000005 5.456,3700.3832008154945,4176991.0000000005 5.48,3700.8471151885833,4144101.8500000006 5.504,3656.1210295616715,4144101.8500000006 5.528,3656.5849439347603,4108868.4000000004 5.551,3611.839528542304,4108868.4000000004 5.575,3612.303442915392,4072393.85 5.599,3567.587357288481,4072393.85 5.623,3568.05127166157,4037160.400000001 5.647,3523.3251860346586,4037160.400000001 5.708,3524.504301732926,3978001.3000000003 5.733,3479.7975458715596,3978001.3000000003 5.757,3480.2614602446483,3940975.1500000004 5.781,3435.535374617737,3940975.1500000004 5.804,3435.9799592252803,3903880.0500000003 5.828,3413.853873598369,3903880.0500000003 5.852,3414.3177879714576,3869267.1500000004 5.876,3369.591702344547,3869267.1500000004 5.9,3370.055616717635,3832792.6 5.923,3370.5002013251788,3832792.6 5.949,3371.002775229358,3796938.6000000006 5.973,3326.276689602447,3796938.6000000006 5.997,3326.740603975535,3761084.6 6.021,3282.0245183486236,3761084.6 6.044,3282.4691029561673,3727023.3000000007 6.068,3260.3330173292557,3727023.3000000007 6.092,3260.7969317023444,3689997.1500000004 6.116,3193.4808460754334,3689997.1500000004 6.139,3193.9254306829766,3653591.5500000007 6.163,3171.7993450560652,3653591.5500000007 6.187,3172.263259429154,3617737.5500000003 6.211,3127.5371738022427,3617737.5500000003 6.235,3128.0010881753315,3580090.85 6.258,3083.2556727828746,3580090.85 6.282,3083.7195871559634,3540651.4499999997 6.306,3039.0035015290523,3540651.4499999997 6.33,3039.4674159021406,3505418.0 6.353,3017.3120005096844,3505418.0 6.377,3017.7759148827727,3468322.9 6.401,2995.6498292558613,3468322.9 6.425,2996.11374362895,3430676.2 6.459,2928.990955657492,3402613.5500000003 6.494,2907.06749745158,3371586.0500000003 6.519,2884.9607415902137,3371586.0500000003 6.543,2885.4246559633025,3330905.55 6.567,2840.6985703363916,3330905.55 6.591,2841.1624847094804,3292707.25 6.614,2819.0170693170235,3292707.25 6.638,2819.480983690112,3256853.2499999995 6.662,2797.344898063201,3256853.2499999995 6.686,2797.80881243629,3223343.5500000003 6.71,2753.092726809378,3223343.5500000003 6.733,2753.5373114169215,3192936.6 6.757,2731.4012257900104,3192936.6 6.781,2731.8651401630987,3160668.0 6.805,2687.1490545361876,3160668.0 6.829,2687.6129689092763,3121228.6 6.852,2620.2675535168196,3121228.6 6.876,2620.7314678899083,3066827.05 6.9,2530.8253822629968,3066827.05 6.924,2531.2892966360855,2992154.1999999997 6.948,2418.7832110091745,2992154.1999999997 6.974,2419.285784913354,2882799.4999999995 6.998,2261.5896992864427,2882799.4999999995 7.021,2262.034283893986,2746554.3 7.045,2104.3481982670746,2746554.3 7.069,2104.812112640163,2581694.85 7.092,1901.9066972477062,2581694.85 7.116,1902.370611620795,2390496.5 7.14,1722.0845259938837,2390496.5 7.163,1722.529110601427,2189714.1 7.187,1519.6530249745158,2189714.1 7.249,1362.6914704383282,1881438.6500000001 7.274,1317.9947145769625,1881438.6500000001 7.298,1318.458628950051,1756570.2 7.322,1205.9525433231397,1756570.2 7.346,1206.4164576962285,1657971.7 7.369,1229.4510423037716,1657971.7 7.393,1229.9149566768604,1579092.9 7.417,1094.818871049949,1579092.9 7.441,1095.2827854230377,1484700.3499999999 7.465,982.7766997961264,1484700.3499999999 7.488,983.2212844036698,1387274.0 7.512,870.7151987767584,1387274.0 7.538,871.2177726809377,1283366.3499999999 7.562,781.3116870540265,1283366.3499999999 7.586,781.7756014271151,1183526.7499999998 7.61,691.8595158002038,1183526.7499999998 7.633,692.3041004077472,1090375.2999999998 7.657,647.5780147808358,1090375.2999999998 7.681,648.0419291539246,1004325.7 7.705,580.7258435270132,1004325.7 7.729,581.189757900102,924826.35 7.752,513.8543425076452,924826.35 7.776,514.3182568807339,853738.9 7.8,492.1921712538226,853738.9 7.824,492.6560856269113,795200.35 7.848,470.52,795200.35 openmotor-0.6.0/test/data/real/o3800/motor.ric000066400000000000000000000025011500530174600207610ustar00rootroot00000000000000data: config: {ambPressure: 101324.99674500001, burnoutThrustThres: 0.1, burnoutWebThres: 0.00025400050800101603, igniterPressure: 1034250.0000000001, mapDim: 750, maxMassFlux: 1406.4697609001405, maxPressure: 10342500.000000002, minPortThroat: 2.0, timestep: 0.03} grains: - properties: {coreDiameter: 0.04368808737617476, diameter: 0.12735585471170943, inhibitedEnds: Neither, length: 0.20955041910083821} type: BATES - properties: {coreDiameter: 0.04368808737617476, diameter: 0.12735585471170943, inhibitedEnds: Neither, length: 0.20955041910083821} type: BATES - properties: {coreDiameter: 0.04368808737617476, diameter: 0.12735585471170943, inhibitedEnds: Neither, length: 0.20955041910083821} type: BATES - properties: {coreDiameter: 0.04368808737617476, diameter: 0.12735585471170943, inhibitedEnds: Neither, length: 0.20955041910083821} type: BATES nozzle: {convAngle: 65.0, divAngle: 15.0, efficiency: 0.9, exit: 0.10160020320040641, throat: 0.02921005842011684, throatLength: 0.012700025400050802} propellant: density: 1650.0 name: MIT - Ocean Water tabs: - {a: 1.467e-05, k: 1.25, m: 23.67, maxPressure: 6895000.0, minPressure: 0.0, n: 0.382, t: 3500.0} type: !!python/object/apply:uilib.fileIO.fileTypes [3] version: !!python/tuple [0, 4, 0] openmotor-0.6.0/test/data/real/o3800/test.yaml000066400000000000000000000005551500530174600207740ustar00rootroot00000000000000motor: data/real/o3800/motor.ric name: 4 Grain 152 Test 2 data: real: curves: data/real/o3800/223.csv stats: averageThrust: 3800 isp: 209 burnTime: 7.25 propMass: 15.51 regression: - version: 0.4.0 stats: averageThrust: 4203 isp: 218.392 burnTime: 7.89 propMass: 15.545 alerts: [] openmotor-0.6.0/test/data/real/p9100/000077500000000000000000000000001500530174600171245ustar00rootroot00000000000000openmotor-0.6.0/test/data/real/p9100/72.csv000066400000000000000000000260121500530174600200720ustar00rootroot00000000000000time (s),force (n),pressure (pa) 0.0,11432.68,6129379.2 0.025,12629.742808367397,6129379.2 0.045,12630.529055061314,6503570.850000001 0.065,12592.095301755231,6503570.850000001 0.085,12592.881548449148,6370014.7 0.105,12221.117795143064,6370014.7 0.125,12221.90404183698,6203776.25 0.145,11908.970288530898,6203776.25 0.165,11909.756535224815,6049948.800000001 0.25,11618.97808367396,6049948.800000001 0.278,11227.918829045444,5778837.4 0.303,11189.69163741284,5778837.4 0.323,11190.477884106756,5713886.5 0.343,11073.614130800672,5713886.5 0.363,11074.400377494589,5674722.9 0.383,10996.756624188507,5674722.9 0.403,10997.542870882424,5646384.45 0.423,10919.89911757634,5646384.45 0.443,10920.685364270257,5591982.9 0.528,10845.596912719404,5591982.9 0.558,10768.346282760278,5525928.800000001 0.583,10788.929091127675,5525928.800000001 0.603,10789.715337821592,5497590.350000001 0.623,10731.681584515509,5497590.350000001 0.643,10732.467831209426,5500141.5 0.663,10752.864077903341,5500141.5 0.683,10753.650324597258,5458771.5 0.703,10754.436571291175,5458771.5 0.723,10755.222817985092,5460564.2 0.808,10699.734366434239,5460564.2 0.836,10700.835111805722,5440292.9 0.861,10721.427920173119,5440292.9 0.881,10722.214166867036,5455530.850000001 0.901,10703.390413560952,5455530.850000001 0.921,10704.176660254869,5448635.850000001 0.941,10724.572906948786,5448635.850000001 0.961,10725.359153642703,5442085.600000001 0.981,10765.36540033662,5442085.600000001 1.001,10766.151647030536,5455875.600000001 1.087,10749.922507814379,5455875.600000001 1.116,10849.102565520558,5485248.300000001 1.141,10889.295373887955,5485248.300000001 1.161,10890.081620581872,5487454.7 1.181,10890.867867275789,5487454.7 1.201,10891.654113969706,5489592.15 1.221,10931.660360663622,5489592.15 1.241,10932.446607357539,5499038.300000001 1.261,10972.452854051455,5499038.300000001 1.281,10973.23910074537,5506278.05 1.366,10956.970649194518,5506278.05 1.394,11036.501394566003,5523377.65 1.419,11057.094202933396,5523377.65 1.439,11057.880449627313,5520068.05 1.459,10999.83669632123,5520068.05 1.479,11000.622943015147,5528479.95 1.499,11040.629189709065,5528479.95 1.519,11041.415436402982,5530272.65 1.539,11081.421683096898,5530272.65 1.559,11082.207929790815,5525928.800000001 1.641,11065.821541235873,5525928.800000001 1.669,11125.742286607358,5534616.5 1.694,11107.115094974753,5534616.5 1.714,11107.90134166867,5536064.45 1.734,11147.907588362586,5536064.45 1.754,11148.693835056503,5536822.9 1.774,11129.87008175042,5536822.9 1.794,11130.656328444336,5550612.9 1.814,11170.662575138254,5550612.9 1.834,11171.448821832171,5547303.300000001 1.919,11174.790370281318,5547303.300000001 1.947,11215.1011156528,5562954.95 1.972,11255.303924020198,5562954.95 1.992,11256.090170714115,5567988.300000001 2.012,11276.48641740803,5567988.300000001 2.032,11277.272664101947,5567643.55 2.052,11238.838910795865,5567643.55 2.072,11239.625157489781,5584674.2 2.092,11299.231404183698,5584674.2 2.112,11300.017650877615,5599567.4 2.197,11322.969199326762,5599567.4 2.225,11441.719944698245,5627147.4 2.25,11462.312753065642,5627147.4 2.27,11463.098999759559,5638386.25 2.29,11463.885246453476,5638386.25 2.31,11464.671493147393,5654727.4 2.33,11504.667739841309,5654727.4 2.35,11505.453986535225,5666379.95 2.37,11545.460233229143,5666379.95 2.39,11546.24647992306,5680169.95 2.475,11608.408028372205,5680169.95 2.503,11668.32877374369,5720781.5 2.528,11708.531582111083,5720781.5 2.548,11709.317828805,5735329.95 2.568,11710.104075498917,5735329.95 2.588,11710.890322192834,5755256.5 2.608,11790.106568886751,5755256.5 2.628,11790.892815580668,5777734.2 2.648,11811.289062274585,5777734.2 2.668,11812.075308968502,5802763.05 2.753,11933.066857417649,5802763.05 2.781,11992.987602789131,5855027.15 2.806,12131.230411156528,5855027.15 2.826,12132.016657850445,5885916.750000001 2.846,12093.582904544362,5885916.750000001 2.866,12094.36915123828,5890950.1 2.886,12114.765397932195,5890950.1 2.906,12115.551644626112,5893501.25 2.926,12155.54789132003,5893501.25 2.946,12156.334138013946,5914599.95 3.031,12218.505686463093,5914599.95 3.059,12278.426431834576,5945420.600000001 3.084,12338.229240201972,5945420.600000001 3.104,12339.015486895889,5971897.4 3.124,12339.801733589806,5971897.4 3.144,12340.587980283723,5974103.800000001 3.164,12360.98422697764,5974103.800000001 3.184,12361.770473671557,5989341.750000001 3.204,12342.946720365473,5989341.750000001 3.224,12343.73296705939,5986790.600000001 3.309,12386.294515508534,5986790.600000001 3.337,12191.31526088002,5887709.45 3.362,12055.048069247414,5887709.45 3.382,12055.83431594133,5795868.05 3.402,11821.320562635248,5795868.05 3.422,11822.106809329165,5692443.05 3.442,11528.773056023081,5692443.05 3.462,11529.559302716998,5551647.15 3.482,11255.835549410916,5551647.15 3.502,11256.621796104833,5435190.600000001 3.587,10985.45334455398,5435190.600000001 3.615,10594.404089925463,5188763.300000001 3.64,10516.95689829286,5188763.300000001 3.66,10517.743144986776,5125260.350000001 3.681,10361.698704015387,5125260.350000001 3.701,10362.484950709304,5075547.4 3.721,10265.231197403222,5075547.4 3.741,10266.017444097139,5031626.25 3.761,10149.163690791054,5031626.25 3.781,10149.949937484971,4976121.5 3.866,10094.461485934118,4976121.5 3.894,9919.092231305602,4882142.65 3.919,9861.255039672998,4882142.65 3.939,9862.041286366915,4844358.05 3.959,9784.397533060832,4844358.05 3.979,9785.183779754749,4809538.300000001 3.999,9687.930026448665,4809538.300000001 4.019,9688.716273142581,4774373.800000001 4.039,9630.682519836499,4774373.800000001 4.059,9631.468766530415,4743139.45 4.144,9575.980314979563,4743139.45 4.172,9439.831060351045,4667639.2 4.197,9381.983868718442,4667639.2 4.217,9382.770115412359,4611444.95 4.237,9461.986362106276,4611444.95 4.257,9462.772608800193,4620822.15 4.277,9287.08885549411,4620822.15 4.297,9287.875102188027,4577314.7 4.317,9249.451348881943,4577314.7 4.337,9250.23759557586,4559870.350000001 4.422,9155.539144025006,4559870.350000001 4.45,9137.02988939649,4514914.95 4.475,9138.012697763887,4514914.95 4.495,9138.798944457803,4505813.55 4.515,9139.58519115172,4505813.55 4.535,9140.371437845635,4514501.25 4.555,9160.767684539553,4514501.25 4.575,9161.55393123347,4538082.15 4.595,9221.160177927386,4538082.15 4.615,9221.946424621303,4547183.55 4.7,9225.28797307045,4547183.55 4.728,9304.818718441933,4578004.2 4.753,9325.411526809328,4578004.2 4.773,9326.197773503245,4585312.9 4.794,9327.023332531859,4585312.9 4.814,9327.809579225775,4587450.350000001 4.834,9367.815825919693,4587450.350000001 4.854,9368.60207261361,4607032.15 4.874,9408.598319307526,4607032.15 4.894,9409.384566001443,4613927.15 4.979,9432.336114450589,4613927.15 5.007,9492.256859822073,4640472.9 5.032,9512.849668189469,4640472.9 5.052,9513.635914883385,4650608.55 5.072,9534.032161577301,4650608.55 5.092,9534.818408271218,4666604.95 5.112,9555.214654965135,4666604.95 5.132,9556.000901659052,4681084.45 5.152,9635.21714835297,4681084.45 5.172,9636.003395046886,4704665.350000001 5.257,9639.344943496033,4704665.350000001 5.285,9699.265688867516,4718110.600000001 5.31,9700.248497234912,4718110.600000001 5.331,9701.074056263526,4721351.25 5.351,9721.470302957443,4721351.25 5.371,9722.25654965136,4736589.2 5.391,9762.262796345276,4736589.2 5.411,9763.049043039193,4746035.350000001 5.431,9783.43528973311,4746035.350000001 5.451,9784.221536427027,4750379.2 5.536,9807.173084876173,4750379.2 5.564,9867.103830247657,4779820.850000001 5.589,9907.296638615051,4779820.850000001 5.609,9908.082885308968,4791404.45 5.629,9908.869132002885,4791404.45 5.649,9909.655378696802,4802643.300000001 5.669,9949.661625390718,4802643.300000001 5.689,9950.447872084635,4806987.15 5.709,9970.844118778552,4806987.15 5.729,9971.630365472469,4815743.800000001 5.814,9994.571913921616,4815743.800000001 5.842,10034.892659293098,4844358.05 5.867,10075.085467660496,4844358.05 5.888,10075.91102668911,4857113.800000001 5.908,10076.697273383026,4857113.800000001 5.928,10077.483520076941,4852769.95 5.948,10078.269766770858,4852769.95 5.968,10079.056013464775,4853114.7 5.988,10079.842260158692,4853114.7 6.008,10080.628506852609,4849460.350000001 6.093,10064.370055301755,4849460.350000001 6.121,9849.780800673238,4738450.850000001 6.146,9733.113609040634,4738450.850000001 6.166,9733.899855734551,4660054.7 6.186,9538.606102428468,4660054.7 6.206,9539.392349122385,4563524.7 6.226,9246.068595816301,4563524.7 6.246,9246.854842510218,4427417.4 6.266,8875.091089204136,4427417.4 6.286,8875.877335898052,4262695.850000001 6.371,8506.668884347198,4262695.850000001 6.399,7684.239629718682,3790526.25 6.424,7430.322438086078,3790526.25 6.445,7431.147997114691,3639939.4500000007 6.465,7157.4242438086085,3639939.4500000007 6.485,7158.210490502525,3521621.25 6.505,6845.266737196442,3521621.25 6.525,6846.0529838903585,3380135.8499999996 6.545,6493.899230584276,3380135.8499999996 6.565,6494.685477278193,3229135.35 6.65,6164.697025727339,3229135.35 6.678,5518.737771098822,2841222.65 6.703,5284.430579466218,2841222.65 6.723,5285.216826160135,2704425.8499999996 6.743,5011.493072854051,2704425.8499999996 6.763,5012.279319547968,2592657.9 6.783,4777.765566241885,2592657.9 6.803,4778.5518129358015,2485578.5500000003 6.823,4544.048059629718,2485578.5500000003 6.843,4544.834306323635,2374913.8 6.928,4312.875854772782,2374913.8 6.956,3745.3566001442655,2028715.8499999996 6.981,3530.6494085116615,2028715.8499999996 7.001,3531.4356552055783,1910742.4000000001 7.021,3336.141901899495,1910742.4000000001 7.041,3336.928148593412,1834552.65 7.061,3239.674395287329,1834552.65 7.081,3240.4606419812458,1783391.7499999998 7.101,3143.2068886751626,1783391.7499999998 7.121,3143.9931353690795,1752157.4 7.206,3108.1246838182255,1752157.4 7.234,3030.795429189709,1706443.5499999998 7.259,3031.778237557105,1706443.5499999998 7.279,3032.564484251022,1687551.25 7.299,3033.3507309449387,1687551.25 7.319,3034.1369776388556,1681069.95 7.339,2936.8832243327724,1681069.95 7.359,2937.669471026689,1653489.95 7.379,2899.235717720606,1653489.95 7.399,2900.0219644145227,1629495.3499999999 7.484,2844.543512863669,1629495.3499999999 7.512,2688.774258235153,1514073.0499999998 7.537,2591.7170666025486,1514073.0499999998 7.557,2592.5033132964654,1456775.6 7.577,2475.6495599903824,1456775.6 7.597,2476.435806684299,1394375.8499999999 7.617,2320.362053378216,1394375.8499999999 7.637,2321.1483000721328,1325425.8499999999 7.657,2165.0645467660497,1325425.8499999999 7.677,2165.8507934599666,1242685.8499999999 7.762,1992.7223419091126,1242685.8499999999 7.79,1582.0630872805962,977366.25 7.815,1445.7858956479922,977366.25 7.835,1446.572142341909,867804.7 7.855,1290.498389035826,867804.7 7.875,1291.2846357297428,776308.05 7.895,1115.6008824236596,776308.05 7.915,1116.3871291175765,686673.05 7.935,940.7033758114932,686673.05 7.955,941.4896225054099,598554.9500000001 8.04,787.9711709545563,598554.9500000001 8.068,573.3819163260399,390946.5 8.093,476.3247246934359,390946.5 8.113,477.1109713873527,328133.05000000005 8.133,340.64721808126956,328133.05000000005 8.153,341.4334647751864,277385.85000000003 8.173,283.3897114691032,277385.85000000003 8.193,284.17595816302,236360.6 8.213,245.75220485693677,236360.6 8.233,246.5384515508536,196783.3 8.318,191.05,196783.3 openmotor-0.6.0/test/data/real/p9100/flight.ric000066400000000000000000000024111500530174600210760ustar00rootroot00000000000000data: config: {ambPressure: 101356.50000000001, burnoutThrustThres: 0.1, burnoutWebThres: 0.00025400050800101603, igniterPressure: 0.0, mapDim: 750, maxMassFlux: 1406.4697609001405, maxPressure: 6895000.000000001, minPortThroat: 2.0, timestep: 0.05} grains: - properties: {coreDiameter: 0.044450088900177806, diameter: 0.1301752603505207, inhibitedEnds: Neither, length: 0.7620015240030481} type: BATES - properties: {coreDiameter: 0.05080010160020321, diameter: 0.1301752603505207, inhibitedEnds: Neither, length: 0.7048514097028195} type: BATES - properties: {coreDiameter: 0.05080010160020321, diameter: 0.1301752603505207, finLength: 0.019050038100076203, finWidth: 0.009525019050038101, inhibitedEnds: Neither, length: 0.30480060960121924, numFins: 8} type: Finocyl nozzle: {convAngle: 65.0, divAngle: 15.0, efficiency: 0.9, exit: 0.12065024130048262, throat: 0.045669291338582683, throatLength: 0.008636017272034545} propellant: density: 1680.0037644662068 name: MIT - Cherry Limeade tabs: - {a: 3.517054143255937e-05, k: 1.21, m: 23.67, maxPressure: 6895000.000000001, minPressure: 0.0, n: 0.3273, t: 3500.0} type: !!python/object/apply:uilib.fileIO.fileTypes [3] version: !!python/tuple [0, 4, 0] openmotor-0.6.0/test/data/real/p9100/test.yaml000066400000000000000000000005621500530174600207720ustar00rootroot00000000000000motor: data/real/p9100/flight.ric name: Hermes II Flight Motor data: real: curves: data/real/p9100/72.csv stats: averageThrust: 9100 isp: 226 burnTime: 8.141 propMass: 33.34 regression: - version: 0.4.0 stats: averageThrust: 8841 isp: 226.512 burnTime: 8.35 propMass: 33.435 alerts: [] openmotor-0.6.0/test/data/regression/000077500000000000000000000000001500530174600176105ustar00rootroot00000000000000openmotor-0.6.0/test/data/regression/c/000077500000000000000000000000001500530174600200325ustar00rootroot00000000000000openmotor-0.6.0/test/data/regression/c/motor.ric000066400000000000000000000016151500530174600216740ustar00rootroot00000000000000data: config: {ambPressure: 101324.99674500001, burnoutThrustThres: 0.1, burnoutWebThres: 0.00025400050800101603, igniterPressure: 1034250.0000000001, mapDim: 750, maxMassFlux: 1406.4697609001405, maxPressure: 10342500.000000002, minPortThroat: 2.0, timestep: 0.03} grains: - properties: {diameter: 0.030784861569723144, inhibitedEnds: Neither, length: 0.10160020320040641, slotOffset: 0.0031750063500127004, slotWidth: 0.004699009398018796} type: C Grain nozzle: {convAngle: 65.0, divAngle: 15.0, efficiency: 0.9, exit: 0.012700025400050802, throat: 0.00444500889001778, throatLength: 0.0025400050800101605} propellant: density: 1650.0 name: MIT - Ocean Water tabs: - {a: 1.467e-05, k: 1.25, m: 23.67, maxPressure: 6895000.0, minPressure: 0.0, n: 0.382, t: 3500.0} type: !!python/object/apply:uilib.fileIO.fileTypes [3] version: !!python/tuple [0, 4, 0] openmotor-0.6.0/test/data/regression/c/test.yaml000066400000000000000000000003271500530174600216770ustar00rootroot00000000000000motor: data/regression/c/motor.ric name: C Grain data: regression: - version: 0.4.0 stats: averageThrust: 56 isp: 198.251 burnTime: 3.96 propMass: 0.1148 alerts: [] openmotor-0.6.0/test/data/regression/custom/000077500000000000000000000000001500530174600211225ustar00rootroot00000000000000openmotor-0.6.0/test/data/regression/custom/motor.ric000066400000000000000000000341731500530174600227710ustar00rootroot00000000000000data: config: {ambPressure: 101325.0, burnoutThrustThres: 0.1, burnoutWebThres: 0.00025400050800101603, igniterPressure: 1034250.0, mapDim: 750, maxMassFlux: 1406.4697609001405, maxPressure: 10342500.0, minPortThroat: 2.0, timestep: 0.03} grains: - properties: diameter: 0.06664973329946661 dxfUnit: in inhibitedEnds: Neither length: 0.20320040640081283 points: - - !!python/tuple [-0.6225508926764554, -0.05527554638127638] - !!python/tuple [-0.6210628158070686, -0.07004269285082779] - !!python/tuple [-0.6192245064319097, -0.0847703405334549] - !!python/tuple [-0.6170370012185792, -0.09945018414856337] - !!python/tuple [-0.6145015337547478, -0.11407394537344065] - !!python/tuple [-0.611619533852506, -0.12863337751160628] - !!python/tuple [-0.6083926267420586, -0.14312027014332485] - !!python/tuple [-0.604822632155218, -0.1575264537556598] - !!python/tuple [-0.6009115632992118, -0.1718438043494659] - !!python/tuple [-0.596661625721387, -0.18606424802070812] - !!python/tuple [-0.5920752160654477, -0.20017976551353445] - !!python/tuple [-0.5871549207199285, -0.21418239674253034] - !!python/tuple [-0.581903514359668, -0.22806424528160427] - !!python/tuple [-0.5763239583811006, -0.241817482816978] - !!python/tuple [-0.5704193992322534, -0.2554343535617622] - !!python/tuple [-0.564193166638387, -0.2689071786296331] - !!python/tuple [-0.5576487717242818, -0.2822283603651482] - !!python/tuple [-0.5507899050342296, -0.2953903866282456] - !!python/tuple [-0.5436204344508443, -0.3083858350305271] - !!python/tuple [-0.5361444030138696, -0.3212073771209211] - !!python/tuple [-0.5361444030312968, -0.32120737713633407] - !!python/tuple [-0.507900244728841, -0.29887473307507484] - !!python/tuple [-0.4767408857111102, -0.2808310689631148] - !!python/tuple [-0.4433126854858329, -0.26745067664151534] - !!python/tuple [-0.4083090676574439, -0.25901111457318693] - !!python/tuple [-0.37245613577561476, -0.25568745026130957] - !!python/tuple [-0.33649761128174793, -0.2575486287065576] - !!python/tuple [-0.3011794059957004, -0.2645560422346531] - !!python/tuple [-0.2672341491660274, -0.27656433136127845] - !!python/tuple [-0.23536599004951145, -0.29332440008146976] - !!python/tuple [-0.20623599127029366, -0.3144885830353158] - !!python/tuple [-0.18044841595395283, -0.339617857363978] - !!python/tuple [-0.1585381930917283, -0.368190949655656] - !!python/tuple [-0.1409598211492466, -0.39961514907000706] - !!python/tuple [-0.12807794009965268, -0.4332386023371123] - !!python/tuple [-0.1201597674517888, -0.46836383558757955] - !!python/tuple [-0.11736955517797193, -0.50426222252137] - !!python/tuple [-0.11976518252503565, -0.5401890987924169] - !!python/tuple [-0.1272969553862472, -0.5753992090811992] - !!python/tuple [-0.13980863713953312, -0.6091621664262777] - !!python/tuple [-0.13980863712263003, -0.6091621664104828] - !!python/tuple [-0.12530440520410163, -0.6123102204246197] - !!python/tuple [-0.11072951106799732, -0.615112977735507] - !!python/tuple [-0.09609217385345196, -0.6175688577997744] - !!python/tuple [-0.08140064791277908, -0.6196764756866115] - !!python/tuple [-0.06666321815663966, -0.6214346428587646] - !!python/tuple [-0.05188819538197845, -0.6228423678427806] - !!python/tuple [-0.03708391158536248, -0.6238988567881247] - !!python/tuple [-0.022258715264364442, -0.6246035139148514] - !!python/tuple [-0.007420966709640786, -0.624955941849579] - !!python/tuple [0.007420966709640556, -0.624955941849579] - !!python/tuple [0.022258715264364213, -0.6246035139148514] - !!python/tuple [0.03708391158536225, -0.6238988567881247] - !!python/tuple [0.051888195381978766, -0.6228423678427806] - !!python/tuple [0.06666321815663943, -0.6214346428587646] - !!python/tuple [0.08140064791277941, -0.6196764756866115] - !!python/tuple [0.09609217385345174, -0.6175688577997744] - !!python/tuple [0.11072951106799762, -0.6151129777355069] - !!python/tuple [0.1253044052041014, -0.6123102204246197] - !!python/tuple [0.13980863712263034, -0.6091621664104827] - !!python/tuple [0.13980863713953304, -0.6091621664262775] - !!python/tuple [0.1272969553862471, -0.5753992090811989] - !!python/tuple [0.1197651825250356, -0.5401890987924165] - !!python/tuple [0.11736955517797193, -0.5042622225213698] - !!python/tuple [0.12015976745178888, -0.46836383558757905] - !!python/tuple [0.1280779400996528, -0.43323860233711187] - !!python/tuple [0.14095982114924682, -0.39961514907000656] - !!python/tuple [0.15853819309172842, -0.3681909496556559] - !!python/tuple [0.18044841595395303, -0.33961785736397776] - !!python/tuple [0.20623599127029388, -0.31448858303531557] - !!python/tuple [0.23536599004951173, -0.29332440008146965] - !!python/tuple [0.2672341491660276, -0.2765643313612784] - !!python/tuple [0.3011794059957008, -0.264556042234653] - !!python/tuple [0.336497611281748, -0.2575486287065576] - !!python/tuple [0.3724561357756152, -0.25568745026130957] - !!python/tuple [0.408309067657444, -0.25901111457318693] - !!python/tuple [0.44331268548583336, -0.2674506766415155] - !!python/tuple [0.4767408857111101, -0.2808310689631148] - !!python/tuple [0.5079002447288412, -0.29887473307507495] - !!python/tuple [0.5361444030312973, -0.3212073771363345] - !!python/tuple [0.5361444030138697, -0.32120737712092085] - !!python/tuple [0.5436204344508442, -0.3083858350305273] - !!python/tuple [0.5507899050342294, -0.29539038662824607] - !!python/tuple [0.557648771724282, -0.2822283603651479] - !!python/tuple [0.564193166638387, -0.26890717862963304] - !!python/tuple [0.5704193992322532, -0.2554343535617624] - !!python/tuple [0.5763239583811004, -0.24181748281697873] - !!python/tuple [0.5819035143596679, -0.2280642452816045] - !!python/tuple [0.5871549207199285, -0.2141823967425303] - !!python/tuple [0.5920752160654474, -0.2001797655135352] - !!python/tuple [0.5966616257213869, -0.18606424802070834] - !!python/tuple [0.6009115632992117, -0.17184380434946608] - !!python/tuple [0.6048226321552179, -0.15752645375566005] - !!python/tuple [0.6083926267420586, -0.1431202701433245] - !!python/tuple [0.6116195338525058, -0.12863337751160706] - !!python/tuple [0.6145015337547477, -0.11407394537344114] - !!python/tuple [0.6170370012185792, -0.09945018414856359] - !!python/tuple [0.6192245064319097, -0.08477034053345485] - !!python/tuple [0.6210628158070685, -0.07004269285082856] - !!python/tuple [0.6225508926764554, -0.05527554638127744] - !!python/tuple [0.6225508926920217, -0.05527554636594778] - !!python/tuple [0.586574089809613, -0.056741535227235795] - !!python/tuple [0.550759839168109, -0.05302415443309605] - !!python/tuple [0.5158510598179683, -0.0442005161095764] - !!python/tuple [0.48257188801062517, -0.030453654911527323] - !!python/tuple [0.4516126559539659, -0.01206873121184801] - !!python/tuple [0.423615571787781, 0.010572884171614755] - !!python/tuple [0.399161397829075, 0.037001521007033356] - !!python/tuple [0.3787574034293415, 0.06666895233360351] - !!python/tuple [0.3628268423457721, 0.09895976670152808] - !!python/tuple [0.35170017290435385, 0.13320413406497209] - !!python/tuple [0.3456082030809096, 0.1686917005164965] - !!python/tuple [0.3446773026962676, 0.20468632363516487] - !!python/tuple [0.34892678204220934, 0.2404413427831044] - !!python/tuple [0.35826849131512084, 0.2752150675885015] - !!python/tuple [0.3725086491665619, 0.3082861633270334] - !!python/tuple [0.3913518624399014, 0.3389686140524326] - !!python/tuple [0.41440725370892295, 0.3666259530859229] - !!python/tuple [0.4411965695107529, 0.3906844656719273] - !!python/tuple [0.4711641010785892, 0.410645089928494] - !!python/tuple [0.47116410106322326, 0.4106450899125481] - !!python/tuple [0.46128031067370795, 0.4217172927267359] - !!python/tuple [0.4511363930394782, 0.4325516788492785] - !!python/tuple [0.4407380685636897, 0.4431421385049591] - !!python/tuple [0.4300912011157357, 0.4534826994746589] - !!python/tuple [0.41920179472446806, 0.4635675304632378] - !!python/tuple [0.4080759901923785, 0.4733909443879444] - !!python/tuple [0.3967200616326497, 0.48294740158550037] - !!python/tuple [0.38514041293103013, 0.49223151293605294] - !!python/tuple [0.37334357413452507, 0.5012380429022307] - !!python/tuple [0.361336197768945, 0.5099619124815911] - !!python/tuple [0.34912505508738234, 0.5183982020707945] - !!python/tuple [0.3367170322517372, 0.5265421542398885] - !!python/tuple [0.3241191264494419, 0.5343891764151392] - !!python/tuple [0.3113384419475758, 0.5419348434688952] - !!python/tuple [0.2983821860865955, 0.5491749002150265] - !!python/tuple [0.2852576652159401, 0.5561052638085263] - !!python/tuple [0.27197228057380046, 0.5627220260479289] - !!python/tuple [0.2585335241133817, 0.5690214555792387] - !!python/tuple [0.24494897427800694, 0.5750000000001324] - !!python/tuple [0.24494897427833123, 0.5750000000000663] - !!python/tuple [0.23522576904373343, 0.5403310117115829] - !!python/tuple [0.2206231177268879, 0.5074183691027051] - !!python/tuple [0.20144393292979407, 0.4769448012200295] - !!python/tuple [0.17808606136159166, 0.44954244174526037] - !!python/tuple [0.15103403103711724, 0.4257797162217686] - !!python/tuple [0.12084900038692939, 0.4061495508218458] - !!python/tuple [0.08815711777116483, 0.3910591472481112] - !!python/tuple [0.05363653286364267, 0.3808215358751568] - !!python/tuple [0.018003329337799814, 0.3756490823502856] - !!python/tuple [-0.018003329337799464, 0.37564908235028555] - !!python/tuple [-0.05363653286364254, 0.38082153587515677] - !!python/tuple [-0.08815711777116493, 0.39105914724811125] - !!python/tuple [-0.12084900038692947, 0.4061495508218458] - !!python/tuple [-0.15103403103711716, 0.42577971622176847] - !!python/tuple [-0.17808606136159175, 0.4495424417452605] - !!python/tuple [-0.20144393292979407, 0.47694480122002947] - !!python/tuple [-0.22062311772688784, 0.507418369102705] - !!python/tuple [-0.2352257690437335, 0.5403310117115829] - !!python/tuple [-0.24494897427833123, 0.5750000000000662] - !!python/tuple [-0.24494897427800694, 0.5750000000001327] - !!python/tuple [-0.2585335241133818, 0.5690214555792389] - !!python/tuple [-0.27197228057380035, 0.5627220260479292] - !!python/tuple [-0.28525766521594015, 0.5561052638085265] - !!python/tuple [-0.2983821860865954, 0.5491749002150268] - !!python/tuple [-0.31133844194757576, 0.5419348434688955] - !!python/tuple [-0.32411912644944185, 0.5343891764151394] - !!python/tuple [-0.33671703225173744, 0.5265421542398887] - !!python/tuple [-0.34912505508738245, 0.5183982020707947] - !!python/tuple [-0.36133619776894504, 0.5099619124815913] - !!python/tuple [-0.3733435741345251, 0.5012380429022308] - !!python/tuple [-0.38514041293103024, 0.49223151293605305] - !!python/tuple [-0.39672006163264995, 0.48294740158550054] - !!python/tuple [-0.4080759901923784, 0.47339094438794466] - !!python/tuple [-0.4192017947244681, 0.46356753046323806] - !!python/tuple [-0.4300912011157357, 0.4534826994746592] - !!python/tuple [-0.4407380685636897, 0.44314213850495937] - !!python/tuple [-0.4511363930394782, 0.43255167884927886] - !!python/tuple [-0.4612803106737081, 0.421717292726736] - !!python/tuple [-0.47116410106322343, 0.4106450899125483] - !!python/tuple [-0.47116410107858914, 0.4106450899284941] - !!python/tuple [-0.4411965695107528, 0.3906844656719273] - !!python/tuple [-0.41440725370892295, 0.36662595308592305] - !!python/tuple [-0.39135186243990117, 0.3389686140524325] - !!python/tuple [-0.3725086491665618, 0.3082861633270335] - !!python/tuple [-0.3582684913151208, 0.27521506758850167] - !!python/tuple [-0.34892678204220917, 0.2404413427831043] - !!python/tuple [-0.3446773026962675, 0.20468632363516498] - !!python/tuple [-0.3456082030809095, 0.1686917005164965] - !!python/tuple [-0.3517001729043536, 0.1332041340649724] - !!python/tuple [-0.3628268423457721, 0.09895976670152785] - !!python/tuple [-0.3787574034293415, 0.06666895233360337] - !!python/tuple [-0.39916139782907495, 0.037001521007033245] - !!python/tuple [-0.42361557178778086, 0.0105728841716147] - !!python/tuple [-0.45161265595396594, -0.01206873121184815] - !!python/tuple [-0.482571888010625, -0.030453654911527378] - !!python/tuple [-0.5158510598179684, -0.04420051610957654] - !!python/tuple [-0.5507598391681093, -0.053024154433096216] - !!python/tuple [-0.5865740898096131, -0.056741535227235906] - !!python/tuple [-0.6225508926920218, -0.055275546365947864] type: Custom Grain nozzle: {convAngle: 65.0, divAngle: 15.0, efficiency: 0.9, exit: 0.030480060960121923, throat: 0.011430022860045722, throatLength: 0.0025400050800101605} propellant: density: 1680.0037644662068 name: MIT - Cherry Limeade tabs: - {a: 3.517054143255937e-05, k: 1.21, m: 23.67, maxPressure: 6895000.000000001, minPressure: 0.0, n: 0.3273, t: 3500.0} type: !!python/object/apply:uilib.fileIO.fileTypes [3] version: !!python/tuple [0, 4, 0] openmotor-0.6.0/test/data/regression/custom/test.yaml000066400000000000000000000003531500530174600227660ustar00rootroot00000000000000motor: data/regression/custom/motor.ric name: Custom Grain (Bumps) data: regression: - version: 0.4.0 stats: averageThrust: 642.7 isp: 226.36 burnTime: 3.48 propMass: 1.0165 alerts: [] openmotor-0.6.0/test/data/regression/d/000077500000000000000000000000001500530174600200335ustar00rootroot00000000000000openmotor-0.6.0/test/data/regression/d/motor.ric000066400000000000000000000016101500530174600216700ustar00rootroot00000000000000data: config: {ambPressure: 101324.99674500001, burnoutThrustThres: 0.1, burnoutWebThres: 0.00025400050800101603, igniterPressure: 1034250.0000000001, mapDim: 750, maxMassFlux: 1406.4697609001405, maxPressure: 10342500.000000002, minPortThroat: 2.0, timestep: 0.03} grains: - properties: {diameter: 0.08305816611633224, inhibitedEnds: Top, length: 0.9144018288036577, slotOffset: 0.025400050800101603} type: D Grain nozzle: {convAngle: 65.0, divAngle: 15.0, efficiency: 0.9, exit: 0.05080010160020321, throat: 0.01778003556007112, throatLength: 0.0038100076200152403} propellant: density: 1680.0037644662068 name: MIT - Cherry Limeade tabs: - {a: 3.517054143255937e-05, k: 1.21, m: 23.67, maxPressure: 6895000.000000001, minPressure: 0.0, n: 0.3273, t: 3500.0} type: !!python/object/apply:uilib.fileIO.fileTypes [3] version: !!python/tuple [0, 4, 0] openmotor-0.6.0/test/data/regression/d/test.yaml000066400000000000000000000003621500530174600216770ustar00rootroot00000000000000motor: data/regression/d/motor.ric name: D Grain with top face inhibited data: regression: - version: 0.4.0 stats: averageThrust: 1135 isp: 219.392 burnTime: 13.56 propMass: 7.1695 alerts: [] openmotor-0.6.0/test/data/regression/endburner/000077500000000000000000000000001500530174600215745ustar00rootroot00000000000000openmotor-0.6.0/test/data/regression/endburner/motor.ric000066400000000000000000000015131500530174600234330ustar00rootroot00000000000000data: config: {ambPressure: 101324.99674500001, burnoutThrustThres: 0.1, burnoutWebThres: 0.00025400050800101603, igniterPressure: 1034250.0000000001, mapDim: 750, maxMassFlux: 1406.4697609001405, maxPressure: 10342500.000000002, minPortThroat: 2.0, timestep: 0.03} grains: - properties: {diameter: 0.06350012700025401, length: 0.15240030480060962} type: End Burner nozzle: {convAngle: 65.0, divAngle: 15.0, efficiency: 0.9, exit: 0.01778003556007112, throat: 0.006350012700025401, throatLength: 0.0012700025400050803} propellant: density: 1641.4179858444998 name: RCS - Warp 9 tabs: - {a: 0.0002472181550396159, k: 1.229, m: 23.669, maxPressure: 10342500.000000002, minPressure: 0.0, n: 0.287, t: 2780.0} type: !!python/object/apply:uilib.fileIO.fileTypes [3] version: !!python/tuple [0, 4, 0] openmotor-0.6.0/test/data/regression/endburner/test.yaml000066400000000000000000000003421500530174600234360ustar00rootroot00000000000000motor: data/regression/endburner/motor.ric name: Endburner data: regression: - version: 0.4.0 stats: averageThrust: 217 isp: 205.149 burnTime: 7.29 propMass: 0.7925 alerts: [] openmotor-0.6.0/test/data/regression/inhibited/000077500000000000000000000000001500530174600215475ustar00rootroot00000000000000openmotor-0.6.0/test/data/regression/inhibited/motor.ric000066400000000000000000000016731500530174600234150ustar00rootroot00000000000000data: config: {ambPressure: 101324.99674500001, burnoutThrustThres: 0.1, burnoutWebThres: 0.00025400050800101603, igniterPressure: 1034250.0000000001, mapDim: 750, maxMassFlux: 1406.4697609001405, maxPressure: 10342500.000000002, minPortThroat: 2.0, timestep: 0.03} grains: - properties: {coreDiameter: 0.022225044450088903, diameter: 0.08305816611633224, finLength: 0.012700025400050802, finWidth: 0.004762509525019051, inhibitedEnds: Both, length: 0.45720091440182886, numFins: 6} type: Finocyl nozzle: {convAngle: 65.0, divAngle: 15.0, efficiency: 0.9, exit: 0.05397510795021591, throat: 0.020320040640081284, throatLength: 0.005080010160020321} propellant: density: 1650.0 name: MIT - Ocean Water tabs: - {a: 1.467e-05, k: 1.25, m: 23.67, maxPressure: 6895000.0, minPressure: 0.0, n: 0.382, t: 3500.0} type: !!python/object/apply:uilib.fileIO.fileTypes [3] version: !!python/tuple [0, 4, 0] openmotor-0.6.0/test/data/regression/inhibited/test.yaml000066400000000000000000000003521500530174600234120ustar00rootroot00000000000000motor: data/regression/inhibited/motor.ric name: Inhibited Finocyl data: regression: - version: 0.4.0 stats: averageThrust: 1792 isp: 216.977 burnTime: 4.14 propMass: 3.513 alerts: [] openmotor-0.6.0/test/data/regression/moon/000077500000000000000000000000001500530174600205605ustar00rootroot00000000000000openmotor-0.6.0/test/data/regression/moon/motor.ric000066400000000000000000000016211500530174600224170ustar00rootroot00000000000000data: config: {ambPressure: 101324.99674500001, burnoutThrustThres: 0.1, burnoutWebThres: 0.00025400050800101603, igniterPressure: 1034250.0000000001, mapDim: 750, maxMassFlux: 1406.4697609001405, maxPressure: 10342500.000000002, minPortThroat: 2.0, timestep: 0.03} grains: - properties: {coreDiameter: 0.020320040640081284, coreOffset: 0.01778003556007112, diameter: 0.06477012954025908, inhibitedEnds: Neither, length: 0.5334010668021336} type: Moon Burner nozzle: {convAngle: 65.0, divAngle: 15.0, efficiency: 0.9, exit: 0.038100076200152405, throat: 0.013335026670053342, throatLength: 0.0038100076200152403} propellant: density: 1650.0 name: MIT - Ocean Water tabs: - {a: 1.467e-05, k: 1.25, m: 23.67, maxPressure: 6895000.0, minPressure: 0.0, n: 0.382, t: 3500.0} type: !!python/object/apply:uilib.fileIO.fileTypes [3] version: !!python/tuple [0, 4, 0] openmotor-0.6.0/test/data/regression/moon/test.yaml000066400000000000000000000003361500530174600224250ustar00rootroot00000000000000motor: data/regression/moon/motor.ric name: Moonburner data: regression: - version: 0.4.0 stats: averageThrust: 645 isp: 213.417 burnTime: 8.43 propMass: 2.6077 alerts: [] openmotor-0.6.0/test/data/regression/nozzleErosion/000077500000000000000000000000001500530174600224705ustar00rootroot00000000000000openmotor-0.6.0/test/data/regression/nozzleErosion/motor.ric000066400000000000000000000026001500530174600243250ustar00rootroot00000000000000data: config: {ambPressure: 101325.0, burnoutThrustThres: 0.1, burnoutWebThres: 0.000254, igniterPressure: 1034249.9999999999, mapDim: 750, maxMassFlux: 1406.4697609001405, maxPressure: 10342500.0, minPortThroat: 2.0, timestep: 0.03} grains: - properties: {coreDiameter: 0.028575057150114304, diameter: 0.08305816611633224, inhibitedEnds: Neither, length: 0.15240030480060962} type: BATES - properties: {coreDiameter: 0.028575057150114304, diameter: 0.08305816611633224, inhibitedEnds: Neither, length: 0.15240030480060962} type: BATES - properties: {coreDiameter: 0.028575057150114304, diameter: 0.08305816611633224, inhibitedEnds: Neither, length: 0.15240030480060962} type: BATES - properties: {coreDiameter: 0.028575057150114304, diameter: 0.08305816611633224, inhibitedEnds: Neither, length: 0.15240030480060962} type: BATES nozzle: {convAngle: 65.0, divAngle: 15.0, efficiency: 0.9, erosionCoeff: 4.825985676813436e-11, exit: 0.05715011430022861, slagCoeff: 0.0, throat: 0.020320040640081284, throatLength: 0.0025400050800101605} propellant: density: 1680.0037644662068 name: MIT - Cherry Limeade tabs: - {a: 3.517054143255937e-05, k: 1.21, m: 23.67, maxPressure: 6895000.000000001, minPressure: 0.0, n: 0.3273, t: 3500.0} type: !!python/object/apply:uilib.fileIO.fileTypes [3] version: !!python/tuple [0, 4, 0] openmotor-0.6.0/test/data/regression/nozzleErosion/test.yaml000066400000000000000000000004421500530174600243330ustar00rootroot00000000000000motor: data/regression/nozzleErosion/motor.ric name: Nozzle Erosion data: regression: - version: 0.4.0 stats: averageThrust: 2132 isp: 229.409 burnTime: 5.13 propMass: 4.8929 alerts: ['Initial port/throat ratio of 1.978 was less than 2.0'] openmotor-0.6.0/test/data/regression/nozzleSlag/000077500000000000000000000000001500530174600217405ustar00rootroot00000000000000openmotor-0.6.0/test/data/regression/nozzleSlag/motor.ric000066400000000000000000000017001500530174600235750ustar00rootroot00000000000000data: config: {ambPressure: 101324.99674500001, burnoutThrustThres: 0.1, burnoutWebThres: 0.00025400050800101603, igniterPressure: 1034250.0000000001, mapDim: 750, maxMassFlux: 1406.4697609001405, maxPressure: 10342500.000000002, minPortThroat: 2.0, timestep: 0.03} grains: - properties: {coreDiameter: 0.020320040640081284, diameter: 0.06479552959105919, inhibitedEnds: Neither, length: 0.10795021590043181} type: BATES nozzle: {convAngle: 65.0, divAngle: 15.0, efficiency: 0.8, erosionCoeff: 0.0, exit: 0.01778003556007112, slagCoeff: 1576.1415185246146, throat: 0.007620015240030481, throatLength: 0.0020320040640081282} propellant: density: 1680.0037644662068 name: MIT - Cherry Limeade tabs: - {a: 3.517054143255937e-05, k: 1.21, m: 23.67, maxPressure: 6895000.000000001, minPressure: 0.0, n: 0.3273, t: 3500.0} type: !!python/object/apply:uilib.fileIO.fileTypes [3] version: !!python/tuple [0, 4, 0] openmotor-0.6.0/test/data/regression/nozzleSlag/test.yaml000066400000000000000000000005031500530174600236010ustar00rootroot00000000000000motor: data/regression/nozzleSlag/motor.ric name: Nozzle Slagging data: regression: - version: 0.4.0 stats: averageThrust: 309 isp: 210.987 burnTime: 3.57 propMass: 0.5393 alerts: ["Chamber pressure deviated from propellant's entered ranges. Results may not be accurate."] openmotor-0.6.0/test/data/regression/rodtube/000077500000000000000000000000001500530174600212545ustar00rootroot00000000000000openmotor-0.6.0/test/data/regression/rodtube/motor.ric000066400000000000000000000016571500530174600231240ustar00rootroot00000000000000data: config: {ambPressure: 101324.99674500001, burnoutThrustThres: 0.1, burnoutWebThres: 0.00025400050800101603, igniterPressure: 1034250.0000000001, mapDim: 750, maxMassFlux: 1406.4697609001405, maxPressure: 10342500.000000002, minPortThroat: 2.0, timestep: 0.03} grains: - properties: {coreDiameter: 0.10731521463042927, diameter: 0.1841503683007366, inhibitedEnds: Both, length: 0.9144018288036577, rodDiameter: 0.07683515367030735} type: Rod and Tube nozzle: {convAngle: 65.0, divAngle: 15.0, efficiency: 0.9, exit: 0.12065024130048262, throat: 0.04191008382016764, throatLength: 0.010160020320040642} propellant: density: 1680.0037644662068 name: MIT - Cherry Limeade tabs: - {a: 3.517054143255937e-05, k: 1.21, m: 23.67, maxPressure: 6895000.000000001, minPressure: 0.0, n: 0.3273, t: 3500.0} type: !!python/object/apply:uilib.fileIO.fileTypes [3] version: !!python/tuple [0, 4, 0] openmotor-0.6.0/test/data/regression/rodtube/test.yaml000066400000000000000000000003461500530174600231220ustar00rootroot00000000000000motor: data/regression/rodtube/motor.ric name: Rod and Tube data: regression: - version: 0.4.0 stats: averageThrust: 12346 isp: 236.732 burnTime: 6.39 propMass: 34.1487 alerts: [] openmotor-0.6.0/test/data/regression/simple/000077500000000000000000000000001500530174600211015ustar00rootroot00000000000000openmotor-0.6.0/test/data/regression/simple/motor.ric000066400000000000000000000020561500530174600227430ustar00rootroot00000000000000data: config: {ambPressure: 101324.99674500001, burnoutThrustThres: 0.1, burnoutWebThres: 0.00025400050800101603, igniterPressure: 1034250.0000000001, mapDim: 750, maxMassFlux: 1406.4697609001405, maxPressure: 10342500.000000002, minPortThroat: 2.0, timestep: 0.03} grains: - properties: {coreDiameter: 0.031750063500127004, diameter: 0.08305816611633224, inhibitedEnds: Neither, length: 0.13970027940055882} type: BATES - properties: {coreDiameter: 0.031750063500127004, diameter: 0.08305816611633224, inhibitedEnds: Neither, length: 0.13970027940055882} type: BATES nozzle: {convAngle: 65.0, divAngle: 15.0, efficiency: 0.9, exit: 0.034925069850139705, throat: 0.013970027940055883, throatLength: 0.0038100076200152403} propellant: density: 1680.0037644662068 name: MIT - Cherry Limeade tabs: - {a: 3.517054143255937e-05, k: 1.21, m: 23.67, maxPressure: 6895000.000000001, minPressure: 0.0, n: 0.3273, t: 3500.0} type: !!python/object/apply:uilib.fileIO.fileTypes [3] version: !!python/tuple [0, 4, 0] openmotor-0.6.0/test/data/regression/simple/test.yaml000066400000000000000000000003371500530174600227470ustar00rootroot00000000000000motor: data/regression/simple/motor.ric name: Simple Motor data: regression: - version: 0.4.0 stats: averageThrust: 1065 isp: 231 burnTime: 4.59 propMass: 2.1718 alerts: [] openmotor-0.6.0/test/data/regression/star/000077500000000000000000000000001500530174600205615ustar00rootroot00000000000000openmotor-0.6.0/test/data/regression/star/motor.ric000066400000000000000000000016371500530174600224270ustar00rootroot00000000000000data: config: {ambPressure: 101324.99674500001, burnoutThrustThres: 0.1, burnoutWebThres: 0.00025400050800101603, igniterPressure: 1034250.0000000001, mapDim: 750, maxMassFlux: 1406.4697609001405, maxPressure: 10342500.000000002, minPortThroat: 2.0, timestep: 0.03} grains: - properties: {diameter: 0.04419608839217679, inhibitedEnds: Neither, length: 0.22860045720091443, numPoints: 6, pointLength: 0.012700025400050802, pointWidth: 0.006350012700025401} type: Star Grain nozzle: {convAngle: 65.0, divAngle: 15.0, efficiency: 0.9, exit: 0.025400050800101603, throat: 0.010160020320040642, throatLength: 0.0025400050800101605} propellant: density: 1650.0 name: MIT - Ocean Water tabs: - {a: 1.467e-05, k: 1.25, m: 23.67, maxPressure: 6895000.0, minPressure: 0.0, n: 0.382, t: 3500.0} type: !!python/object/apply:uilib.fileIO.fileTypes [3] version: !!python/tuple [0, 4, 0] openmotor-0.6.0/test/data/regression/star/test.yaml000066400000000000000000000003351500530174600224250ustar00rootroot00000000000000motor: data/regression/star/motor.ric name: Star Core data: regression: - version: 0.4.0 stats: averageThrust: 445 isp: 217.038 burnTime: 2.43 propMass: 0.5153 alerts: [] openmotor-0.6.0/test/data/regression/tabular/000077500000000000000000000000001500530174600212425ustar00rootroot00000000000000openmotor-0.6.0/test/data/regression/tabular/motor.ric000066400000000000000000000032611500530174600231030ustar00rootroot00000000000000data: config: {ambPressure: 101324.99674500001, burnoutThrustThres: 0.1, burnoutWebThres: 0.00025400050800101603, igniterPressure: 1034250.0000000001, mapDim: 750, maxMassFlux: 1406.4697609001405, maxPressure: 10342500.000000002, minPortThroat: 2.0, timestep: 0.03} grains: - properties: {coreDiameter: 0.015875031750063502, diameter: 0.04483108966217933, inhibitedEnds: Neither, length: 0.0793751587503175} type: BATES - properties: {coreDiameter: 0.015875031750063502, diameter: 0.04483108966217933, inhibitedEnds: Neither, length: 0.0793751587503175} type: BATES - properties: {coreDiameter: 0.015875031750063502, diameter: 0.04483108966217933, inhibitedEnds: Neither, length: 0.0793751587503175} type: BATES nozzle: {convAngle: 65.0, divAngle: 15.0, efficiency: 0.9, exit: 0.025400050800101603, throat: 0.009144018288036578, throatLength: 0.0012700025400050803} propellant: density: 1750.0 name: Nakka - KNSB tabs: - {a: 1.9253259619746373e-06, k: 1.1361, m: 39.9, maxPressure: 806715.0, minPressure: 103425.0, n: 0.625, t: 1520.0} - {a: 0.6656608561590813, k: 1.1361, m: 39.9, maxPressure: 1503110.0, minPressure: 806715.0, n: -0.313, t: 1520.0} - {a: 0.009528121181782798, k: 1.1361, m: 39.9, maxPressure: 3792250.0, minPressure: 1503110.0, n: -0.0145, t: 1520.0} - {a: 2.709667768835332e-06, k: 1.1361, m: 39.9, maxPressure: 7032900.0, minPressure: 3792250.0, n: 0.5245, t: 1520.0} - {a: 0.00417677261069904, k: 1.1361, m: 39.9, maxPressure: 10673460.0, minPressure: 7032900.0, n: 0.059, t: 1520.0} type: !!python/object/apply:uilib.fileIO.fileTypes [3] version: !!python/tuple [0, 4, 0] openmotor-0.6.0/test/data/regression/tabular/test.yaml000066400000000000000000000003361500530174600231070ustar00rootroot00000000000000motor: data/regression/tabular/motor.ric name: Tabular data: regression: - version: 0.4.0 stats: averageThrust: 387 isp: 119.342 burnTime: 1.71 propMass: 0.5756 alerts: [] openmotor-0.6.0/test/data/regression/tiny/000077500000000000000000000000001500530174600205735ustar00rootroot00000000000000openmotor-0.6.0/test/data/regression/tiny/motor.ric000066400000000000000000000016211500530174600224320ustar00rootroot00000000000000data: config: {ambPressure: 101324.99674500001, burnoutThrustThres: 0.1, burnoutWebThres: 0.00025400050800101603, igniterPressure: 1034250.0000000001, mapDim: 750, maxMassFlux: 1406.4697609001405, maxPressure: 10342500.000000002, minPortThroat: 2.0, timestep: 0.01} grains: - properties: {coreDiameter: 0.008255016510033021, diameter: 0.025400050800101603, inhibitedEnds: Neither, length: 0.04572009144018289} type: BATES nozzle: {convAngle: 65.0, divAngle: 15.0, efficiency: 0.8, exit: 0.007620015240030481, throat: 0.0030480060960121924, throatLength: 0.0010160020320040641} propellant: density: 1680.0037644662068 name: MIT - Cherry Limeade tabs: - {a: 3.517054143255937e-05, k: 1.21, m: 23.67, maxPressure: 6895000.000000001, minPressure: 0.0, n: 0.3273, t: 3500.0} type: !!python/object/apply:uilib.fileIO.fileTypes [3] version: !!python/tuple [0, 4, 0] openmotor-0.6.0/test/data/regression/tiny/test.yaml000066400000000000000000000003311500530174600224330ustar00rootroot00000000000000motor: data/regression/tiny/motor.ric name: Tiny data: regression: - version: 0.4.0 stats: averageThrust: 45.567 isp: 201.563 burnTime: 1.5 propMass: 0.035 alerts: [] openmotor-0.6.0/test/data/regression/x/000077500000000000000000000000001500530174600200575ustar00rootroot00000000000000openmotor-0.6.0/test/data/regression/x/motor.ric000066400000000000000000000016521500530174600217220ustar00rootroot00000000000000data: config: {ambPressure: 101324.99674500001, burnoutThrustThres: 0.1, burnoutWebThres: 0.00025400050800101603, igniterPressure: 1034250.0000000001, mapDim: 750, maxMassFlux: 1406.4697609001405, maxPressure: 10342500.000000002, minPortThroat: 2.0, timestep: 0.03} grains: - properties: {diameter: 0.1270510541021082, inhibitedEnds: Neither, length: 0.5080010160020321, slotLength: 0.034925069850139705, slotWidth: 0.01778003556007112} type: X Core nozzle: {convAngle: 65.0, divAngle: 15.0, efficiency: 0.9, exit: 0.06985013970027941, throat: 0.025400050800101603, throatLength: 0.005080010160020321} propellant: density: 1680.0037644662068 name: MIT - Cherry Limeade tabs: - {a: 3.517054143255937e-05, k: 1.21, m: 23.67, maxPressure: 6895000.000000001, minPressure: 0.0, n: 0.3273, t: 3500.0} type: !!python/object/apply:uilib.fileIO.fileTypes [3] version: !!python/tuple [0, 4, 0] openmotor-0.6.0/test/data/regression/x/test.yaml000066400000000000000000000003271500530174600217240ustar00rootroot00000000000000motor: data/regression/x/motor.ric name: X Core data: regression: - version: 0.4.0 stats: averageThrust: 2990 isp: 223.582 burnTime: 6.54 propMass: 8.963 alerts: [] openmotor-0.6.0/test/data/tests.yaml000066400000000000000000000012031500530174600174520ustar00rootroot00000000000000real: [ data/real/p9100/test.yaml, data/real/o3100/test.yaml, data/real/o3800/test.yaml, data/real/n2950/test.yaml ] regression: [ data/regression/simple/test.yaml, data/regression/moon/test.yaml, data/regression/tiny/test.yaml, data/regression/endburner/test.yaml, data/regression/tabular/test.yaml, data/regression/inhibited/test.yaml, data/regression/c/test.yaml, data/regression/d/test.yaml, data/regression/x/test.yaml, data/regression/rodtube/test.yaml, data/regression/custom/test.yaml, data/regression/star/test.yaml, data/regression/nozzleErosion/test.yaml, data/regression/nozzleSlag/test.yaml ] openmotor-0.6.0/test/unit.py000066400000000000000000000001231500530174600160440ustar00rootroot00000000000000from unit import * import unittest if __name__ == "__main__": unittest.main()openmotor-0.6.0/test/unit/000077500000000000000000000000001500530174600154765ustar00rootroot00000000000000openmotor-0.6.0/test/unit/__init__.py000066400000000000000000000001631500530174600176070ustar00rootroot00000000000000from .geometry import * from .motor import * from .nozzle import * from .propellant import * from .grains import * openmotor-0.6.0/test/unit/geometry.py000066400000000000000000000037461500530174600177150ustar00rootroot00000000000000import unittest import motorlib.geometry class TestGeometryMethods(unittest.TestCase): def test_circleArea(self): self.assertAlmostEqual(motorlib.geometry.circleArea(0.5), 0.19634954) def test_circlePerimeter(self): self.assertAlmostEqual(motorlib.geometry.circlePerimeter(0.5), 1.57079633) def test_circleDiameterFromArea(self): self.assertAlmostEqual(motorlib.geometry.circleDiameterFromArea(0.19634954), 0.5) def test_tubeArea(self): self.assertAlmostEqual(motorlib.geometry.tubeArea(0.5, 2), 3.14159265) def test_cylinderArea(self): self.assertAlmostEqual(motorlib.geometry.cylinderArea(0.5, 2), 3.53429174) def test_cylinderVolume(self): self.assertAlmostEqual(motorlib.geometry.cylinderVolume(0.5, 2), 0.39269908) def test_frustumLateralSurfaceArea(self): self.assertAlmostEqual(motorlib.geometry.frustumLateralSurfaceArea(2, 3, 5), 39.46576927) def test_frustumVolume(self): # Cone case self.assertAlmostEqual(motorlib.geometry.frustumVolume(0, 10, 10), 261.79938779) # Frustum case self.assertAlmostEqual(motorlib.geometry.frustumVolume(10, 30, 50), 17016.96020694) def test_splitFrustum(self): # Simple case self.assertAlmostEqual(motorlib.geometry.splitFrustum(1, 2, 4, 2), ((1, 1.5, 2), (1.5, 2, 2))) # Inverted case self.assertAlmostEqual(motorlib.geometry.splitFrustum(2, 1, 4, 2), ((2, 1.5, 2), (1.5, 1, 2))) # Make sure that the connected ends of the frustums line up upper, lower = motorlib.geometry.splitFrustum(1, 3, 3, 1) self.assertEqual(upper[1], lower[0]) def test_dist(self): self.assertEqual(motorlib.geometry.dist((5, 5), (5, 5)), 0) self.assertEqual(motorlib.geometry.dist((5, 5), (6, 5)), 1) self.assertEqual(motorlib.geometry.dist((5, 5), (5, 6)), 1) self.assertEqual(motorlib.geometry.dist((0, 0), (-1, -1)), 2 ** 0.5) if __name__ == '__main__': unittest.main() openmotor-0.6.0/test/unit/grains/000077500000000000000000000000001500530174600167615ustar00rootroot00000000000000openmotor-0.6.0/test/unit/grains/__init__.py000066400000000000000000000001341500530174600210700ustar00rootroot00000000000000from .conical import * from .bates import * from .conical import * from .endBurner import * openmotor-0.6.0/test/unit/grains/bates.py000066400000000000000000000032511500530174600204320ustar00rootroot00000000000000import unittest import motorlib.grains from motorlib.simResult import SimAlertLevel, SimAlertType class BatesGrainMethods(unittest.TestCase): def test_getDetailsString(self): grain = motorlib.grains.BatesGrain() grain.setProperties({ 'length': 0.1, 'diameter': 0.05, 'coreDiameter': 0.02 }) self.assertEqual(grain.getDetailsString(), 'Length: 0.1 m, Core: 0.02 m') self.assertEqual(grain.getDetailsString('cm'), 'Length: 10 cm, Core: 2 cm') def test_getGeometryErrors(self): grain = motorlib.grains.BatesGrain() grain.setProperties({ 'length': 0.1, 'diameter': 0.05, 'coreDiameter': 0.02 }) self.assertEqual(grain.getGeometryErrors(), []) grain.setProperties({ 'length': 0.1, 'diameter': 0.05, 'coreDiameter': 0.0 }) errors = grain.getGeometryErrors() self.assertEqual(len(errors), 1) self.assertEqual(errors[0].level, SimAlertLevel.ERROR) self.assertEqual(errors[0].type, SimAlertType.GEOMETRY) self.assertEqual(errors[0].description, 'Core diameter must not be 0') grain.setProperties({ 'length': 0.1, 'diameter': 0.05, 'coreDiameter': 0.7 }) errors = grain.getGeometryErrors() self.assertEqual(len(errors), 1) self.assertEqual(errors[0].level, SimAlertLevel.ERROR) self.assertEqual(errors[0].type, SimAlertType.GEOMETRY) self.assertEqual(errors[0].description, 'Core diameter must be less than grain diameter') if __name__ == '__main__': unittest.main() openmotor-0.6.0/test/unit/grains/conical.py000066400000000000000000000110621500530174600207430ustar00rootroot00000000000000import unittest import motorlib.grains class ConicalGrainMethods(unittest.TestCase): def test_isCoreInverted(self): inverted = motorlib.grains.ConicalGrain() inverted.setProperties({ 'length': 0.1, 'diameter': 0.01, 'forwardCoreDiameter': 0.0025, 'aftCoreDiameter': 0.002, }) regular = motorlib.grains.ConicalGrain() regular.setProperties({ 'length': 0.1, 'diameter': 0.01, 'forwardCoreDiameter': 0.003, 'aftCoreDiameter': 0.004, }) self.assertEqual(inverted.isCoreInverted(), True) self.assertEqual(regular.isCoreInverted(), False) def test_getFrustumInfo(self): properties = { 'length': 0.1, 'diameter': 0.01, 'forwardCoreDiameter': 0.0025, 'aftCoreDiameter': 0.002, 'inhibitedEnds': 'Both' } testGrain = motorlib.grains.ConicalGrain() testGrain.setProperties(properties) unregressed = testGrain.getFrustumInfo(0) self.assertAlmostEqual(unregressed[0], properties['aftCoreDiameter']) self.assertAlmostEqual(unregressed[1], properties['forwardCoreDiameter']) self.assertAlmostEqual(unregressed[2], properties['length']) beforeHittingWall = testGrain.getFrustumInfo(0.001) self.assertAlmostEqual(beforeHittingWall[0], 0.003999993750029297) self.assertAlmostEqual(beforeHittingWall[1], 0.004499993750029296) self.assertAlmostEqual(beforeHittingWall[2], properties['length']) # Length hasn't changed yet hitWall = testGrain.getFrustumInfo(0.0038) self.assertAlmostEqual(hitWall[0], 0.009599976250111327) self.assertAlmostEqual(hitWall[1], properties['diameter']) # This end has burned all the way to the wall self.assertAlmostEqual(hitWall[2], 0.08000468749267584) def test_getSurfaceAreaAtRegression(self): properties = { 'length': 0.1, 'diameter': 0.01, 'forwardCoreDiameter': 0.0025, 'aftCoreDiameter': 0.002, 'inhibitedEnds': 'Both' } forwardFaceArea = 7.36310778e-05 aftFaceArea = 7.53982236e-05 lateralArea = 0.00070686055598659 testGrain = motorlib.grains.ConicalGrain() testGrain.setProperties(properties) self.assertAlmostEqual(testGrain.getSurfaceAreaAtRegression(0), lateralArea) self.assertAlmostEqual(testGrain.getSurfaceAreaAtRegression(0.001), 0.0013351790867045452) # For when uninibited conical grains work: """testGrain.setProperty('inhibitedEnds', 'Top') self.assertAlmostEqual(testGrain.getSurfaceAreaAtRegression(0), lateralArea + aftFaceArea) testGrain.setProperty('inhibitedEnds', 'Bottom') self.assertAlmostEqual(testGrain.getSurfaceAreaAtRegression(0), lateralArea + forwardFaceArea) testGrain.setProperty('inhibitedEnds', 'Neither') self.assertAlmostEqual(testGrain.getSurfaceAreaAtRegression(0), lateralArea + forwardFaceArea + aftFaceArea)""" def test_getVolumeAtRegression(self): properties = { 'length': 0.1, 'diameter': 0.01, 'forwardCoreDiameter': 0.0025, 'aftCoreDiameter': 0.002, 'inhibitedEnds': 'Both' } testGrain = motorlib.grains.ConicalGrain() testGrain.setProperties(properties) self.assertAlmostEqual(testGrain.getVolumeAtRegression(0), 7.454737567580781e-06) self.assertAlmostEqual(testGrain.getVolumeAtRegression(0.001), 6.433724127569215e-06) self.assertAlmostEqual(testGrain.getVolumeAtRegression(0.0038), 2.480054353678591e-07) def test_getWebLeft(self): properties = { 'length': 0.1, 'diameter': 0.01, 'forwardCoreDiameter': 0.0025, 'aftCoreDiameter': 0.002, 'inhibitedEnds': 'Both' } testGrain = motorlib.grains.ConicalGrain() testGrain.setProperties(properties) self.assertAlmostEqual(testGrain.getWebLeft(0), 0.004) self.assertAlmostEqual(testGrain.getWebLeft(0.001), 0.003) self.assertAlmostEqual(testGrain.getWebLeft(0.0038), 0.0002) testGrain.setProperty('forwardCoreDiameter', 0.002) testGrain.setProperty('aftCoreDiameter', 0.0025) self.assertAlmostEqual(testGrain.getWebLeft(0), 0.004) self.assertAlmostEqual(testGrain.getWebLeft(0.001), 0.003) self.assertAlmostEqual(testGrain.getWebLeft(0.0038), 0.0002) if __name__ == '__main__': unittest.main() openmotor-0.6.0/test/unit/grains/endBurner.py000066400000000000000000000047531500530174600212700ustar00rootroot00000000000000import unittest import motorlib.grains class EndBurningGrainMethods(unittest.TestCase): def test_getSurfaceAreaAtRegression(self): grain = motorlib.grains.EndBurningGrain() grain.setProperties({ 'length': 0.1, 'diameter': 0.01, }) self.assertAlmostEqual(grain.getSurfaceAreaAtRegression(0), 7.853981633974483e-05) self.assertAlmostEqual(grain.getSurfaceAreaAtRegression(0.05), 7.853981633974483e-05) grain.setProperties({ 'length': 0.1, 'diameter': 0.02, }) self.assertAlmostEqual(grain.getSurfaceAreaAtRegression(0), 0.0003141592653589793) self.assertAlmostEqual(grain.getSurfaceAreaAtRegression(0.05), 0.0003141592653589793) def test_getVolumeAtRegression(self): grain = motorlib.grains.EndBurningGrain() grain.setProperties({ 'length': 0.1, 'diameter': 0.01, }) self.assertAlmostEqual(grain.getVolumeAtRegression(0), 7.853981633974484e-06) self.assertAlmostEqual(grain.getVolumeAtRegression(0.05), 3.926990816987242e-06) grain.setProperties({ 'length': 0.2, 'diameter': 0.02, }) self.assertAlmostEqual(grain.getVolumeAtRegression(0), 6.283185307179587e-05) self.assertAlmostEqual(grain.getVolumeAtRegression(0.05), 4.7123889803846906e-05) def test_getWebLeft(self): grain = motorlib.grains.EndBurningGrain() grain.setProperties({ 'length': 0.1, 'diameter': 0.01, }) self.assertAlmostEqual(grain.getWebLeft(0), 0.1) self.assertAlmostEqual(grain.getWebLeft(0.05), 0.1 - 0.05) grain.setProperties({ 'length': 0.2, 'diameter': 0.01, }) self.assertAlmostEqual(grain.getWebLeft(0), 0.2) self.assertAlmostEqual(grain.getWebLeft(0.07), 0.2 - 0.07) def test_getEndPositions(self): grain = motorlib.grains.EndBurningGrain() grain.setProperties({ 'length': 0.1, 'diameter': 0.01, }) self.assertAlmostEqual(grain.getEndPositions(0), (0, 0.1)) self.assertAlmostEqual(grain.getEndPositions(0.05), (0, 0.1 - 0.05)) grain.setProperties({ 'length': 0.2, 'diameter': 0.01, }) self.assertAlmostEqual(grain.getEndPositions(0), (0, 0.2)) self.assertAlmostEqual(grain.getEndPositions(0.07), (0, 0.2 - 0.07)) if __name__ == '__main__': unittest.main() openmotor-0.6.0/test/unit/motor.py000066400000000000000000000032641500530174600172150ustar00rootroot00000000000000import unittest import motorlib.motor import motorlib.grains import motorlib.propellant class TestMotorMethods(unittest.TestCase): def test_calcKN(self): tm = motorlib.motor.Motor() tc = motorlib.motor.MotorConfig() bg = motorlib.grains.BatesGrain() bg.setProperties({ 'diameter': 0.083058, 'length': 0.1397, 'coreDiameter': 0.05, 'inhibitedEnds': 'Neither' }) tm.grains.append(bg) bg.simulationSetup(tc) tm.nozzle.setProperties({'throat': 0.01428}) self.assertAlmostEqual(tm.calcKN([0], 0), 180, 0) self.assertAlmostEqual(tm.calcKN([0.0025], 0), 183, 0) self.assertAlmostEqual(tm.calcKN([0.005], 0), 185, 0) def test_calcPressure(self): tm = motorlib.motor.Motor() tc = motorlib.motor.MotorConfig() bg = motorlib.grains.BatesGrain() bg.setProperties({ 'diameter': 0.083058, 'length': 0.1397, 'coreDiameter': 0.05, 'inhibitedEnds': 'Neither' }) tm.grains.append(bg) bg.simulationSetup(tc) tm.nozzle.setProperties({'throat': 0.01428}) tm.propellant = motorlib.propellant.Propellant() tm.propellant.setProperties({ 'name': 'KNSU', 'density': 1890, 'tabs': [ { 'a': 0.000101, 'n': 0.319, 't': 1720, 'm': 41.98, 'k': 1.133 } ] }) self.assertAlmostEqual(tm.calcIdealPressure([0], 0), 4050196, 0) if __name__ == '__main__': unittest.main() openmotor-0.6.0/test/unit/nozzle.py000066400000000000000000000023631500530174600173750ustar00rootroot00000000000000import unittest import motorlib.nozzle class TestNozzleMethods(unittest.TestCase): def test_expansionRatioFromPressureRatio(self): self.assertAlmostEqual(motorlib.nozzle.eRatioFromPRatio(1.15, 0.0156), 0.10650602) def test_expansionRatio(self): nozzle = motorlib.nozzle.Nozzle() nozzle.setProperties({ 'throat': 0.1, 'exit': 0.2, }) self.assertAlmostEqual(nozzle.calcExpansion(), 4.0) nozzle.setProperties({ 'throat': 0.1, 'exit': 0.3, }) self.assertAlmostEqual(nozzle.calcExpansion(), 9.0) def test_getExitPressure(self): nozzle = motorlib.nozzle.Nozzle() nozzle.setProperties({ 'throat': 0.1, 'exit': 0.2, }) self.assertAlmostEqual(nozzle.getExitPressure(1.25, 5e6), 197579.76030584713) nozzle.setProperties({ 'throat': 0.1, 'exit': 0.3, }) self.assertAlmostEqual(nozzle.getExitPressure(1.25, 5e6), 63174.14300487552) self.assertAlmostEqual(nozzle.getExitPressure(1.2, 5e6), 72087.22454540983) self.assertAlmostEqual(nozzle.getExitPressure(1.2, 6e6), 86504.66945449157) if __name__ == '__main__': unittest.main() openmotor-0.6.0/test/unit/propellant.py000066400000000000000000000106011500530174600202260ustar00rootroot00000000000000import unittest import motorlib.propellant class TestPropellantMethods(unittest.TestCase): def test_proper_propellant_ranges(self): props = { 'name': 'TestProp', 'density': 1650, 'tabs': [ { 'minPressure': 0, 'maxPressure': 6.895e+06, 'a': 1.467e-05, 'n': 0.382, 't': 3500, 'm': 23.67, 'k': 1.25 } ] } testProp = motorlib.propellant.Propellant(props) self.assertEqual(len(testProp.getErrors()), 0) def test_backwards_pressure_ranges(self): props = { 'name': 'TestProp', 'density': 1650, 'tabs': [ { 'minPressure': 6.895e+06, 'maxPressure': 0, 'a': 1.467e-05, 'n': 0.382, 't': 3500, 'm': 23.67, 'k': 1.25 }, { 'minPressure': 6.895e+06, 'maxPressure': 1.379e+07, 'a': 1.467e-05, 'n': 0.382, 't': 3500, 'm': 23.67, 'k': 1.25 } ] } testProp = motorlib.propellant.Propellant(props) self.assertIn('Tab #1 has reversed pressure limits.', [err.description for err in testProp.getErrors()]) def test_overlapping_pressure_ranges(self): props = { 'name': 'TestProp', 'density': 1650, 'tabs': [ { 'minPressure': 0, 'maxPressure': 6.895e+06, 'a': 1.467e-05, 'n': 0.382, 't': 3500, 'm': 23.67, 'k': 1.25 }, { 'minPressure': 6e+06, 'maxPressure': 1.379e+07, 'a': 1.467e-05, 'n': 0.382, 't': 3500, 'm': 23.67, 'k': 1.25 } ] } testProp = motorlib.propellant.Propellant(props) self.assertIn('Tabs #1 and #2 have overlapping ranges.', [err.description for err in testProp.getErrors()]) def test_get_combustion_properties_in_range(self): props = { 'name': 'TestProp', 'density': 1650, 'tabs': [ { 'minPressure': 0, 'maxPressure': 6.895e+06, 'a': 1.467e-05, 'n': 0.382, 't': 3500, 'm': 23.67, 'k': 1.25 }, { 'minPressure': 6.895e+06, 'maxPressure': 1.379e+07, 'a': 1e-05, 'n': 0.3, 't': 3500, 'm': 23.67, 'k': 1.25 } ] } testProp = motorlib.propellant.Propellant(props) self.assertEqual(testProp.getCombustionProperties(8e5), (1.467e-05, 0.382, 1.25, 3500, 23.67)) self.assertEqual(testProp.getCombustionProperties(8e6), (1e-05, 0.3, 1.25, 3500, 23.67)) def test_get_combustion_properties_out_of_range(self): props = { 'name': 'TestProp', 'density': 1650, 'tabs': [ { 'minPressure': 0, 'maxPressure': 6.895e+06, 'a': 1.467e-05, 'n': 0.382, 't': 3500, 'm': 23.67, 'k': 1.25 }, { 'minPressure': 7e+06, 'maxPressure': 1.379e+07, 'a': 1e-05, 'n': 0.3, 't': 3500, 'm': 23.67, 'k': 1.25 } ] } testProp = motorlib.propellant.Propellant(props) self.assertEqual(testProp.getCombustionProperties(6.9e5), (1.467e-05, 0.382, 1.25, 3500, 23.67)) self.assertEqual(testProp.getCombustionProperties(8e10), (1e-05, 0.3, 1.25, 3500, 23.67)) if __name__ == '__main__': unittest.main() openmotor-0.6.0/uilib/000077500000000000000000000000001500530174600146445ustar00rootroot00000000000000openmotor-0.6.0/uilib/__init__.py000066400000000000000000000000531500530174600167530ustar00rootroot00000000000000import matplotlib matplotlib.use('Qt5Agg') openmotor-0.6.0/uilib/converter.py000066400000000000000000000061171500530174600172320ustar00rootroot00000000000000from PyQt6.QtCore import QObject from PyQt6.QtWidgets import QFileDialog, QApplication from PyQt6.QtCore import pyqtSignal class Converter(QObject): def __init__(self, manager, name, description, fileTypes): super().__init__() self.manager = manager self.name = name self.description = description self.fileTypes = fileTypes self.menu = None def getFileTypeString(self): return ";;".join([self.fileTypes[key] + " (*" + key + ")" for key in self.fileTypes.keys()]) def showFileSelector(self): pass def exec(self): pass class Exporter(Converter): def __init__(self, manager, name, description, fileTypes, confirmOverwrite=True): super().__init__(manager, name, description, fileTypes) self.requirements = [] self.reqNotMet = "Requirement not met!" self.confirmOverwrite = confirmOverwrite def showFileSelector(self): """Open a dialog to pick the file to save to""" title = 'Export {}'.format(self.name) types = self.getFileTypeString() if not self.confirmOverwrite: path = QFileDialog.getSaveFileName(None, title, '', types, options=QFileDialog.Option.DontConfirmOverwrite)[0] else: path = QFileDialog.getSaveFileName(None, title, '', types)[0] if path == '' or path is None: return if not any([path.endswith(ext) for ext in self.fileTypes.keys()]): path += list(self.fileTypes.keys())[0] # if they didn't specify a file type, just pick one return path def exec(self): if self.checkRequirements(): config = None if self.menu is not None: config = self.menu.exec() if config is None: return path = self.showFileSelector() if path is None: return try: self.doConversion(path, config) except Exception as error: QApplication.instance().outputException(error, "Export to '{}' failed:".format(path)) else: self.manager.app.outputMessage(self.reqNotMet) def doConversion(self, path, config): pass def checkRequirements(self): for req in self.requirements: pass class Importer(Converter): def __init__(self, manager, name, description, fileTypes): super().__init__(manager, name, description, fileTypes) def showFileSelector(self): """Open a dialog to pick the file to load""" if self.manager.unsavedCheck(): path = QFileDialog.getOpenFileName(None, 'Import {}'.format(self.name), '', self.getFileTypeString())[0] if path != '': return path return None def doConversion(self, path): pass def exec(self): path = self.showFileSelector() if path is None: return try: self.doConversion(path) except Exception as error: QApplication.instance().outputException(error, "Import of '{}' failed:".format(path)) openmotor-0.6.0/uilib/converters/000077500000000000000000000000001500530174600170365ustar00rootroot00000000000000openmotor-0.6.0/uilib/converters/__init__.py000066400000000000000000000003161500530174600211470ustar00rootroot00000000000000from .burnsimImporter import BurnSimImporter from .engExporter import EngExporter from .burnsimExporter import BurnSimExporter from .csvExporter import CsvExporter from .imageExporter import ImageExporter openmotor-0.6.0/uilib/converters/burnsimExporter.py000066400000000000000000000141241500530174600226220ustar00rootroot00000000000000import xml.etree.ElementTree as ET from motorlib.properties import PropertyCollection, FloatProperty, StringProperty import motorlib from motorlib.constants import standardGravity from ..converter import Exporter # Attributes for the root element of the BSX file bsxMotorAttrib = { 'Name': '', 'DiameterMM': '0', 'Length': '0', 'Delays': '0', 'HardwareWeight': '0', 'MFGCode': '', 'ThrustMethod': '1', 'ThrustCoefGiven': '1.2', 'UnitsLinear': '1' } # oM class -> BS type for grains we can export EXPORT_TYPES = { motorlib.grains.BatesGrain: '1', motorlib.grains.EndBurningGrain: '1', motorlib.grains.DGrain: '2', motorlib.grains.MoonBurner: '3', motorlib.grains.CGrain: '5', motorlib.grains.XCore: '6', motorlib.grains.Finocyl: '7' } def mToIn(value): """Converts a float containing meters to a string of inches""" return str(motorlib.units.convert(value, 'm', 'in')) class BurnSimExporter(Exporter): def __init__(self, manager): super().__init__(manager, 'BurnSim File', 'Exports the current motor for use in BurnSim 3.0', {'.bsx': 'BurnSim Files'}) self.reqNotMet = "Current motor must have a propellant set to export as a BurnSim file." def doConversion(self, path, config): """Takes a path to a bsx file and motor object and dumps the BSX version of the motor to the file""" errors = '' motor = self.manager.motor outMotor = ET.Element('Motor') outMotor.attrib = bsxMotorAttrib outNozzle = ET.SubElement(outMotor, 'Nozzle') outNozzle.attrib['ThroatDia'] = mToIn(motor.nozzle.getProperty('throat')) outNozzle.attrib['ExitDia'] = mToIn(motor.nozzle.getProperty('exit')) outNozzle.attrib['NozzleEfficiency'] = str(int(motor.nozzle.getProperty('efficiency') * 100)) outNozzle.attrib['AmbientPressure'] = '14.7' for gid, grain in enumerate(motor.grains): if type(grain) in EXPORT_TYPES: outGrain = ET.SubElement(outMotor, 'Grain') outGrain.attrib['Type'] = EXPORT_TYPES[type(grain)] outGrain.attrib['Propellant'] = motor.propellant.getProperty('name') outGrain.attrib['Diameter'] = mToIn(grain.getProperty('diameter')) outGrain.attrib['Length'] = mToIn(grain.getProperty('length')) if isinstance(grain, motorlib.grains.EndBurningGrain): outGrain.attrib['CoreDiameter'] = '0' outGrain.attrib['EndsInhibited'] = '1' else: ends = grain.getProperty('inhibitedEnds') if ends == 'Neither': outGrain.attrib['EndsInhibited'] = '0' elif ends in ('Top', 'Bottom'): outGrain.attrib['EndsInhibited'] = '1' else: outGrain.attrib['EndsInhibited'] = '2' # Grains with core diameter if type(grain) in (motorlib.grains.BatesGrain, motorlib.grains.Finocyl, motorlib.grains.MoonBurner): outGrain.attrib['CoreDiameter'] = mToIn(grain.getProperty('coreDiameter')) if isinstance(grain, motorlib.grains.DGrain): outGrain.attrib['EdgeOffset'] = mToIn(grain.getProperty('slotOffset')) elif isinstance(grain, motorlib.grains.MoonBurner): outGrain.attrib['CoreOffset'] = mToIn(grain.getProperty('coreOffset')) elif isinstance(grain, motorlib.grains.CGrain): outGrain.attrib['SlotWidth'] = mToIn(grain.getProperty('slotWidth')) radius = motor.grains[-1].getProperty('diameter') / 2 outGrain.attrib['SlotDepth'] = mToIn(grain.getProperty('slotOffset') - radius) elif isinstance(grain, motorlib.grains.XCore): outGrain.attrib['SlotWidth'] = mToIn(grain.getProperty('slotWidth')) outGrain.attrib['CoreDiameter'] = mToIn(2 * grain.getProperty('slotLength')) elif isinstance(grain, motorlib.grains.Finocyl): outGrain.attrib['FinCount'] = str(grain.getProperty('numFins')) outGrain.attrib['FinLength'] = mToIn(grain.getProperty('finLength')) outGrain.attrib['FinWidth'] = mToIn(grain.getProperty('finWidth')) outProp = ET.SubElement(outGrain, 'Propellant') outProp.attrib['Name'] = motor.propellant.getProperty('name') # Have to pick a single pressure for output exportPressure = 5.17e6 ballA, ballN, gamma, _, m = motor.propellant.getCombustionProperties(exportPressure) ballA = motorlib.units.convert(ballA * (6895**ballN), 'm/(s*Pa^n)', 'in/(s*psi^n)') outProp.attrib['BallisticA'] = str(ballA) outProp.attrib['BallisticN'] = str(ballN) density = str(motorlib.units.convert(motor.propellant.getProperty('density'), 'kg/m^3', 'lb/in^3')) outProp.attrib['Density'] = density outProp.attrib['SpecificHeatRatio'] = str(gamma) outProp.attrib['MolarMass'] = str(m) outProp.attrib['CombustionTemp'] = '0' # Unclear if this is used anyway ispStar = motor.propellant.getCStar(exportPressure) / standardGravity outProp.attrib['ISPStar'] = str(ispStar) # Add empty notes section ET.SubElement(outProp, 'Notes') else: errors += "Can't export grain #" + str(gid + 1) + " because it has type " + grain.geomName + ".\n" # Add empty notes section ET.SubElement(outMotor, 'MotorNotes') if errors != '': self.manager.app.outputMessage(errors + '\nThe rest of the motor will be exported.') with open(path, 'wb') as outFile: outFile.write(ET.tostring(outMotor)) def checkRequirements(self): return self.manager.motor is not None and self.manager.motor.propellant is not None openmotor-0.6.0/uilib/converters/burnsimImporter.py000066400000000000000000000156141500530174600226200ustar00rootroot00000000000000import xml.etree.ElementTree as ET import motorlib from motorlib.constants import gasConstant, standardGravity from ..converter import Importer # BS type -> oM class for all grains we can import SUPPORTED_GRAINS = { '1': motorlib.grains.BatesGrain, '2': motorlib.grains.DGrain, '3': motorlib.grains.MoonBurner, '5': motorlib.grains.CGrain, '6': motorlib.grains.XCore, '7': motorlib.grains.Finocyl } # BS type -> label for grains we know about but can't import UNSUPPORTED_GRAINS = { '4': 'Star', '8': 'Tablet', '9': 'Pie Segment' } def inToM(value): """Converts a string containing a value in inches to a float of meters""" return motorlib.units.convert(float(value), 'in', 'm') def importPropellant(node): errors = '' propellant = motorlib.propellant.Propellant() propTab = motorlib.propellant.PropellantTab() propellant.setProperty('name', node.attrib['Name']) ballN = float(node.attrib['BallisticN']) ballA = float(node.attrib['BallisticA']) * 1/(6895**ballN) propTab.setProperty('n', ballN) # Conversion only does in/s to m/s, the rest is handled above ballA = motorlib.units.convert(ballA, 'in/(s*psi^n)', 'm/(s*Pa^n)') propTab.setProperty('a', ballA) density = motorlib.units.convert(float(node.attrib['Density']), 'lb/in^3', 'kg/m^3') propellant.setProperty('density', density) gamma = float(node.attrib['SpecificHeatRatio']) propTab.setProperty('k', gamma) impMolarMass = node.attrib['MolarMass'] # If the user didn't set molar mass, it'll come through as 0. If this happens, use a sensible default if impMolarMass == '0': molarMass = 23.67 errors = "Propellant didn't specify molar mass, using default.\n" else: molarMass = float(impMolarMass) propTab.setProperty('m', molarMass) # Burnsim doesn't provide temperature (always 0), but we can back it out using things they do provide cstar = float(node.attrib['ISPStar']) * standardGravity temperature = (cstar ** 2) * gamma * ((2 / (gamma + 1))**((gamma + 1) / (gamma - 1))) / gasConstant * molarMass propTab.setProperty('t', temperature) propTab.setProperty('minPressure', 0) propTab.setProperty('maxPressure', 6.895e+06) propellant.setProperty('tabs', [propTab.getProperties()]) return propellant, errors class BurnSimImporter(Importer): def __init__(self, manager): super().__init__(manager, 'BurnSim File', 'Loads motor files for BurnSim 3.0', {'.bsx': 'BurnSim Files'}) def doConversion(self, path): motor = motorlib.motor.Motor() motor.config.setProperties(self.manager.preferences.general.getProperties()) tree = ET.parse(path) root = tree.getroot() errors = '' propSet = False if root.find('Grain') is None: errors += "Motor contains no grains, but the propellant and nozzle can still be imported.\n" for child in root: if child.tag == 'Nozzle': motor.nozzle.setProperty('throat', inToM(child.attrib['ThroatDia'])) motor.nozzle.setProperty('exit', inToM(child.attrib['ExitDia'])) motor.nozzle.setProperty('efficiency', float(child.attrib['NozzleEfficiency']) / 100) motor.nozzle.setProperty('divAngle', 15) motor.nozzle.setProperty('convAngle', 45) errors += 'Nozzle angles not specified, assumed to be 15° and 45°.\n' if child.tag == 'Grain': if child.attrib['Type'] in SUPPORTED_GRAINS: motor.grains.append(SUPPORTED_GRAINS[child.attrib['Type']]()) motor.grains[-1].setProperty('diameter', inToM(child.attrib['Diameter'])) motor.grains[-1].setProperty('length', inToM(child.attrib['Length'])) grainType = child.attrib['Type'] if child.attrib['EndsInhibited'] == '1': motor.grains[-1].setProperty('inhibitedEnds', 'Top') elif child.attrib['EndsInhibited'] == '2': motor.grains[-1].setProperty('inhibitedEnds', 'Both') if grainType in ('1', '3', '7'): # Grains with core diameter motor.grains[-1].setProperty('coreDiameter', inToM(child.attrib['CoreDiameter'])) if grainType == '2': # D grain specific properties motor.grains[-1].setProperty('slotOffset', inToM(child.attrib['EdgeOffset'])) elif grainType == '3': # Moonburner specific properties motor.grains[-1].setProperty('coreOffset', inToM(child.attrib['CoreOffset'])) elif grainType == '5': # C grain specific properties motor.grains[-1].setProperty('slotWidth', inToM(child.attrib['SlotWidth'])) radius = motor.grains[-1].getProperty('diameter') / 2 motor.grains[-1].setProperty('slotOffset', radius - inToM(child.attrib['SlotDepth'])) elif grainType == '6': # X core specific properties motor.grains[-1].setProperty('slotWidth', inToM(child.attrib['SlotWidth'])) motor.grains[-1].setProperty('slotLength', inToM(child.attrib['CoreDiameter']) / 2) elif grainType == '7': # Finocyl specific properties motor.grains[-1].setProperty('finWidth', inToM(child.attrib['FinWidth'])) motor.grains[-1].setProperty('finLength', inToM(child.attrib['FinLength'])) motor.grains[-1].setProperty('numFins', int(child.attrib['FinCount'])) if not propSet: # Use propellant numbers from the forward grain motor.propellant, propellantErrors = importPropellant(child.find('Propellant')) if propellantErrors != '': errors += propellantErrors propSet = True else: if child.attrib['Type'] in UNSUPPORTED_GRAINS: errors += "File contains a " errors += UNSUPPORTED_GRAINS[child.attrib['Type']] errors += " grain, which can't be imported.\n" else: errors += "File contains an unknown grain of type " + child.attrib['Type'] + '.\n' if child.tag == 'TestData': errors += "\nFile contains test data, which is not imported." if child.tag == "Propellant": if not propSet: motor.propellant, propellantErrors = importPropellant(child) if propellantErrors != '': errors += propellantErrors propSet = True if errors != '': self.manager.app.outputMessage(errors + '\nThe rest of the motor will be imported.') self.manager.startFromMotor(motor) openmotor-0.6.0/uilib/converters/csvExporter.py000066400000000000000000000026201500530174600217340ustar00rootroot00000000000000from PyQt6.QtWidgets import QDialog, QApplication from ..converter import Exporter from ..views.CSVExporter_ui import Ui_CSVExporter class CsvExportMenu(QDialog): def __init__(self, converter): QDialog.__init__(self) self.ui = Ui_CSVExporter() self.ui.setupUi(self) self.setWindowIcon(QApplication.instance().icon) self.converter = converter def exec(self): self.ui.channelSelector.resetChecks() self.ui.channelSelector.setupChecks(True, disabled=["time"], default=["time"]) self.ui.grainSelector.resetChecks() self.ui.grainSelector.setupChecks(self.converter.manager.simRes, True) if super().exec(): return [self.ui.channelSelector.getUnselectedChannels(), self.ui.grainSelector.getUnselectedGrains()] return None class CsvExporter(Exporter): def __init__(self, manager): super().__init__(manager, 'CSV File', 'Exports the results of a simulation in a csv.', {'.csv': 'Comma separated value file'}) self.menu = CsvExportMenu(self) self.reqNotMet = "Must have run a simulation to export a .CSV file." def doConversion(self, path, config): with open(path, 'w') as outFile: outFile.write(self.manager.simRes.getCSV(self.manager.preferences, config[0], config[1])) def checkRequirements(self): return self.manager.simRes is not None openmotor-0.6.0/uilib/converters/engExporter.py000066400000000000000000000064311500530174600217160ustar00rootroot00000000000000import xml.etree.ElementTree as ET from PyQt6.QtWidgets import QDialog, QFileDialog, QDialogButtonBox, QApplication from motorlib.properties import PropertyCollection, FloatProperty, StringProperty, EnumProperty import motorlib from ..converter import Exporter from ..views.EngExporter_ui import Ui_EngExporterDialog class EngSettings(PropertyCollection): def __init__(self): super().__init__() self.props['diameter'] = FloatProperty('Motor Diameter', 'm', 0, 1) self.props['length'] = FloatProperty('Motor Length', 'm', 0, 4) self.props['hardwareMass'] = FloatProperty('Hardware Mass', 'kg', 0, 1000) self.props['designation'] = StringProperty('Motor Designation') self.props['manufacturer'] = StringProperty('Motor Manufacturer') self.props['append'] = EnumProperty('Existing File', ['Append', 'Overwrite']) class EngExportMenu(QDialog): def __init__(self, exporter): QDialog.__init__(self) self.ui = Ui_EngExporterDialog() self.ui.setupUi(self) self.setWindowIcon(QApplication.instance().icon) self.exporter = exporter def exec(self): newSettings = EngSettings() designation = self.exporter.manager.simRes.getDesignation() newSettings.setProperties({'designation': designation}) self.ui.motorStats.setPreferences(self.exporter.manager.preferences) self.ui.motorStats.loadProperties(newSettings) if super().exec(): return self.ui.motorStats.getProperties() return None class EngExporter(Exporter): def __init__(self, manager): super().__init__(manager, 'ENG File', 'Exports the results of a simulation in the RASP ENG format', {'.eng': 'RASP Files'}, False) self.menu = EngExportMenu(self) self.reqNotMet = "Must have run a simulation to export a .ENG file." def doConversion(self, path, config): mode = 'a' if config['append'] == 'Append' else 'w' with open(path, mode) as outFile: propMass = self.manager.simRes.getPropellantMass() contents = ' '.join([config['designation'], str(round(config['diameter'] * 1000, 6)), str(round(config['length'] * 1000, 6)), 'P', str(round(propMass, 6)), str(round(propMass + config['hardwareMass'], 6)), config['manufacturer'] ]) + '\n' timeData = self.manager.simRes.channels['time'].getData() forceData = self.manager.simRes.channels['force'].getData() # Add on a 0-thrust datapoint right after the burn to satisfy RAS Aero if forceData[-1] != 0: timeData.append(self.manager.simRes.getBurnTime() + 0.01) forceData.append(0) for time, force in zip(timeData, forceData): if time == 0: # Increase the first point so it isn't 0 thrust force += 0.01 contents += str(round(time, 4)) + ' ' + str(round(force, 4)) + '\n' contents += ';\n;\n' outFile.write(contents) def checkRequirements(self): return self.manager.simRes is not None openmotor-0.6.0/uilib/converters/imageExporter.py000066400000000000000000000045521500530174600222310ustar00rootroot00000000000000from PyQt6.QtWidgets import QDialog, QApplication from motorlib.simResult import singleValueChannels, multiValueChannels from ..converter import Exporter from ..views.ImageExporter_ui import Ui_ImageExporter class ImageExportMenu(QDialog): def __init__(self, converter): QDialog.__init__(self) self.ui = Ui_ImageExporter() self.ui.setupUi(self) self.setWindowIcon(QApplication.instance().icon) self.converter = converter def exec(self): self.ui.independent.resetChecks() self.ui.independent.setupChecks(False, exclude=['kn', 'pressure', 'force', 'mass', 'massFlow', 'massFlux', 'exitPressure', 'dThroat'], default='time') self.ui.independent.checksChanged.connect(self.validateChecks) self.ui.dependent.resetChecks() self.ui.dependent.setupChecks(True) self.ui.grainSelector.resetChecks() self.ui.grainSelector.setupChecks(self.converter.manager.simRes, True) if super().exec(): xChannel = self.ui.independent.getSelectedChannels()[0] yChannels = self.ui.dependent.getSelectedChannels() grains = self.ui.grainSelector.getSelectedGrains() return [xChannel, yChannels, grains] return None def validateChecks(self): if self.ui.independent.getSelectedChannels()[0] in multiValueChannels: self.ui.dependent.unselect(singleValueChannels) self.ui.dependent.toggleEnabled(singleValueChannels, False) else: self.ui.dependent.toggleEnabled(singleValueChannels, True) class ImageExporter(Exporter): def __init__(self, manager): super().__init__(manager, 'Image File', 'Exports the results of a simulation in a graph.', {'.png': 'Portable network graphic'}) self.menu = ImageExportMenu(self) self.reqNotMet = "Must have run a simulation to export a .PNG file." def doConversion(self, path, config): # TODO: This is ugly and should be refactored. The app should own the grapher. graphWidget = self.manager.app.window.ui.resultsWidget.ui.widgetGraph graphWidget.saveImage(self.manager.simRes, config[0], config[1], config[2], path) def checkRequirements(self): return self.manager.simRes is not None openmotor-0.6.0/uilib/defaults.py000066400000000000000000000144231500530174600170310ustar00rootroot00000000000000"""Provides default properties for the UI.""" DEFAULT_PREFERENCES = { 'general': { 'maxPressure': 1500 * 6895, 'maxMassFlux': 2 / 0.001422, 'minPortThroat': 2, 'burnoutWebThres': 0.001 / 39.37, 'burnoutThrustThres': 0.1, 'timestep': 0.03, 'ambPressure': 101325, 'igniterPressure': 150 * 6895, # Deprecated, but needed for migration 'mapDim': 750, 'sepPressureRatio' : 0.4, # This is a good default value known as the Summerfield Criteria https://ntrs.nasa.gov/api/citations/19840011402/downloads/19840011402.pdf 'flowSeparationWarnPercent': 0.05 }, 'units': { 'm': 'in', 'm^3': 'in^3', 'm/s': 'ft/s', 'Pa': 'psi', 'kg': 'lb', 'kg/m^3': 'lb/in^3', 'kg/s': 'lb/s', 'kg/(m^2*s)': 'lb/(in^2*s)', '(m*Pa)/s': '(in*psi)/s', 'm/(s*Pa)': 'thou/(s*psi)', 'm/(s*Pa^n)': 'in/(s*psi^n)' } } CL_PROPS = { 'name': 'MIT - Cherry Limeade', 'density': 1670, 'tabs': [ { 'minPressure': 0, 'maxPressure': 6.895e+06, 'a': 3.517054143255937e-05, 'n': 0.3273, 't': 2800, 'm': 23.67, 'k': 1.21 } ] } OW_PROPS = { 'name': 'MIT - Ocean Water', 'density': 1650, 'tabs': [ { 'minPressure': 0, 'maxPressure': 6.895e+06, 'a': 1.467e-05, 'n': 0.382, 't': 2600, 'm': 23.67, 'k': 1.25 } ] } KNDX_PROPS = { 'name': 'Nakka - KNDX', 'density': 1785, 'tabs': [ { 'minPressure': 103425, 'maxPressure': 779135, 'a': 1.7096289148678155e-06, 'n': 0.619, 't': 1625.0, 'm': 42.39, 'k': 1.1308 }, { 'minPressure': 779135, 'maxPressure': 2571835, 'a': 0.008553459092346196, 'n': -0.009, 't': 1625.0, 'm': 42.39, 'k': 1.1308 }, { 'minPressure': 2571835, 'maxPressure': 5929700, 'a': 2.90330733578913e-07, 'n': 0.688, 't': 1625.0, 'm': 42.39, 'k': 1.1308 }, { 'minPressure': 5929700, 'maxPressure': 8501535, 'a': 0.1330457207587796, 'n': -0.148, 't': 1625.0, 'm': 42.39, 'k': 1.1308 }, { 'minPressure': 8501535, 'maxPressure': 11204375, 'a': 1.0537671694797537e-05, 'n': 0.444, 't': 1625.0, 'm': 42.39, 'k': 1.1308 } ] } KNSB_PROPS = { 'name': 'Nakka - KNSB', 'density': 1750, 'tabs': [ { 'minPressure': 103425, 'maxPressure': 806715, 'a': 1.9253259619746373e-06, 'n': 0.625, 't': 1520.0, 'm': 39.9, 'k': 1.1361 }, { 'minPressure': 806715, 'maxPressure': 1503110, 'a': 0.6656608561590813, 'n': -0.313, 't': 1520.0, 'm': 39.9, 'k': 1.1361 }, { 'minPressure': 1503110, 'maxPressure': 3792250, 'a': 0.009528121181782798, 'n': -0.0145, 't': 1520.0, 'm': 39.9, 'k': 1.1361 }, { 'minPressure': 3792250, 'maxPressure': 7032900, 'a': 2.709667768835332e-06, 'n': 0.5245, 't': 1520.0, 'm': 39.9, 'k': 1.1361 }, { 'minPressure': 7032900, 'maxPressure': 10673460, 'a': 0.00417677261069904, 'n': 0.059, 't': 1520.0, 'm': 39.9, 'k': 1.1361 } ] } WL_PROPS = { 'name': 'RCS - White Lightning', 'density': 1820.230130676801, 'tabs': [ { 'minPressure': 0.0, 'maxPressure': 10342500, 'a': 5.710516747228669e-06, 'n': 0.45, 't': 2339.0, 'm': 27.125, 'k': 1.243 } ] } BT_PROPS = { 'name': 'RCS - Blue Thunder', 'density': 1625.0868456817973, 'tabs': [ { 'minPressure': 0.0, 'maxPressure': 10342500, 'a': 6.994600946367753e-05, 'n': 0.321, 't': 2616.5, 'm': 22.959, 'k': 1.235 } ] } KNSU_PROPS = { 'name': 'Nakka - KNSU', 'density': 1800, 'tabs': [ { 'minPressure': 0.0, 'maxPressure': 10342500, 'a': 0.00010073115141607291, 'n': 0.319, 't': 1720, 'm': 41.98, 'k': 1.133 } ] } DEFAULT_PROPELLANTS = [CL_PROPS, OW_PROPS, KNDX_PROPS, KNSB_PROPS, KNSU_PROPS, WL_PROPS, BT_PROPS] openmotor-0.6.0/uilib/fileIO.py000066400000000000000000000170411500530174600163700ustar00rootroot00000000000000from enum import Enum import os import platform from PyQt6.QtWidgets import QApplication import yaml import platformdirs from .defaults import DEFAULT_PREFERENCES, DEFAULT_PROPELLANTS, KNSU_PROPS from .logger import logger appVersion = (0, 6, 0) appVersionStr = '.'.join(map(str, appVersion)) class fileTypes(Enum): PREFERENCES = 1 PROPELLANTS = 2 MOTOR = 3 RECENT_FILES = 4 def futureVersion(verA, verB): # Returns true if a is newer than b major = verA[0] > verB[0] minor = verA[0] == verB[0] and verA[1] > verB[1] fix = verA[0] == verB[0] and verA[1] == verB[1] and verA[2] > verB[2] return major or minor or fix def saveFile(path, data, dataType): output = { 'version': appVersion, 'type': dataType, 'data': data } with open(path, 'w') as saveLocation: yaml.dump(output, saveLocation) def loadFile(path, dataType): with open(path, 'r') as readLocation: fileData = yaml.load(readLocation, Loader=yaml.Loader) if 'data' not in fileData or 'type' not in fileData or 'version' not in fileData: raise ValueError('File did not contain the required fields. It may be corrupted or from an old version.') if fileData['type'] != dataType: raise TypeError('Loaded data type did not match expected type.') if fileData['version'] == appVersion: # Check if the file is from the current version return fileData['data'] # If so, the data is current and can be returned # If the data is from a future version, it can't be loaded if futureVersion(fileData['version'], appVersion): new = '.'.join(str(num) for num in fileData['version']) old = '.'.join(str(num) for num in appVersion) raise ValueError("Data is from a future version (" + new + " vs " + old + ") and can't be loaded.") # Otherwise it is from a past version and will be migrated return doMigration(fileData)['data'] # Returns the path that files like preferences and propellant library should be in. Previously, all platforms except # Mac OS put these files alongside the executable, but the v0.5.0 added an installer for windows so it makes more # sense to use the user's data directory now. def getConfigPath(): path = platformdirs.user_data_dir('openMotor', 'openMotor') if not os.path.isdir(path): # Create directory if it doesn't exist os.mkdir(path) return '{}/'.format(path) def passthrough(data): return data #0.5.0 to 0.6.0 def migrateMotor_0_5_0_to_0_6_0(data): data['config']['sepPressureRatio'] = DEFAULT_PREFERENCES['general']['sepPressureRatio'] data['config']['flowSeparationWarnPercent'] = DEFAULT_PREFERENCES['general']['flowSeparationWarnPercent'] for grain in data['grains']: if grain['type'] == 'Finocyl': grain['properties']['invertedFins'] = False return data def migratePref_0_5_0_to_0_6_0(data): # If they are using the units that are becoming internal-only, replace them if data['units']['m/(s*Pa)'] in ('m/(s*Pa)', 'm/(s*MPa)'): data['units']['(m*Pa)/s'] = 'um/(s*mPa)' if data['units']['m/(s*Pa^n)'] == 'm/(s*Pa^n)': data['units']['m/(s*Pa^n)'] = 'mm/(s*Pa^n)' return data # 0.4.0 to 0.5.0 def migrateProp_0_4_0_to_0_5_0(data): for propellant in data: if propellant['name'] == 'MIT - Cherry Limeade': propellant['density'] = 1670 propellant['tabs'][0]['t'] = 2800 elif propellant['name'] == 'MIT - Ocean Water': propellant['density'] = 1650 propellant['tabs'][0]['t'] = 2600 if not 'Nakka - KNSU' in [cProp['name'] for cProp in data]: data.append(KNSU_PROPS) return data def migratePref_0_4_0_to_0_5_0(data): del data['general']['igniterPressure'] data['general']['burnoutWebThres'] = DEFAULT_PREFERENCES['general']['burnoutWebThres'] return data def migrateMotor_0_4_0_to_0_5_0(data): if data['config']['igniterPressure']: del data['config']['igniterPressure'] return data # 0.3.0 to 0.4.0 def tabularizePropellant(data): newProp = {} newProp['name'] = data['name'] newProp['density'] = data['density'] newProp['tabs'] = [{}] newProp['tabs'][-1]['a'] = data['a'] newProp['tabs'][-1]['n'] = data['n'] newProp['tabs'][-1]['k'] = data['k'] newProp['tabs'][-1]['t'] = data['t'] newProp['tabs'][-1]['m'] = data['m'] newProp['tabs'][-1]['minPressure'] = 0 newProp['tabs'][-1]['maxPressure'] = 1.0342e+7 return newProp def migratePref_0_3_0_to_0_4_0(data): data['general']['igniterPressure'] = DEFAULT_PREFERENCES['general']['igniterPressure'] data['units']['(m*Pa)/s'] = '(in*psi)/s' data['units']['m/(s*Pa)'] = 'thou/(s*psi)' return data def migrateProp_0_3_0_to_0_4_0(data): for i in range(0, len(data)): data[i] = tabularizePropellant(data[i]) # Add default propellants in if they don't replace existing ones for propellant in DEFAULT_PROPELLANTS: if propellant['name'] not in [cProp['name'] for cProp in data]: data.append(propellant) return data def migrateMotor_0_3_0_to_0_4_0(data): data['propellant'] = tabularizePropellant(data['propellant']) data['config']['igniterPressure'] = DEFAULT_PREFERENCES['general']['igniterPressure'] return data # 0.2.0 to 0.3.0 def migratePref_0_2_0_to_0_3_0(data): defPref = DEFAULT_PREFERENCES data['general']['maxPressure'] = defPref['general']['maxPressure'] data['general']['maxMassFlux'] = defPref['general']['maxMassFlux'] data['general']['minPortThroat'] = defPref['general']['minPortThroat'] return data def migrateMotor_0_2_0_to_0_3_0(data): if QApplication.instance().preferencesManager: config = QApplication.instance().preferencesManager.preferences.getDict()['general'] else: config = DEFAULT_PREFERENCES['general'] data['config'] = config data['nozzle']['divAngle'] = 15 data['nozzle']['convAngle'] = 55 data['nozzle']['throatLength'] = 0.35 * data['nozzle']['throat'] return data migrations = { (0, 5, 0): { 'to': (0, 6, 0), fileTypes.PREFERENCES: migratePref_0_5_0_to_0_6_0, fileTypes.PROPELLANTS: passthrough, fileTypes.MOTOR: migrateMotor_0_5_0_to_0_6_0, fileTypes.RECENT_FILES: passthrough }, (0, 4, 0): { 'to': (0, 5, 0), fileTypes.PREFERENCES: migratePref_0_4_0_to_0_5_0, fileTypes.PROPELLANTS: migrateProp_0_4_0_to_0_5_0, fileTypes.MOTOR: migrateMotor_0_4_0_to_0_5_0, }, (0, 3, 0): { 'to': (0, 4, 0), fileTypes.PREFERENCES: migratePref_0_3_0_to_0_4_0, fileTypes.PROPELLANTS: migrateProp_0_3_0_to_0_4_0, fileTypes.MOTOR: migrateMotor_0_3_0_to_0_4_0 }, (0, 2, 0): { 'to': (0, 3, 0), fileTypes.PREFERENCES: migratePref_0_2_0_to_0_3_0, fileTypes.PROPELLANTS: passthrough, fileTypes.MOTOR: migrateMotor_0_2_0_to_0_3_0 }, (0, 1, 0): { 'to': (0, 2, 0), fileTypes.PREFERENCES: passthrough, fileTypes.PROPELLANTS: passthrough, fileTypes.MOTOR: passthrough } } def doMigration(fileData): logger.log('Doing a migration of a {} from {}'.format(fileData["type"], fileData["version"])) while fileData["version"] != appVersion: migration = migrations[fileData["version"]] logger.log('\tUpgrading {} to {}'.format(fileData["version"], migration["to"])) fileData["data"] = migration[fileData["type"]](fileData["data"]) fileData["version"] = migration["to"] return fileData openmotor-0.6.0/uilib/fileManager.py000066400000000000000000000303771500530174600174420ustar00rootroot00000000000000from PyQt6.QtCore import QObject, pyqtSignal from PyQt6.QtWidgets import QFileDialog, QMessageBox from PyQt6.QtGui import QAction import os import motorlib from .fileIO import saveFile, loadFile, fileTypes, getConfigPath from .helpers import FLAGS_NO_ICON, excludeKeys from .logger import logger class FileManager(QObject): MAX_RECENT_FILES = 5 fileNameChanged = pyqtSignal(str, bool) newMotor = pyqtSignal(object) # TODO: eventually a signal like this that makes the mainWindow repopulate the propellant editor should # be emitted whenever load() is called recentFileLoaded = pyqtSignal() def __init__(self, app): super().__init__() self.app = app self.fileHistory = [] self.currentVersion = 0 self.savedVersion = 0 self.fileName = None self.newFile() self.recentlyOpenedFiles = [] self.recentFilesPath = os.path.join(getConfigPath(), 'recent_files.yaml') # Check if current motor is unsaved and start over from default motor. Called when the menu item is triggered. def newFile(self): if not self.unsavedCheck(): logger.log('Cannot start new file because of existing one') return logger.log('Starting new motor file') newMotor = motorlib.motor.Motor() motorConfig = self.app.preferencesManager.preferences.general.getProperties() newMotor.config.setProperties(motorConfig) # Copy over user's preferences self.startFromMotor(newMotor) # Reset to empty motor history and set current motor to what is passed in def startFromMotor(self, motor, filename=None): motor = self.checkPropellant(motor) self.fileHistory = [motor.getDict()] self.currentVersion = 0 self.savedVersion = 0 self.fileName = filename self.sendTitleUpdate() self.newMotor.emit(motor) # Asks the user for a filename if they haven't provided one. Otherwise, dump the motor to a file and show any # resulting errors in a popup. Called when the menu item is triggered. def save(self): if self.fileName is None: # Though this function calls save again, the above condition will be false on the second time around # and the file will save self.saveAs() else: try: saveFile(self.fileName, self.fileHistory[self.currentVersion], fileTypes.MOTOR) self.savedVersion = self.currentVersion self.sendTitleUpdate() except Exception as exc: self.app.outputException(exc, "An error occurred while saving the file: ") # Asks for a new file name and saves the motor def saveAs(self): fileName = self.showSaveDialog() if fileName is not None: self.fileName = fileName self.save() self.addRecentFile(fileName) # Checks for unsaved changes, asks for a filename, and loads the file def load(self, path=None): if self.unsavedCheck(): if path is None: path = QFileDialog.getOpenFileName(None, 'Load motor', '', 'Motor Files (*.ric)')[0] if path != '': # If they cancel the dialog, path will be an empty string try: res = loadFile(path, fileTypes.MOTOR) if res is not None: motor = motorlib.motor.Motor() motor.applyDict(res) self.startFromMotor(motor, path) self.addRecentFile(path) return True except Exception as exc: self.app.outputException(exc, "An error occurred while loading the file: ") return False # If no file is loaded, return false # Return the recent end of the motor history def getCurrentMotor(self): newMotor = motorlib.motor.Motor() newMotor.applyDict(self.fileHistory[self.currentVersion]) return newMotor # Add a new version of the motor to the motor history. Should be used for all user interactions. def addNewMotorHistory(self, motor): if motor.getDict() != self.fileHistory[self.currentVersion]: if self.canRedo(): del self.fileHistory[self.currentVersion + 1:] self.fileHistory.append(motor.getDict()) self.currentVersion += 1 self.sendTitleUpdate() self.newMotor.emit(motor) # Updates the propellant of all motors in the history to match the current values in the manager without adding any # new history def updatePropellant(self): logger.log('Propellant for current motor changed, updating all copies in history') for motor in self.fileHistory: if motor['propellant'] is not None: if motor['propellant']['name'] in self.app.propellantManager.getNames(): prop = self.app.propellantManager.getPropellantByName(motor['propellant']['name']).getProperties() motor['propellant'] = prop else: motor['propellant'] = None # Returns true if there is history before the current motor def canUndo(self): return self.currentVersion > 0 # Rolls back the current motor to point at the motor before it in the history def undo(self): if not self.canUndo(): logger.log('Nothing to undo') return logger.log('Applying undo') self.currentVersion -= 1 self.sendTitleUpdate() self.newMotor.emit(self.getCurrentMotor()) # Returns true if there is history ahead of the current motor def canRedo(self): return self.currentVersion < len(self.fileHistory) - 1 # Changes current motor to be the next motor in history def redo(self): if not self.canRedo(): logger.log('Nothing to redo') return logger.log('Applying redo') self.currentVersion += 1 self.sendTitleUpdate() self.newMotor.emit(self.getCurrentMotor()) # If there is unsaved history, ask the user if they want to save it. Returns true if it is safe to exit or start a # new motor (save, discard) or false if not (cancel) def unsavedCheck(self): if self.savedVersion == self.currentVersion: return True msg = QMessageBox() msg.setWindowFlags(FLAGS_NO_ICON) msg.setText("The current file has unsaved changes. Close without saving?") msg.setWindowTitle("Close without saving?") msg.setStandardButtons( QMessageBox.StandardButton.Save | QMessageBox.StandardButton.Discard | QMessageBox.StandardButton.Cancel ) res = msg.exec() if res == QMessageBox.StandardButton.Save: self.save() return True return res == QMessageBox.StandardButton.Discard # Outputs the filename component of the title def sendTitleUpdate(self): self.fileNameChanged.emit(self.fileName, self.savedVersion == self.currentVersion) # Pops up a save file dialog and returns the path, or None if it is canceled def showSaveDialog(self): path = QFileDialog.getSaveFileName(None, 'Save motor', '', 'Motor Files (*.ric)')[0] if path == '' or path is None: return None if path[-4:] != '.ric': path += '.ric' return path # Checks if a motor's propellant is in the library, adds it if it isn't, and also looks for conflicts def checkPropellant(self, motor): # If the motor doesn't have a propellant set, there's nothing to do if motor.propellant is None: return motor propManager = self.app.propellantManager originalName = motor.propellant.getProperty('name') # If the motor has a propellant that we don't have, add it to our library if originalName not in propManager.getNames(): # Check if any propellants in the library have the same properties and offer to dedupe for libraryPropellantName in propManager.getNames(): libraryProperties = excludeKeys(propManager.getPropellantByName(libraryPropellantName).getProperties(), ['name']) motorProperties = excludeKeys(motor.propellant.getProperties(), ['name']) if libraryProperties == motorProperties: message = 'The propellant from the loaded motor ("{}") was not in the library, but the properties match "{}" from the library. Should the loaded motor be updated to use this propellant?' shouldDeDupe = self.app.promptYesNo(message.format(motor.propellant.getProperty('name'), libraryPropellantName)) if shouldDeDupe: motor.propellant.setProperty('name', libraryPropellantName) return motor self.app.outputMessage('The propellant from the loaded motor was not in the library, so it was added as "{}"'.format(originalName), 'New propellant added') propManager.propellants.append(motor.propellant) propManager.savePropellants() logger.log('Propellant from loaded motor added to library under original name "{}"'.format(originalName)) return motor addedNumber = 0 name = originalName while name in propManager.getNames(): existingProps = excludeKeys(propManager.getPropellantByName(name).getProperties(), ['name']) motorProps = excludeKeys(motor.propellant.getProperties(), ['name']) if existingProps == motorProps: # If this isn't the first loop, we need to change the name to add the number if addedNumber != 0: motor.propellant.setProperty('name', name) message = 'Propellant from loaded motor has the same name as one in the library ("{}"), but their properties do not match. It does match "{}", so it has been updated to that propellant.'.format(originalName, name) self.app.outputMessage(message) return motor addedNumber += 1 name = '{} ({})'.format(originalName, addedNumber) motor.propellant.setProperty('name', '{} ({})'.format(originalName, addedNumber)) propManager.propellants.append(motor.propellant) propManager.savePropellants() self.app.outputMessage('The propellant from the loaded motor matches an existing item in the library, but they have different properties. The propellant from the motor has been added to the library as "{}"'.format(motor.propellant.getProperty('name')), 'New propellant added') return motor def createRecentlyOpenedMenu(self, recentlyOpenedMenu): self.recentlyOpenedMenu = recentlyOpenedMenu try: self.recentFilesList = loadFile(self.recentFilesPath, fileTypes.RECENT_FILES)['recentFilesList'] except FileNotFoundError: logger.warn('Unable to load recent files, creating new file at {}'.format(self.recentFilesPath)) self.recentFilesList = [] saveFile(self.recentFilesPath, {'recentFilesList': self.recentFilesList}, fileTypes.RECENT_FILES) self.createRecentlyOpenedItems() def createRecentlyOpenedItems(self): self.recentlyOpenedMenu.clear() if len(self.recentFilesList) == 0: self.recentlyOpenedMenu.addAction(QAction('No Recent Files', self.recentlyOpenedMenu)) return for filepath in self.recentFilesList: _, filename = os.path.split(filepath) action = QAction(filename, self.recentlyOpenedMenu) action.triggered.connect(lambda _, path=filepath: self.loadRecentFile(path)) self.recentlyOpenedMenu.addAction(action) def loadRecentFile(self, path): self.load(path) self.recentFileLoaded.emit() def addRecentFile(self, filepath): if filepath in self.recentFilesList: self.recentFilesList.remove(filepath) self.recentFilesList = [filepath] + self.recentFilesList self.recentFilesList = self.recentFilesList[:FileManager.MAX_RECENT_FILES] saveFile(self.recentFilesPath, {'recentFilesList': self.recentFilesList}, fileTypes.RECENT_FILES) self.createRecentlyOpenedItems() openmotor-0.6.0/uilib/helpers.py000066400000000000000000000003731500530174600166630ustar00rootroot00000000000000from PyQt6.QtCore import Qt FLAGS_NO_ICON = Qt.WindowType.Dialog | Qt.WindowType.CustomizeWindowHint | Qt.WindowType.WindowTitleHint | Qt.WindowType.WindowCloseButtonHint def excludeKeys(d, keys): return {k:v for k,v in d.items() if k not in keys} openmotor-0.6.0/uilib/importExportManager.py000066400000000000000000000031531500530174600212270ustar00rootroot00000000000000from PyQt6.QtCore import pyqtSignal, QObject from PyQt6.QtGui import QAction from .converter import Importer from .converters import BurnSimImporter, BurnSimExporter, EngExporter, CsvExporter, ImageExporter class ImportExportManager(QObject): motorImported = pyqtSignal() propellantImported = pyqtSignal() def __init__(self, app): super().__init__() self.app = app self.conversions = [BurnSimImporter(self), BurnSimExporter(self), EngExporter(self), CsvExporter(self), ImageExporter(self)] self.preferences = None # TODO: change? self.simRes = None self.motor = None def acceptSimRes(self, simRes): self.simRes = simRes def acceptNewMotor(self, motor): self.motor = motor self.simRes = None # Invalidate old simRes because it doesn't apply to the new motor def setPreferences(self, pref): self.preferences = pref def unsavedCheck(self): return self.app.fileManager.unsavedCheck() def startFromMotor(self, motor): self.app.fileManager.startFromMotor(motor) self.motorImported.emit() def createMenus(self, importMenu, exportMenu): for conversion in self.conversions: if isinstance(conversion, Importer): action = QAction(conversion.name, importMenu) importMenu.addAction(action) else: action = QAction(conversion.name, exportMenu) exportMenu.addAction(action) action.setStatusTip(conversion.description) action.triggered.connect(conversion.exec) openmotor-0.6.0/uilib/logger.py000066400000000000000000000026551500530174600165050ustar00rootroot00000000000000import time import datetime import sys import traceback import os import platformdirs class Logger(): def __init__(self): self.buffer = [] startDate = datetime.datetime.now().isoformat() self._file = None self._openLogFile() self._startTime = time.monotonic() self.log('#' * 80) self.log('Application started at {}'.format(startDate)) def _openLogFile(self): path = platformdirs.user_log_dir('openMotor', 'openMotor') if not os.path.isdir(path): os.makedirs(path) self._file = open(os.path.join(path, "openMotor.log"), 'a') def log(self, message): self._write('LOG', message) def warn(self, message): self._write('WRN', message) def error(self, message): self._write('ERR', message) def _write(self, level, content): message = '{:.4f} [{}] {}'.format(time.monotonic() - self._startTime, level, content) print(message) if self._file is not None: self._file.write('{}\n'.format(message)) self._file.flush() logger = Logger() def exceptHook(exctype, value, trace): tracebackFormated = traceback.format_exception(exctype, value, trace) tracebackString = "".join(tracebackFormated) for line in tracebackString.split('\n'): logger.error(line) logger.log('Application closed due to exception.') sys.exit(1) sys.excepthook = exceptHook openmotor-0.6.0/uilib/preferencesManager.py000066400000000000000000000053021500530174600210120ustar00rootroot00000000000000from PyQt6.QtCore import QObject, pyqtSignal from motorlib.properties import PropertyCollection, FloatProperty, IntProperty, EnumProperty from motorlib.units import unitLabels, getAllConversions from motorlib.motor import MotorConfig from .fileIO import loadFile, saveFile, getConfigPath, fileTypes from .defaults import DEFAULT_PREFERENCES from .widgets import preferencesMenu from .logger import logger class Preferences(): def __init__(self, propDict=None): self.general = MotorConfig() self.units = PropertyCollection() for unit in unitLabels: self.units.props[unit] = EnumProperty(unitLabels[unit], getAllConversions(unit)) if propDict is not None: self.applyDict(propDict) def getDict(self): prefDict = {} prefDict['general'] = self.general.getProperties() prefDict['units'] = self.units.getProperties() return prefDict def applyDict(self, dictionary): self.general.setProperties(dictionary['general']) self.units.setProperties(dictionary['units']) def getUnit(self, fromUnit): if fromUnit in self.units.props: return self.units.getProperty(fromUnit) return fromUnit class PreferencesManager(QObject): preferencesChanged = pyqtSignal(object) def __init__(self, makeMenu=True): super().__init__() self.preferences = Preferences(DEFAULT_PREFERENCES) if makeMenu: self.menu = preferencesMenu.PreferencesMenu() self.menu.preferencesApplied.connect(self.newPreferences) self.loadPreferences() def newPreferences(self, prefDict): logger.log('Updating preferences') self.preferences.applyDict(prefDict) self.savePreferences() self.publishPreferences() def loadPreferences(self): try: prefDict = loadFile(getConfigPath() + 'preferences.yaml', fileTypes.PREFERENCES) self.preferences.applyDict(prefDict) self.publishPreferences() except FileNotFoundError: logger.warn('Unable to load preferences, creating new file') self.savePreferences() def savePreferences(self): try: destinationPath = getConfigPath() + 'preferences.yaml' logger.log('Saving preferences to "{}"'.format(destinationPath)) saveFile(destinationPath, self.preferences.getDict(), fileTypes.PREFERENCES) except: logger.warn('Unable to save preferences') def showMenu(self): logger.log('Showing preferences menu') self.menu.load(self.preferences) self.menu.show() def publishPreferences(self): self.preferencesChanged.emit(self.preferences) openmotor-0.6.0/uilib/propellantManager.py000066400000000000000000000036211500530174600206730ustar00rootroot00000000000000from PyQt6.QtCore import QObject, pyqtSignal import motorlib from .defaults import DEFAULT_PROPELLANTS from .fileIO import loadFile, saveFile, fileTypes, getConfigPath from .widgets.propellantMenu import PropellantMenu from .logger import logger class PropellantManager(QObject): updated = pyqtSignal() def __init__(self): super().__init__() self.propellants = [] self.loadPropellants() self.propMenu = PropellantMenu(self) self.propMenu.closed.connect(self.updated.emit) def loadPropellants(self): try: propList = loadFile(getConfigPath() + 'propellants.yaml', fileTypes.PROPELLANTS) for propDict in propList: newProp = motorlib.propellant.Propellant() newProp.setProperties(propDict) self.propellants.append(newProp) except FileNotFoundError: logger.warn('No propellant file found, saving defaults') self.propellants = [motorlib.propellant.Propellant(prop) for prop in DEFAULT_PROPELLANTS] self.savePropellants() def savePropellants(self): propellants = [prop.getProperties() for prop in self.propellants] try: destinationPath = getConfigPath() + 'propellants.yaml' logger.log('Saving propellants to "{}"'.format(destinationPath)) saveFile(destinationPath, propellants, fileTypes.PROPELLANTS) except: logger.warn('Unable to save propellants!') def getNames(self): return [prop.getProperty('name') for prop in self.propellants] def getPropellantByName(self, name): return self.propellants[self.getNames().index(name)] def showMenu(self): logger.log('Showing propellant menu') self.propMenu.setupPropList() self.propMenu.show() def setPreferences(self, pref): self.propMenu.ui.propEditor.setPreferences(pref) openmotor-0.6.0/uilib/simulationManager.py000066400000000000000000000040211500530174600206720ustar00rootroot00000000000000from threading import Thread from PyQt6.QtCore import QObject from PyQt6.QtCore import pyqtSignal from .widgets.simulationAlertsDialog import SimulationAlertsDialog from .widgets.simulationProgressDialog import SimulationProgressDialog from .logger import logger class SimulationManager(QObject): simulationDone = pyqtSignal(object) newSimulationResult = pyqtSignal(object) simProgress = pyqtSignal(float) simCanceled = pyqtSignal() def __init__(self): super().__init__() self.progDialog = SimulationProgressDialog() self.simProgress.connect(self.progDialog.progressUpdate) self.simulationDone.connect(self.progDialog.hide) self.progDialog.simulationCanceled.connect(self.cancelSim) self.alertsDialog = SimulationAlertsDialog() self.simulationDone.connect(self.alertsDialog.displayAlerts) self.motor = None self.preferences = None self.currentSimThread = None self.threadStopped = False # Set to true to stop simulation thread after it finishes the iteration it is on def setPreferences(self, preferences): self.preferences = preferences def runSimulation(self, motor, show=True): # Show sets if the results will be reported on newSimulationResult and shown in UI logger.log('Running simulation') self.motor = motor self.threadStopped = False self.progDialog.show() self.currentSimThread = Thread(target=self._simThread, args=[show]) self.currentSimThread.start() def _simThread(self, show): simRes = self.motor.runSimulation(self.updateProgressBar) self.simulationDone.emit(simRes) if simRes.success and show: logger.log('Simulation succeeded') self.newSimulationResult.emit(simRes) def updateProgressBar(self, prog): self.simProgress.emit(prog) return self.threadStopped def cancelSim(self): logger.log('Canceling simulation') self.threadStopped = True self.simCanceled.emit() openmotor-0.6.0/uilib/tool.py000066400000000000000000000043341500530174600161770ustar00rootroot00000000000000from PyQt6.QtWidgets import QDialog, QVBoxLayout, QLabel, QApplication from PyQt6.QtGui import QIcon import motorlib from .widgets.collectionEditor import CollectionEditor from .logger import logger class Tool(QDialog): def __init__(self, manager, name, description, propDict, needsSimulation): super().__init__() self.manager = manager self.name = name self.description = description self.needsSimulation = needsSimulation self.preferences = None self.propCollection = motorlib.properties.PropertyCollection() self.propCollection.props = propDict self.motor = None self.changeApplied = None self.setWindowTitle(self.name) self.setWindowIcon(QApplication.instance().icon) self.setLayout(QVBoxLayout()) self.descLabel = QLabel(self.description) self.descLabel.setWordWrap(True) self.layout().addWidget(self.descLabel) self.editor = CollectionEditor(self, True) self.editor.changeApplied.connect(self.applyPressed) self.editor.closed.connect(self.hide) self.layout().addWidget(self.editor) def setPreferences(self, pref): self.preferences = pref self.editor.setPreferences(pref) def show(self): logger.log('Showing "{}" tool'.format(self.name)) self.editor.loadProperties(self.propCollection) super().show() def applyPressed(self, change): logger.log('Applying "{}" from "{}" tool'.format(change, self.name)) if not self.needsSimulation: self.applyChanges(change, self.manager.getMotor(), None) return self.changeApplied = change self.motor = self.manager.getMotor() self.manager.requestSimulation() def simDone(self, sim): if self.changeApplied is None: return # If changeApplied is set, this is the tool waiting for a simulation result if sim.success: self.applyChanges(self.changeApplied, self.motor, sim) self.changeApplied = None self.motor = None def simCanceled(self): self.changeApplied = None self.motor = None def applyChanges(self, change, motor, simulation): pass openmotor-0.6.0/uilib/toolManager.py000066400000000000000000000045461500530174600174770ustar00rootroot00000000000000from PyQt6.QtCore import QObject, pyqtSignal from PyQt6.QtGui import QAction from .tools import ChangeDiameterTool, InitialKNTool, MaxKNTool, MaxPressureTool from .tools import ExpansionTool from .tools import NeutralBatesTool from .logger import logger class ToolManager(QObject): changeApplied = pyqtSignal() def __init__(self, app): super().__init__() self.fileManager = app.fileManager self.simulationManager = app.simulationManager self.propellantManager = app.propellantManager self.tools = {'Set': [ ChangeDiameterTool(self), InitialKNTool(self), MaxKNTool(self), MaxPressureTool(self) ], 'Optimize': [ExpansionTool(self)], 'Design': [NeutralBatesTool(self)]} for toolCategory in self.tools: for toolToAdd in self.tools[toolCategory]: self.simulationManager.simulationDone.connect(toolToAdd.simDone) self.simulationManager.simCanceled.connect(toolToAdd.simCanceled) def setPreferences(self, pref): for toolCategory in self.tools: for toolToSet in self.tools[toolCategory]: toolToSet.setPreferences(pref) def setupMenu(self, menu): for toolCategory in self.tools: category = menu.addMenu(toolCategory) for toolToSetup in self.tools[toolCategory]: toolAction = QAction(toolToSetup.name, category) toolAction.setStatusTip(toolToSetup.description) toolAction.triggered.connect(toolToSetup.show) category.addAction(toolAction) def getMotor(self): return self.fileManager.getCurrentMotor() def getPropellantNames(self): return self.propellantManager.getNames() def getPropellantByName(self, name): return self.propellantManager.getPropellantByName(name) def updateMotor(self, motor): self.fileManager.addNewMotorHistory(motor) self.changeApplied.emit() logger.log('Tool applied change to motor') def requestSimulation(self): logger.log('Tool requested simulation') motor = self.fileManager.getCurrentMotor() self.simulationManager.runSimulation(motor, False) openmotor-0.6.0/uilib/tools/000077500000000000000000000000001500530174600160045ustar00rootroot00000000000000openmotor-0.6.0/uilib/tools/__init__.py000066400000000000000000000002341500530174600201140ustar00rootroot00000000000000from .changeDiameter import * from .initialKN import * from .maxKN import * from .maxPressure import * from .expansion import * from .neutralBates import * openmotor-0.6.0/uilib/tools/changeDiameter.py000066400000000000000000000011511500530174600212540ustar00rootroot00000000000000import motorlib from ..tool import Tool class ChangeDiameterTool(Tool): def __init__(self, manager): props = {'diameter': motorlib.properties.FloatProperty('Diameter', 'm', 0, 1)} super().__init__(manager, 'Motor diameter', 'Use this tool to set the diameter of all grains in the motor.', props, False) def applyChanges(self, inp, motor, simulation): for grain in motor.grains: grain.setProperties({'diameter': inp['diameter']}) self.manager.updateMotor(motor) openmotor-0.6.0/uilib/tools/expansion.py000066400000000000000000000017671500530174600203750ustar00rootroot00000000000000import motorlib from ..tool import Tool class ExpansionTool(Tool): def __init__(self, manager): props = {} super().__init__(manager, 'Nozzle expansion', 'Use this tool to set the nozzle exit diameter to optimize expansion for your configured ambient pressure.', props, True) def applyChanges(self, inp, motor, simulation): _, _, k, _, _ = motor.propellant.getCombustionProperties(simulation.getAveragePressure()) pRatio = motor.config.props['ambPressure'].getValue() / simulation.getAveragePressure() aRatio = ((k + 1) / 2) ** (1 / (k - 1)) * pRatio ** (1 / k) * (((k + 1) / (k - 1)) * (1 - (pRatio ** ((k - 1) / k)))) ** 0.5 exitArea = motorlib.geometry.circleArea(motor.nozzle.props['throat'].getValue()) / aRatio motor.nozzle.props['exit'].setValue(motorlib.geometry.circleDiameterFromArea(exitArea)) self.manager.updateMotor(motor) openmotor-0.6.0/uilib/tools/initialKN.py000066400000000000000000000014661500530174600202470ustar00rootroot00000000000000import motorlib from ..tool import Tool class InitialKNTool(Tool): def __init__(self, manager): props = {'Kn': motorlib.properties.FloatProperty('Kn', '', 0, 1000)} super().__init__(manager, 'Initial Kn', 'Use this tool to set the nozzle throat to achieve a specific Kn at startup.', props, False) def applyChanges(self, inp, motor, simulation): for grain in motor.grains: grain.simulationSetup(self.preferences) surfArea = motor.calcBurningSurfaceArea([0 for grain in motor.grains]) throatArea = surfArea / inp['Kn'] motor.nozzle.props['throat'].setValue(motorlib.geometry.circleDiameterFromArea(throatArea)) self.manager.updateMotor(motor) openmotor-0.6.0/uilib/tools/maxKN.py000066400000000000000000000014121500530174600173720ustar00rootroot00000000000000import motorlib from ..tool import Tool class MaxKNTool(Tool): def __init__(self, manager): props = {'Kn': motorlib.properties.FloatProperty('Kn', '', 0, 1000)} super().__init__(manager, 'Max Kn', 'Use this tool to set the nozzle throat to keep the Kn below a certain value during the burn.', props, True) def applyChanges(self, inp, motor, simulation): surfArea = simulation.getPeakKN() * motorlib.geometry.circleArea(motor.nozzle.props['throat'].getValue()) throatArea = surfArea / inp['Kn'] motor.nozzle.props['throat'].setValue(motorlib.geometry.circleDiameterFromArea(throatArea)) self.manager.updateMotor(motor) openmotor-0.6.0/uilib/tools/maxPressure.py000066400000000000000000000015531500530174600207000ustar00rootroot00000000000000import motorlib from ..tool import Tool class MaxPressureTool(Tool): def __init__(self, manager): props = {'pressure': motorlib.properties.FloatProperty('Pressure', 'Pa', 0, 7e7)} super().__init__(manager, 'Max Pressure', 'Use this tool to set the nozzle throat to keep the chamber pressure below a certain value during the burn.', props, True) def applyChanges(self, inp, motor, simulation): kn = motor.propellant.getKnFromPressure(inp['pressure']) surfArea = simulation.getPeakKN() * motorlib.geometry.circleArea(motor.nozzle.props['throat'].getValue()) throatArea = surfArea / kn motor.nozzle.props['throat'].setValue(motorlib.geometry.circleDiameterFromArea(throatArea)) self.manager.updateMotor(motor) openmotor-0.6.0/uilib/tools/neutralBates.py000066400000000000000000000043551500530174600210160ustar00rootroot00000000000000import motorlib from ..tool import Tool class NeutralBatesTool(Tool): def __init__(self, manager): props = {'length': motorlib.properties.FloatProperty('Propellant length', 'm', 0, 10), 'diameter': motorlib.properties.FloatProperty('Propellant diameter', 'm', 0, 1), 'grainSpace': motorlib.properties.FloatProperty('Grain spacer length', 'm', 0, 1), 'Kn': motorlib.properties.FloatProperty('Initial Kn', '', 1, 1000)} super().__init__(manager, 'Neutral BATES Geometry', 'Use this tool to generate the geometry for a neutral BATES motor of a specified diameter and length. The length field should be the total length that the propellant fits into, including spacers.', props, False) def applyChanges(self, inp, motor, simulation): grainLength = (inp['diameter'] * 1.68) + inp['grainSpace'] numGrains = inp['length'] // grainLength newMotor = motorlib.motor.Motor() for _ in range(0, int(numGrains)): newGrain = motorlib.grains.BatesGrain() newGrain.props['diameter'].setValue(inp['diameter']) newGrain.props['length'].setValue(grainLength - inp['grainSpace']) newGrain.props['coreDiameter'].setValue(inp['diameter'] * 0.35) newMotor.grains.append(newGrain) for grain in motor.grains: grain.simulationSetup(self.preferences) # Just in case this does something for BATES grains eventually surfArea = sum([g.getSurfaceAreaAtRegression(0) for g in newMotor.grains]) throatArea = surfArea / inp['Kn'] newMotor.nozzle.props['throat'].setValue(motorlib.geometry.circleDiameterFromArea(throatArea)) # Close enough to optimal for 14.7 PSI, should eventually optimize this newMotor.nozzle.props['exit'].setValue(motorlib.geometry.circleDiameterFromArea(throatArea * 7)) newMotor.nozzle.props['divAngle'].setValue(15) newMotor.nozzle.props['convAngle'].setValue(65) newMotor.nozzle.props['efficiency'].setValue(0.92) newMotor.config.setProperties(self.preferences.getDict()['general']) self.manager.updateMotor(newMotor) openmotor-0.6.0/uilib/views/000077500000000000000000000000001500530174600160015ustar00rootroot00000000000000openmotor-0.6.0/uilib/views/forms/000077500000000000000000000000001500530174600171275ustar00rootroot00000000000000openmotor-0.6.0/uilib/views/forms/AboutDialog.ui000066400000000000000000000077471500530174600216770ustar00rootroot00000000000000 AboutDialog Qt::ApplicationModal 0 0 848 389 0 0 610 180 16777215 16777215 About openMotor resources/oMIconCycles.pngresources/oMIconCycles.png true QLayout::SetFixedSize QLayout::SetFixedSize 128 128 128 128 ../../../resources/oMIconCyclesSmall.png 0 0 <html><head/><body><p>openMotor ###</p><p>Released under the GNU GPL V3 License.</p><p><a href="https://github.com/reilleya/openMotor"><span style=" text-decoration: underline; color:#0000ff;">https://github.com/reilleya/openMotor</span></a></p><p><br/>Warning: Rocket motors can be dangerous! Always verify calculations before testing a motor, <br/>and test far enough away from people and structures to avoid damage. The results from this<br/>program are provided as an estimate and come with no guarantees.</p></body></html> Qt::Horizontal QDialogButtonBox::Ok buttonBox accepted() AboutDialog accept() 248 254 157 274 buttonBox rejected() AboutDialog reject() 316 260 286 274 openmotor-0.6.0/uilib/views/forms/CSVExporter.ui000066400000000000000000000052541500530174600216600ustar00rootroot00000000000000 CSVExporter 0 0 400 300 Export CSV resources/oMIconCycles.pngresources/oMIconCycles.png Simulation must have been run to export a CSV. 0 0 Channels Grains Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok ChannelSelector QGroupBox
uilib.widgets.channelSelector
1
GrainSelector QGroupBox
uilib.widgets.grainSelector
1
buttonBox accepted() CSVExporter accept() 248 254 157 274 buttonBox rejected() CSVExporter reject() 316 260 286 274
openmotor-0.6.0/uilib/views/forms/EngExporter.ui000066400000000000000000000053271500530174600217370ustar00rootroot00000000000000 EngExporterDialog 0 0 400 400 400 400 400 400 Export .eng file resources/oMIconCycles.pngresources/oMIconCycles.png 0 0 Simulation must have been run to export a RASP .eng file. 0 0 Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok CollectionEditor QWidget
uilib.widgets.collectionEditor
1
buttonBox accepted() EngExporterDialog accept() 248 254 157 274 buttonBox rejected() EngExporterDialog reject() 316 260 286 274
openmotor-0.6.0/uilib/views/forms/GrainPreview.ui000066400000000000000000000036521500530174600220760ustar00rootroot00000000000000 GrainPreview 0 0 330 175 0 0 330 175 330 175 Form QTabWidget::South 0 Alerts Face Regression Area Graph GrainPreviewGraph QWidget
uilib.widgets.grainPreviewGraph
1
openmotor-0.6.0/uilib/views/forms/ImageExporter.ui000066400000000000000000000060421500530174600222430ustar00rootroot00000000000000 ImageExporter 0 0 400 300 Export Image resources/oMIconCycles.pngresources/oMIconCycles.png Simulation must have been run to export an image. 0 0 X Axis 0 0 Y Axis Grains Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok ChannelSelector QGroupBox
uilib.widgets.channelSelector
1
GrainSelector QGroupBox
uilib.widgets.grainSelector
1
buttonBox accepted() ImageExporter accept() 248 254 157 274 buttonBox rejected() ImageExporter reject() 316 260 286 274
openmotor-0.6.0/uilib/views/forms/MainWindow.ui000066400000000000000000000532411500530174600215470ustar00rootroot00000000000000 MainWindow 0 0 1300 850 1300 850 16777215 16777215 openMotor resources/oMIconCycles.pngresources/oMIconCycles.png 600 0 0 0 0 475 4 Qt::Horizontal 0 0 0 250 16777215 0 0 120 0 16777215 16777215 Propellant Editor 0 0 400 300 Qt::ScrollBarAlwaysOff QAbstractScrollArea::AdjustIgnored QAbstractItemView::NoEditTriggers QAbstractItemView::SingleSelection QAbstractItemView::SelectRows Qt::ElideNone 2 false false Type Details 50 16777215 ↑ 50 16777215 ↓ Edit Copy Delete Add grain Qt::Vertical 0 0 0 300 170 16777215 170 Motor Statistics 6 6 6 6 Motor Designation: - Delivered ISP: - Peak Pressure: - Peak Kn: - Burn Time: - Impulse: - Propellant Length: - Peak Mass Flux: - Port/Throat Ratio: - Initial Kn: - Average Pressure: - Propellant Mass: - Volume Loading: - Ideal Thrust Coefficient: - Delivered Thrust Coefficient: - 0 0 1300 22 File Export Import Open Recent Simulate Edit Help Tools Quit Ctrl+Q Open Ctrl+O Save Ctrl+S Run Simulation Ctrl+R Preferences Ctrl+P About openMotor New Ctrl+N false Propellant Editor Undo Ctrl+Z Redo Ctrl+Y Save As Ctrl+Shift+S ResultsWidget QWidget
uilib.widgets.resultsWidget
1
MotorEditor QWidget
uilib.widgets.motorEditor
1
openmotor-0.6.0/uilib/views/forms/NozzlePreview.ui000066400000000000000000000026161500530174600223160ustar00rootroot00000000000000 NozzlePreview 0 0 330 175 0 0 330 175 330 175 Form QTabWidget::South 0 Alerts Cross Section openmotor-0.6.0/uilib/views/forms/Preferences.ui000066400000000000000000000064031500530174600217320ustar00rootroot00000000000000 PreferencesDialog 0 0 414 415 Preferences resources/oMIconCycles.pngresources/oMIconCycles.png 0 General Set the default motor configuration. Every motor you create will copy its configuration from these settings, and they can be changed for each motor individually in the grain table. true 0 0 Units Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok SettingsEditor QWidget
uilib.widgets.settingsEditor
1
buttonBox accepted() PreferencesDialog accept() 248 254 157 274 buttonBox rejected() PreferencesDialog reject() 316 260 286 274
openmotor-0.6.0/uilib/views/forms/PropMenu.ui000066400000000000000000000065271500530174600212450ustar00rootroot00000000000000 PropellantDialog Qt::ApplicationModal 0 0 850 700 850 700 16777215 16777215 Propellant Editor resources/oMIconCycles.pngresources/oMIconCycles.png 0 12 0 150 16777215 QAbstractItemView::SelectItems true New 0 Edit Delete Qt::Vertical 0 0 PropellantEditor QWidget
uilib.widgets.propellantEditor
1
openmotor-0.6.0/uilib/views/forms/PropellantPreview.ui000066400000000000000000000063651500530174600231620ustar00rootroot00000000000000 PropellantPreview 0 0 400 416 0 0 Form 0 0 0 220 16777215 220 QTabWidget::South 0 0 0 16777215 220 Alerts 0 0 16777215 220 Burn Rate 0 0 16777215 220 Pressure BurnrateGraph QWidget
uilib.widgets.burnrateGraph
1
PropellantPressureGraph QWidget
uilib.widgets.propellantPressureGraph
1
openmotor-0.6.0/uilib/views/forms/ResultsWidget.ui000066400000000000000000000251131500530174600222750ustar00rootroot00000000000000 ResultsWidget 0 0 843 626 Results QTabWidget::South 0 Graph 0 0 220 0 220 16777215 Qt::ScrollBarAlwaysOff true 0 0 218 560 Qt::Vertical 20 40 Grains 5 0 Port Mass Mass Flow (Port) Mass Flux (Port) Web 0 Consumed Burn Time: - Impulse: - Propellant Mass: - ISP: - Remaining Burn Time: - Impulse: - Propellant Mass: - ISP: - Qt::Horizontal false false Alerts QAbstractItemView::NoEditTriggers Level Type Location Details GraphWidget QWidget
uilib.widgets.graphWidget
1
ChannelSelector QWidget
uilib.widgets.channelSelector
1
GrainSelector QWidget
uilib.widgets.grainSelector
1
openmotor-0.6.0/uilib/views/forms/SimulatingDialog.ui000066400000000000000000000027441500530174600227310ustar00rootroot00000000000000 SimProgressDialog Qt::ApplicationModal 0 0 400 100 400 100 400 100 Simulating true resources/oMIconCycles.pngresources/oMIconCycles.png Running simulation... 0 QDialogButtonBox::Cancel openmotor-0.6.0/uilib/views/forms/SimulationAlertsDialog.ui000066400000000000000000000056371500530174600241200ustar00rootroot00000000000000 SimAlertsDialog Qt::ApplicationModal 0 0 700 300 0 0 700 300 700 300 Simulation Output resources/oMIconCycles.pngresources/oMIconCycles.png All errors must be resolved to view simulation results. QAbstractItemView::NoEditTriggers 4 Level Type Location Details Qt::Horizontal QDialogButtonBox::Ok buttonBox accepted() SimAlertsDialog accept() 248 254 157 274 buttonBox rejected() SimAlertsDialog reject() 316 260 286 274 openmotor-0.6.0/uilib/views/forms/TabularEditor.ui000066400000000000000000000061561500530174600222370ustar00rootroot00000000000000 TabularEditor 0 0 400 300 Form 0 6 0 0 Add Pressure Range 0 0 Remove Pressure Range Qt::Vertical 30 0 30 16777215 < 0 0 1/1 30 0 30 16777215 > openmotor-0.6.0/uilib/widgets/000077500000000000000000000000001500530174600163125ustar00rootroot00000000000000openmotor-0.6.0/uilib/widgets/__init__.py000066400000000000000000000000001500530174600204110ustar00rootroot00000000000000openmotor-0.6.0/uilib/widgets/aboutDialog.py000066400000000000000000000006221500530174600211160ustar00rootroot00000000000000from PyQt6.QtWidgets import QDialog, QApplication from ..views.AboutDialog_ui import Ui_AboutDialog class AboutDialog(QDialog): def __init__(self, version): QDialog.__init__(self) self.ui = Ui_AboutDialog() self.ui.setupUi(self) self.setWindowIcon(QApplication.instance().icon) self.ui.labelText.setText(self.ui.labelText.text().replace('###', version)) openmotor-0.6.0/uilib/widgets/burnrateGraph.py000066400000000000000000000024621500530174600214740ustar00rootroot00000000000000from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas from matplotlib.figure import Figure from motorlib.units import convertAll class BurnrateGraph(FigureCanvas): def __init__(self): super(BurnrateGraph, self).__init__(Figure()) self.setParent(None) self.preferences = None self.figure = Figure() self.canvas = FigureCanvas(self.figure) self.figure.tight_layout() self.plot = self.figure.add_subplot(111) def setPreferences(self, pref): self.preferences = pref def cleanup(self): self.plot.clear() self.draw() def showGraph(self, points): presUnit = self.preferences.getUnit('Pa') rateUnit = self.preferences.getUnit('m/s') # I really don't like this, but it is necessary for this graph and the c* output to coexist if rateUnit == 'ft/s': rateUnit = 'in/s' if rateUnit == 'm/s': rateUnit = 'mm/s' self.plot.plot(convertAll(points[0], 'Pa', presUnit), convertAll(points[1], 'm/s', rateUnit)) self.plot.set_xlabel('Pressure - {}'.format(presUnit)) self.plot.set_ylabel('Burn Rate - {}'.format(rateUnit)) self.plot.grid(True) self.figure.subplots_adjust(top=0.95, bottom=0.25) self.draw() openmotor-0.6.0/uilib/widgets/channelSelector.py000066400000000000000000000045171500530174600220040ustar00rootroot00000000000000from PyQt6.QtWidgets import QGroupBox, QCheckBox, QRadioButton, QVBoxLayout from PyQt6.QtCore import pyqtSignal, Qt import motorlib class ChannelSelector(QGroupBox): checksChanged = pyqtSignal() def __init__(self, parent): super().__init__(parent) self.checks = {} # Populate list of checks to toggle channels self.setLayout(QVBoxLayout()) def setupChecks(self, multiselect, disabled=[], default=None, exclude=[]): # This simres is only used to get the list of channels available simres = motorlib.simResult.SimulationResult(motorlib.motor.Motor()) for channel in simres.channels: if channel not in exclude: if multiselect: check = QCheckBox(simres.channels[channel].name) else: check = QRadioButton(simres.channels[channel].name) self.layout().addWidget(check) self.checks[channel] = check if default is not None: if multiselect: if channel in default: self.checks[channel].setCheckState(Qt.CheckState.Checked) else: self.checks[channel].setChecked(channel == default) self.checks[channel].toggled.connect(self.checksChanged.emit) if channel in disabled: check.setEnabled(False) def getSelectedChannels(self): selected = [] for check in self.checks: if self.checks[check].isChecked(): selected.append(check) return selected def getUnselectedChannels(self): selected = [] for check in self.checks: if not self.checks[check].isChecked(): selected.append(check) return selected def resetChecks(self): for check in self.checks: self.layout().removeWidget(self.checks[check]) self.checks = {} def unselect(self, channels): for channel in channels: if channel in self.checks.keys(): self.checks[channel].setCheckState(Qt.CheckState.Unchecked) def toggleEnabled(self, channels, enabled): for channel in channels: if channel in self.checks.keys(): self.checks[channel].setEnabled(enabled)openmotor-0.6.0/uilib/widgets/collectionEditor.py000066400000000000000000000056321500530174600221740ustar00rootroot00000000000000from PyQt6.QtWidgets import QWidget, QFormLayout, QVBoxLayout, QHBoxLayout from PyQt6.QtWidgets import QLabel, QPushButton from PyQt6.QtWidgets import QSpacerItem, QSizePolicy from PyQt6.QtCore import pyqtSignal from .propertyEditor import PropertyEditor class CollectionEditor(QWidget): changeApplied = pyqtSignal(dict) closed = pyqtSignal() def __init__(self, parent, buttons=False): super(CollectionEditor, self).__init__(QWidget(parent)) self.preferences = None self.propertyEditors = {} self.setLayout(QVBoxLayout()) self.layout().setSpacing(0) self.form = QFormLayout() self.layout().addLayout(self.form) self.stats = QVBoxLayout() self.layout().addLayout(self.stats) self.verticalSpacer = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding) self.layout().addItem(self.verticalSpacer) self.buttons = buttons if self.buttons: self.addButtons() def addButtons(self): self.buttons = QHBoxLayout() self.layout().addLayout(self.buttons) self.applyButton = QPushButton('Apply') self.applyButton.pressed.connect(self.apply) self.applyButton.hide() self.cancelButton = QPushButton('Cancel') self.cancelButton.pressed.connect(self.close) self.cancelButton.hide() self.buttons.addWidget(self.applyButton) self.buttons.addWidget(self.cancelButton) def propertyUpdate(self): pass def close(self): self.closed.emit() self.cleanup() def apply(self): res = self.getProperties() self.cleanup() self.changeApplied.emit(res) self.closed.emit() def setPreferences(self, pref): self.preferences = pref def loadProperties(self, obj): self.cleanup() for prop in obj.props: self.propertyEditors[prop] = PropertyEditor(self, obj.props[prop], self.preferences) self.propertyEditors[prop].valueChanged.connect(self.propertyUpdate) label = QLabel('{}:'.format(obj.props[prop].dispName)) label.setSizePolicy(QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding) self.form.addRow(label, self.propertyEditors[prop]) if self.buttons: self.applyButton.show() self.cancelButton.show() self.propertyUpdate() def cleanup(self): for _ in self.propertyEditors: self.form.removeRow(0) # Removes the first row, but will delete all by the end of the loop self.propertyEditors = {} if self.buttons: self.applyButton.hide() self.cancelButton.hide() def getProperties(self): res = {} for prop in self.propertyEditors: out = self.propertyEditors[prop].getValue() if out is not None: res[prop] = out return res openmotor-0.6.0/uilib/widgets/grainImageWidget.py000066400000000000000000000012411500530174600220710ustar00rootroot00000000000000from PyQt6.QtWidgets import QLabel, QApplication from PyQt6.QtGui import QPixmap, QImage import numpy as np class GrainImageWidget(QLabel): def showImage(self, image): np.ma.set_fill_value(image, 0) image = np.logical_not(image.filled()) image = image.astype(np.uint8) * 255 height, width = image.shape # Invert colors in dark mode if QApplication.instance() and QApplication.instance().isDarkMode(): image[image == 255] = 30 image[image == 0] = 192 qImg = QImage(image.data, width, height, QImage.Format.Format_Grayscale8) pixmap = QPixmap(qImg) self.setPixmap(pixmap) openmotor-0.6.0/uilib/widgets/grainPreviewGraph.py000066400000000000000000000046521500530174600223170ustar00rootroot00000000000000from itertools import cycle import numpy as np from PyQt6.QtWidgets import QApplication from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas from matplotlib.figure import Figure class GrainPreviewGraph(FigureCanvas): def __init__(self): super(GrainPreviewGraph, self).__init__(Figure()) self.setParent(None) self.preferences = None self.image = None self.numContours = 0 self.figure = Figure() self.canvas = FigureCanvas(self.figure) self.figure.tight_layout() self.plot = self.figure.add_subplot(111) def setPreferences(self, pref): self.preferences = pref def setupImagePlot(self): self.figure.subplots_adjust(bottom=0.01, top=0.99, hspace=0) self.plot.xaxis.set_visible(False) self.plot.yaxis.set_visible(False) self.plot.axis('off') def setupGraphPlot(self): self.plot.set_xticklabels([]) self.plot.set_yticklabels([]) def cleanup(self): if self.image is not None: self.image.remove() self.image = None if self.numContours > 0: for _ in range(0, self.numContours): self.plot.lines[0].remove() self.numContours = 0 self.draw() def showImage(self, image): isDarkMode = QApplication.instance() and QApplication.instance().isDarkMode() # Image is an array core is 0, any other value is propellant # Cast it to a bool so core is 0, propellant is 1 np.ma.set_fill_value(image, 0) image = image.filled().astype(bool) coreColor = 30 if isDarkMode else 255 propellantColor = 192 if isDarkMode else 0 image = np.where(image, propellantColor, coreColor).astype(np.uint8) self.image = self.plot.imshow(image, cmap='gray', vmin=0, vmax=255) self.draw() def showContours(self, contours): colorCycle = cycle(['r', 'g', 'b', 'y']) for contourSet in contours: color = next(colorCycle) for contour in contourSet: self.plot.plot(contour[:, 1], contour[:, 0], linewidth=1, c=color) self.numContours += 1 self.draw() def showGraph(self, points): self.plot.plot(points[0], points[1], c='b') self.numContours += 1 self.draw() def resetGraphBounds(self): self.plot.clear() self.setupGraphPlot() openmotor-0.6.0/uilib/widgets/grainPreviewWidget.py000066400000000000000000000053541500530174600225010ustar00rootroot00000000000000from threading import Thread from PyQt6.QtWidgets import QWidget from PyQt6.QtCore import pyqtSignal import motorlib from ..views.GrainPreview_ui import Ui_GrainPreview class GrainPreviewWidget(QWidget): previewReady = pyqtSignal(tuple) def __init__(self): super().__init__() self.ui = Ui_GrainPreview() self.ui.setupUi(self) self.ui.tabFace.setupImagePlot() self.ui.tabRegression.setupImagePlot() self.ui.tabAreaGraph.setupGraphPlot() # Used to navigate back to the tab the user was on after they clear alerts self.lastNonAlertTab = 1 self.ui.tabWidget.currentChanged.connect(self.onTabChanged) self.previewReady.connect(self.updateView) def loadGrain(self, grain): geomAlerts = grain.getGeometryErrors() self.ui.tabAlerts.clear() for err in geomAlerts: self.ui.tabAlerts.addItem(err.description) for alert in geomAlerts: if alert.level == motorlib.simResult.SimAlertLevel.ERROR: # Go to alerts tab and clear up graph/images self.ui.tabWidget.setCurrentIndex(0) self.ui.tabFace.cleanup() self.ui.tabRegression.cleanup() self.ui.tabAreaGraph.cleanup() return # If they were on the alert tab, go to their last image/graph tab. Otherwise, let them stay if self.ui.tabWidget.currentIndex() == 0: self.ui.tabWidget.setCurrentIndex(self.lastNonAlertTab) # Generate the contents to show on the image/graph tabs dataThread = Thread(target=self._genData, args=[grain]) dataThread.start() def _genData(self, grain): out = grain.getRegressionData(250, coreBlack=False) self.previewReady.emit(out) def updateView(self, data): coreIm, regImage, contours, contourLengths = data self.ui.tabFace.cleanup() self.ui.tabFace.showImage(coreIm) if regImage is not None: self.ui.tabRegression.cleanup() self.ui.tabRegression.showImage(regImage) self.ui.tabRegression.showContours(contours) points = [[], []] for k in contourLengths.keys(): points[0].append(k) points[1].append(contourLengths[k]) self.ui.tabAreaGraph.cleanup() self.ui.tabAreaGraph.showGraph(points) def onTabChanged(self, tabIndex): if tabIndex != 0: self.lastNonAlertTab = tabIndex def cleanup(self): self.lastNonAlertTab = 1 self.ui.tabAlerts.clear() self.ui.tabRegression.cleanup() self.ui.tabFace.cleanup() self.ui.tabAreaGraph.cleanup() self.ui.tabAreaGraph.resetGraphBounds() openmotor-0.6.0/uilib/widgets/grainSelector.py000066400000000000000000000032401500530174600214640ustar00rootroot00000000000000from PyQt6.QtWidgets import QGroupBox, QCheckBox, QRadioButton, QVBoxLayout from PyQt6.QtCore import pyqtSignal, Qt class GrainSelector(QGroupBox): checksChanged = pyqtSignal() def __init__(self, parent): super().__init__(parent) self.checks = [] self.setLayout(QVBoxLayout()) self.setTitle("Grains") def resetChecks(self): for _ in range(0, len(self.checks)): self.layout().removeWidget(self.checks[-1]) self.checks[-1].deleteLater() del self.checks[-1] def setupChecks(self, simRes, multiselect): for gid, _ in enumerate(simRes.motor.grains): checkTitle = "Grain " + str(gid + 1) if multiselect: check = QCheckBox(checkTitle) check.setCheckState(Qt.CheckState.Checked) else: check = QRadioButton(checkTitle) self.layout().addWidget(check) self.checks.append(check) self.checks[-1].toggled.connect(self.checksChanged.emit) def getSelectedGrains(self): selected = [] for checkId, check in enumerate(self.checks): if check.isChecked(): selected.append(checkId) return selected def getUnselectedGrains(self): selected = [] for checkId, check in enumerate(self.checks): if not check.isChecked(): selected.append(checkId) return selected def setChecks(self, checks): for check in self.checks: check.setCheckState(Qt.CheckState.Unchecked) for check in checks: self.checks[check].setCheckState(Qt.CheckState.Checked) openmotor-0.6.0/uilib/widgets/graphWidget.py000066400000000000000000000061561500530174600211410ustar00rootroot00000000000000from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas from matplotlib.figure import Figure def selectGrains(data, grains): # Returns the data corresponding to specific grains from data structured like [[G1, G2], [G1, G2], [G1, G2]...] out = [] for frame in data: out.append([]) for grain in grains: out[-1].append(frame[grain]) return out class GraphWidget(FigureCanvas): def __init__(self, parent): super(GraphWidget, self).__init__(Figure()) self.setParent(None) self.setupPlot() self.preferences = None def setPreferences(self, pref): self.preferences = pref def setupPlot(self): self.figure = Figure() self.canvas = FigureCanvas(self.figure) self.plot = self.figure.add_subplot(111) self.figure.tight_layout() def plotData(self, simResult, xChannel, yChannels, grains): self.plot.clear() xAxisUnit = self.preferences.getUnit(simResult.channels[xChannel].unit) legend = [] if simResult.channels[xChannel].valueType in (list, tuple): if len(grains) > 0: xData = selectGrains(simResult.channels[xChannel].getData(xAxisUnit), grains) else: return else: xData = simResult.channels[xChannel].getData(xAxisUnit) for channelName in yChannels: channel = simResult.channels[channelName] yUnit = self.preferences.getUnit(channel.unit) if channel.valueType in (list, tuple) and len(grains) > 0: yData = selectGrains(channel.getData(yUnit), grains) self.plot.plot(xData, yData) elif channel.valueType in (int, float): self.plot.plot(xData, channel.getData(yUnit)) if channel.valueType in (int, float): if yUnit != '': legend.append('{} - {}'.format(channel.name, yUnit)) else: legend.append(channel.name) elif channel.valueType in (list, tuple): for i in range(len(channel.getData()[0])): if i in grains: if yUnit != '': legend.append('{} - Grain {} - {}'.format(channel.name, i + 1, yUnit)) else: legend.append('{} - Grain {}'.format(channel.name, i + 1)) self.plot.legend(legend) self.plot.set_xlabel('{} - {}'.format(simResult.channels[xChannel].name, xAxisUnit)) self.plot.grid(True) def saveImage(self, simResult, xChannel, yChannels, grains, path): self.plotData(simResult, xChannel, yChannels, grains) self.plot.set_title(simResult.getFullDesignation()) self.figure.savefig(path, bbox_inches="tight") # Clear, but don't draw to not wipe away the graph in the UI self.plot.clear() def showData(self, simResult, xChannel, yChannels, grains): self.plotData(simResult, xChannel, yChannels, grains) self.draw() def resetPlot(self): self.plot.clear() self.draw() openmotor-0.6.0/uilib/widgets/mainWindow.py000066400000000000000000000427371500530174600210150ustar00rootroot00000000000000import sys from threading import Thread from PyQt6.QtWidgets import QWidget, QMainWindow, QTableWidgetItem, QHeaderView, QTableWidget from PyQt6.QtCore import Qt import motorlib import uilib.widgets.aboutDialog import uilib.widgets.preferencesMenu from uilib.views.MainWindow_ui import Ui_MainWindow class Window(QMainWindow): def __init__(self, app): QMainWindow.__init__(self) self.ui = Ui_MainWindow() self.ui.setupUi(self) self.app = app self.setWindowIcon(self.app.icon) self.appVersion = uilib.fileIO.appVersion self.appVersionStr = uilib.fileIO.appVersionStr self.app.preferencesManager.preferencesChanged.connect(self.applyPreferences) self.app.propellantManager.updated.connect(self.propListChanged) self.motorStatLabels = [self.ui.labelMotorDesignation, self.ui.labelImpulse, self.ui.labelDeliveredISP, self.ui.labelBurnTime, self.ui.labelVolumeLoading, self.ui.labelAveragePressure, self.ui.labelPeakPressure, self.ui.labelInitialKN, self.ui.labelPeakKN, self.ui.labelIdealThrustCoefficient, self.ui.labelPropellantMass, self.ui.labelPropellantLength, self.ui.labelPortThroatRatio, self.ui.labelPeakMassFlux, self.ui.labelDeliveredThrustCoefficient ] self.app.fileManager.fileNameChanged.connect(self.updateWindowTitle) self.app.fileManager.newMotor.connect(self.resetOutput) self.app.fileManager.newMotor.connect(self.getQuickResults) self.app.fileManager.recentFileLoaded.connect(self.motorImported) self.app.importExportManager.motorImported.connect(self.motorImported) self.app.simulationManager.newSimulationResult.connect(self.updateMotorStats) self.app.simulationManager.newSimulationResult.connect(self.ui.resultsWidget.showData) self.aboutDialog = uilib.widgets.aboutDialog.AboutDialog(self.appVersionStr) self.app.toolManager.setupMenu(self.ui.menuTools) self.app.toolManager.changeApplied.connect(self.postLoadUpdate) self.setupMotorStats() self.setupMotorEditor() self.setupGrainAddition() self.setupMenu() self.setupPropSelector() self.setupGrainTable() self.setupGraph() def updateWindowTitle(self, name, saved): if not name and saved: self.setWindowTitle('openMotor') return unsavedStr = '*' if not saved else '' displayName = name if name is not None else '' self.setWindowTitle('openMotor - {}{}'.format(displayName, unsavedStr)) def setupMotorStats(self): for label in self.motorStatLabels: label.setText("-") def doubleClickGrainSelector(self): self.editGrain() def setupMotorEditor(self): self.ui.motorEditor.setPreferences(self.app.preferencesManager.preferences) self.ui.pushButtonEditGrain.pressed.connect(self.editGrain) self.ui.motorEditor.changeApplied.connect(self.applyChange) # Enables only buttons for actions possible given the selected grain self.ui.motorEditor.closed.connect(self.checkGrainSelection) def setupGrainAddition(self): self.ui.comboBoxGrainGeometry.addItems(motorlib.grains.grainTypes.keys()) self.ui.pushButtonAddGrain.pressed.connect(self.addGrain) def setupMenu(self): # File menu self.ui.actionNew.triggered.connect(self.newMotor) self.ui.actionSave.triggered.connect(self.app.fileManager.save) self.ui.actionSaveAs.triggered.connect(self.app.fileManager.saveAs) # Lambda because the signal passes in an argument self.ui.actionOpen.triggered.connect(lambda x: self.loadMotor(None)) self.app.importExportManager.createMenus(self.ui.menuImport, self.ui.menuExport) self.app.fileManager.createRecentlyOpenedMenu(self.ui.menuOpen_Recent) self.ui.actionQuit.triggered.connect(self.closeEvent) # Edit menu self.ui.actionUndo.triggered.connect(self.undo) self.ui.actionRedo.triggered.connect(self.redo) self.ui.actionPreferences.triggered.connect(self.app.preferencesManager.showMenu) self.ui.actionPropellantEditor.triggered.connect(self.app.propellantManager.showMenu) # Sim self.ui.actionRunSimulation.triggered.connect(self.runSimulation) # Help self.ui.actionAboutOpenMotor.triggered.connect(self.aboutDialog.show) def setupPropSelector(self): self.ui.pushButtonPropEditor.pressed.connect(self.app.propellantManager.showMenu) self.populatePropSelector() self.ui.comboBoxPropellant.currentIndexChanged.connect(self.propChooserChanged) self.updatePropBoxSelection() def populatePropSelector(self): self.ui.comboBoxPropellant.clear() self.ui.comboBoxPropellant.addItem('-') self.ui.comboBoxPropellant.addItems(self.app.propellantManager.getNames()) def disablePropSelector(self): self.ui.comboBoxPropellant.blockSignals(True) def enablePropSelector(self): self.ui.comboBoxPropellant.blockSignals(False) def updatePropBoxSelection(self): self.disablePropSelector() cm = self.app.fileManager.getCurrentMotor() prop = self.app.fileManager.getCurrentMotor().propellant if prop is None: self.ui.comboBoxPropellant.setCurrentText('-') else: self.ui.comboBoxPropellant.setCurrentText(prop.getProperty("name")) self.enablePropSelector() def setupGrainTable(self): self.ui.tableWidgetGrainList.clearContents() header = self.ui.tableWidgetGrainList.horizontalHeader() header.setSectionResizeMode(0, QHeaderView.ResizeMode.ResizeToContents) header.setSectionResizeMode(1, QHeaderView.ResizeMode.Stretch) self.updateGrainTable() self.ui.pushButtonMoveGrainUp.pressed.connect(lambda: self.moveGrain(-1)) self.ui.pushButtonMoveGrainDown.pressed.connect(lambda: self.moveGrain(1)) self.ui.pushButtonDeleteGrain.pressed.connect(self.deleteGrain) self.ui.pushButtonCopyGrain.pressed.connect(self.copyGrain) self.ui.tableWidgetGrainList.itemSelectionChanged.connect(self.checkGrainSelection) self.checkGrainSelection() self.ui.tableWidgetGrainList.doubleClicked.connect(self.doubleClickGrainSelector) def setupGraph(self): self.ui.resultsWidget.resetPlot() self.ui.resultsWidget.setPreferences(self.app.preferencesManager.preferences) def applyChange(self, propDict): ind = self.ui.tableWidgetGrainList.selectionModel().selectedRows() cm = self.app.fileManager.getCurrentMotor() if len(ind) > 0: gid = ind[0].row() if gid < len(cm.grains): cm.grains[gid].setProperties(propDict) elif gid == len(cm.grains): cm.nozzle.setProperties(propDict) else: cm.config.setProperties(propDict) self.app.fileManager.addNewMotorHistory(cm) self.updateGrainTable() def propListChanged(self): self.resetOutput() self.disablePropSelector() self.populatePropSelector() self.updatePropBoxSelection() self.enablePropSelector() def propChooserChanged(self): cm = self.app.fileManager.getCurrentMotor() if self.ui.comboBoxPropellant.currentIndex() == 0: cm.propellant = None else: cm.propellant = self.app.propellantManager.propellants[self.ui.comboBoxPropellant.currentIndex() - 1] self.app.fileManager.addNewMotorHistory(cm) def updateGrainTable(self): cm = self.app.fileManager.getCurrentMotor() self.ui.tableWidgetGrainList.setRowCount(len(cm.grains) + 2) lengthUnit = self.app.preferencesManager.preferences.units.getProperty('m') for gid, grain in enumerate(cm.grains): self.ui.tableWidgetGrainList.setItem(gid, 0, QTableWidgetItem(grain.geomName)) self.ui.tableWidgetGrainList.setItem(gid, 1, QTableWidgetItem(grain.getDetailsString(lengthUnit))) self.ui.tableWidgetGrainList.setItem(len(cm.grains), 0, QTableWidgetItem('Nozzle')) self.ui.tableWidgetGrainList.setItem(len(cm.grains), 1, QTableWidgetItem(cm.nozzle.getDetailsString(lengthUnit))) self.ui.tableWidgetGrainList.setItem(len(cm.grains) + 1, 0, QTableWidgetItem('Config')) self.ui.tableWidgetGrainList.setItem(len(cm.grains) + 1, 1, QTableWidgetItem('-')) def toggleGrainEditButtons(self, state, grainTable=True): if grainTable: self.ui.tableWidgetGrainList.setEnabled(state) self.ui.pushButtonDeleteGrain.setEnabled(state) self.ui.pushButtonEditGrain.setEnabled(state) self.ui.pushButtonCopyGrain.setEnabled(state) self.ui.pushButtonMoveGrainDown.setEnabled(state) self.ui.pushButtonMoveGrainUp.setEnabled(state) def toggleGrainButtons(self, state): self.toggleGrainEditButtons(state) self.ui.comboBoxPropellant.setEnabled(state) self.ui.comboBoxGrainGeometry.setEnabled(state) self.ui.pushButtonAddGrain.setEnabled(state) def checkGrainSelection(self): ind = self.ui.tableWidgetGrainList.selectionModel().selectedRows() cm = self.app.fileManager.getCurrentMotor() if len(ind) > 0: gid = ind[0].row() self.toggleGrainButtons(True) if gid == 0: # Top grain selected self.ui.pushButtonMoveGrainUp.setEnabled(False) if gid == len(cm.grains) - 1: # Bottom grain selected self.ui.pushButtonMoveGrainDown.setEnabled(False) if gid >= len(cm.grains): # Nozzle or config selected self.ui.pushButtonMoveGrainUp.setEnabled(False) self.ui.pushButtonMoveGrainDown.setEnabled(False) self.ui.pushButtonDeleteGrain.setEnabled(False) self.ui.pushButtonCopyGrain.setEnabled(False) else: self.toggleGrainEditButtons(False, False) def moveGrain(self, offset): cm = self.app.fileManager.getCurrentMotor() ind = self.ui.tableWidgetGrainList.selectionModel().selectedRows() if len(ind) > 0: gid = ind[0].row() if gid < len(cm.grains) and gid + offset < len(cm.grains) and gid + offset >= 0: cm.grains[gid + offset], cm.grains[gid] = cm.grains[gid], cm.grains[gid + offset] self.ui.tableWidgetGrainList.selectRow(gid + offset) self.app.fileManager.addNewMotorHistory(cm) self.updateGrainTable() def editGrain(self): ind = self.ui.tableWidgetGrainList.selectionModel().selectedRows() cm = self.app.fileManager.getCurrentMotor() if len(ind) > 0: gid = ind[0].row() if gid < len(cm.grains): self.ui.motorEditor.loadObject(cm.grains[gid]) elif gid == len(cm.grains): self.ui.motorEditor.loadObject(cm.nozzle) else: self.ui.motorEditor.loadObject(cm.config) self.toggleGrainButtons(False) def copyGrain(self): ind = self.ui.tableWidgetGrainList.selectionModel().selectedRows() cm = self.app.fileManager.getCurrentMotor() if len(ind) > 0: gid = ind[0].row() if gid < len(cm.grains): cm.grains.append(cm.grains[gid]) self.app.fileManager.addNewMotorHistory(cm) self.updateGrainTable() self.checkGrainSelection() def deleteGrain(self): ind = self.ui.tableWidgetGrainList.selectionModel().selectedRows() cm = self.app.fileManager.getCurrentMotor() if len(ind) > 0: gid = ind[0].row() if gid < len(cm.grains): del cm.grains[gid] self.app.fileManager.addNewMotorHistory(cm) self.updateGrainTable() self.checkGrainSelection() def addGrain(self): cm = self.app.fileManager.getCurrentMotor() newGrain = motorlib.grains.grainTypes[self.ui.comboBoxGrainGeometry.currentText()]() if len(cm.grains) != 0: newGrain.setProperty('diameter', cm.grains[-1].getProperty('diameter')) cm.grains.append(newGrain) self.app.fileManager.addNewMotorHistory(cm) self.updateGrainTable() self.ui.tableWidgetGrainList.selectRow(len(cm.grains) - 1) self.ui.motorEditor.loadObject(cm.grains[-1]) self.checkGrainSelection() self.toggleGrainButtons(False) def formatMotorStat(self, quantity, inUnit): convUnit = self.app.preferencesManager.preferences.getUnit(inUnit) return '{:.2f} {}'.format(motorlib.units.convert(quantity, inUnit, convUnit), convUnit) def updateMotorStats(self, simResult): self.ui.labelMotorDesignation.setText('{} ({:.0%})'.format(simResult.getDesignation(), simResult.getImpulseClassPercentage())) self.ui.labelImpulse.setText(self.formatMotorStat(simResult.getImpulse(), 'Ns')) self.ui.labelDeliveredISP.setText(self.formatMotorStat(simResult.getISP(), 's')) self.ui.labelBurnTime.setText(self.formatMotorStat(simResult.getBurnTime(), 's')) self.ui.labelVolumeLoading.setText('{:.2f}%'.format(simResult.getVolumeLoading())) self.ui.labelAveragePressure.setText(self.formatMotorStat(simResult.getAveragePressure(), 'Pa')) self.ui.labelPeakPressure.setText(self.formatMotorStat(simResult.getMaxPressure(), 'Pa')) self.ui.labelInitialKN.setText(self.formatMotorStat(simResult.getInitialKN(), '')) self.ui.labelPeakKN.setText(self.formatMotorStat(simResult.getPeakKN(), '')) self.ui.labelIdealThrustCoefficient.setText(self.formatMotorStat(simResult.getIdealThrustCoefficient(), '')) self.ui.labelPropellantMass.setText(self.formatMotorStat(simResult.getPropellantMass(), 'kg')) self.ui.labelPropellantLength.setText(self.formatMotorStat(simResult.getPropellantLength(), 'm')) # These only make sense for grains with cores, so blank them out for endburners if simResult.getPortRatio() is not None: self.ui.labelPortThroatRatio.setText(self.formatMotorStat(simResult.getPortRatio(), '')) peakMassFluxQuantity = self.formatMotorStat(simResult.getPeakMassFlux(), 'kg/(m^2*s)') peakMassFluxGrain = simResult.getPeakMassFluxLocation() + 1 self.ui.labelPeakMassFlux.setText('{} (G: {})'.format(peakMassFluxQuantity, peakMassFluxGrain)) else: self.ui.labelPortThroatRatio.setText('-') self.ui.labelPeakMassFlux.setText('-') self.ui.labelDeliveredThrustCoefficient.setText(self.formatMotorStat(simResult.getAdjustedThrustCoefficient(), '')) def getQuickResults(self, motor): thread = lambda: self.showQuickResults(motor.getQuickResults()) dataThread = Thread(target=thread) dataThread.start() def showQuickResults(self, results): self.ui.labelVolumeLoading.setText('{:.2f}%'.format(results['volumeLoading'])) self.ui.labelInitialKN.setText(self.formatMotorStat(results['initialKn'], '')) self.ui.labelPropellantLength.setText(self.formatMotorStat(results['length'], 'm')) self.ui.labelPropellantMass.setText(self.formatMotorStat(results['propellantMass'], 'kg')) self.ui.labelPortThroatRatio.setText(self.formatMotorStat(results['portRatio'], '')) def runSimulation(self): self.resetOutput() cm = self.app.fileManager.getCurrentMotor() self.app.simulationManager.runSimulation(cm) def resetOutput(self): self.setupMotorStats() self.ui.resultsWidget.resetPlot() self.updateGrainTable() def undo(self): self.app.fileManager.undo() self.updateGrainTable() self.checkGrainSelection() self.updatePropBoxSelection() self.ui.motorEditor.close() def redo(self): self.app.fileManager.redo() self.updateGrainTable() self.checkGrainSelection() self.updatePropBoxSelection() self.ui.motorEditor.close() def newMotor(self): self.app.fileManager.newFile() self.updatePropBoxSelection() self.resetOutput() self.ui.motorEditor.close() def motorImported(self): self.ui.motorEditor.close() self.postLoadUpdate() def loadMotor(self, path=None): self.disablePropSelector() if self.app.fileManager.load(path): self.postLoadUpdate() # Needed because postLoadUpdate clears results self.getQuickResults(self.app.fileManager.getCurrentMotor()) self.enablePropSelector() self.ui.motorEditor.close() # Clear out all info related to old motor/sim in the interface def postLoadUpdate(self): self.disablePropSelector() # It is enabled again at the end of updatePropBoxSelection self.resetOutput() self.updateGrainTable() self.populatePropSelector() self.updatePropBoxSelection() def closeEvent(self, event=None): if self.app.fileManager.unsavedCheck(): sys.exit() return if event is None or isinstance(event, bool): return event.ignore() def applyPreferences(self, prefDict): self.updateGrainTable() self.setupMotorStats() self.setupGraph() def keyPressEvent(self, event): if event.key() == Qt.Key.Key_Delete or event.key() == Qt.Key.Key_Backspace: if len(self.ui.tableWidgetGrainList.selectedItems()) != 0: self.deleteGrain() openmotor-0.6.0/uilib/widgets/motorEditor.py000066400000000000000000000046271500530174600212040ustar00rootroot00000000000000from PyQt6.QtWidgets import QLabel import motorlib.grain import motorlib.nozzle import motorlib.motor from .collectionEditor import CollectionEditor from .grainPreviewWidget import GrainPreviewWidget from .nozzlePreviewWidget import NozzlePreviewWidget class MotorEditor(CollectionEditor): def __init__(self, parent): super().__init__(parent, True) self.expRatioLabel = QLabel("Expansion ratio: -") self.expRatioLabel.hide() self.stats.addWidget(self.expRatioLabel) self.grainPreview = GrainPreviewWidget() self.grainPreview.hide() self.stats.addWidget(self.grainPreview) self.nozzlePreview = NozzlePreviewWidget() self.nozzlePreview.hide() self.stats.addWidget(self.nozzlePreview) self.objType = None def propertyUpdate(self): if issubclass(self.objType, motorlib.nozzle.Nozzle): exitDia = self.propertyEditors['exit'].getValue() throatDia = self.propertyEditors['throat'].getValue() if throatDia == 0: self.expRatioLabel.setText('Expansion ratio: -') else: self.expRatioLabel.setText('Expansion ratio: {:.3f}'.format((exitDia / throatDia) ** 2)) nozzle = self.objType() nozzle.setProperties(self.getProperties()) self.nozzlePreview.loadNozzle(nozzle) if issubclass(self.objType, motorlib.grain.PerforatedGrain): testGrain = self.objType() testGrain.setProperties(self.getProperties()) self.grainPreview.loadGrain(testGrain) def loadObject(self, obj): self.objType = type(obj) self.loadProperties(obj) if issubclass(self.objType, motorlib.grain.PerforatedGrain): self.grainPreview.show() self.nozzlePreview.hide() self.expRatioLabel.hide() self.propertyUpdate() if issubclass(self.objType, motorlib.nozzle.Nozzle): self.expRatioLabel.show() self.nozzlePreview.show() self.grainPreview.hide() if issubclass(self.objType, motorlib.motor.MotorConfig): self.expRatioLabel.hide() self.nozzlePreview.hide() self.grainPreview.hide() def cleanup(self): self.expRatioLabel.hide() self.grainPreview.hide() self.nozzlePreview.hide() self.grainPreview.cleanup() super().cleanup() openmotor-0.6.0/uilib/widgets/nozzlePreviewWidget.py000066400000000000000000000065241500530174600227220ustar00rootroot00000000000000from math import radians, tan from PyQt6.QtWidgets import QWidget, QApplication, QGraphicsScene, QGraphicsPolygonItem from PyQt6.QtGui import QPolygonF, QBrush from PyQt6.QtCore import QPointF, Qt, QTimer import motorlib from ..views.NozzlePreview_ui import Ui_NozzlePreview class NozzlePreviewWidget(QWidget): def __init__(self): super().__init__() self.ui = Ui_NozzlePreview() self.ui.setupUi(self) self.brush = QBrush() if QApplication.instance() and QApplication.instance().isDarkMode(): self.brush.setColor(Qt.GlobalColor.lightGray) self.brush.setStyle(Qt.BrushStyle.SolidPattern) self.scene = QGraphicsScene(self) self.upper = QGraphicsPolygonItem() self.lower = QGraphicsPolygonItem() self.upper.setBrush(self.brush) self.lower.setBrush(self.brush) self.scene.addItem(self.upper) self.scene.addItem(self.lower) self.ui.tabCrossSection.setScene(self.scene) self.ui.tabWidget.currentChanged.connect(self.rescale) def loadNozzle(self, nozzle): geomAlerts = nozzle.getGeometryErrors() self.ui.tabAlerts.clear() for err in geomAlerts: self.ui.tabAlerts.addItem(err.description) self.upper.setPolygon(QPolygonF([])) self.lower.setPolygon(QPolygonF([])) for alert in geomAlerts: if alert.level == motorlib.simResult.SimAlertLevel.ERROR: self.ui.tabWidget.setCurrentIndex(0) return convAngle = radians(nozzle.props['convAngle'].getValue()) throatLen = nozzle.props['throatLength'].getValue() throatRad = nozzle.props['throat'].getValue() / 2 divAngle = radians(nozzle.props['divAngle'].getValue()) exitRad = nozzle.props['exit'].getValue() / 2 outerRad = 1.25 * exitRad if QApplication.instance() and QApplication.instance().fileManager: # Check if the app exists and has a fm motor = QApplication.instance().fileManager.getCurrentMotor() if len(motor.grains) > 0: outerRad = motor.grains[0].getProperty('diameter') / 2 scale = 100 / nozzle.props['exit'].getValue() radDiff = exitRad - throatRad if divAngle != 0: divLen = radDiff / tan(divAngle) else: divLen = 0 if convAngle != 0: convLen = (outerRad - throatRad) / tan(convAngle) else: convLen = 0 nozzleBottomRad = max(exitRad * 1.1, outerRad) upperPoints = [ [throatLen, throatRad], [0, throatRad], [-divLen, exitRad], [-divLen, nozzleBottomRad], [0, outerRad], [throatLen + convLen, outerRad], ] lower = QPolygonF([QPointF(p[0] * scale, p[1] * scale) for p in upperPoints]) upper = QPolygonF([QPointF(p[0] * scale, -p[1] * scale) for p in upperPoints]) self.upper.setPolygon(upper) self.lower.setPolygon(lower) self.ui.tabWidget.setCurrentIndex(1) QTimer.singleShot(0, self.rescale) # I really don't know why this "delay" is needed def rescale(self): self.scene.setSceneRect(self.scene.itemsBoundingRect()) self.ui.tabCrossSection.fitInView(self.scene.sceneRect(), Qt.AspectRatioMode.KeepAspectRatio) openmotor-0.6.0/uilib/widgets/polygonEditor.py000066400000000000000000000113131500530174600215210ustar00rootroot00000000000000import math import itertools from PyQt6.QtWidgets import QWidget, QPushButton, QHBoxLayout, QFileDialog, QApplication from PyQt6.QtCore import pyqtSignal import ezdxf import motorlib class PolygonEditor(QWidget): pointsChanged = pyqtSignal() def __init__(self, parent): super().__init__(parent) self.setLayout(QHBoxLayout()) self.selectButton = QPushButton('Select') self.selectButton.pressed.connect(self.loadDXF) self.layout().addWidget(self.selectButton) self.points = [] self.preferences = None def loadDXF(self, path=None): if path is None: path = QFileDialog.getOpenFileName(None, 'Load core geometry', '', 'DXF Files (*.dxf *.DXF)')[0] if path != '': # If they cancel the dialog, path will be an empty string dwg = ezdxf.readfile(path) msp = dwg.modelspace() alerts = [] self.points = [] # Closed contours go here chunks = [] # Individual segments of lines or arcs go here for ent in msp: if ent.dxftype() == 'ARC': arcPoints = 20 # Number of segments in the arc part = [] startAngle = ent.dxf.start_angle endAngle = ent.dxf.end_angle if startAngle > endAngle: # This ensures that the angle step (ea - sa) is not negative endAngle += 360 for i in range(0, arcPoints): angle = startAngle + ((endAngle - startAngle) * (i / (arcPoints - 1))) pointX = ent.dxf.center[0] + (math.cos(angle * math.pi / 180) * ent.dxf.radius) pointY = ent.dxf.center[1] + (math.sin(angle * math.pi / 180) * ent.dxf.radius) part.append((pointX, pointY)) chunks.append(part) elif ent.dxftype() == 'CIRCLE': part = [] circlePoints = 36 # Number of segments in the arc for i in range(0, circlePoints): angle = 2 * math.pi * (i / circlePoints) pointX = ent.dxf.center[0] + (math.cos(angle) * ent.dxf.radius) pointY = ent.dxf.center[1] + (math.sin(angle) * ent.dxf.radius) part.append((pointX, pointY)) self.points.append(part) elif ent.dxftype() == 'LINE': point1 = ent.dxf.end[:2] point2 = ent.dxf.start[:2] chunks.append([point1, point2]) elif ent.dxftype() == 'LWPOLYLINE': with ent.points() as points: self.points.append(points) else: alerts.append("Can't import entity of type: " + ent.dxftype()) # Join together the segments in chunks to closed contours close = 0.001 # Max distance between endpoints of adjacent segments join = None while join != []: join = [] # Will be populated like [ida, idb, flip] if there is work to do for (chunkId, chunk), (compChunkID, compChunk) in itertools.combinations(enumerate(chunks), 2): if motorlib.geometry.dist(chunk[0], compChunk[-1]) < close: join = [compChunkID, chunkId, False] break elif motorlib.geometry.dist(chunk[-1], compChunk[0]) < close: join = [chunkId, compChunkID, False] break elif motorlib.geometry.dist(chunk[-1], compChunk[-1]) < close: join = [chunkId, compChunkID, True] break elif motorlib.geometry.dist(chunk[0], compChunk[0]) < close: join = [chunkId, compChunkID, True] break if join != []: # Add the second chunk on to the first and flip it if the bool is true addChunk = chunks[join[1]] if join[2]: addChunk.reverse() chunks[join[0]] += addChunk del chunks[join[1]] oldLen = len(chunks) chunks = list(filter(lambda chunk: motorlib.geometry.dist(chunk[0], chunk[-1]) < close, chunks)) if len(chunks) != oldLen: alerts.append('Open contours cannot be imported') self.points += chunks # Add the now-closed contours to the poly list self.pointsChanged.emit() if len(alerts) > 0: QApplication.instance().outputMessage('\n'.join(alerts), "DXF import warnings") openmotor-0.6.0/uilib/widgets/preferencesMenu.py000066400000000000000000000017601500530174600220160ustar00rootroot00000000000000from PyQt6.QtWidgets import QDialog, QApplication from PyQt6.QtCore import pyqtSignal from ..views.Preferences_ui import Ui_PreferencesDialog class PreferencesMenu(QDialog): preferencesApplied = pyqtSignal(dict) def __init__(self): QDialog.__init__(self) self.ui = Ui_PreferencesDialog() self.ui.setupUi(self) self.setWindowIcon(QApplication.instance().icon) self.ui.buttonBox.accepted.connect(self.apply) self.ui.buttonBox.rejected.connect(self.cancel) def load(self, pref): self.ui.settingsEditorGeneral.setPreferences(pref) self.ui.settingsEditorGeneral.loadProperties(pref.general) self.ui.settingsEditorUnits.loadProperties(pref.units) def apply(self): self.preferencesApplied.emit({'general': self.ui.settingsEditorGeneral.getProperties(), 'units': self.ui.settingsEditorUnits.getProperties()}) self.hide() def cancel(self): self.hide() openmotor-0.6.0/uilib/widgets/propellantEditor.py000066400000000000000000000016021500530174600222120ustar00rootroot00000000000000from motorlib.propellant import Propellant from .collectionEditor import CollectionEditor from .propellantPreviewWidget import PropellantPreviewWidget class PropellantEditor(CollectionEditor): def __init__(self, parent): super().__init__(parent, False) self.propellantPreview = PropellantPreviewWidget() self.propellantPreview.hide() self.stats.addWidget(self.propellantPreview) def cleanup(self): self.propellantPreview.hide() super().cleanup() def setPreferences(self, pref): super().setPreferences(pref) self.propellantPreview.setPreferences(self.preferences) def propertyUpdate(self): previewProp = Propellant(self.getProperties()) self.propellantPreview.loadPropellant(previewProp) def loadProperties(self, obj): super().loadProperties(obj) self.propellantPreview.show() openmotor-0.6.0/uilib/widgets/propellantMenu.py000066400000000000000000000117361500530174600217010ustar00rootroot00000000000000from PyQt6.QtWidgets import QDialog, QMessageBox, QApplication from PyQt6.QtCore import pyqtSignal from ..helpers import FLAGS_NO_ICON from PyQt6.QtCore import Qt import motorlib.propellant from ..views.PropMenu_ui import Ui_PropellantDialog from ..logger import logger class PropellantMenu(QDialog): propellantEdited = pyqtSignal(dict) closed = pyqtSignal() def __init__(self, manager): QDialog.__init__(self) self.ui = Ui_PropellantDialog() self.ui.setupUi(self) self.manager = manager self.setWindowIcon(QApplication.instance().icon) self.setupPropList() self.ui.listWidgetPropellants.currentItemChanged.connect(self.propSelected) self.ui.propEditor.changeApplied.connect(self.propEdited) self.ui.propEditor.closed.connect(self.editorClosed) self.ui.pushButtonNewPropellant.pressed.connect(self.newPropellant) self.ui.pushButtonDelete.pressed.connect(self.deleteProp) self.ui.pushButtonEdit.pressed.connect(self.editProp) self.ui.listWidgetPropellants.doubleClicked.connect(self.editProp) self.ui.propEditor.addButtons() self.setupButtons() self.editingPropellant = False def show(self): self.setupButtons() super().show() def setupButtons(self): self.ui.pushButtonEdit.setEnabled(False) self.ui.pushButtonDelete.setEnabled(False) def setupPropList(self): self.ui.listWidgetPropellants.clear() self.ui.listWidgetPropellants.addItems(self.manager.getNames()) def newPropellant(self): propName = "New Propellant" if propName in self.manager.getNames(): propNumber = 1 while propName + " " + str(propNumber) in self.manager.getNames(): propNumber += 1 propName = propName + " " + str(propNumber) newProp = motorlib.propellant.Propellant() newProp.setProperty('name', propName) newPropTab = motorlib.propellant.PropellantTab() newProp.props['tabs'].addTab(newPropTab) self.manager.propellants.append(newProp) self.setupPropList() self.setupButtons() self.manager.savePropellants() self.ui.listWidgetPropellants.setCurrentRow(len(self.manager.propellants) - 1) self.editProp() def deleteProp(self): del self.manager.propellants[self.ui.listWidgetPropellants.currentRow()] self.manager.savePropellants() self.setupPropList() self.setupButtons() def editProp(self): prop = self.manager.propellants[self.ui.listWidgetPropellants.currentRow()] self.ui.propEditor.loadProperties(prop) self.toggleButtons(True) self.editingPropellant = True def propEdited(self, propDict): # If the name they choose matches an existing propellant, don't apply that change propNames = self.manager.getNames() if propDict['name'] in propNames: if propNames.index(propDict['name']) != self.ui.listWidgetPropellants.currentRow(): logger.warn("Can't duplicate a propellant name!") del propDict['name'] self.manager.propellants[self.ui.listWidgetPropellants.currentRow()].setProperties(propDict) self.setupPropList() self.manager.savePropellants() def propSelected(self): self.ui.pushButtonEdit.setEnabled(True) self.ui.pushButtonDelete.setEnabled(True) def editorClosed(self): self.editingPropellant = False self.toggleButtons(False) def toggleButtons(self, editing): self.ui.listWidgetPropellants.setEnabled(not editing) self.ui.pushButtonNewPropellant.setEnabled(not editing) self.ui.pushButtonEdit.setEnabled(not editing) self.ui.pushButtonDelete.setEnabled(not editing) def closeEvent(self, event=None): if not self.unsavedCheck(): if event is not None: if not isinstance(event, bool): event.ignore() return self.toggleButtons(False) self.ui.propEditor.cleanup() self.closed.emit() def unsavedCheck(self): if not self.editingPropellant: return True msg = QMessageBox() msg.setWindowFlags(FLAGS_NO_ICON); msg.setText("Close without saving current propellant?") msg.setWindowTitle("Close without saving?") msg.setStandardButtons( QMessageBox.StandardButton.Save | QMessageBox.StandardButton.Discard | QMessageBox.StandardButton.Cancel ) res = msg.exec() if res == QMessageBox.StandardButton.Save: self.propEdited(self.ui.propEditor.getProperties()) return True return res == QMessageBox.StandardButton.Discard def keyPressEvent(self, event): if event.key() == Qt.Key.Key_Delete or event.key() == Qt.Key.Key_Backspace: if len(self.ui.listWidgetPropellants.selectedItems()) != 0: self.deleteProp() openmotor-0.6.0/uilib/widgets/propellantPressureGraph.py000066400000000000000000000017741500530174600235700ustar00rootroot00000000000000from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas from matplotlib.figure import Figure from motorlib.units import convertAll class PropellantPressureGraph(FigureCanvas): def __init__(self): super(PropellantPressureGraph, self).__init__(Figure()) self.setParent(None) self.preferences = None self.figure = Figure() self.canvas = FigureCanvas(self.figure) self.figure.tight_layout() self.plot = self.figure.add_subplot(111) def setPreferences(self, pref): self.preferences = pref def cleanup(self): self.plot.clear() self.draw() def showGraph(self, points): presUnit = self.preferences.getUnit('Pa') self.plot.plot(points[0], convertAll(points[1], 'Pa', presUnit)) self.plot.set_xlabel('Kn') self.plot.set_ylabel('Pressure - {}'.format(presUnit)) self.plot.grid(True) self.figure.subplots_adjust(top=0.95, bottom=0.25) self.draw() openmotor-0.6.0/uilib/widgets/propellantPreviewWidget.py000066400000000000000000000031341500530174600235530ustar00rootroot00000000000000from PyQt6.QtWidgets import QWidget from PyQt6.QtCore import pyqtSignal import motorlib from ..views.PropellantPreview_ui import Ui_PropellantPreview class PropellantPreviewWidget(QWidget): def __init__(self): super().__init__() self.ui = Ui_PropellantPreview() self.ui.setupUi(self) def setPreferences(self, pref): self.ui.tabBurnRate.setPreferences(pref) self.ui.tabPressure.setPreferences(pref) def loadPropellant(self, propellant): self.ui.tabAlerts.clear() self.ui.tabBurnRate.cleanup() self.ui.tabPressure.cleanup() alerts = propellant.getErrors() for err in alerts: self.ui.tabAlerts.addItem(err.description) for alert in alerts: if alert.level == motorlib.simResult.SimAlertLevel.ERROR: return burnrateData = [[], []] minPres = int(propellant.getMinimumValidPressure()) + 1 # Add 1 Pa to avoid crashing on burnrate for 0 Pa maxPres = int(propellant.getMaximumValidPressure()) for pres in range(minPres, maxPres, 2000): burnrateData[0].append(pres) burnrateData[1].append(propellant.getBurnRate(pres)) self.ui.tabBurnRate.showGraph(burnrateData) pressureData = [[], []] for kn in range(1, 750, 10): pressureData[0].append(kn) pressureData[1].append(propellant.getPressureFromKn(kn)) self.ui.tabPressure.showGraph(pressureData) def cleanup(self): self.ui.tabAlerts.clear() self.ui.tabBurnRate.cleanup() self.ui.tabPressure.cleanup() openmotor-0.6.0/uilib/widgets/propellantTabEditor.py000066400000000000000000000041001500530174600226350ustar00rootroot00000000000000from PyQt6.QtWidgets import QLabel from PyQt6.QtCore import pyqtSignal from motorlib.units import convert from motorlib.propellant import PropellantTab from motorlib.constants import gasConstant from .collectionEditor import CollectionEditor class PropellantTabEditor(CollectionEditor): modified = pyqtSignal() def __init__(self, parent): super().__init__(parent, False) self.labelCStar = QLabel("Characteristic Velocity: -") self.labelCStar.hide() self.stats.addWidget(self.labelCStar) def propertyUpdate(self): k = self.propertyEditors['k'].getValue() t = self.propertyEditors['t'].getValue() m = self.propertyEditors['m'].getValue() num = (k * gasConstant / m * t) ** 0.5 denom = k * ((2 / (k + 1)) ** ((k + 1) / (k - 1))) ** 0.5 charVel = num / denom if self.preferences is not None: dispUnit = self.preferences.getUnit('m/s') else: dispUnit = 'm/s' cStarText = '{} {}'.format(int(convert(charVel, 'm/s', dispUnit)), dispUnit) self.labelCStar.setText('Characteristic Velocity: {}'.format(cStarText)) self.modified.emit() def cleanup(self): self.labelCStar.hide() super().cleanup() def getProperties(self): # Override to change units on ballistic coefficient res = super().getProperties() coeffUnit = self.propertyEditors['a'].dispUnit if coeffUnit == 'in/(s*psi^n)': res['a'] *= 1 / (6895 ** res['n']) return res def loadProperties(self, obj): # Override for ballistic coefficient units props = obj.getProperties() # Convert the ballistic coefficient based on the exponent ballisticCoeffUnit = self.preferences.getUnit('m/(s*Pa^n)') if ballisticCoeffUnit == 'in/(s*psi^n)': props['a'] /= 1 / (6895 ** props['n']) # Create a new propellant instance using the new A newPropTab = PropellantTab() newPropTab.setProperties(props) super().loadProperties(newPropTab) self.labelCStar.show() openmotor-0.6.0/uilib/widgets/propertyEditor.py000066400000000000000000000110731500530174600217210ustar00rootroot00000000000000import math from PyQt6.QtWidgets import QWidget, QVBoxLayout, QLineEdit, QCheckBox from PyQt6.QtWidgets import QDoubleSpinBox, QSpinBox, QComboBox from PyQt6.QtCore import pyqtSignal, Qt import motorlib from .polygonEditor import PolygonEditor from .tabularEditor import TabularEditor class PropertyEditor(QWidget): valueChanged = pyqtSignal() def __init__(self, parent, prop, preferences): super(PropertyEditor, self).__init__(QWidget(parent)) self.preferences = preferences self.setLayout(QVBoxLayout()) self.layout().setSpacing(0) self.layout().setContentsMargins(5, 5, 5, 5) self.prop = prop if self.preferences is not None: self.dispUnit = self.preferences.getUnit(self.prop.unit) else: self.dispUnit = self.prop.unit if isinstance(prop, motorlib.properties.FloatProperty): self.editor = QDoubleSpinBox() self.editor.setSuffix(' {}'.format(self.dispUnit)) convMin = motorlib.units.convert(self.prop.min, self.prop.unit, self.dispUnit) convMax = motorlib.units.convert(self.prop.max, self.prop.unit, self.dispUnit) self.editor.setRange(convMin, convMax) self.editor.setDecimals(8) # Large number of decimals for now while I pick a better method self.editor.setSingleStep(10 ** (int(math.log(convMax, 10) - 4))) self.editor.setValue(motorlib.units.convert(self.prop.getValue(), prop.unit, self.dispUnit)) self.editor.valueChanged.connect(self.valueChanged.emit) self.layout().addWidget(self.editor) elif isinstance(prop, motorlib.properties.IntProperty): self.editor = QSpinBox() convMin = motorlib.units.convert(self.prop.min, self.prop.unit, self.dispUnit) convMax = motorlib.units.convert(self.prop.max, self.prop.unit, self.dispUnit) self.editor.setRange(convMin, convMax) self.editor.setValue(self.prop.getValue()) self.editor.valueChanged.connect(self.valueChanged.emit) self.layout().addWidget(self.editor) elif isinstance(prop, motorlib.properties.StringProperty): self.editor = QLineEdit() self.editor.setText(self.prop.getValue()) self.layout().addWidget(self.editor) elif isinstance(prop, motorlib.properties.BooleanProperty): self.editor = QCheckBox() self.editor.setCheckState(Qt.CheckState.Checked if self.prop.getValue() else Qt.CheckState.Unchecked) self.editor.stateChanged.connect(self.valueChanged.emit) self.layout().addWidget(self.editor) elif isinstance(prop, motorlib.properties.EnumProperty): self.editor = QComboBox() self.editor.addItems(self.prop.values) self.editor.setCurrentText(self.prop.value) self.editor.currentTextChanged.connect(self.valueChanged.emit) self.layout().addWidget(self.editor) elif isinstance(prop, motorlib.properties.PolygonProperty): self.editor = PolygonEditor(self) self.editor.pointsChanged.connect(self.valueChanged.emit) self.editor.points = self.prop.getValue() self.editor.preferences = self.preferences self.layout().addWidget(self.editor) elif isinstance(prop, motorlib.properties.TabularProperty): self.editor = TabularEditor() self.editor.setPreferences(self.preferences) for tab in prop.tabs: self.editor.addTab(tab) self.editor.updated.connect(self.valueChanged.emit) self.layout().addWidget(self.editor) def getValue(self): if isinstance(self.prop, motorlib.properties.FloatProperty): return motorlib.units.convert(self.editor.value(), self.dispUnit, self.prop.unit) if isinstance(self.prop, motorlib.properties.IntProperty): return motorlib.units.convert(self.editor.value(), self.dispUnit, self.prop.unit) if isinstance(self.prop, motorlib.properties.StringProperty): return self.editor.text() if isinstance(self.prop, motorlib.properties.BooleanProperty): return self.editor.isChecked() if isinstance(self.prop, motorlib.properties.EnumProperty): return self.editor.currentText() if isinstance(self.prop, motorlib.properties.PolygonProperty): return self.editor.points if isinstance(self.prop, motorlib.properties.TabularProperty): return self.editor.getTabs() return None openmotor-0.6.0/uilib/widgets/resultsWidget.py000066400000000000000000000211261500530174600215330ustar00rootroot00000000000000from PyQt6.QtWidgets import QWidget, QHeaderView, QLabel, QTableWidgetItem import numpy as np import motorlib from motorlib.simResult import singleValueChannels, multiValueChannels, alertLevelNames, alertTypeNames from motorlib.constants import standardGravity from .grainImageWidget import GrainImageWidget from ..views.ResultsWidget_ui import Ui_ResultsWidget class ResultsWidget(QWidget): # These channels are extracted from the simResult amd put into the grain table in this order that should match # the labels in the .ui file grainTableFields = ('mass', 'massFlow', 'massFlux', 'web') def __init__(self, parent): super().__init__(parent) self.ui = Ui_ResultsWidget() self.ui.setupUi(self) self.preferences = None self.simResult = None self.cachedChecks = None excludes = ['kn', 'pressure', 'force', 'mass', 'massFlow', 'massFlux', 'exitPressure', 'dThroat', 'volumeLoading'] self.ui.channelSelectorX.setupChecks(False, default='time', exclude=excludes) self.ui.channelSelectorX.setTitle('X Axis') self.ui.channelSelectorY.setupChecks(True, default=['kn', 'pressure', 'force'], exclude=['time']) self.ui.channelSelectorY.setTitle('Y Axis') self.ui.channelSelectorX.checksChanged.connect(self.xSelectionChanged) self.ui.channelSelectorY.checksChanged.connect(self.drawGraphs) self.ui.grainSelector.checksChanged.connect(self.drawGraphs) self.ui.horizontalSliderTime.valueChanged.connect(self.updateGrainTab) self.ui.tableWidgetGrains.setRowHeight(0, 128) header = self.ui.tableWidgetAlerts.horizontalHeader() header.setSectionResizeMode(0, QHeaderView.ResizeMode.ResizeToContents) header.setSectionResizeMode(1, QHeaderView.ResizeMode.ResizeToContents) header.setSectionResizeMode(2, QHeaderView.ResizeMode.ResizeToContents) header.setSectionResizeMode(3, QHeaderView.ResizeMode.Stretch) self.grainImageWidgets = [] self.grainImages = [] self.grainLabels = [] def setPreferences(self, pref): self.preferences = pref self.ui.widgetGraph.setPreferences(pref) def showData(self, simResult): if self.simResult is not None: newMotor = len(simResult.motor.grains) != len(self.simResult.motor.grains) else: newMotor = True self.simResult = simResult self.ui.grainSelector.resetChecks() self.ui.grainSelector.setupChecks(simResult, True) if not newMotor and self.cachedChecks is not None: self.ui.grainSelector.setChecks(self.cachedChecks) self.drawGraphs() self.cleanupGrainTab() self.ui.horizontalSliderTime.setMaximum(len(simResult.channels['time'].getData()) - 1) self.ui.tableWidgetGrains.setColumnCount(len(simResult.motor.grains)) for _ in range(len(self.grainImageWidgets)): del self.grainImageWidgets[-1] for gid, grain in enumerate(simResult.motor.grains): self.grainImageWidgets.append(GrainImageWidget()) self.grainLabels.append({}) self.ui.tableWidgetGrains.setCellWidget(0, gid, self.grainImageWidgets[-1]) if isinstance(grain, motorlib.grain.PerforatedGrain): self.grainImages.append(grain.getRegressionData(128, coreBlack=False)[1]) else: self.grainImages.append(None) for fid, field in enumerate(self.grainTableFields): self.grainLabels[gid][field] = QLabel(field) self.ui.tableWidgetGrains.setCellWidget(1 + fid, gid, self.grainLabels[gid][field]) self.updateGrainTab() self.ui.tableWidgetAlerts.setRowCount(0) # Clear the table self.ui.tableWidgetAlerts.setRowCount(len(simResult.alerts)) for row, alert in enumerate(simResult.alerts): self.ui.tableWidgetAlerts.setItem(row, 0, QTableWidgetItem(alertLevelNames[alert.level])) self.ui.tableWidgetAlerts.setItem(row, 1, QTableWidgetItem(alertTypeNames[alert.type])) self.ui.tableWidgetAlerts.setItem(row, 2, QTableWidgetItem(alert.location)) self.ui.tableWidgetAlerts.setItem(row, 3, QTableWidgetItem(alert.description)) def xSelectionChanged(self): if self.ui.channelSelectorX.getSelectedChannels()[0] in multiValueChannels: self.ui.channelSelectorY.unselect(singleValueChannels) self.ui.channelSelectorY.toggleEnabled(singleValueChannels, False) else: self.ui.channelSelectorY.toggleEnabled(singleValueChannels, True) self.drawGraphs() def drawGraphs(self): if self.simResult is None: return xCheck = self.ui.channelSelectorX.getSelectedChannels()[0] yChecks = self.ui.channelSelectorY.getSelectedChannels() grains = self.ui.grainSelector.getSelectedGrains() self.ui.widgetGraph.showData(self.simResult, xCheck, yChecks, grains) def updateGrainTab(self): if self.simResult is not None: index = self.ui.horizontalSliderTime.value() for gid, grain in enumerate(self.simResult.motor.grains): if self.grainImages[gid] is not None: regDist = self.simResult.channels['regression'].getPoint(index)[gid] webRemaining = self.simResult.channels['web'].getPoint(index)[gid] hasWebLeft = webRemaining > self.simResult.motor.config.getProperty('burnoutWebThres') mapDist = regDist / (0.5 * grain.props['diameter'].getValue()) image = np.logical_and(self.grainImages[gid] > mapDist, hasWebLeft) self.grainImageWidgets[gid].showImage(image) else: self.grainImageWidgets[gid].setText('-') self.ui.tableWidgetGrains.horizontalHeader().setSectionResizeMode(gid, QHeaderView.ResizeMode.ResizeToContents) for field in self.grainTableFields: fromUnit = self.simResult.channels[field].unit toUnit = self.preferences.getUnit(fromUnit) val = motorlib.units.convert(self.simResult.channels[field].getPoint(index)[gid], fromUnit, toUnit) self.grainLabels[gid][field].setText('{:.3f} {}'.format(val, toUnit)) currentTime = self.simResult.channels['time'].getPoint(index) remainingTime = self.simResult.channels['time'].getLast() - currentTime self.ui.labelTimeProgress.setText('{:.3f} s'.format(currentTime)) self.ui.labelTimeRemaining.setText('{:.3f} s'.format(remainingTime)) currentImpulse = self.simResult.getImpulse(index) remainingImpulse = self.simResult.getImpulse() - currentImpulse impUnit = self.preferences.getUnit('Ns') self.ui.labelImpulseProgress.setText(motorlib.units.convFormat(currentImpulse, 'Ns', impUnit)) self.ui.labelImpulseRemaining.setText(motorlib.units.convFormat(remainingImpulse, 'Ns', impUnit)) currentMass = self.simResult.getPropellantMass(index) remainingMass = self.simResult.getPropellantMass() - currentMass massUnit = self.preferences.getUnit('kg') self.ui.labelMassProgress.setText(motorlib.units.convFormat(remainingMass, 'kg', massUnit)) self.ui.labelMassRemaining.setText(motorlib.units.convFormat(currentMass, 'kg', massUnit)) currentISP = self.simResult.getISP(index) self.ui.labelISPProgress.setText('{:.3f} s'.format(currentISP)) if currentMass != 0: remainingISP = remainingImpulse / (currentMass * standardGravity) self.ui.labelISPRemaining.setText('{:.3f} s'.format(remainingISP)) else: self.ui.labelISPRemaining.setText('-') def resetPlot(self): self.cachedChecks = self.ui.grainSelector.getSelectedGrains() self.ui.grainSelector.resetChecks() self.ui.widgetGraph.resetPlot() self.cleanupGrainTab() def cleanupGrainTab(self): self.ui.horizontalSliderTime.setValue(0) for _ in range(len(self.grainImageWidgets)): del self.grainImageWidgets[-1] del self.grainImages[-1] self.ui.tableWidgetGrains.setColumnCount(0) self.ui.labelTimeProgress.setText('-') self.ui.labelTimeRemaining.setText('-') self.ui.labelImpulseProgress.setText('-') self.ui.labelImpulseRemaining.setText('-') self.ui.labelMassProgress.setText('-') self.ui.labelMassRemaining.setText('-') self.ui.labelISPProgress.setText('-') self.ui.labelISPRemaining.setText('-') openmotor-0.6.0/uilib/widgets/settingsEditor.py000066400000000000000000000002401500530174600216670ustar00rootroot00000000000000from .collectionEditor import CollectionEditor class SettingsEditor(CollectionEditor): def __init__(self, parent): super().__init__(parent, False) openmotor-0.6.0/uilib/widgets/simulationAlertsDialog.py000066400000000000000000000027441500530174600233520ustar00rootroot00000000000000from PyQt6.QtWidgets import QDialog, QTableWidgetItem, QHeaderView, QApplication from motorlib.simResult import alertLevelNames, alertTypeNames from ..views.SimulationAlertsDialog_ui import Ui_SimAlertsDialog class SimulationAlertsDialog(QDialog): def __init__(self): QDialog.__init__(self) self.ui = Ui_SimAlertsDialog() self.ui.setupUi(self) self.setWindowIcon(QApplication.instance().icon) header = self.ui.tableWidgetAlerts.horizontalHeader() header.setSectionResizeMode(0, QHeaderView.ResizeMode.ResizeToContents) header.setSectionResizeMode(1, QHeaderView.ResizeMode.ResizeToContents) header.setSectionResizeMode(2, QHeaderView.ResizeMode.ResizeToContents) header.setSectionResizeMode(3, QHeaderView.ResizeMode.Stretch) self.hide() def displayAlerts(self, simRes): self.ui.tableWidgetAlerts.setRowCount(0) # Clear the table if len(simRes.alerts) == 0: return self.ui.tableWidgetAlerts.setRowCount(len(simRes.alerts)) for row, alert in enumerate(simRes.alerts): self.ui.tableWidgetAlerts.setItem(row, 0, QTableWidgetItem(alertLevelNames[alert.level])) self.ui.tableWidgetAlerts.setItem(row, 1, QTableWidgetItem(alertTypeNames[alert.type])) self.ui.tableWidgetAlerts.setItem(row, 2, QTableWidgetItem(alert.location)) self.ui.tableWidgetAlerts.setItem(row, 3, QTableWidgetItem(alert.description)) self.show() openmotor-0.6.0/uilib/widgets/simulationProgressDialog.py000066400000000000000000000013661500530174600237230ustar00rootroot00000000000000from PyQt6.QtWidgets import QDialog, QApplication from PyQt6.QtCore import pyqtSignal from ..views.SimulatingDialog_ui import Ui_SimProgressDialog class SimulationProgressDialog(QDialog): simulationCanceled = pyqtSignal() def __init__(self): QDialog.__init__(self) self.ui = Ui_SimProgressDialog() self.ui.setupUi(self) self.setWindowIcon(QApplication.instance().icon) self.ui.buttonBox.rejected.connect(self.closeEvent) def show(self): self.ui.progressBar.setValue(0) super().show() def closeEvent(self, event=None): self.simulationCanceled.emit() self.close() def progressUpdate(self, progress): self.ui.progressBar.setValue(int(progress * 100)) openmotor-0.6.0/uilib/widgets/tabularEditor.py000066400000000000000000000052741500530174600214750ustar00rootroot00000000000000from PyQt6.QtWidgets import QWidget from PyQt6.QtCore import pyqtSignal from motorlib.propellant import PropellantTab from ..views.TabularEditor_ui import Ui_TabularEditor class TabularEditor(QWidget): updated = pyqtSignal() def __init__(self): QWidget.__init__(self) self.ui = Ui_TabularEditor() self.ui.setupUi(self) self.preferences = None self.tabs = [] self.ui.pushButtonAdd.pressed.connect(self.newTab) self.ui.pushButtonRemove.pressed.connect(self.removeTab) self.ui.pushButtonLeft.pressed.connect(lambda: self.changeIndex(-1)) self.ui.pushButtonRight.pressed.connect(lambda: self.changeIndex(1)) def setPreferences(self, pref): self.preferences = pref def addTab(self, propDict): from .propellantTabEditor import PropellantTabEditor self.tabs.append(PropellantTabEditor(self)) self.tabs[-1].setPreferences(self.preferences) self.tabs[-1].loadProperties(propDict) self.tabs[-1].modified.connect(self.updated.emit) self.ui.stackedWidget.insertWidget(len(self.tabs) - 1, self.tabs[-1]) self.ui.stackedWidget.setCurrentIndex(len(self.tabs) - 1) self.updated.emit() self.updateButtons() def removeTab(self): toDelete = self.ui.stackedWidget.currentIndex() if toDelete != 0: self.ui.stackedWidget.setCurrentIndex(toDelete - 1) self.ui.stackedWidget.removeWidget(self.tabs[toDelete]) del self.tabs[toDelete] self.updated.emit() self.updateButtons() def getTabs(self): return [tab.getProperties() for tab in self.tabs] def updateButtons(self): self.ui.pushButtonLeft.setEnabled(self.ui.stackedWidget.currentIndex() != 0) self.ui.pushButtonRight.setEnabled(self.ui.stackedWidget.currentIndex() != len(self.tabs) - 1) self.ui.pushButtonRemove.setEnabled(len(self.tabs) > 1) label = str(self.ui.stackedWidget.currentIndex() + 1) + "/" + str(len(self.tabs)) self.ui.labelCurrentTab.setText(label) def changeIndex(self, rel): self.ui.stackedWidget.setCurrentIndex(self.ui.stackedWidget.currentIndex() + rel) self.updateButtons() def newTab(self): from .propellantTabEditor import PropellantTabEditor self.tabs.append(PropellantTabEditor(self)) self.tabs[-1].setPreferences(self.preferences) self.tabs[-1].loadProperties(PropellantTab()) self.tabs[-1].modified.connect(self.updated.emit) self.ui.stackedWidget.insertWidget(len(self.tabs) - 1, self.tabs[-1]) self.ui.stackedWidget.setCurrentIndex(len(self.tabs) - 1) self.updated.emit() self.updateButtons()