pax_global_header00006660000000000000000000000064136257565570014537gustar00rootroot0000000000000052 comment=920e9be844385c45607f0ef8c2b2bba42d07723d wslu-2.3.6/000077500000000000000000000000001362575655700125415ustar00rootroot00000000000000wslu-2.3.6/.circleci/000077500000000000000000000000001362575655700143745ustar00rootroot00000000000000wslu-2.3.6/.circleci/config.yml000066400000000000000000000111351362575655700163650ustar00rootroot00000000000000version: 2 jobs: pkgbuilds: machine: image: ubuntu-1604:201903-01 steps: - checkout - run: name: Install Pre-requisites command: | sudo apt-get update -qq sudo apt-get install -qq apt-utils build-essential rpm - run: name: Build Package command: | make cd extras/scripts sudo bash -x ./builder-deb.sh sudo bash -x ./builder-rpm.sh mkdir -p /tmp/pkgs sudo mv ../../target/* /tmp/pkgs - store_artifacts: path: /tmp/pkgs - persist_to_workspace: root: /tmp/pkgs paths: . nightlypkgbuilds: machine: image: ubuntu-1604:201903-01 steps: - checkout - run: name: Install Pre-requisites command: | sudo apt-get update -qq sudo apt-get install -qq apt-utils build-essential rpm - run: name: Build Package command: | make cd extras/scripts sudo bash -x ./builder-deb.sh --nightly sudo bash -x ./builder-rpm.sh --nightly mkdir -p /tmp/pkgs sudo mv ../../target/* /tmp/pkgs - store_artifacts: path: /tmp/pkgs deploypkg: docker: - image: circleci/ruby:2.3-jessie steps: - attach_workspace: at: /tmp/pkgs - run: name: Install packageloud cli command: gem install package_cloud - run: name: Push deb package for debian bullseye command: package_cloud push whitewaterfoundry/wslu/debian/bullseye /tmp/pkgs/*.deb --skip-errors - run: name: Push deb package for debian buster command: package_cloud push whitewaterfoundry/wslu/debian/buster /tmp/pkgs/*.deb --skip-errors - run: name: Push deb package for debian stretch command: package_cloud push whitewaterfoundry/wslu/debian/stretch /tmp/pkgs/*.deb --skip-errors - run: name: Push deb package for ubuntu xenial command: package_cloud push whitewaterfoundry/wslu/ubuntu/xenial /tmp/pkgs/*.deb --skip-errors - run: name: Push deb package for ubuntu bionic command: package_cloud push whitewaterfoundry/wslu/ubuntu/bionic /tmp/pkgs/*.deb --skip-errors - run: name: Push rpm package for fedora 29 command: package_cloud push whitewaterfoundry/wslu/fedora/29 /tmp/pkgs/*.rpm --skip-errors - run: name: Push rpm package for fedora 30 command: package_cloud push whitewaterfoundry/wslu/fedora/30 /tmp/pkgs/*.rpm --skip-errors - run: name: Push rpm package for fedora 31 command: package_cloud push whitewaterfoundry/wslu/fedora/31 /tmp/pkgs/*.rpm --skip-errors - run: name: Push rpm package for enterprise linux 7 command: package_cloud push whitewaterfoundry/wslu/el/7 /tmp/pkgs/*.rpm --skip-errors - run: name: Push rpm package for enterprise linux 8 command: package_cloud push whitewaterfoundry/wslu/el/8 /tmp/pkgs/*.rpm --skip-errors - run: name: Push rpm package for scientific linux 7 command: package_cloud push whitewaterfoundry/wslu/scientific/7 /tmp/pkgs/*.rpm --skip-errors - run: name: Push rpm package for sles 12 command: package_cloud push whitewaterfoundry/wslu/sles/12.0 /tmp/pkgs/*.rpm --skip-errors - run: name: Push rpm package for sles 15 command: package_cloud push whitewaterfoundry/wslu/sles/15.0 /tmp/pkgs/*.rpm --skip-errors - run: name: Push rpm package for opensuse 42.3 command: package_cloud push whitewaterfoundry/wslu/opensuse/42.3 /tmp/pkgs/*.rpm --skip-errors - run: name: Push rpm package for opensuse 15 command: package_cloud push whitewaterfoundry/wslu/opensuse/15.0 /tmp/pkgs/*.rpm --skip-errors - run: name: Push rpm package for oracle 7 command: package_cloud push whitewaterfoundry/wslu/ol/7 /tmp/pkgs/*.rpm --skip-errors workflows: version: 2 buildtests: jobs: - pkgbuilds buildanddeploy: triggers: - schedule: cron: "0 0 * * *" filters: branches: only: - master jobs: - pkgbuilds - deploypkg: requires: - pkgbuilds nightlybuild: triggers: - schedule: cron: "0 0 * * *" filters: branches: only: - develop jobs: - nightlypkgbuilds wslu-2.3.6/.github/000077500000000000000000000000001362575655700141015ustar00rootroot00000000000000wslu-2.3.6/.github/FUNDING.yml000066400000000000000000000002071362575655700157150ustar00rootroot00000000000000# These are supported funding model platforms github: patrick330602 open_collective: wslu custom: ['https://www.paypal.me/callmepk/'] wslu-2.3.6/.github/ISSUE_TEMPLATE/000077500000000000000000000000001362575655700162645ustar00rootroot00000000000000wslu-2.3.6/.github/ISSUE_TEMPLATE/bug_report.md000066400000000000000000000007051362575655700207600ustar00rootroot00000000000000--- name: Bug report about: Create a report to help us improve --- **Background Information:** - Build: [e.g. 17704] - WSL: [e.g. Ubuntu 16.04] - Version: [e.g. 1.5] **Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: **Expected behavior** A clear and concise description of what you expected to happen. **Additional context** Add any other context about the problem here. wslu-2.3.6/.github/PULL_REQUEST_TEMPLATE.md000066400000000000000000000015761362575655700177130ustar00rootroot00000000000000 ## Description ## Types of changes - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) ## Checklist: - [ ] I have read Code of Conduct and Contributing documentations. - [ ] My code follows the code style of this project. - [ ] My change requires a change to the documentation. - [ ] I have updated the documentation accordingly.wslu-2.3.6/.gitignore000066400000000000000000000000231362575655700145240ustar00rootroot00000000000000out target .vscode wslu-2.3.6/.gitmodules000066400000000000000000000001401362575655700147110ustar00rootroot00000000000000[submodule "extras/bats"] path = extras/bats url = https://github.com/bats-core/bats-core.git wslu-2.3.6/.shellcheck.yaml000066400000000000000000000000511362575655700156040ustar00rootroot00000000000000ignored: - SC2148 - SC2154 - SC1117wslu-2.3.6/.vscode/000077500000000000000000000000001362575655700141025ustar00rootroot00000000000000wslu-2.3.6/.vscode/launch.json000066400000000000000000000006401362575655700162470ustar00rootroot00000000000000{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "type": "bashdb", "request": "launch", "name": "Debug", "program": "${file}" } ] }wslu-2.3.6/CODE_OF_CONDUCT.md000066400000000000000000000062151362575655700153440ustar00rootroot00000000000000# Contributor Covenant Code of Conduct ## Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. ## Our Standards Examples of behavior that contributes to creating a positive environment include: * Using welcoming and inclusive language * Being respectful of differing viewpoints and experiences * Gracefully accepting constructive criticism * Focusing on what is best for the community * Showing empathy towards other community members Examples of unacceptable behavior by participants include: * The use of sexualized language or imagery and unwelcome sexual attention or advances * Trolling, insulting/derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or electronic address, without explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Our Responsibilities Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. ## Scope This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at wotingwu@live.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] [homepage]: http://contributor-covenant.org [version]: http://contributor-covenant.org/version/1/4/wslu-2.3.6/CONTRIBUTING.md000066400000000000000000000112061362575655700147720ustar00rootroot00000000000000# Contributing We love pull requests from everyone. By participating in this project, you agree to abide by [Code of Conduct](CODE_OF_CONDUCT.md). ## Code contributions ### Setup Run the following to get started: ```bash git clone --recursive --branch develop https://github.com/wslutilities/wslu.git ./configure.sh make sudo make link ``` ### Build Structure ``` wslu |-src | |-mime/wslview: mime file for wslview | |-etc | | |-wsl.ico: default icon for wslusc | | \-runHidden.vbs: script for wslusc | |-wslu-header: Header file of all script | \-.sh: Components of script |-tests: location for script tests \-extras |-bats: testing utility |-scripts: scripts used for building \-build |-debian: files for building .deb |-rpm: files for building .rpm |-arch: files for building Arch Linux packages \-alpine: files for building Alpine Linux packages ``` ### configure.sh `configure.sh` is the script to complete some preprocessing task. Following parameter is available: - `-e, --env` -- Environment Check, check whether it is using Fake WSL Environment, normal Linux or WSL. - `-p, --prsh` -- Check Status of `powershell.exe`. - `-P, --pkg` -- Install Needed Packages required by your system for building. ### Build & Install run `make` to build executable to `out` folder. run `make clean` to clean `out` folder. run `make test` to run tests. run `make install` to install to `/usr/bin/`. Requires to run as `sudo`. run `make link` to link files from the repo to `/usr/bin/`. Requires to run as `sudo`. run `make uninstall` to uninstall. Requires to run as `sudo`. run `cd extras/scripts && ./builder-docs.sh` to build docs to `gendocs`. ### Test `wslu` use [bats](https://github.com/bats-core/bats-core) for testing. Please refer to [its guide](https://github.com/bats-core/bats-core#writing-tests) to write tests. ### Build Packages For Debian Package, run: ```bash cd extras/script sudo ./builder-deb.sh ``` For RPM Package, run: ```bash cd extras/script sudo ./builder-rpm.sh ``` It is suggested to execute those commands in Ubuntu 16.04 LTS or its corresponding environment. ### Push Requests Make sure that the code changed is tested. Then create Pull requests [here](https://github.com/wslutilities/wslu/compare). ## Financial contributions We also welcome financial contributions in full transparency on our [open collective](https://opencollective.com/wslu). Anyone can file an expense. If the expense makes sense for the development of the community, it will be "merged" in the ledger of our open collective by the core contributors and the person who filed the expense will be reimbursed. ### Contributors Thank you to all the people who have already contributed to wslu! ### Backers Thank you to all our backers! [[Become a backer](https://opencollective.com/wslu#backer)] ### Sponsors Thank you to all our sponsors! (please ask your company to also support this open source project by [becoming a sponsor](https://opencollective.com/wslu#sponsor)) wslu-2.3.6/LICENSE000066400000000000000000001045151362575655700135540ustar00rootroot00000000000000 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 . wslu-2.3.6/Makefile000066400000000000000000000024621362575655700142050ustar00rootroot00000000000000AUTOMAKE_OPTIONS = foreign HEADER = src/wslu-header OUTPATH = out CURPATH = $(shell pwd) SOURCES := $(wildcard src/*.sh) ETCFILES := $(wildcard src/etc/*) OUTFILES := $(wildcard out/*) MANFILES := $(wildcard docs/*) INSTEDEXES := $(wildcard /usr/bin/wsl*) INSTEDMANS := $(wildcard /usr/share/man/man1/wsl*) all: [ -d $(OUTPATH) ] || mkdir $(OUTPATH) for file in $(SOURCES); do \ cat $(HEADER) $$file > $(OUTPATH)/`basename $$file`; \ mv $(OUTPATH)/`basename $$file` $(OUTPATH)/`basename $$file .sh`; \ done chmod +x $(OUTPATH)/* link: for file in $(OUTFILES); do \ ln -s $(CURPATH)/$$file /usr/bin/`basename $$file`; \ done for file in $(MANFILES); do \ ln -s $(CURPATH)/$$file /usr/share/man/man1/`basename $$file`; \ done ln -s $(CURPATH)/src/etc /usr/share/wslu install: install -m755 out/* /usr/bin install -m555 docs/* /usr/share/man/man1 [ -d /usr/share/wslu ] || mkdir -p /usr/share/wslu cp src/etc/* /usr/share/wslu uninstall: for f in $(INSTEDEXES); do \ rm -f $$f; \ done for f in $(INSTEDMANS); do \ rm -f $$f; \ done rm -rf /usr/share/wslu clean: rm -rf $(OUTPATH) test: PATH="$(CURPATH)/src:$(CURPATH)/out:$$PATH" extras/bats/libexec/bats tests/header.bats tests/wslsys.bats tests/wslusc.bats tests/wslupath.bats tests/wslvar.bats tests/wslfetch.bats tests/wslview.bats wslu-2.3.6/README.hans.md000066400000000000000000000134271362575655700147570ustar00rootroot00000000000000
# wslu - 一套Windows 10 Linux子系统工具组 [![GitHub license](https://img.shields.io/github/license/wslutilities/wslu?style=flat-square&label=许可协议&color=blue&logo=github)](https://github.com/wslutilities/wslu/blob/master/LICENSE) [![GitHub (pre-)release](https://img.shields.io/github/v/release/wslutilities/wslu?include_prereleases&label=版本&logo=github&style=flat-square)](https://github.com/wslutilities/wslu) [![GitLab](https://img.shields.io/static/v1?label=gitlab&logo=gitlab&color=E24329&message=已镜像&style=flat-square)](https://gitlab.com/callmepk/wslu) [![码云](https://img.shields.io/static/v1?label=码云&color=C71D23&message=已镜像&style=flat-square)](https://gitee.com/mirrors/wslu) [![Twitter Follow](https://img.shields.io/twitter/follow/wslutilities?style=flat-square&logo=twitter&color=1DA1F2&label=关注) ](https://twitter.com/wslutilities) [English](README.md) | 简体中文 | [繁體中文](README.hant.md)
这是一套适用于 Windows 10 Linux 子系统的工具组,可以在 Windows 10 Linux 子系统下完成诸如将 Windows 路径转换为 WSL 专属路径或者创建你最喜爱的 Linux 程序桌面快捷方式等工作。需要 Windows 10 创造者更新或更高。 ## 功能 **wslusc** 用于创建 Linux 程序的 Windows 桌面快捷方式的工具。 **wslsys** 展示 Windows 和 Linux 下的系统信息的工具。 **wslfetch** 类似于 screenfetch 的系统信息展示工具。 **wslvar** 可以帮助你获取 Windows 系统常量的工具。 **wslview** 将 Windows 默认网络浏览器绑定为WSL网络浏览器的包装工具。 **wslupath** ⚠ *已弃用* 可以转换不同类型路径的工具。 ## 状态 | | 服务 | Master | Develop | | ------ | ------ |:------:|:-------:| | 证书检查 | FOSSA | [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fpatrick330602%2Fwslu.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fpatrick330602%2Fwslu%2develop?ref=badge_shield) | - | | 代码质量 | CodeFactor | [![CodeFactor Grade Master](https://img.shields.io/codefactor/grade/github/wslutilities/wslu/master)](https://www.codefactor.io/repository/github/wslutilities/wslu/overview/master) | [![CodeFactor Grade Master](https://img.shields.io/codefactor/grade/github/wslutilities/wslu/develop)](https://www.codefactor.io/repository/github/wslutilities/wslu/overview/develop) | | 测试 | AppVeyor | [![Build status](https://ci.appveyor.com/api/projects/status/gcttf7igb0s40xak/branch/master?svg=true)](https://ci.appveyor.com/project/patrick330602/wslu/branch/master) | [![Build status](https://ci.appveyor.com/api/projects/status/gcttf7igb0s40xak/branch/develop?svg=true)](https://ci.appveyor.com/project/patrick330602/wslu/branch/master) | | 部署 | CircleCI | [![CircleCI](https://img.shields.io/circleci/build/gh/wslutilities/wslu/master)](https://circleci.com/gh/wslutilities/wslu/tree/master) | [![CircleCI](https://img.shields.io/circleci/build/gh/wslutilities/wslu/develop)](https://circleci.com/gh/wslutilities/wslu/tree/develop) | ## 安装 ### Pengwin/Fedora Remix 已内置。 ### Ubuntu 最新版本已内置。针对旧版本的安装,请安装依赖于 wslu 的 ubuntu-wsl: ``` sudo apt update sudo apt install ubuntu-wsl ``` ### 基于Debian的分发版(Debian/Kali Linux) 你可以从 Releases 界面下载`.deb`进行安装:`sudo dpkg -i wslu*`。 #### Debian 你可以用以下命令进行安装: ``` curl -s https://packagecloud.io/install/repositories/whitewaterfoundry/wslu/script.deb.sh | sudo bash ``` ### 基于RPM的分发版(OpenSUSE/SLES/Pengwin企业版/Oracle Linux) 你可以用以下命令进行安装: ``` curl -s https://packagecloud.io/install/repositories/whitewaterfoundry/wslu/script.rpm.sh | sudo bash ``` 你也可以从 Releases 界面下载`.rpm`进行安装:`sudo rpm -ivh "wslu*"`。 ### Arch Linux wslu 已在 [AUR](https://aur.archlinux.org/packages/wslu/) 库中。你可以下载 *PKGBUILD* 手动安装或者使用 AUR 助手(比如 yay)进行安装。 ### Alpine Linux 你现在可以通过执行以下指令安装: ``` $ echo "@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing/" | sudo tee -a /etc/apk/repositories $ sudo apk update $ sudo apk add wslu@testing ``` ### 其他发行版 > **⚠ 不建议** > > `curl | bash`这种方法并不安全。 [相关文章](https://sandstorm.io/news/2015-09-24-is-curl-bash-insecure-pgp-verified-install) 在你想要安装的发行版下运行一下命令:`curl -sL https://wslu.patrickwu.space/install | bash` ## 贡献者 没有你们,这个项目不可能存在。[[为这项目作出贡献](CONTRIBUTING.md)]。 ## 许可及版权(英文) This project uses [GPLv3](LICENSE) License. Logo of WSL Utilities is licensed under [CC BY-NC 4.0 International License](http://creativecommons.org/licenses/by-nc/4.0/). ### Assets Tux logo used in `\src\etc\wsl.ico` was originally made by Larry Ewing in the Gimp and re-illustrated in vector by Garrett LeSage, using Inkscape. Some of `wslfetch` ASCII Arts comes from [`neofetch`](https://github.com/dylanaraps/neofetch/) with [MIT](https://github.com/dylanaraps/neofetch/blob/master/LICENSE.md) License and [`screenFetch`](https://github.com/KittyKatt/screenFetch/) with [GPLv3](https://github.com/KittyKatt/screenFetch/blob/master/COPYING) License. Pengwin Logo used in `wslfetch` ASCII art is ASCII version of the artwork by [Dennis D. Bednarz](https://twitter.com/DennisBednarz), with use permission from Whitewater Foundry. WLinux Logo used in `wslfetch` ASCII art is ASCII version of the artwork by Larry Ewing. wslu-2.3.6/README.hant.md000066400000000000000000000134241362575655700147550ustar00rootroot00000000000000
# wslu - 一套Windows 10 Linux子系統工具組 [![GitHub license](https://img.shields.io/github/license/wslutilities/wslu?style=flat-square&label=許可協議&color=blue&logo=github)](https://github.com/wslutilities/wslu/blob/master/LICENSE) [![GitHub (pre-)release](https://img.shields.io/github/v/release/wslutilities/wslu?include_prereleases&label=版本&logo=github&style=flat-square)](https://github.com/wslutilities/wslu) [![GitLab](https://img.shields.io/static/v1?label=gitlab&logo=gitlab&color=E24329&message=已映象&style=flat-square)](https://gitlab.com/callmepk/wslu) [![碼雲](https://img.shields.io/static/v1?label=碼雲&color=C71D23&message=已映象&style=flat-square)](https://gitee.com/mirrors/wslu) [![Twitter Follow](https://img.shields.io/twitter/follow/wslutilities?style=flat-square&logo=twitter&color=1DA1F2&label=跟隨) ](https://twitter.com/wslutilities) [English](README.md) | [简体中文](README.hans.md) | 繁體中文
這是一套適用於Windows 10 Linux子系統的工具組,可以在Windows 10 Linux子系統下完成諸如將Windows路徑轉換為WSL專屬路徑或者建立你最喜愛的Linux程式桌面快捷方式等工作。需要Windows 10創造者更新或更高。 ## 功能 **wslusc** 用於建立 Linux 程式的 Windows 桌面快捷方式的工具。 **wslsys** 展示 Windows 和 Linux 下的系統資訊的工具。 **wslfetch** 類似於 screenfetch 的系統資訊展示工具。 **wslvar** 可以幫助你獲取 Windows 系統常量的工具。 **wslview** 將 Windows 預設網路瀏覽器繫結為WSL網路瀏覽器的包裝工具。 **wslupath** ⚠ *已棄用* 可以轉換不同類型路徑的工具。 ## 狀態 | | 服務 | Master | Develop | | ------ | ------ |:------:|:-------:| | 證書檢查 | FOSSA | [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fpatrick330602%2Fwslu.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fpatrick330602%2Fwslu%2develop?ref=badge_shield) | - | | 程式碼質量 | CodeFactor | [![CodeFactor Grade Master](https://img.shields.io/codefactor/grade/github/wslutilities/wslu/master)](https://www.codefactor.io/repository/github/wslutilities/wslu/overview/master) | [![CodeFactor Grade Master](https://img.shields.io/codefactor/grade/github/wslutilities/wslu/develop)](https://www.codefactor.io/repository/github/wslutilities/wslu/overview/develop) | | 測試 | AppVeyor | [![Build status](https://ci.appveyor.com/api/projects/status/gcttf7igb0s40xak/branch/master?svg=true)](https://ci.appveyor.com/project/patrick330602/wslu/branch/master) | [![Build status](https://ci.appveyor.com/api/projects/status/gcttf7igb0s40xak/branch/develop?svg=true)](https://ci.appveyor.com/project/patrick330602/wslu/branch/master) | | 部署 | CircleCI | [![CircleCI](https://img.shields.io/circleci/build/gh/wslutilities/wslu/master)](https://circleci.com/gh/wslutilities/wslu/tree/master) | [![CircleCI](https://img.shields.io/circleci/build/gh/wslutilities/wslu/develop)](https://circleci.com/gh/wslutilities/wslu/tree/develop) | ## 安裝 ### Pengwin/Fedora Remix 已內建。 ### Ubuntu 最新版本已內建。針對舊版本的安裝,請安裝依賴於 wslu 的 ubuntu-wsl: ``` sudo apt update sudo apt install ubuntu-wsl ``` ### 基於Debian的分發版(Ubuntu/Debian/Kali Linux) 你可以從 Releases 介面下載`.deb`進行安裝:`sudo dpkg -i wslu*`。 #### Debian 你可以用以下命令進行安裝: ``` curl -s https://packagecloud.io/install/repositories/whitewaterfoundry/wslu/script.deb.sh | sudo bash ``` ### 基於RPM的分發版(OpenSUSE/SLES/Pengwin企業版/Oracle Linux) 你可以用以下命令進行安裝: ``` curl -s https://packagecloud.io/install/repositories/whitewaterfoundry/wslu/script.rpm.sh | sudo bash ``` 你也可以從 Releases 介面下載`.rpm`進行安裝:`sudo rpm -ivh "wslu*"`。 ### Arch Linux wslu 已在 [AUR](https://aur.archlinux.org/packages/wslu/) 庫中。你可以下載 *PKGBUILD* 手動安裝或者使用 AUR 助手(比如 yay)進行安裝。 ### Alpine Linux 你現在可以通過執行以下指令安裝: ``` $ echo "@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing/" | sudo tee -a /etc/apk/repositories $ sudo apk update $ sudo apk add wslu@testing ``` ### 其他發行版 > **⚠ 不建議** > > `curl | bash`這種方法並不安全。 [相關文章](https://sandstorm.io/news/2015-09-24-is-curl-bash-insecure-pgp-verified-install) 在你想要安裝的發行版下執行一下命令:`curl -sL https://wslu.patrickwu.space/install | bash` ## 貢獻者 沒有你們,這個項目不可能存在。[[為這項目作出貢獻](CONTRIBUTING.md)]。 ## 許可及版權(英文) This project uses [GPLv3](LICENSE) License. Logo of WSL Utilities is licensed under [CC BY-NC 4.0 International License](http://creativecommons.org/licenses/by-nc/4.0/). ### Assets Tux logo used in `\src\etc\wsl.ico` was originally made by Larry Ewing in the Gimp and re-illustrated in vector by Garrett LeSage, using Inkscape. Some of `wslfetch` ASCII Arts comes from [`neofetch`](https://github.com/dylanaraps/neofetch/) with [MIT](https://github.com/dylanaraps/neofetch/blob/master/LICENSE.md) License and [`screenFetch`](https://github.com/KittyKatt/screenFetch/) with [GPLv3](https://github.com/KittyKatt/screenFetch/blob/master/COPYING) License. Pengwin Logo used in `wslfetch` ASCII art is ASCII version of the artwork by [Dennis D. Bednarz](https://twitter.com/DennisBednarz), with use permission from Whitewater Foundry. WLinux Logo used in `wslfetch` ASCII art is ASCII version of the artwork by Larry Ewing.wslu-2.3.6/README.md000066400000000000000000000136361362575655700140310ustar00rootroot00000000000000
# wslu - A collection of utilities for WSL [![GitHub license](https://img.shields.io/github/license/wslutilities/wslu?style=flat-square&label=license&color=blue&logo=github)](https://github.com/wslutilities/wslu/blob/master/LICENSE) [![GitHub (pre-)release](https://img.shields.io/github/v/release/wslutilities/wslu?include_prereleases&logo=github&style=flat-square)](https://github.com/wslutilities/wslu) [![GitLab](https://img.shields.io/static/v1?label=gitlab&logo=gitlab&color=E24329&message=mirrored&style=flat-square)](https://gitlab.com/callmepk/wslu) [![Gitee](https://img.shields.io/static/v1?label=gitee&color=C71D23&message=mirrored&style=flat-square)](https://gitee.com/mirrors/wslu) [![Twitter Follow](https://img.shields.io/twitter/follow/wslutilities?style=flat-square&logo=twitter&color=1DA1F2&label=follow)](https://twitter.com/wslutilities) English | [简体中文](README.hans.md) | [繁體中文](README.hant.md)
This is a collection of utilities for Windows 10 Linux Subsystem, such as converting WSL path to Windows path or creating your favorite linux GUI application shortcuts on Windows 10 Desktop. Requires Windows 10 Creators Update. ## Feature **wslusc** A WSL shortcut creator to create a shortcut on your Windows 10 Desktop. **wslsys** A WSL system information printer to print out system informations from Windows 10 or Linux. **wslfetch** A WSL Screenshoot Information Tool to print information in an elegant way. **wslvar** A WSL tool to help you get Windows system environment variables. **wslview** A fake WSL browser that can help you open link in default Windows browser. **wslupath** ⚠ *Deprecated* A WSL tool to convert path styles. ## Status | | Service | Master | Develop | | ------ | ------ |:------:|:-------:| | License Check | FOSSA | [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fpatrick330602%2Fwslu.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fpatrick330602%2Fwslu%2develop?ref=badge_shield) | - | | Code Quality | CodeFactor | [![CodeFactor Grade Master](https://img.shields.io/codefactor/grade/github/wslutilities/wslu/master)](https://www.codefactor.io/repository/github/wslutilities/wslu/overview/master) | [![CodeFactor Grade Master](https://img.shields.io/codefactor/grade/github/wslutilities/wslu/develop)](https://www.codefactor.io/repository/github/wslutilities/wslu/overview/develop) | | Testing | AppVeyor | [![Build status](https://ci.appveyor.com/api/projects/status/gcttf7igb0s40xak/branch/master?svg=true)](https://ci.appveyor.com/project/patrick330602/wslu/branch/master) | [![Build status](https://ci.appveyor.com/api/projects/status/gcttf7igb0s40xak/branch/develop?svg=true)](https://ci.appveyor.com/project/patrick330602/wslu/branch/develop) | | Deployment | CircleCI | [![CircleCI](https://img.shields.io/circleci/build/gh/wslutilities/wslu/master)](https://circleci.com/gh/wslutilities/wslu/tree/master) | [![CircleCI](https://img.shields.io/circleci/build/gh/wslutilities/wslu/develop)](https://circleci.com/gh/wslutilities/wslu/tree/develop) | ## Installation ### Pengwin/Fedora Remix Preinstalled in WLinux and Fedora Remix for WSL. ### Ubuntu Preinstalled in the latest apps. On older installations please install ubuntu-wsl that depends on wslu: ``` sudo apt update sudo apt install ubuntu-wsl ``` ### For other Debian-based systems(Debian/Kali Linux) You can download the `.deb` package from release and install it using `sudo dpkg -i wslu*`. #### Debian You can use the following command for easy installation: ``` $ curl -s https://packagecloud.io/install/repositories/whitewaterfoundry/wslu/script.deb.sh | sudo bash ``` ### For RPM-based systems(OpenSUSE/SLES/Pengwin Enterprise/Oracle Linux) You can use the following command for easy installation: ``` $ curl -s https://packagecloud.io/install/repositories/whitewaterfoundry/wslu/script.rpm.sh | sudo bash ``` You can download the `.rpm` package from release and install it using `sudo rpm -ivh "wslu*"`. ### Arch Linux wslu is live on [AUR](https://aur.archlinux.org/packages/wslu/). You can download *PKGBUILD* and install manually or install via PKGBUILD helpers like yay. ### Alpine Linux You can now install wslu from Alpine Linux testing with following way: ``` $ echo "@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing/" | sudo tee -a /etc/apk/repositories $ sudo apk update $ sudo apk add wslu@testing ``` ### Other distributions > **⚠ Not Recommend** > > `curl | bash` method is not secure. [Related article](https://sandstorm.io/news/2015-09-24-is-curl-bash-insecure-pgp-verified-install) Run the following command in your preferred distro: `curl -sL https://wslu.patrickwu.space/install | bash` ## Contributors This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)]. ## License & Credits This project uses [GPLv3](LICENSE) License. Logo of WSL Utilities is licensed under [CC BY-NC 4.0 International License](http://creativecommons.org/licenses/by-nc/4.0/). ### Assets Tux logo used in `\src\etc\wsl.ico` was originally made by Larry Ewing in the Gimp and re-illustrated in vector by Garrett LeSage, using Inkscape. Some of `wslfetch` ASCII Arts comes from [`neofetch`](https://github.com/dylanaraps/neofetch/) with [MIT](https://github.com/dylanaraps/neofetch/blob/master/LICENSE.md) License and [`screenFetch`](https://github.com/KittyKatt/screenFetch/) with [GPLv3](https://github.com/KittyKatt/screenFetch/blob/master/COPYING) License. Pengwin Logo used in `wslfetch` ASCII art is ASCII version of the artwork by [Dennis D. Bednarz](https://twitter.com/DennisBednarz), with use permission from Whitewater Foundry. WLinux Logo used in `wslfetch` ASCII art is ASCII version of the artwork by Larry Ewing. wslu-2.3.6/appveyor.yml000066400000000000000000000007721362575655700151370ustar00rootroot00000000000000version: 2.3.1.{build} branches: only: - master - develop only_commits: files: - src/**/* - Makefile image: Windows Server 2019 build: Script clone_folder: C:\project\wslu install: - git submodule update --init --recursive - ps: wsl -u root apt-get update - ps: wsl -u root DEBIAN_FRONTEND=noninteractive apt-get upgrade -y - ps: wsl -u root DEBIAN_FRONTEND=noninteractive apt-get install -y bc make imagemagick build_script: - ps: wsl make test_script: - ps: wsl make test wslu-2.3.6/configure.sh000066400000000000000000000063551362575655700150670ustar00rootroot00000000000000#!/bin/bash # configure.sh # configure script for wslu # # Copyright (C) 2019 Patrick Wu # # 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 . function interop_prefix { if [ -f /etc/wsl.conf ]; then tmp=$(awk -F '=' '/root/ {print $2}' /etc/wsl.conf) if [ "$tmp" == "" ]; then echo "/mnt/" else echo "$tmp" fi else echo "/mnt/" fi } function env_check { if [ -f /etc/fake-wsl-release ] then echo "[fake WSL Environment]" elif [ ! -f /proc/sys/fs/binfmt_misc/WSLInterop ] then echo "Your distro do not support WSL Interopability. Installation Aborted." exit 1 fi } function prsh_check { PATH="$(interop_prefix)c/Windows/System32/WindowsPowerShell/v1.0/:$PATH" if powershell.exe -NoProfile -NonInteractive -Command Get-History; then echo "powershell.exe can be invoked." else echo "powershell.exe failed to launch." exit 1 fi ppep="$(powershell.exe -NoProfile -NonInteractive -Command Get-ExecutionPolicy 2>&1 | tail -n1 | sed 's/\r$//')" echo -e "Powershell Execution Policy: $ppep" if [[ "$ppep" = "Restricted" ]]; then cat << EOF *************************************** WARNING *************************************** The execution policy for powershell.exe should not be Restricted. You should se t Powershell Execution Policy to Unrest ricted with a Powershell Prompt with Ad ministrator right: Set-ExecutionPolicy Unrestricted Due to the limitation, it is not possib le to invoke this command from WSL. EOF fi PATH=$(getconf PATH) } function pkg_inst { distro="$(head -n1 /etc/os-release | sed -e 's/NAME=\"//g')" case $distro in *Pengwin*) sudo dpkg --force-depends --remove wslu sudo apt install -y git gzip make ;; *WLinux*|Ubuntu*|*Debian*|*Kali*) sudo apt purge -y wslu sudo apt install -y git bc gzip make imagemagick ;; openSUSE*|SLES*) sudo zypper -n rm wslu sudo zypper -n install git bc gzip make imagemagick ;; Alpine*) sudo apk add git bc gzip make bash-completion imagemagick ;; Arch*) sudo pacman -Syyu git bc gzip make bash-completion imagemagick ;; *Oracle*|Scientific*) sudo yum install -y git bc gzip make bash-completion imagemagick ;; *Fedora*) sudo dnf install -y git bc gzip make bash-completion ImageMagick ;; *Generic*) [ "fedora" == "$(grep -e "LIKE=" /etc/os-release | sed -e 's/ID_LIKE=//g')" ] && sudo dnf install -y git || exit 1;; *) exit 1;; esac } function main_inst { env_check prsh_check pkg_inst make sudo make install } for args; do case $args in -e|--env) env_check; exit;; -p|--prsh) prsh_check; exit;; -P|--pkg) pkg_inst; exit;; -i|--install) main_inst; exit;; *) exit 1;; esac done env_check; prsh_check; pkg_inst wslu-2.3.6/docs/000077500000000000000000000000001362575655700134715ustar00rootroot00000000000000wslu-2.3.6/docs/wslfetch.1.gz000066400000000000000000000012601362575655700160100ustar00rootroot00000000000000%W^wslfetch.1Rn@#*TC^RXQ$.k{0]Ewl'H3{+]ء@ nM bÍջq]毅MԻ4㊽`l`-ʠ`iL؄cat=ʫw^@dF@:@<9,ul%G9c\ V<\gpAYE=㍑wGi ?y@IVD V32)V*n-8\x/Y4oɪ(ReeL= p5^w 7_*-z[Th^+s 53Xlm,?Z sEd=1Re2̦ .h/)*0) 4 ɦEA$)nnwslu-2.3.6/docs/wslsys.1.gz000066400000000000000000000014111362575655700155330ustar00rootroot00000000000000%W^wslsys.1To<}篸BJ_^u/#iċ &jl"u`*mRn0=LJ{T>lRdk/1mnqFv!LC64p?j_|qFbgxyU;;hjs/( 7LBusRPa@D#nań1ֆqfIELpQ]~VW{Ƙaoc|.q9wbY;`ܘV& C9 AZZvj H Ӈ(Cw%<_ٷh 3z qJ偉iQr}M 2W+{;!f])){?d,DlRƵ  vMİ4P+"63a2޼ƄXp}+-74gpBBQN@ƳϡlϡF61G~Y, Z9 {r2uy7WtGx19Tm\F6<ϜsWҼ%KR,VN=imqiŶ-U(-lR6L'hBO knŠy 2Y2[p щvNܥ%;DEI ;? xX()Y'G%.EQ4K6_u_z/"wslu-2.3.6/docs/wslupath.1.gz000066400000000000000000000020111362575655700160330ustar00rootroot00000000000000_W^wslupath.1U]o:}W"U*ݗݗB \ Tm&qHwlvtNE>g;JO_OIFlv}%(l 2. {=>?<~1Q`}N}>BDmS0NA.=-,YG 0e ^F*ZBQ(N'w)yo.|{eh)Mo2|;{>0L$&d{&`J·T(*@퉂5`\M$&wrh6 C :8M$r\Z3\۵3$i܁µǕqlaNv!4:MG%vV3*l%^g }V zD NE:rŪQ]iqd# 9ޖIӢgRj[\_h[| A:AAõڂnLBJ+jF+ֲ 6ơ8`(7FT)@bV܌ bS1}zP<EJ5ߠ V0 8gd:^ $x^L`1 I!&n4wslu-2.3.6/docs/wslusc.1.gz000066400000000000000000000015501362575655700155130ustar00rootroot00000000000000%W^wslusc.1Tmk8_1v۽/w- i41CYPl9Ŗ$'5쏿8-܇$3ϼz ;ʩ$pbzz57ލ^w(^!~4|kI?d p_& ]po{zsc%+ҹI՝**qVuGȯ!M+8D/wov[+MhV3 iEr/s~_S~8?+' WrBpx54-$h1Ed#Av6#E'(Lv fbT U'jB`m C$z"e M==NGB-^ڷ靈:sM;(YUQm^[ ᥕSZ4 1G/:yBOXaFL9UF ' GB5L^$:@ N`90`+bL_w4?jǠ`(mf,ӵaHIeT`l:q6V . O aw'ߝ?kC`NӖuE9!{1}+}iޏ>:&Z3<61ʲvʖȼH,'EЛ5|QՂSAZ\axf:i J$} 8 RrxqG[Z,7>R1CYɖS;?$AQh[ٖ)V Zo`P eS2Գ2E" F%U3`O L)i vѐu5OFE D-r&@!Eu8+R[ؔb" (D [ŐsG%dUuI{^i}7RVSR:$ m稭i + dv{pŘmRC+6UÐ-'f"i?Nyo*Nh7sZcg+(ɂp ):*F(2(~JCvP;"Mo )l4]kWHĚyp# 42SojuA z]"Z%#O -H 0" pO&^y,Ȟ }>>JC&@H(ye2?wslu-2.3.6/docs/wslview.1.gz000066400000000000000000000012321362575655700156700ustar00rootroot00000000000000%W^wslview.1Sю@}+nHLBW_tE-j 30S$@u&pùqrv(P1[hC"S4v;cˡ;gv6rtU,vV^󯁿)[x;@1ӊo2Ͳ⡩&/I#mB>R XqM csa~Bju[k`yu;OaAj[(.l7()q_]aċr8<|ď~:I8 ж=.; \V$=Ӱa:JhyD%X0S|rdguSgQq2AͫcO,'OCyQs1'kVtxnpgV59mu/|S-YDau < U1^jyHŮ1K~žď$ )<,RiX ?iry]/ē(~J,橠s,t颤pK)6֕ *E۽0bGt4\4?on(D(O:-[srSF@Z!5Ҽ 3!SG)B?MSGMs/xQ")x~wslu-2.3.6/extras/000077500000000000000000000000001362575655700140475ustar00rootroot00000000000000wslu-2.3.6/extras/bats/000077500000000000000000000000001362575655700150005ustar00rootroot00000000000000wslu-2.3.6/extras/build/000077500000000000000000000000001362575655700151465ustar00rootroot00000000000000wslu-2.3.6/extras/build/alpine/000077500000000000000000000000001362575655700164165ustar00rootroot00000000000000wslu-2.3.6/extras/build/alpine/APKBUILD000066400000000000000000000014661362575655700175430ustar00rootroot00000000000000# Maintainer: Patrick Wu # Contributor: Patrick Wu pkgname=wslu pkgver=2.3.6 pkgrel=1 pkgdesc="A collection of utilities for Windows 10 Linux Subsystems" url="https://github.com/wslutilities/wslu" arch="noarch" license="GPL-3.0-or-later" depends="bc bash-completion imagemagick" subpackages="$pkgname-doc" source="$pkgname-$pkgver.tar.gz::https://github.com/wslutilities/wslu/archive/v$pkgver.tar.gz" options="!check" #tests can be only run on a distro running on WSL(Windows Subsystems for Linux) environment, hence disabled build() { make } check() { make test } package() { install -Dm 555 docs/* -t "$pkgdir"/usr/share/man/man1/ install -Dm 755 out/* -t "$pkgdir"/usr/bin/ install -Dm 555 src/etc/* -t "$pkgdir"/usr/share/wslu/ } sha512sums=""wslu-2.3.6/extras/build/arch/000077500000000000000000000000001362575655700160635ustar00rootroot00000000000000wslu-2.3.6/extras/build/arch/PKGBUILD000066400000000000000000000013051362575655700172060ustar00rootroot00000000000000# Maintainer: Patrick Wu pkgname=wslu pkgver=2.3.6 pkgrel=1 pkgdesc="A collection of utilities for Windows 10 Linux Subsystems" arch=('any') url='https://github.com/wslutilities/wslu' license=('GPL-3.0-or-later') depends=('bc' 'imagemagick' 'bash-completion') makedepends=('git' 'make') source=("git+https://github.com/wslutilities/wslu.git#tag=v${pkgver}") sha256sums=('SKIP') build() { cd wslu make } package() { cd wslu install -Dm 755 out/* -t "${pkgdir}"/usr/bin/ install -Dm 555 docs/* -t "${pkgdir}"/usr/share/man/man1/ install -Dm 555 src/etc/* -t "${pkgdir}"/usr/share/wslu/ install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/wslu/ } # vim: ts=2 sw=2 et:wslu-2.3.6/extras/build/debian/000077500000000000000000000000001362575655700163705ustar00rootroot00000000000000wslu-2.3.6/extras/build/debian/control000066400000000000000000000007351362575655700200000ustar00rootroot00000000000000Package: wslu Architecture: all Maintainer: Patrick Wu Version: VERSIONPLACEHOLDER-BUILDVERNIGHTLYBUILDPLACEHOLDER Priority: optional Depends: bc, imagemagick Description: A collection of utilities for Windows 10 Linux Subsystem This is a collection of utilities for Windows 10 Linux Subsystem, such as converting WSL path to Windows path or creating your favorite linux app shortcuts on Windows 10 Desktop. Requires Windows 10 Creators Update and higher. wslu-2.3.6/extras/build/debian/postinst000066400000000000000000000002741362575655700202010ustar00rootroot00000000000000#!/usr/bin/env bash update-alternatives --install /usr/bin/x-www-browser x-www-browser /usr/bin/wslview 1 update-alternatives --install /usr/bin/www-browser www-browser /usr/bin/wslview 1 wslu-2.3.6/extras/build/debian/prerm000066400000000000000000000002121362575655700174330ustar00rootroot00000000000000#!/usr/bin/env bash update-alternatives --remove x-www-browser /usr/bin/wslview update-alternatives --remove www-browser /usr/bin/wslview wslu-2.3.6/extras/build/rpm/000077500000000000000000000000001362575655700157445ustar00rootroot00000000000000wslu-2.3.6/extras/build/rpm/wslu.spec000066400000000000000000000040001362575655700176040ustar00rootroot00000000000000%define packager Patrick Wu %define _topdir HOMEPLACEHOLDER/rpm_wslu %define _tmppath /var/tmp %define _rpmtopdir %{_topdir} %define _builddir %{_rpmtopdir}/BUILD %define _rpmdir %{_rpmtopdir}/RPMS %define _sourcedir %{_rpmtopdir}/SOURCES %define _specdir %{_rpmtopdir}/SPECS %define _srcrpmdir %{_rpmtopdir}/SRPMS Summary: Windows 10 Linux Subsystem Utilities Name: wslu Version: BUILDVERPLACEHOLDERNIGHTLYBUILDPLACEHOLDER Release: 1 Source: wslu-BUILDVERPLACEHOLDER.tar.gz BuildArch: noarch Requires: bc ImageMagick Requires(post): %{_sbindir}/update-alternatives Requires(postun): %{_sbindir}/update-alternatives URL: https://github.com/wslutilities/wslu/ License: GPLv3 %description This is a collection of utilities for Windows 10 Linux Subsystem, such as converting WSL path to Windows path or creating your favorite linux app shortcuts on Windows 10 Desktop. Requires Windows 10 Creators Update and higher. %prep %setup %build %install rm -rf $RPM_BUILD_ROOT mkdir -p ${RPM_BUILD_ROOT}%{_bindir} mkdir -p ${RPM_BUILD_ROOT}/usr/share/wslu mkdir -p ${RPM_BUILD_ROOT}/usr/share/man/man1 install -m755 wsl* ${RPM_BUILD_ROOT}%{_bindir} install -m555 etc/* ${RPM_BUILD_ROOT}/usr/share/wslu install -m555 docs/* ${RPM_BUILD_ROOT}/usr/share/man/man1 %post %{_sbindir}/update-alternatives --install %{_bindir}/www-browser www-browser %{_bindir}/wslview 1 %{_sbindir}/update-alternatives --install %{_bindir}/x-www-browser x-www-browser %{_bindir}/wslview 1 %postun %{_sbindir}/update-alternatives --remove www-browser %{_bindir}/wslview %{_sbindir}/update-alternatives --remove x-www-browser %{_bindir}/wslview %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root) %{_bindir}/wslusc %{_bindir}/wslfetch %{_bindir}/wslsys %{_bindir}/wslupath %{_bindir}/wslview %{_bindir}/wslvar /usr/share/wslu/ %doc /usr/share/man/man1/ %changelog * Wed Jul 31 2019 patrick330602 - Please check https://github.com/wslutilities/wslu/releases/latest for changelog wslu-2.3.6/extras/icon.png000066400000000000000000000460621362575655700155150ustar00rootroot00000000000000PNG  IHDR!tEXtSoftwareAdobe ImageReadyqe<KIDATxAW&tz ڣP5X +V,z3OoGz rQyodDRU6YY7"sN,@˾營~z-_nh#rt|&_,p᧟}ytR]*@C>.YU&~9!UB{VSR!jJ+`>ݞݞʂ&L«YOYXw*x^ǣ}{XO?}yzEA]vh)`7&*WVQi% vkbg]\ @d]&~9녫 w/Dw<^"Ă`MqxJK3%j  fH03zb7KЦ @' m'b%z?GUKӧA?s6xh%֖V7M՘~yu}<]3 M aC~̻ s_Rtޖ ^ Þk_(-8໅+1_,L v-s#i\=̕ +U«/9`|<_X v0)5DLGZv + B2]xNSmeN˕` ZuգWochߎ?9,vϯC8zwhTB7GW_1X~ţ۝*+]=.Vc=?==}4c%s6]{x!'x!ߕſ;|_| Y3"6|_nw[| h5zp`A65= ,T\yС.lߛ?~~ヶWzI`=:qs}?1,خrP6!%z:cwXzvh ,؞\y[xZB;}, &@bLhr!!j #탿𸩼by=^:aXc>sMGKXo~ 뺲 i ̀u`07o4DW_|WJ\g͖ 6』^= ` 9Uޛ!麳pA1j 67RIPlD6B@X0M,FYHe,+ WؔO Y`LslT2l ڷ#LVn Go GӢ}`;,ua X0-`kl %ت}K,+]$k ].%,$M`4M`4M`4M`4M`4M`4M`4M`4M`4M`4MК+W,ܹStߏ?.?n`X4˗/_~Y 0OZhN¨Rn޼iрI__ÇI`Фo fL@T`Mp~/^b h֋/{ 3%Y`Ь6\ -k^ :._>G͛7˯ Q>}?6#sZm0{݀ ߥӕ= I޾}lq+:<<,o-̌ +W,\|aci ei#,j0?,`6eU R- RQUڞٵ!&/UO޽k.H࢕p8i#,uz>0m,`Ҫٳ&[Mj^*o`!&+U`mj KS}UIJx5ԠWJ/_<ځyLW^BaOмsjWҋ6B-,y?Vxh#"wܩ̻^[嗪m=#V:ֲ\iyUKCTi#i`ͪJݻw-܎ڣ6B-Ъ>Te>ZT` 7awu8՗W^]޹wiW%u޽L`I) tm5W/%O* QZ RJ+e~ y_~}y+9&|1+s` 6O4)'5W|E% YBON,m'i#`ђ۷o_dgɬCKxc[/j:Oolo.?<gФEt\']/_\~!ٳg{saɇ]-.\h5TŐO9^m=҅wt !=/%:oUpuZb8'}[6-nof|$=ۥ4(`:KLe=P pvF☴fԶ\nW$sқ譨i LT]r^J._\t!=|pYURUb9,9[Ϳe#-9S 0f^{<ZΛ L(_2kmO4f4I^ [8SaϽؾҶouC- !fҠdիWC nd[j֫j_ջwSnng%X̿fX9[%doǚ "U%RY:-vz{uWEK[e.n`6OjO$Zg?qjuCl hJ͉dͶ+'%O^W֩p}dH[BY+o?}RQ瘖PL]E_ǍNH hJ3sh#y%HkaZ iDZҊϾ!O,Vk׮-ɰ }OUnڸV +m oX&%x#ЩiIzĜϓk׮-o~5ʠ03*&o_۵'R 32뼓YΡ'f>TIԶ{^ꬡgeɥe}DmUJ^ԠWS*O2,U 4VgϜRy>de;*kH S|yhDyXS`۵Xe"*P`순&HX[Jv؅A۾Jx9tUV_޽{W=jܷ&TLSS8vVڊд`X2(h]uIx +dBT¤*+Rŏ٧5bi݋ <}gu-,ŋQN"UBYz軹DJ@>]zϺ~',a*̃ YFX&!CeZ Vڲ*L]Xf%!:Ym ^|)T `tVI0SZqCA+R9\r*J:W, J/CZ !kq׹]NLDVSum v,-m|z;4d:-ׯ_/_IPMԡBʬ\P `0[5sv[$<^xJJuprivi'*0]0aV/ `URITZYUU>sO~j- VYmTTuݫw H5Vb"RO)=-'ܜoFͼj,9ƮzMͿ:K«hKE3ں6m>,6R-C mu'\|/$ޜ~ooo}ӧ+CUU\/_^<߾};z=|pښ1%{B 'RsҳD"5w$57a@Wmd{JUS?UI{^VbO<"+s2# ДXi#ܕ*U]`[ ܥ2f꘹)tqoU_>Uayou̱fd%̌TdN`M9jyU}<P߿MtҥecJUXuK›!@Xjffd%J5F7!f ԞhwDII''s Fʞmʕv1[ӧO{택P@Bp琶±¬uB`!l hNMe:F8P@Jۧoa+jQ%&{ fPpCٻyC]Xt`c}K@8 k5KԞmSSٗgj'ceݺuk#W|UYӒupB10YӧO%WJٵ&춾tkK4f^Qy6Æsk#{({7VY?s%{<~wj;]8’4uYX󱴳X@ACɳ JLpRZӅI}}BM$PTքX Yj:ЬO Ir__ϟ?/_lUsm=]`jW@rUȕP&ӧOy|ci؇>L hVN'߲ @>̉V_kI6iO6vr_ul@Â˗/ܧjsnjj]y`?kۙRSRp$%w!~UzudXCs*Uf\aNќ V훥XOذ+3NڜW05,iUX],gfR0jWB՝M}`" Mp޿>ާC]yV}u}4%5ǑmW@ ?krگv5JD**ښV^}׵ =LഔAޣ¨=E5J-]5qs h^*GpjNx՝kp+j!]Ma{ʒʱCU`lTTѣG?ݻwmkH7|]FXSt<>!6yZdYjC!Yb<-ͮ*]@LBB>'?!V~~O{zi2<N0k oktȪc˗/&3f>C]$Q^PKLFL92ꪝ|=* `dd='͛ZFLh6Z/f_}ï+16|(0kdDmP3֕D[mlJV }I}auN?^N}O8o2.Tam6 .] >7::4.4u*P?ڍ6ߏyYoeNϟ'}ʸ a6N]}ZO>~?'U"'y'_ Pk#/{Jw;*`8Cp/{۷g˗:zjKrO>/YO, &'0PhQ'm2.o]pYNvUuX#bgMЅOCO8c}S9vámy+I͚mjYN>WԆV_uT })uVQȼmc)X9v8y؞ʫͨԇ}]{[k}|*k X["i,hPϟ??M*vNX[`,V!IjFjf ,h ^QM!^xQ|_m,8A!G'|ŋB,"S޼yS|_X0>´HիW-Hg~m #`j`i#q 5mW\F#`7h#6^zU|} #`7yf˗0Xp6B`,8GM9X0-|[*,l V,,`{4M`4M`4M`4M`4M`4M`4M`4M`4M`4M`4M`4M`4M`4M`4M`4M`4M`4M`4M`4M`д-0wW^]\xq޼yc$fNj,lѕ+WwKh-ЄX<`LX4M@X4M@X4M@X4{K˗/7oެ/^\\zb̌ ho888X1_38vΝǏk=%f'-D]~}9 '3qJ<{ |f Yyƍ˯U+W,o :ݠW^ 6@LZ*=zWUTTiݼysqw6T?H[[VFq?{ҥKߑW0.X@ݻWuI Jוh0.X@ҪW#UQ,X@>xr*iT. ~h hR쫧OZ4X{v\ﻫj:hZzO hRNp3-_. +sEɇ6:ܹqT.%?mMk}vY`ae?yA}`:l@`,I)%bJO4./vnhU-Y$J86^!lMiXS \}aY,iOTT`5TfSyV|zFTA060yۮ@/`e?,MvmZ kJ+wZ* xZ j!CBf1_So!\7I`U X@޾}[uM_a̡zgyT>lnIC_]bФyA]y<RR46,l_ f>}k'd n/\߿M&&9) kzVXa7vkc¼w^x_Cu{+U`ׯ_[5Wl hRB?|uʐ mθ*}};w7aգGO<5q^O n޼}WVRf`zi 3zÿwAiUTV_Sy8tx{`I:-JI5ֳgϚ|* 5]^|̙Bi_VS#mX?'،mq޿cU}c}cwWM,i>. "ݻwaW3nV\]ᄡp '&!2ZsReu֔OUiwٍ7V'( O .`q֭A+NKUVZRٜVP2Xkj̝ Tb6f[V7++UYi_T2B t[U|~ Iֵkזëǔ@ BxjmUjxRiV߰U%ՃQJLRSHKY n @5PU}#+!ᡅHi }vy .ϺܣGz\«X`XjK.-Yl,7vS4tֺWWLam+5HEVjL {者RɲnpJ5+* iL ^ϕ'~iuIn%W# RwD^T$J`k*7uJ[K!*˲޺uk}6!`Z S(%aVUW(\OiURgU$)^*t~zڵgMaf@XNJJ*kJh:a ӷ}K)!Vufb}KYi/La.P]0u+JZ%UQ*J]-=Bc]i3-(HwZ 8W*sRB@… 7Tޭ *W:c\4ɓeKa^X.R6 N,}Rb,§/^l[Fy~s3Ȋ.2 m`!aJߡ`u_JUUBXFXR4F ^ k¼愳޽q,oHw.Vɕ>/J 2}+f.V&VHQ;cHU.qVtUIsVaI5VS |O{ҥe5dvxxʛl @ ]ҶBfVW<n,ʬ6xi%Lc`( ;NSUoVzzUEjYm/_^>}+ &JW1L+a\0g]!8鯡 kooo*g]OaI0J a<דW1K+!c`*0zJW^m#,{d .L@"`X4$(UX.`Z8}v) bUaUbg~UwҶ+jUms f$(ڋ/l5e&٪dՀJW O2뤩UXj5檧S$˗/>|Xn-'y5`ZOImv;n[Ն9^̙ hɊ|}2JjO>\{wTp!`꩹X5WlZf;޸q5:ִCh;0g,Iߚ6gϞ-> R5I[ T49XAPmi*}qۭa%WzlMv(ο pS(%؎~ї}+7=~mgzDRTLu4>}Z~iCKI~ߺ'nO_ޕmmQ+AF˾]6XV^{֠{= ׶o%wE9;هvr(/zkb Fs˰y[59SUY6^ ''}iUNJmا(-'y>wd?K5vbTՄWYUi ,Aݻw^*fk k*ĺ.ejΣhڕxێׅ<} Κ;@&m (R)%!d[}n aZ^k*j¢_ =rk0ѣGa^KnO+!u[pi!\O6ѲCv'O&fZm(!Pk쇹YU]0aoooX}RlfIpS{ѳS*OC[s,.\kۯ;H8ޮ(^ {7O@t '@9ENy%Zf23H3ӿTr_fy5@8BEU)ī7۫)j*ֹ>Uwsmv mRZUcTA"]vڍ}!roKajVB.M[gj-6T,J|XQw9pD; RP zZq1vrr_pzӧ^TkGhrV7}U6qgT}.`[, p4BQ<M׆7|*_ *1l~}w!?M]zZ"`*JԥO>_̪YxC: iF.ug}bⷴ~[8B;MqB`,CRz]^mPWְkmzqkyh)7 kտ75U?#-=~n2Bw{̉g]ggǷy_?nznڿ&vQO>׽x]@K*3-M}=io{NzX9.n?`?vόaZAňڕwݝTS;jUUGŗm1ϭ>|DQAիWkcEaNޱYj4MbU:6;`l7Xf֖فn/}/.p*DT`8Q V^RĩaCx]e*{>!ZIаX#nm$֬ X[&`1'eVy #_wCf$`B;e'RA M @4 h, XD&`Swpp@,`NOO aM @4 h, XD&`M @4 h, XD&`M @4 h, XD&`M @4 h, XD&`M @4 h, XD&`M @4 h, XD&`M @4 h, XD&`M @4 h, XD&`M @4 h, XD&`M @4 h, XD&`M @4 h, XD&`M @4 h, XD&`M @4 h, XD&`M @4 h, XD&`M @4 h, XD&`M @4 h, XD&`M @4k<'F}, X#8;ܿq-zָ<;q-zֈ.Ύ;\K;#6k|Gl WFvqv\$&`excW\^~h$` V]XoM,  "`|"O&V$L HG _vR]/&̝s;0sV8 ;"0gV#D,`\F3"`5?kaX 8;ܯg/:vqv[)<2 `]eڑ0`j8;^\+I&櫐UCwdMgTG %?__^kjWVwy;2b/zǤD?4u~6,l;&`M @4 h, XD&`M @4 h, XD&`M @4 h, XD&`M @4 h, XD&`M @4 h, XD&`M @4 h, XD&`M @4 h, XD&`M @4 h, XD&`M @4 h, XD&`M @4 h, XD&`M @4 h,hF!`̯F0 qjk$?4~(uwmد]c.Q8Bm91Qwh,h{Ʊ08BlO:4qXО_g [9B`[uԉW ڳӯߌ`kmz߯}cظyu!F`|v`A>k6~ø,hnXla X66z}A=?`1d@կ~([Qd Wva=2 x֯1`v;~CGaλe5 [;KccL/3y`0 êO*^սWFIVSO<4\Lp3U,. `=m( X0m"1~hX0{2d0So[!ˣnvnyY($` # Copyright (C) 2019 Patrick Wu # # 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 . BUILD_DIR="$(mktemp --tmpdir --directory wslu-build-debian.XXXX)" BUILD_VER="$(grep 'version=' ../../src/wslu-header | cut -d'=' -f 2 | xargs)" BUILD_RELEASE="1" EXTRA="~$(date +%Y%m%d%H%M%S)" CURRENT_DIR="$(pwd)" # nightly build handler if [[ "$1" != "--nightly" ]]; then EXTRA="" fi # Creating folders mkdir -p "$BUILD_DIR"/{DEBIAN/,usr/bin/,usr/share/wslu/,usr/share/man/man1,usr/lib/mime/packages/} # copy files to build folder cp "$CURRENT_DIR"/../../docs/* "$BUILD_DIR"/usr/share/man/man1/ cp "$CURRENT_DIR"/../../out/wsl* "$BUILD_DIR"/usr/bin/ cp "$CURRENT_DIR"/../../src/etc/* "$BUILD_DIR"/usr/share/wslu/ cp "$CURRENT_DIR"/../build/debian/* "$BUILD_DIR"/DEBIAN # modifying the files sed -i s/BUILDVER/"$BUILD_RELEASE"/g "$BUILD_DIR"/DEBIAN/control sed -i s/VERSIONPLACEHOLDER/"$BUILD_VER"/g "$BUILD_DIR"/DEBIAN/control sed -i s/NIGHTLYBUILDPLACEHOLDER/"$EXTRA"/g "$BUILD_DIR"/DEBIAN/control chmod 755 "$BUILD_DIR"/DEBIAN/{postinst,prerm} # export md5 hashes cd "$BUILD_DIR" || exit 1 find . -type f ! -regex '.*.hg.*' ! -regex '.*?debian-binary.*' ! -regex '.*?DEBIAN.*' -printf '%P ' | xargs md5sum > DEBIAN/md5sums # setting permissions find "$BUILD_DIR" -type d -exec chmod 0755 {} \; find "$BUILD_DIR"/usr/ -type f -exec chmod 0555 {} \; # build [[ -d "$CURRENT_DIR"/../../target ]] || mkdir "$CURRENT_DIR"/../../target cd "$CURRENT_DIR"/../../target/ || exit 1 sudo dpkg -b "$BUILD_DIR"/ wslu-"${BUILD_VER}".deb # Cleanup everything rm -rf "$BUILD_DIR" cd "$CURRENT_DIR" || exit 1 wslu-2.3.6/extras/scripts/builder-docs.sh000066400000000000000000000034741362575655700204560ustar00rootroot00000000000000#!/bin/bash # # builder-deb.sh # scripts of wslu # # Copyright (C) 2019 Patrick Wu # # 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 . # get documentation from online git clone https://github.com/wslutilities/wslu.wiki.git OUTPATH="../../docs" SOURCES=(wslfetch wslsys wslupath wslusc wslview wslvar) BUILD_TIME="$(date +%Y-%m-%d)" [[ -d "$OUTPATH" ]] || mkdir "$OUTPATH" for file in "${SOURCES[@]}"; do NAME_CAP="$(echo "$file" | tr '[:lower:]' '[:upper:]')" # rename the filename mv wslu.wiki/"$file".md wslu.wiki/"$file" # generate base files using ronn ronn --manual="$NAME_CAP" --organization="Patrick Wu" --date="$BUILD_TIME" wslu.wiki/"$file" # cleanup folder for file modification rm wslu.wiki/"$file".html mv wslu.wiki/"$file" wslu.wiki/"$file".1 # Manpage Modification sed -i "s|.TH \"$NAME_CAP\" \"\"|.TH \"$NAME_CAP\" \"1\"|" wslu.wiki/"$file".1 sed -i 's|.SH "NAME"||' wslu.wiki/"$file".1 sed -i 's|\\fBwslfetch\\fR||' wslu.wiki/"$file".1 sed -i 's|Manpage Name|NAME|' wslu.wiki/"$file".1 # gzip file and move to the destination gzip wslu.wiki/"$file".1 mv wslu.wiki/"$file".1.gz "$OUTPATH" done # cleanup temp files rm -rf wslu.wiki wslu-2.3.6/extras/scripts/builder-rpm.sh000066400000000000000000000041371362575655700203210ustar00rootroot00000000000000#!/bin/bash # # builder-rpm.sh # scripts of wslu # # Copyright (C) 2019 Patrick Wu # # 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 . BUILD_VER="$(grep 'version=' ../../src/wslu-header | cut -d'=' -f 2 | xargs)" EXTRA="~$(date +%Y%m%d%H%M%S)" CURRENT_DIR="$(pwd)" # nightly build handler if [[ "$1" != "--nightly" ]]; then EXTRA="" fi # Creating folders mkdir -p ~/rpm_wslu/{BUILD/,RPMS/,SOURCES/,SPECS/,SRPMS/} mkdir -p ~/rpm_wslu/SOURCES/wslu-"$BUILD_VER"/{etc,docs} # Copy files to build folder cp ../../out/wsl* ~/rpm_wslu/SOURCES/wslu-"$BUILD_VER" cp ../../src/etc/* ~/rpm_wslu/SOURCES/wslu-"$BUILD_VER"/etc cp ../../docs/* ~/rpm_wslu/SOURCES/wslu-"$BUILD_VER"/docs cp ../build/rpm/wslu.spec ~/rpm_wslu/SPECS/wslu-"$BUILD_VER".spec # Modifying the files sed -i s/BUILDVERPLACEHOLDER/"$BUILD_VER"/g ~/rpm_wslu/SPECS/wslu-"$BUILD_VER".spec sed -i s/NIGHTLYBUILDPLACEHOLDER/"$EXTRA"/g ~/rpm_wslu/SPECS/wslu-"$BUILD_VER".spec sed -i "s|HOMEPLACEHOLDER|""$HOME""|g" ~/rpm_wslu/SPECS/wslu-"$BUILD_VER".spec # Build tarball cd ~/rpm_wslu/SOURCES || exit 1 tar -czvf wslu-"$BUILD_VER".tar.gz wslu-"$BUILD_VER" rm -rf wslu-"$BUILD_VER" # Build cd ~/rpm_wslu/SPECS || exit 1 sudo rpmbuild -ba --target noarch wslu-"$BUILD_VER".spec # Copy packages [[ -d "$CURRENT_DIR"/../../target ]] || mkdir "$CURRENT_DIR"/../../target cp ~/rpm_wslu/RPMS/noarch/*.rpm "$CURRENT_DIR"/../../target/ cp ~/rpm_wslu/SRPMS/*.rpm "$CURRENT_DIR"/../../target/ # Cleanup everything sudo rm -rf ~/rpm_wslu/ cd "$CURRENT_DIR" || exit 1 wslu-2.3.6/extras/scripts/wslu-uninstall000066400000000000000000000017071362575655700204670ustar00rootroot00000000000000#!/bin/bash # # wslu-uninstall # uninstall script for wslu # # Copyright (C) 2019 Patrick Wu # # 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 . for f in /usr/bin/wsl*; do sudo rm -f $f; done for f in /usr/share/man/man1/wsl*; do sudo rm -f $f; done sudo rm -rf /usr/share/wslu echo -e "\e[32m## wslu uninstallation complete.\033(B\033[m"wslu-2.3.6/src/000077500000000000000000000000001362575655700133305ustar00rootroot00000000000000wslu-2.3.6/src/etc/000077500000000000000000000000001362575655700141035ustar00rootroot00000000000000wslu-2.3.6/src/etc/runHidden.vbs000066400000000000000000000016451362575655700165450ustar00rootroot00000000000000' Mehthod by @mklement0 on Stack Overflow ' https://stackoverflow.com/questions/41225711/wsl-run-linux-from-windows-without-spawning-a-cmd-window ' Usage: wscript .\runHidden.vbs bash -c ' Simple command-line help. select case WScript.Arguments(0) case "-?", "/?", "-h", "--help" WScript.echo "Usage: runHidden executable [...]" & vbNewLine & vbNewLine & "Runs the specified command hidden (without a visible window)." WScript.Quit(0) end select ' Separate the arguments into the executable name ' and a single string containing all arguments. exe = WScript.Arguments(0) sep = "" for i = 1 to WScript.Arguments.Count -1 ' Enclose arguments in "..." to preserve their original partitioning. args = args & sep & """" & WScript.Arguments(i) & """" sep = " " next ' Execute the command with its window *hidden* (0) WScript.CreateObject("Shell.Application").ShellExecute exe, args, "", "open", 0wslu-2.3.6/src/etc/wsl.ico000066400000000000000000201237161362575655700154200ustar00rootroot00000000000000 @( >ElD`;R5R3N.4L:5M45M/6P*6P$8S9SZ{[6Ffq?i3M 0GV0F/D.D.D.D.F0F0F0F0G0H0G0G2G2G2H1I1I1I1I1I2J2J2J2J2J2K2K3K3K4K5N7SL=YTwuRvGfAA]y=Y;VX>Y>Y>X>Y>Y=X=X=XY>Y=Y=X[?[?Z>X>Y=X=WZ?Y>XX=XZ>Y=XYtMv ^KlDbEdFdFeGeGeHgGhHhIhJiIiIjJkJkKkLkLlLmLmLmLmLmLlMmLmLmLlLlLlLmLmLlKkKkKjJjJiIhIhHhGgGeFeEdDcDaD`C`B^B^@\?[?Z>X=X[>Y=Y\>[=[=\>[>[>[>Z>[>[=[=Z=Z]r acNptHfGfHgIgIiJiKjKkKkLlMmLmMnMoNpNpOqPqPqPrPsPsQsRtRuRuRuRtSuSuRuRvRvRvRvRvRtRtQtPsPsPrPqOqNpNoMnLmKlLlKjJiIhHgFfFdEcDbD`B`A^@\?[?Z>X;V;U:T9S8P7P6N5N4L3K3I4KSx3K/C-D.D.D/E/E/F0F0F0G0H1H1H2I2J2J2J3L4M5M5N5N5P6P6P8Q7R8R8S9T9T9U:V:V;W;W;X[>\>\?]?]?]?]?]?]?^@^@^@^@]@^?^?^?]@]?]?]?]>]?\?]?\?\>\>[=\>[=[=Z=Z=YZ>X;V;U:T8S8P7O6N5M4K3J2I?W'Hi/Fv-D.C.D/E/E/F0F0F0G0H1I1H2I2J2K2K3L5M5N5N5O6P6P7Q7R8S8S9T9U:V9V:V;X[>\?\?\?]?]?^?^@_@_@_@`@`@`@a@aAaA`A`A`AaAaA`A`A`A`@`@_A`@_@_A_@^@^?^?^?]?]?]?\>\>[>[=[=Z=Z=Z=Y@\ WmQtgJiJiIiJjKjKlLmMmMoMoOpOqPrQrQtQtRuRuSwTwTxUyUyVzV{V{W{W|W}X}X}Y~Y~Y~X~Y~Y~Y~Y~Y}Y~X~W}W}W|V|W{VzTyUxTxSwRvRuPsPsOqNpNoMmLlJkIjIgGfFeEcDbC`A^A]?[?Z=X;V;U9S9Q8P6O5N4L3K3I6Nui4I'.D.D.D.E/E/F0G0F0G0H1I1H2I2J2K3K3L4N4M5N6O6P7Q7R7S9S9T:U9U:V:W;X[>]?\?]?^@^@_@_A_A`A`AaAbBbBbBaBbBbCbCbCbCbCcBcBbBcCcCcBcBbBbBaBbCaBbBaA`AaAaA`A_A^@_@_@^?]?]>\?\>[>[>[=[>[Eh7_'LoJjJiKkLkLmMmMnMoOpOqPrPrPtQuSuSvTxTxUzUzV{V{W|X~X~Y~YYZ[Z[[[[\\\[[[[[[[[ZZYZ~Y~W}W|W{VzUyUxTvRuQtPsPrNpNoLmKlJjHhHgFdFcCbC`A^A]?\?X=W]/C-D.D.D/E/F0F0F0G0H1I1H2I2J2J3K3L4N5N5O6P7P7R7S7S9T:T9T:V;W;X[?\>\?^?_A_A_@_AaAbAaBbBbCcCdCdCcCdCdCeCeDeDeDeDfDfDfDeEeEfDeDeDeCdDfDeDdDdCcCcBdCcBbCbBaBbAaBaA`@_A`@_@^@^?]>]?]?\>[A^V zT{KKlJkKkLlLnMnMoNpOpPrPrPtQtSvSwTwTxUzV{V{W|X}X~XYZZ[\\]]]^_____________^^^]]\[\[YY~X~W|W{VzTxSwSuQtPsOqNoLnKlJkIhHgFeFcCaC`A^@\?[>Y[?\>\?]?^@_@`@`AaBaBcCcCdCcCdCdEeEeEfEfEfEhEhFhFhFhFhFhFhFhGhGhFhFhFhFhEgEhFgFgFgEfEgDfDeDeEdDeDeCdCcCbCcBbBaBaA`@`@`@_@^@]?\?]?\EeDiRtyKkKlKmMmMoNoOpOqPsQsQtRuSvTxTxUzVzV{X}Y}Y~YZ[\\]]^__```aaabbcbbbccccbabbaa``_^^]\[ZYY~X}W|UzTxSwRuQtPqOpMoKlJjIhHgFeEcDaB_A^@\>Z>X;V:U9R8P7O6N4M3K2I6M{/E-D.D.D/E/F0G/F0G0H1H2I2J2K3K3L4M5N5O6P7P7Q7S8T9U:U:V;X\>]?^@_@_@`AaAaCbCcCcCeDeDeEfDfFgFgFhGhGiGiFiHjHjHjHjHkHkHkHkIkHlHkHkHkHjGkHjHkGjHjGjGiFiGiFhGgFhEgEfEfEeEeDdCdDcCcBcAbCaB`A`A`A_@_?^?]A_ e]3OpLlLmMoMoOoOqOrPtRsRtRvSwTxTyVzV|W|Y}X~YZ[\]]^^_``aabbcdededeeffeeeeeeeeddddccba``_^]\[ZY~X|V{UzTwRvQsQrNpMoKlJjIhHgFeDbC`B^A]?\>X=W;U:S9R8P6N6M3K2K4KhHi-E.D.D.E/E0F0F0G0H1I1I2J2K3K3L4M5N5O6P7P7R8S8T9T9U;W[?]?^@_@_@`AaBbCbCcDdDeEfEgEhFgFhGjGiGjHkHkHlIlIlImImJmJmJmJmJmKmKnKnJnJnJnJnJnJnJnImImJmImIlIkHkHkHkHjGjFiGiGhFhEfFfEfDfCeCdDcCcBbBbA`B`B_A`@_@`T|u VxZMoMnNoNoNqPrPrQsQtRuSwTxUyUzWzW{W}Y~Y~[[[\]^_``abccddeffgfghihiiijiiiiiiiihhggffeddcba`_^]\[YY}W|UzTxRvRtQrNqMoKlJiIhGfFdCbC`A]@\>Z=X\>]@_@_A`A`BbCcCdCeDeEfEgFhGiFiGjGkIlIlImImJmJnJoKoKpKpKpKqLqLqMqMqMrMrLrLqLqLrMqLqLpLpKpKqKpLoKnKoJoJnJmImIlIlHlHjHiGiGiFiFgEgFfEeDeDdCdCbCbCbBaB`A`@_In2_+RuLnNoNpOpPrPsRtRtRuSvTxUyVzV{W|X}YZZ\[]^_``abbddeefghhijijkkklllllmmmllmlllkkjjihhffeedbb`_^]\ZX~W}UzUxSvRtQrNpMnKkIiIhFeEcD`B^A]?[>Y\>\?]@^@`AaBbBbCcDdDfEgFgGhFiGjHkIkHlJmJnKoJoKoKpLqMqLqMrMrMtMtNsNsOsOtOtOtOtOtNuOuOtOtNsNtNsMtMsMrMqMrMrLqKqLpLpKoJoKmJmImHlIkIjHjHjGhFhFgEfEfDeDeCcCcCbBaBaBaGgk gTypNpNpNpPqQsPsQtRuSvSwUyUzV{W|W}Y~YZZ\\^^``aabcdfffghijjjkllmnmnonooppoooooooonnnmmllkkjigffddba`^]\ZXX|VzTxRvQsPqNoLmKjIhHfFdCbB`A^?[?Z=W\>\?^@^AaBaCcCcDdEfDgFgGiGiHkIkHlImJmJpKoLpLqMrMrMtMsOtNuOuOvOvOvPwQwQwQwQwQwQwQxQxPxPwQxQxPwPvPwPvPvOvOvOuOtNsNsNsNrMrLqKpLpKoKoJmJmImIlHkGjHiGiFhFgEfDeDeCeCcDcCbBaEe dpY~VPsOpOqOqQsQtRuRuTvSwTyUzV{W|X}Y~YY[\]^^``abcddefhhhjjkkmmnnopppqrqrrssrsssssssrrqqpqoonmmlkjihffecaa_^\[YW}UzTxSuQsNqMoKlJjHhFeEcC`A^@\>Z=Y;V:S9R7Q6O5M4K4JJk 2K-.D.D/E/F0G/G0H1I1I2J2K3K4L5M4O6P7Q7R8S9U9V:W\>]?]@_AaBbBbCdDdDfEgFiGiHjIlImJmJnKpKpMrLrMsNsNtOvOvPvPwPwPwQyQyQzQySyR{R{R{R{R{R{S{S{S{S{R{RzS{RzRzRyRyQyQyPxQwQxPwOvOuOtNtMtMrMrMqLqLpKoJnJmJlJlIkHjGjGhFiFgEfEeDdCdCdBcCcSz^?RtOqOrPrPsRtRuSvSwTxUzU{WzW}X~XZZ\\^]__aaccdffghhijkllnnoopqqrrststutuuvvvvuuuuvvttttsrsqqponmkkiiggecba_^]YX~W|UzSwRtQrNpLmKjHhGfFdDbB_A]>[=Y\>]?]@_A`CbCcDdEeEgFhFiHjIlIlJnKoKoLqLrMsNsOtNvOvPwQxPxRyRySzR{S{S|S|T}T}T}T~T~T~TUUUUU~U~UT~U~U}T}T}T|T|S{S{SzRzRyRyQyQxPwPvOvOuNtMsMsLqLqLpKpKnJmJmIlIkIjGiFiFhEgEfDeDeDdCdNs/a,TyPrPsQsQtRuSvSwTwTxVyV{V{W|X~YZ[\\]^_`bacceefghhjjllmnnppqrsstuvvvvwxxxxxyyxxyyyxxxxwwwvvuttsrqponmkkihfecba_]\ZW}V{UxRvQsOqMoKlIiHgFdDbB`A]?[>X\>]?]@_A`CbCcDeEfEgFiFjHkIlJmKoKoLqMqMsNtNuOvPwPwQxQyRzS{S{T|T}T~T~U~UVVVVWWWXXXXXWWWXWWVVUVUV~U~T}S|T}S{S{SzRxQyQxPwOwOuOtNtNsMqMqKpJoKoJmJlIkIkGjFhFhFgFfEfDdDdLoDf X~rQuQtQtQuRvSwTwTxUyUzV{W|W|YY[Z\\^^__abbddfgghijlllnnppssstvvwwxxyzzz{{{||}|{{|||||{{{zzyyyxwwvuttrqponlkihfecb`^][YW|UzSwRtPqNoKlJjHgFeEcC`A^?\>Y[>\?^@_@`BaCcDeDfEgGhGjHkImJmJoLqMqMsNsOuPvQxPxQxRzR{S|T|T}U~VVVVWWXXXXYYYYYYYYYZZYYYYYXYXWWWVVVV~U~T}T}S|RzRyRyQxQxPvPuNtNtNsMqMpLoKoJnJmIlHkHkGiGhFhFfEfEfKn\`0W|RtQuQtRvSvTxUxUxUzV{W|X|X}Y~YZ[\]]_``abcdeffhiikklmopqqssuuvwvwxxyzz{{||}}}~~~~~}}|}{{zyyxwvutsrqomllihgeba`^\ZW}VzTxSuPrNpLmJkIgFeEbD`A^?[>Y\?]@^@`AaCcDeDfFgGiGjHkJmKnKoLrLrMtOuOuQxQxRySzS{T|T}TVVWWXXXZZZZZ[[[[[\\\\[\\\\[[[[[[ZZYXYYXWWVUU~U~T}T|S{SzRyPxQxPwPuOtNsMrMqKpKoKnJnIlIkHjGjGiFhFgEfHlvv _CV{SuRuSvTvTxUxUyUyV{V|X}X}X~YZZ\\^]__aabbdefggijjkmnppqqssttuvxxzz{{|}}~~~~~}|{{zywwuutrqpnlkihfdba^][XW|UyRvQsOqMnKkHiGeEcD`B^?\>Y\>]?]A_A`BbDdEeEfGhGkHkImKnKoMqMsNtNuOvQwRySzS{T}T}UVWXXXYZY[\[\\\]]]^^^^^^^^^^^^^]^]]\\\[\[ZZYXXXWWVUU~U|T}S{RzRyQxPwPvOtNsNrNrLpLoKnJmImIlIkGjGhFgFhIkn\YUxRvSvTwTxTxUzUyV{V{X}X~X}Y~Y[[]\]^_``abceefggiikknnoprrrstuwwxyzz}|}}~~~}}|{zxxvussqpmlkigeca`^\YX|UzSwQtOqNoKlHiGfEcD`B^@\>YU /D/E/F0F0G1I2I2J2K3M4M5O7P7Q8S9U9V;W]?^@_@`BbCdEeEgGhGiHkImKnKpMrMtNtOuPwQxRzS{T}T}UVVXXYZZZ[[]]]]^^___````````````_``____^^^]]\\\[[ZZXXWWWUU~T|T|R{RyRxQwPwOvNtNsMrLqLpKoJnJmIkHkHjFiFgHlth&ZrTxTxUxTxUyVzVzW{W{X}X}X~YY[[[]]]__aabcddfeghijjmnnoqqrqttvvxxyzz||}~}}{{ywvvtrponkjhgdba^\ZW}UzTxRuPrNoKlIiGgEcD`B^@\>Z[>\?]A`AaCcDdEfFgGiHlHmKnKoMrMtOuOvPwQyR{S|U~U~VVWXYYZ[[\]^^___``aabbbbbbccccccbbcbbbaaa`a`___^^]]\\[YYYYXWVUT~T|S{SzQyQxPwOvOuNsMrMqLoKoJnImJlHkHiGiIjem`MX~UxUyTyUyU{V{W|W|W}X~X~YZ[[[\]^^``aabccdefghijkmmooppqruuvwyxzz|}}}~~}|{ywvusrpnmkjgeb`_][Y~V{TwRuPrMnKlJiGgEdD`A^@[?Y\>]@^@_CcCdEeEfFiGjIlJnKoMqMsOuOvQwQyRzT|T}UWWXXY[\\]^^^_`a`abbccddcddeeeeeeeeeeddeddcccbbbaa``__^]]][[ZZXXVWVU~T|S{SzQzRyPwPvNtNsMsLqLpKoKmImIlIkGiGje q_OYUyUzVzVzV{W|W|W}X}Y~YZZZ[[]]^^__`abbcceeggihjklnnoqpqstvvxwyy|||~~~}|zyxvusqpnkjhfca_][Y~W{TxRvPrMoKlJiGfEdDaA]@[>Y\?^@_A`CcDeEfFhGiHkInKoLqMrNtOvPwQyRzT}T~VVWXYZ\\]^_``bbbcdddeefgffgggggghhhhhhhhffefeeedddccbaa```__^]\\ZZYYXWVU~S}T|R{RyQxPxOvOtNsNrLqLpJoJnJlIlIkIlb mbOZVyVzW|W|W|X}W}X~YYZZZ[[\]]^^_``abbcddefggiijkmnnppqqstuvvxx{{{}~~}|zxwvtrpnljigeb`^\YW|TxRvPrMoKlIiHfEcCaB^?\>X\?^A_BbCcEeEgGiHkHmJnLpLqNtNuPwQyRzS|T~VVXXZZ\^__``abcddefefgghhhhiiiijjjjjjkkjjjijjiihggffefeddcbaa``_^]]\[ZZYXWVV~T}T{S{QzRxPwPuOuNtMqMpKoLoJnJmHkIlc qaP[W|V|W|X}X}X}XYYZ[[[\\]]^^^__aabbcddfffghijkklnooqpqstuvwwy{z}}~}{zxvusqomkifdb`^\ZW|UyRuPrNoKmIiGfFcC`A^?[>Y\?^@`CbCdEeFgFiHkInKoLqMsOuPwQxRzS|T~VVXY[[]^^``abbcdedeffhghiiiiijjjkkkkkkkkkllllkkkkjjjihihgffeedbbba``^^\\\[ZYXXVU~U}T{SzRzQxQwOuNtNtMrMqLpKnJmIlJl`obQ\X~X}Y~Y~XYZZ[[[[\\]^^^__``aabccddfefghhjjkkmnopqprstuvwxyz{|}~}|zywvsqpnkigec`^\ZW|UyRuPrNnKlIiGeEbB`A^?[=X\@^AaCcDdDfFhGjIlKnKoLqNtOuQwQzS{T~UVYY[[]^_`ababceefghhhjjjklkllmmmmnnnnnnnnnnmmmlllklllkkkjjihhggeddcbaa`_^^][[ZXXWVV~T}S{S{RyPxQvOuNtNrMqLqKoKnJmJmapeR\YYYYZZ[[[\\]\]^^^__``aaabbdeeeegghhjjkklmnppqrrsuuvxxx{z|}~}{zwvtrpmkigec`^\YW|UxSvOqMoKlIhFeEbC`@]?[=W;U9S9R8O6Os0G0G0H2I3J3L4L5N5P7Q8S9T:V;X\A_AaBbDeEfGiGkHmKoLpMrOuPwPxR{S}UXXY[[]__a`abcdefghiijjkkllmmnnnooopppppppppppppppopoomlmlklkkjjihhhffcccaa``^]][ZZYXWVU~T}T|S{RyPwPvOvOtNsMqLpKoKnJm^seT^ZZ[Z[[\\]]]]^^_`__``aaabbcdefeffghiiikklmnmpprrssuuvwxyz{|}~}|{xvusqoligec`^\Y~W{UxRuPrMnKkIhGeDaB_A\>Z\@_AaBbDdEgGjHkJmKoLqMtNuPwQ{S|U~WXYZ[]^^``acdefggiijkmmmmmnooppppqqqqrrrrrrrrrsrqrrqqqqpopoomllkjkkjjhhgfeecba`__^][[ZXWXVU~T|T{RzQyPwPuOuNtNrLqLoJnLn_r eT_\[[\]\]^^]^^_`__`aabbbccdeefffgghhhjjkkmmmmoprrrssuvvxxyz|{}~~}{xwusqomjgeb`^[YV{TxRtOrMmJjHhFdDaB_@\>ZY1I2I2L3L4N6O7P7S9T9U;W[>]@^AaBbDeEgGiHkJmKpLrOvQxRzT|U~WXYZ[\_`bbdefghijlmmnnoqrsrstutuwwvvwwwwxxyyyxxxxxxxwxwvvwwvvuttssrrrqpoonmmkjihhhgfedcbaa^]\[ZYXWWU~T|S{SzQyQwPvOtMsMrLqMq\! s-fcb^^__`_``a`abbabbcdcdddefffffghhijijkklllmmnnpppqqstuuuvvxyyzz|}}~}{yxusqoljgeb_]ZX}UzSvPrNoLlHhGeDbB_@\?Z\@_AaCcDeEgGiHkJmKpMtOvQxRzT}UXYY[\_`abcefghiklmloppqrssstuvvwxxyyzyyzzzz{{{{zzzzyyy{yyyyyxwvvvuvutsrrrqponmmlljihfffedcaa`^]\[ZYXVUU}T|SzRzQxPvOuOtNsNqLp[%{nBe``_``aaaabbbccbcddeedeffgggghhiijjkkllmmmnoopppqqrrtuuvvvwyyy{{|}~}{zwusqnligda_\YW{TxRuOqMnKjHhFdDaB^?\>Y\?^@aBcDeEgFiIkJnKqMsPvQxS{T}VVXZ\^_`ccdfhjjkmmoprrsttuwwwxy y z z { { | } } } ~ } ~ ~ ~ ~ ~ ~ } } } } } ~~~~}}}||||{{z yyzxwwwututsrqppnollkjihfeddcba`_]][ZYWVU~T~U|S{RyQwPwPuNtNrNqX/~p;hvcaabbccbcdddedefefggggghiiijijkkkllllmnnnoopqqqrrssttuuwwxxxxy{{|}}}}{ywurpmjifc`^[X}UySvPsNoKlIhGeDbB_@\>Z=W:U9R8QZ @x 3J3M5N6O6Q8R9T;V;X[?]A`BbDdEfGhHlImKpMsOuRyS{U}VVX[\^`bbdegijllnoppsstvvvxxy z { | z | } } ~ } ~ ~             ~ ~ }~~}}}{{{{ yyyxxvvuttssrppomnlkjihgedccb``_^][YXXWV~U|S{RzQxQwPvOuOtNrX7ymRfbbbcdccddefeeffghgghhiiijjjkjklllmnnnnnoopqqqrrssttutuvvwyyzzzz||}}~~}{ywtrpmkheb_]ZW}TxRuPqMnJjHgFcDaB_?\>X]@_BaCcDeFiHkInJpNrPvQySzT}UVZ[\_aabdfhikknopqsttu wwxyy { { { } } ~ }        ~ }~}||{{{zxxxwuuurrrqoonllkjihgeccbb`_^][[YXWUT~S|TzSxQxPvOuOtMsV|Qz kUgccdddddefffffgghihhiijkjjkkllllmmnoopooppqrrrssstttuuvwwyyyz{z{{|}}~~}{ywtroligdb_\YV{TwQsNpLlJjFfEcB`A]?Z>Y:V9S8RqF$63M5N6O7Q9S9U:V]?_AaBbEeFhGjHnLpMsPuQxSzT|UVY[\_aaceghkkmoopsst u vwx{ z | | | ~ } ~     ~ ~ }||{ {yyyxwvuttqqqpnmlkljhggecb``__^][ZXWWV~U}S{RzQxPwPuOtNsRzsx!nXgdddeeeffgffgghiijiijjkljkllmmnnnnooppqpqqrrssttttuuvvwxxyzz{{{z{}}~~}{xvsqnlhfc`^[Y~UyRvOsNoKkIgFeDbB_?\>Y=W;T8RDb(.f/F4M5O7Q8R9S:V;W=Z>\@^A`CbDeEhFiImKoNsOtQwRzS|T~XY[\`aadegiilmnprs t v v xxz { | | ~~~    ~ ~ ~ | }} {zxyyvvutssropomljjigfedcbaa_^\[ZZXWVT}S{RySzRxPvOuOsQxsx#oZheefeeffggghhiijjijjklllmlmmnnnopopppqrrrrssttuuvuvvwwxyyyz{{||||~~~|zwurpnkheb`]ZW{TxRuOqLnJjHfFdCaA]?Z>Y;V:S=V 4a3M6O6P7Q8S:U:W[?]A_BbCdDfGiHlKoMrNtPvQyR|UWYZ]_aadfhikmnorr t u v xyz z | } ~      ~ ~ ~ | {zzywxwuttrqp oomkjiigfedca_^^^]\[YWUUU}T{SyRxPwPvOuQvt}oViffffgghhghhiiijjkkllmmmnmnnooopqqqqqrssttstuuvvwvvwxxyyzz{{|}}}}}~ ~|zwuroligda^[Y~VzTwPsNoLlIhGeEbB_?]>Y=W;U9Sj&S5N6P7Q8R9U:W;Y=Z?\@^AaCdDeFhGkKnLpNsOvQxR|T~WY[]_abeggjklnpr s t w v yy{{ } ~     ~ } | { z{yxvwutsrqqnnmkjihgfdcba`^^]\[ZYWVU}T{SzQyPwQvPuPwi  q;kgffghhhiiijjjkkkllmmnnnnnoooppqqrsrrsttuuuuuvwwwxwxyyyz|{||}}~}} }{yvspolifd`]ZW}UySuPqLnJjHgEdCaB^?[>X;V:TDb/Er 6O6P7Q8T:V;W=Y>[?^A`BbCeEgGkJmLpNsOuQxR{U~WYZ]__bdggjkloo q s u v xx{{ } }     } | | | yyxwuutsrpoommlihgfedba_^]]\[ZYXVUT}S{RyRxQwOuPuaz#nchfggghiiijjkkklllmmnmnoopppqqrrssststtuuuvwvwwxxyyzzzz|||}}~~~~~ |zwvspmjheb_\YV{TxQsNoLlIhGfEbC_@]?ZY\?^A`BbEeFhIkJnLqNtOvQyS|U~WY[]`bdegijl o p q t v wx z | } ~     } | | { z y xvuttrrqonlljhgfecbba^]]\[ZYXVU~T|S{RyQyQwPuY@z%mohghiiijjjklllmmmnnopppqqqrrrsssttuuvvvwwxyyyyyzz{{|}}~~~~ }{xuspmkgeb_\YV{SwQsNpKmJhGeDbB`@]>Y=WY;V%W)%Dd,@8S9U:V;X=Z>\?^AaCcEfGhIkJnLqNtOvRyT}VYZ]_acegik m n p s t uy z{| ~ ~  ~ } | | z x w wtusrpomljjig edcb``_]\[ZYYXWT}S}S{RyRxRwT|w7mihjjkkkklmmmnnooopqrqrrstttuuuvvwxxxyyz{yz{{|||~~ }{xvtqmkheb_\YW{TxQsMoLlIiGeEcC_@\>YZ?\@^A`CcDfGiHlKoMqMtPwRzT~VZ\^_acehkm o q r s v y z|~     } } { z x y w utsrqonlljhgedca``^\[[[ZXXWU}T{S{SyQxRxrsMnjjlklllnnnnnpppqqqrrstttuvvvxxxxyyzz{{||}}}~ {xvspmkhdb_\YV{SvPsNpLlHiFdDbB_@\?Y[?]A`BcEgGhIkKnKpMtPwR{U}XZ\]_bfgjkm q rt v x z| ~    ~ ~ }{ z x x w u t rpoonmjjhfedca`_^][ZZYXWVT~T}SzRxRxa sfmkklmmnmnooppqqqssssttuvvvxxxxzzzzz||}}}}~ ~|yvsqmkhda_[Y}VyRvPrMnKkHgFeCaA^?[>Y*;9U;WZ?\@`AbCeGgHjJmLpLrOuRyS}V~XZ\^acehjmo qs v x z } }   ~ } }z y x w v t sroonmliigeccb`__^\[ZYZXWVT}SzSzSy\1{0plmmmnmoooppqqqrssstttvvvwwwxyyz{{{{}}~~~~ |zwtqolhfb_]YV{TxQtNpLmIiGeEcC_@]?Z7O:V;X\@^AaDdFgGjImJnMrOuQyT|V~WZ^_bcf hkmp s t w y z } ~   ~ } | yy x v v t r qppmkkiigfcba`_^][ZZYXXWU~U}S|RzU|suVpnnmnoooqpqrrrrtstuuuvvwxxxyzzz{{|}}}~ {yvtqnjhdb^[Y~VzSvPsNoKjHhFeCaB_@\>Y ;X\@^A`CdEfGiIkJoLqNuPxTzV~XZ]_be f imnp r u x y } ~    } { z yx v u s r qpnmkjhgfedba`_^]\[ZZYWWV~U~T{T{ZCz4rmmoopoqqqrrrsstuuuvvwwxxyyyz{{|||}~~~ |xvsomjgd`^ZX}UxRuOqLmJjHfFcCaA^?[![?]@_BaDeGgHjJmKoMsOvQyT}WY\^`b e hjmo r u w y | }   ~ } { z x w v t s r qnnljjhhedbaa_^]\ZYZYXWWU~S|SzWwvVqmoooopprrsrrttuuuvvwxxxyyzz{{|||}~~ }yvtqnkgea_[X~VzSvQrMnJkHhFeDbB_?\"0\?^@`AcEeFhIkJmKpMsOwS{U}W[\^`d g ikn q t v y { }    ~ | { z x w u t r p pmlkkiggedbaa^]\[ZZYYXWVU}T{U|j x:rmnonoppqqrrssttuuvvxxxyyyzz{|||}}} }zwurnlhfb`\YW{TwQtOpKlIhFfDbB_A],>=Z=\@^BaCdEgGiIkInLrOvRxT{VW[]`b e i km oq u w z {    ~ | { z yw u t s q polkjiggeebaa__^][ZZYXWWU~U{T|`, vKmmmnoopqqqrsstuuuvwwxxyyyzz|{{}}}~~ ~|yuspljfc`]ZW}TxQtOqLmJiGfEcC`A]1G=[?]@_BbEeFgHiHlKoNsPvSzS|VY\_a d g ik nq t v y | }   } | z x wv u s q p omlkjiffddaa`_]\[ZZYYXWVU~T|Xosu5pmmmnoopqqrsstuuuvwxxxyy{{{{|}}}~~~ }yvsqmjgda^[Y~TzRuOrMmJjIgFdCaB^6N>Z?]@`BcEfGgHkImLpOtPwS{U~WZ\_b d f jlo r v x z }   } } | y x v u t s q p nlkjiggedbaa^^]\ZZZYXXWU}U|U}dz"qmmnonopqrrrstuuvwwwxyyz{{{|}}}~~ }zvtqnkhdb^\X~VzSvPsMnKkHhFeDbB_OtRyU|V~ Z ] ` c f i l p r w { ~  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!    ~  } | { z z x y w w u u t t s r q p o o m n l m l k i i i h i h f e e kg vvwwzz{~ |yvsomjhea^\ZW}UzSv%3POOyyy$""*OuQxT{V~ Z ] ` c e i l p s w { ~  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!    ~ } } { { z y x w v w v t s r q q p p o n m m l l k j j i i g g f f lT }9tvxy{|} |xurokigda_\YV|UxOr*((SSSNuQxT{V~ Z ] _ b e h m o r w z   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!      ~ ~ | | { z y x x w v u t t r r q p o n o n m l k j j i h h h f f mC uwwy{|}  ~{xtqmkhec`][X~W{Sx(8 baa}}} NtRxU{W Z ] _ b e i l o r v z }  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!    ~ ~ } { { z y x x w v u t s r q q p o n n l l l l j j h h h g h s4yfwxyz{~  }zxrpljfea^\YX}UzSu 988?>>LoRxT{V~ Y [ _ c f h l o t v y ~  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!    ~ ~ | | { z y w w v u v t s s r p p o o n n k k j j i i h g h y wwy{z~  |yurokifc`^\YW|Uy+=QQQihh>Y ] ` c f i l p s v { ~ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!    } { z x {U7  }x uXXXJk ] ` d g i l p r w z ~ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!    } | z x !)  zuttt;U ] ` c f h l p r v z ~ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!    ~ } { x  |yj-A ^ a d f i k p r w z }  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!   ~ | { z y6feeLKK211 211TTT - ^ ` c e i l o s v z } !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!   } { ;  {zKX^=<<  ] a c f i l p s v z ~ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!    ~ }  ~z"-(&&xxx   ] b c f h l p s v z~  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!   Z z;Q vvv^ a b f i l o s v y}  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!   ~WwTx a d f h k p s vz}  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  + o RRREb ` c f i l o r wz~  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! m   }*5M _ d g j m p s vz~  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!    ~F_#!!(8 ` c f i l p s wz~  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!    l )''' ` c f j m p s wz~  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  4    # /.. a d f i l p t vz~ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  ,    >U#!!655 ` c f i n p s vz} !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  "     gONN>== ] d g i l p s w{ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!       ~FFF Or d f j l o s x{~ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!       7K%##OOO?Z d g j m q t xz !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  q   bWVV1E e g j m q tx{~ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  *"    }ZYY#2 c h j m p tw{~ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  ѐ2     1A[[[& d h k n q tx{ !!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  >G    [|QQQ]]] d g j n p tx| !!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  Ѭ^     {  ``` e g i n q uy{  !!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  Uy   1Abbb e g k m r t y|  !!!!!!!!!!!!!!!!!!!!!  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!       dmllddd f g k n q u x|  !!!!!!!!!!!!!!!!!!!!  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  Ԅ"    BAAggg ` h k n q u y| !!!!!!!!!!!!!!!!!!  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  <     D[$""iii W| h l n r v y| !!!!!!!!!!!!!!!!  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!       t  kkk Nm h k o r v y} !!!!!!!!!!!!!!!  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  ~     &2ggg Eb j l o s v y| !!!!!!!!!!!!!!  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  7    Yy]]]==% j m o r vz}  !!!!!!!!!  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  ӳt    Lh 766 i l o s v{~  !!!!!!!!  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  ԁ      y 877-8= j m p t x{~  !!!!!!!  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  O     -=dcc j m q ux{  !!!!!!!  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  )    fl n p tx{~ !!!!!!  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!      !"x m r tx{~ !!!!!  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  ҥ     Nj5 n r tx| !!!!  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  r    | WWWH n q vy| !!!!  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  L     6HZ o r ux{ !!!  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  /1 m j n r tx| !!!!  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  H  !,UUUp n r ux}  !!!  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!   a  Xxy n ruy|  !!  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  ѧ Ł  QPP~ n svy}  !!  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  Ѐ Ģ  >U o suy}  !  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  Y  t MLL o rux}  !  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  9   )7 p rvz~   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  &    aJII o rvz~   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  +    p svz~   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  2    IdIHH p svz}    !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  90   y  p svz~    !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  ?F   1C p tvz~    !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  F a     jFEE p tvz~    !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  O }     ( q tvz~    !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  Y Ġ    Ts q tvz~    !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  b     ~poo q twz     !!!!!!!!!!!!!!!!!!!!!!!!!!!!!  t    ;QCBB p tw{    !!!!!!!!!!!!!!!!!!!!!!!!!!!!  ϴ      s"!! p ux{    !!!!!!!!!!!!!!!!!!!!!!!!!!!       %3 q ux{~    !!!!!!!!!!!!!!!!!!!!!!!!!!  $    ] u uxz~    !!!!!!!!!!!!!!!!!!!!!!!!  ^       x uxz    !!!!!!!!!!!!!!!!!!!!!!!  Щ "   E^ "} uw{    !!!!!!!!!!!!!!!!!!!!!!   '   w + uw{    !!!!!!!!!!!!!!!!!!!!  ^ -   )8/ tw{   !!!!!!!!!!!!!!!!!!!!   4   ^/ tw{~   !!!!!!!!!!!!!!!!!!  & ;   + uw{~  ~~~~~~~~~~~ !!!!!!!!!!!!!!!!!!  Қ B    V ;S Da Oo Z~ dnxxxyzz{{}}~ !!!!!!!!!!  Z    u ux|~~}}||{zyxxwu _ Fb-?#'6 B] ax{||}~ !!!!!!!!!     F`&$$s ux|~}|{{zyh No 5K( #1 A\ `z}~ !!!!!!!!       v MLL s w x|}}|{zj @Z "/ Daq !!!!!!!  Շ    &4 r v w|~}|t Ge(%5 Uy} !!!!!!!  2z    \ r v x|~}t >W   7Oh !!!!!!  M    211 s u x|~s *   *9#!! s v y{~  |k  g   Vv?>> s v x|   j  ˰\  ~ edd t w z|   Wx!  Z   ) u x z|~    D] =O  M    Ha u w y|     7Jk    t(&& u wx}   4F  y     EDD t vz}  1A /<     9Ncbb u w{}  -;{  ͠     iv u xz}*6       g u xz}'1Wp Ϊ     ,<S v xz~",       %+     [{$""U v x{}'        5B ϩL      877e v x{"        v        +QQQx w y{~!)     )    Kfpoo v x|}2>      u b    z v z |~EU   ! ! !   % Ӧb       w y |~ Wk  ! "!!$##&%%&%%&%%$##"!!!    Ӿ     =R w y | j  "!!&%%'&&+********+**)(('&&$##"!!  ;F ֜     l,** wz | |  "!!&%%)((,++0///../..///.--,++)((&%%"!!  vw     BAA uy|  ! &%%)((.--100222433433433322/...--+**'''$##   p /    /?^^^zz|   $##)((.--100433555766766766555322100.--+**&%%"!!  5?s o/      _}}}^z}   ! &%%***0//433766:99:88;99:88877555433100,++)(($##!  t       {~  "!!)((.--222766:88;::=;;=;;=<<<::877766222///,++'''"!! A   ' w} =G   $##+**100655:99=<<>==@>>@>>>===;;<::988655100.--)(($##   MbŁ  @V\~ g{  ! '&&.--433988;::>==@>>A@@A@@@>>>===<<:997663220//+**%$$ #+5   j"!!}   $##+**100555<::>==A@@CAABAABAAA@@@>>>==<::9884330//+**&%%  fX   /--9  ! '&&.--433:99=<<@??BAADCCDBBDCCBAAA@@?>><;;9885440//+++&%%      !+=<<&,   $##***322877=<<@>>BAADBBDCCDCCECCCBBB@@A??><<:885550//,++%$$ 6  D\ONNhL^  ! )((///655<::?==CAAECCFEEFDDFDDEDDEDDBAAA@@>==:88655100+**$## )Ʊ  lbaa* r    &&&/..544;99?>>BAAEDDGEEGFFGFFGFFGFFFEEDBBBAA>==:88655000(''!!!      www      %$$-,,433:88?==CBBFEEGFFHFFIHHIHHIGGIGGGFFEDDCAA>==;::544.--'''  (y       !!!!!!!!!!!!!!!!!!!!!*1   %$$,++433;99@>>DCCGEEIGGIHHJIIKJJKJJJIIIHHHGGFDDCAA?>>:88322,++$##   )7     7  !!!!!!!!!!!!!!!!z Nh&    %$$-,,655<::A@@EDDIGGIHHJJJLKKMLLMMMMMMLKKKKKJIIGFFCBB?==877000'''  &I  E\     u  !!!!!!!!!!g D[$   '''/..766><>FDDJIIMLLONNPOOQQQRQQSRRSRRSRRQQQPOOMMMKKKEDD@??9880//'&&$ $     ! $""&$$(&&)''*((:99s:  ",Cc'%%    $##,++644=<==644,++"!!    #!!'%%+))0..322655:99<;;>==UTTnmm   &%%.--755@>>GFFLLLQPPUTTWVVYXX[ZZ[[[\[[\[[\[[[[[[ZZZYYVVVTSSNNNHHHA@@866,,,#""oLi3    "!!'%%,**1//544:99?>>BAAFEEHGG`__    $##-,,644><>FEELKKPPPUUUZZZ]]]qqq    $##,++422=;;CBBLKKQPPXWW\[[___bbbdddeeegggggggggggggggfffcccbbb```\[[WVVPOOIHH?>>644*)))     '%%.,,433;::CBBIHHOOOUUUZZZ^^^baasss'%%!     &%%.,,644><==EDDMLLRRRXXX]]]baaedduttJII#!!    ! (''.--755?>>EDDLKKSRRYXX]]]aaaeeefffihhkjjlkklkkkkkkjjjjjihhgggeeeaaa]]]YXXRRRKJJCBB:88/..`%1 Sn  ! (&&0..766?>>GFFONNUUU[[[`__dcchggvvvnmm$""$""    #""*))200866?>>FFFMLLSRRYYY^^^aaaeeegffjiikkkmllmmmmmmmlllllkjjhhhgggddd___\\\VUUONNGFF?==533#%1 3C   (&&0..877@??IHHPPPWWW]]]baagffjiiwww*))$""    ! '&&-,,311:99@@@GFFNMMTSSYYY^^^aaadddhggjjjkkknmmnmmnmmnmmmllkjjjiihhheeeaaa]]]YXXRQQKJJA@@977q$0 #   '%%0..877A@@IHHPPPXXX^^^dcchgglkkvvv&$$+**$##    #"")((/--544=;;CBBHGGNNNUTTYXX]]]```eeegggjiikkknmmnnnnmmnnnnmmkkkjjjhggfffaaa]]]YXXSSSMLLDCC=;;&$$Y#/ n   &$$/--766@??IHHQQQXXX_^^dccihhmll<;; 100,++%$$      """(''-,,211866><>IHHPPPXXX_^^eddjiimll;:: 433.,,(&&!      !!!&%%+**0//544;99@>>EDDJIIOOOTSSYXX\\\```cccfffhhhihhkjjlkkllllllkkkjjjjiihhhdddbbb]]]XXXSSSMMMFFF>==&%%[ j 9J  #!!,**433>==GFFOOOXXX_^^eddjiinmm<;;(''7550//)(($""      "!!$##)((-,,311866=;;B@@FFFKJJONNTSSXWW[[[___aaadddfffgggihhjjjjjjjiijiijiihhheeebbb```\\\XXXRQQLKKEDD<;;?8K Le    )''211;::EDDONNWWW^^^dccihhnmmJII$""1//433:99422-++'%%"        !!!%$$(''-,,100533:88?==CBBGGGLKKPPPTSSXWW[ZZ]]]```bbbdddeeeggghhhggghhhgggffffffcccaaa^^^ZYYVUUPOOJIICCC544  Rm `  &$$0..988CBBMLLUUU]]]cbbihhmllWVV0..JII =<<<<<866100,++%$$!         ! #""'&&)((,++000433866=;;@??ECCHGGLKKPOOSSSWVVYYY\[[^^^```aaabbbcccdddeeeeeeddddddbbb```]]][[[XWWSRRMMMGFF@??%##EWu @T   #!!-++655@??JIISSS[[[baahggmllbaa ;::dccA@@@@@<;;7550//+**&%%"                   "!!$##&%%(''+++-,,100322766:99?==A@@FDDIHHLKKONNRQQTTTWVVZZZ\[[^]]^^^___```aaabbbaaaaaa```___\\\ZZZWVVTSSOOOKJJDBB)(( )6^} sG]   )''211=<>CAAEDDHGGKJJNMMPOOSRRUTTWWWZYY[ZZ\\\]\\^]]^^^^^^^^^]]]\\\[ZZYXXWVVSRRONNJJJEEE-++ D"1@Kdi ydPj;O'  &$$/--988DCCNMMVVV^^^eddkjjmmm" RRRJIIKJJGFFBAA<<<988322/..+**(&&#""  ! "!!$##$##&%%'&&)((,++,++0//100322433555866:88<;;>==A@@CBBEDDGGGJIILKKONNQPPTSSUTTVUUWWWYXXZYYYYYZZZZYYZYYZYYYXXWVVUTTRQQNNNKJJ???'%% {  " +))544?>>JIISSS\\\cbbihhnmm<;;^^^JIIPOOLLLIHHEDD@??<;;766322/..,**(&&%##"  ! ! "!!$##$##&%%''')((+*****,++.--///100322433655766988:99<::=<>@>>B@@DCCEDDGFFJIIKJJMLLNMMQPPRRRTSSUTTUTTVUUWVVWVVVUUVUUTTTSSSRQQONNMLLEDD.,,<  '%%1//;::FEEOOOYYY`__gfflkk[[[^^^ DCCUUURRRPOOLKKHGGDDD???;;;7663220..,++)''&%%%##" ! ! !! ! ! "!!"!!$##$##&%%''''&&)((+*****,++.--.--/..100322433433555766988:99<::;::=;;>==?==@??BAABAADCCEDDGFFHGGIHHJIILKKMLLNMMOOOQPPQPPRQQRQQRQQQQQPOOONNNMMLJJ=<<*))w   #!!-++766A@@LKKUUU^^^eddjiilll[[[866ZYYXXXUUUSRRONNKKKGGGDCC?>>;::766322000-,,+***))('''&&'''(''('')(()((+**+**,++,++.--.--////..100322433433655555766988:99:88<::;::=;;>==>==@>>@>>A@@A@@CAACBBCBBDBBEDDGEEGFFIGGJIIJJJJIIKKKLLLLLLMMMLLLMLLMLLIHH<;;-++   )''211=<==>==@>>@>>@>>A@@A@@A@@CAABAABAACBBCBBDBBDBBEDDEDDGEEGEEGFFHGGGGGHGGDBB866+** T  $"".,,877CBBNMMVVV_^^feekjjWWWUUU @>>_^^^]][[[XXXUUUQQQNMMJIIEDDA@@>==;;;988877655555666666666766766988877877:99:88<::;::=<<=<<=;;>==>==>==@>>@>>@>>A@@A@@A@@A@@A@@A@@CAACAACAACAAB@@B@@B@@B@@CAACAACAACBB<;;211&$$ %u  ! *((322>==IHHRRR[[[cbbihhkkkSSS877SSS_^^]\\ZZZWWWSSSONNKKKHGGDCCA@@?>>=;;<;;;::;99;99;::;::;::=<<=;;=;;>==>==>==>==@>>@>>@>>@>>@>>A@@A@@A@@A@@A@@A@@A@@A@@A@@A@@A@@A@@@>>@>>@>>@>>?==866-,,!  _  &$$0..:99DCCONNXXX`__gfflkkBAAQPPQQQ(&&ONN\[[YXXUTTRQQONNKJJGFFECCCBBA@@@>>?>>>==>==>==>==>==@>>@>>@>>@>>@>>@>>@>>A@@A@@A@@A@@A@@A@@A@@A@@A@@@>>@>>@>>@>>@>>>==>=====444*))  " ,**544@??KJJTTT\\\dccjiijii NMMlkkDBBUTTRQQNMMLKKIHHFEEECCBAAA@@A??A??A??@>>@>>@>>@>>@>>@>>@>>A@@A@@@>>@>>@>>@>>@>>@>>@>>@>>>==>==>===;;<;;422(''  (&&100;::FEEOOOYYYa``gffmll?>>KJJ(''=;;IHHGFFEDDCBBCAAA@@@>>?==?>>@>>@>>@>>@>>@>>@>>@>>@>>>==>==>==>==>===;;=;;=<<:88100&%%  $"".,,766BAALKKUUU^^^eddkjjiii HGG )((FEEBAA?==>==><<><<><<=;;=;;=;;=<<=<<=<<=<<;::988422.,,'%%     ! *((322=<<<766200-++)''&%%#!! ('  &$$0..988DCCNMMWWW_^^feekjjihh BAA866a``^^^YYYSRRJIIA??755.,,%## O3  #!!,**655@??JIISSS\\\cbbihhmmmEDD?>>a``___[[[UTTNLLDCC:991//(&&  v7   ! )''211<;;GFFPPPYYYa``gfflkkooo=<< TRR```]]]XWWQOOHGG>==433,))#!! <   '%%0..988CBBMLLVVV^^^eddkjjnnn`__:99'%%311a``_^^ZYYTRRKJJB@@866/--&## @   %##.,,766A@@JIISSS[[[cbbihhmllppp755766=<<aaa`__\[[VUUOMMEDD;::300)''  D   $"",**544>==HGGPPPYYYa``gfflkkoooqqq 433NMMONNa``^]]XXXRPPIGG?>>544,**#"" I   $""+))322=<>655-++$"" :(   &$$-++433<;;DCCMLLTTT[[[baagfflkkoooqqqsssgff)''baa`__[[[UTTMLLDBB:881..'%% R  ! (&&/--544=<>GFFNMMTTT\\\baagffkjjnnnqqqssstttuuu.--EDDaaa_^^ZYYSRRKIIA??755.,,%""    %##,**211988A@@HGGPOOVVV\\\baagffkjjnnnppprrrtttuuuuuu$##baa`__\[[UUUNLLDCC:991//(%%   &$$-++322;::CBBJIIPPPWWW]]]cbbhgglkknnnqqqrrrtttuuuuuuggg^\\a``]]]XWWQOOHFF><<422+))"!!    %##-++433;::CBBKJJQQQXXX^^^dcchgglkknnnqqqrrrtttuuuuuuvvvJIIA@@baa_^^ZYYTRRKJJA@@766.,,%##   #!!+))211:99BAAKJJQQQXXX_^^dccihhlkknnnqqqrrrtttuuuuuuvvvvvv-,, baa```\[[VUUNMMECC;992//(&&  B  &$$.,,655?>>HGGOOOWWW]]]cbbhgglkknnnqqqrrrtttuuuuuuvvvvvvvvvzzz]\\a``^]]XWWQPPHGG>==433+))"!!      (&&0..877BAAJIIQQQYYY`__feekjjmmmppprrrssstttuuuuuuvvvvvvfffihhCAAbaa___ZZZTSSLJJB@@866/--%##   '%%0..877A@@JIIRRRZZZ`__feekjjnnnpppssstttuuuuuuvvvvvvvvvIIIXXX#!!&$$baaa``\\\VUUOMMEDD;::200)&&    %##-++544?>>GFFOOOWWW_^^eddjiinmmppprrrtttuuuuuuvvvvvvvvv,++GFF211 a__aaa^]]XXXRPPIGG?==533,**#"" K  ! )''100:99CBBKJJSSS[[[a``gfflkknnnqqqssstttuuuuuuvvvvvv544BAAJIIbaa`__[ZZTSSLKKBAA877/--&$$    $"",**322<;;EDDNMMUUU]]]cbbihhmllooorrrsssuuuuuuvvvrrr$""QQQ-,,bbba``]\\WVVONNFDD<::300)''     %##-++544=<>544,**#""   &$$.,,655?>>HGGPPPXXX`__feekjjnnnqqqssstttuuuNMMqqqRQQcbb`__[[[TTTMKKCAA977/--&$$ I  &$$/--766@??IHHRRRZZZbaahggmllooorrrtttuuu;::533cbbaaa]]]WVVPNNFEE<;;311)''!   '%%0..877BAALKKTTT]]]dccjiimmmqqqsssttt)''cbbbbb_^^YYYSQQJHH@>>544,**#""    )''100;::EDDONNXXX`__gfflkkooorrrtttZYYcbba``\[[UTTMKKCAA9770--&$$ '  " +))433?>>IHHRRR[[[cbbihhmmmqqqrrr{{{=<>544,**#"" e   )''322>==IHHRRR\\\dccjiinnnPPP?>>___ccca``\[[TTTMKKCAA877/--&$$  $"".,,877DCCONNXXXa``hggmllDCC! FDDdccbaa^]]WVVPNNFDD<::200)&&     *((433?>>JIITTT^^^eddlkk988,**dcccbb`__YYYSQQIHH?>>533,))"!! B %##0..;::FEEQQQ[[[cbbjii/--dccdcca``\[[TSSLKKBAA866/,,%## y  " ,**766CBBNMMXXXa``hgg$""[ZZdccbbb^]]WVVONNEDD;::2//(&& dL  )''433?>>KJJUUU_^^gffCAAeccdcc___YXXRPPHGG>==422+))"!! P &$$1//<;;HGGSSS]]]edd *((eccdcca``[[[TSSKJJA@@766.,,$"" ;L  $""/--:99FEEQQQ[[[cccdccecceccbbb^]]VVVNMMECC:991//'%% &  "!!-++766DCCPOOYYYZYY;::ZXXfdddcc___YXXQPPHFF=<<422*((!  L   +))655BAANMMXXXPOO@??fddecca``[ZZTSSKII@??655-++$""  )''433@??LKKVVVJII'&&fddfddcbb]]]VUUNLLDBB9880..&$$ L (&&322?>>KJJUUUFEE fddfeedcc___XXXQOOGEE<;;300)''   '%%211>==JIITTTBBBXVVgeeecca``[ZZSRRJHH?>>533,))#!! L  &$$100=<>fee>==geefddcbb]\\UUUMKKCAA866/,,%##   &$$1//<;;IHHSSS<;;<;;%##geegeedcc_^^XWWPNNFDD;991//(%% L  %##1//<;;HGGSSS988 geehfffdda``ZYYRQQIGG><<422*((!    %##1//<;;HGGSSS655WUUhffgeebbb\\\TSSKJJA??655-++#"" mL  %##1//<;;HGGSSS322CBBhffgffdcc^^^WVVNMMDBB9880--&$$ X  %##1//<;;IHHSSS0..0..hffhffedd`__YXXQOOGEE<::200(&& 9L  &$$1//=<==JIITTT422ZYYigghffecc_^^WVVNMMDBB9880--&$$   '%%211>==KJJUUU766FEEiggiggfdd```YXXQOOFEE<::200(&& 6 (&&322?>>KJJVVV988322iggigggeebaa[ZZSQQIGG>==422*((!  ~ (&&322@??LKKVVV<;;lkk hffigggffcbb]\\TSSKJJ@??644,**#"" Y* )''433@??MLLWWW?>>877 hffigghffdcc^^^VUUMLLCAA877.,,%## 3 *((544A@@MLLWWWBAA ^\\igghggedd`__XWWPNNEDD:991..'$$     *((544BAANMMXXXDCCJHHiggiggfdda``ZYYQPPGFF<;;300(&&    +))655BAANMMXXXGGG644hggigggeebbb[ZZSRRIHH>==422*((!     +))655CBBONNYYYPOOcbb#!!hffigggffccc]\\TSSKJJ@??644,**#!!   ! +))766CBBONNYYYYXX1//geeigghffdcc^]]VUUMKKBAA766.,,$"" x  ! ,**766CBBPOOYYYa``zzzcaahgghffecc_^^WVVOMMDCC988/--&## Sw  ! ,**766DCCOOOYYYbaa pooWUUhffhffedd`__XXXPOOFDD;991//'%% -   ! ,**766DCCOOOZZZcbbdccKIIhffhfffdda``ZYYRPPGFF=;;300)&&   i  ! ,**766DCCOOOZZZcbb VVVYYY?>>geehfffddbaa[ZZSRRIGG>==422*((!   ! ,**766DCCOOOYYYbaa)((NMM433feehfffeebbb\[[TSSJII@>>533+))"!! [  ! ,**766CBBONNYYYbaa322CBB)''eddgfffeecbb]\\UTTLJJA??655-**#""   ! +))655CBBONNYYYbaa<;;877eccgeefeecbb]]]VUUMKKBAA766.++$"" PM   +))655BAANMMXXXa``JIIRRR-++dccfeefeeccc^]]VVVNLLDBB977/--%##  *((544A@@MLLWWWa``ZYY"!! cbbfddfeedcc_^^WWWOMMECC:880..&$$ ? )''433@??LKKVVV`__fff^\\eddfdddcc_^^XWWPNNFDD;991//'%%  (&&211?>>KJJUUU_^^fee SQQeccfdddcc___XXXQOOFEE<::200(&& ~2  &$$100=<<<422*((!   "!!,**766DCCONNYYYbaaXXX(&&baadccccc`__ZYYSQQIGG>==422*((!  3   *((544A@@MLLWWW`__fffJII a``dcccbb`__ZYYSRRIHH?==433+((!  w (&&322?>>KJJUUU^]]fee ttta``cbbcbb`__ZZZSRRJHH?>>433+))"  C4  &$$1//<;;HGGSSS\\\edd1//WWW`__cbbcbb`__ZZZSRRJHH?>>433+))"!!   $"".,,988EDDPPPZZZcbbGGGpoo;::___bbbbbb___ZYYSRRJHH?>>533+))"!! 5  ! ,**655BAANMMXXXa``_^^'%%_^^baabaa___ZYYSRRJHH?>>533+))"!!   )''322?>>KJJUUU^]]fee^^^baabaa___ZYYSRRJHH?>>433+))"!! q7  &$$1//<;;HGGRRR\\\dcc+**^]]a``aaa_^^ZYYSQQIHH?>>433+))"!! <  #!!-++877DCCOOOYYYbaaBAAEDD^]]a``a``_^^YYYSQQIHH?==433+))"   8   *((544A@@LKKVVV_^^YXX ^]]a``a``^^^YXXRQQIGG?==433+((!   '%%100=<==322*((!  9  $"".,,988EDDOOOYYYbaa(''dccnmm ]]]a``a``^]]XXXRPPHGG><<422*((!  j   +))544A@@LKKVVV_^^FEEQQQ ^]]``````^]]XWWQPPHFF=<<411*''! 6;  '%%100=<>655^^^a```__]\\WVVPNNFEE<::200(&& { &$$1//;::GFFQQQ[[[ZZZ^^^a```__]\\WVVONNFDD;::2//(%% 8=  " -++766BAANMMWWW`___^^a```__\\\VVVOMMEDD:991..'%%   (&&211>==IHHSSS]]]877433___a```__\[[UUUNLLDCC:880..&$$ ?  $""/--988EDDOOOYYYTTT!`__a```__\[[UTTMLLCBB977/--&## o  ! +))544@??LKKUUU^]]baa)((`__aaa`__[ZZTTTMKKBAA866.,,%## ,Q '%%1//<;;GFFQQQ[[[?>>1//1//200a``aaa___[ZZTSSLJJA@@755-++$""   #!!-++766CBBNMMWWW]\\ ;99a``baa_^^ZYYTRRKII@??644,**#"" r  )''322>==JIITTT]]].--DBBbaabaa_^^YYYSQQIHH?>>433+))"!! b  %##/--:99EDDOOOYYYSRR.,,MLLbaabaa_^^YXXRPPHGG><<422*((!    ! +))544A@@LKKVVV_^^dccWUUcbbbaa^]]XWWQOOGFF=;;311)''  %  '%%100<;;HGGRRR\\\DCC211`__cbbbaa^]]WWWPNNFDD;::2//(%%   #!!.,,877CBBONNXXX___ +))  cbbdccbaa]]]VVVOMMECC:880..&$$ VE  )''322?>>JIITTT^^^211cccdccbaa]\\UUUMLLCBB877/--%##  %##0..:99FEEPPPZZZVVVgffdbbdbbaaa\[[TTTLKKB@@766-++$"" f  "!!,**655BAAMLLVVV_^^! edd&$$eccdcca``[[[TSSKII@??544,**#!!    (&&100=<==IHHSSS]]]ZYY544                200igggeecbb\\\TSSKII@??544,**#!! Y  $""/--988EDDOOOYYYbaa*))877                    GEEigggeebaa[ZZSQQIGG>==422*((!    ! +))544@??LKKUUU^]]WVV         \ZZihhfdda``YYYQOOGEE<::200(&& Xz '%%1//<;;GFFQQQ[[[cbb%##kjj                      kiiihhfdd`__WWWOMMDCC9880--&$$   #!!-++766CBBNMMWWW`__RQQhgg               kjjiggecc^]]UUUMKKB@@766-++$""   )''322?>>JIITTT]]]edd877         :88kjjiggdcc\[[TSSJHH?>>433+))"!! e,  %##0..:99FEEPPPZZZbaaMLL:99          YWWkjjhffbaaZYYRPPHFF=;;300)&&    ! +))655A@@LKKVVV_^^gff        lkkkiigee```XWWONNECC:880..&$$ M  '%%100=<>KJJTTT^^^fee@??      ! ! "!!"!!"!!! ! !      iggmkkhffbaaZYYQOOFEE;::200(&&  &$$0..;::FEEPPPZZZcbbeee <;;     "!!#!!#!!%##%##&$$%##%##%##%##%##$""$""#!!#!!" "!!!   ommljjgee`__WVVNLLCBB877/--%##   "!!,**655BAAMLLWWW`__gff<;;\\\     "!!#!!%##&$$'%%(&&)'')'')''*(()'')'')''(&&(&&'%%'%%&$$%##$""#!!!  ?==nmmjiiecc]\\TSSJII@>>533,))#!! ._  (&&211=<>533,))#!! ;B &$$1//;::GFFQQQZZZcbbihh211>==FEE    ! $""'%%*((-++0..0//2114335447667668778778778777667666555444332111000..-+++))(&&&$$"  feenlliggbaaYYYQOOFEE;::200(&&    " ,**766BAANMMWWW`__gff```     "!!&$$(&&+)).,,1//322544766877988:99;::;::<;;;::;:::99:998777665444331000..-+++))(&&$""!   %##poolkkgee_^^VUUMKKBAA866.,,%##   (&&211=<==>==?>>>==>===<<=<<;:::998777664331000..,**)''&$$#!! OMMommjiidcc\[[SRRIGG>==422+(("!! H%  $""/--988DCCONNXXXa``hgg]]]POO     #!!&$$+)).,,1//322655988;::=<>?>>A@@A@@BAAA@@A@@@???>>>===<<;::988655322200.,,+))'%%$""    nnnnllhffa``XWWOMMECC:881..'%%    *((433?>>KJJTTT]]]eddkjj)''lkk     #!!'%%+))/--100544766:99=<>A@@BAACBBCBBDCCDCCCBBCBBBAAA@@?>>=<<:99877544211/--,**(&&$""  544pnnljjecc]\\TSSKII@>>544-**$"" g &$$0..;::FEEPPPZZZbaaihhZYY     #!!'%%+))/--100544877<;;>==@??BAADCCEDDFEEFEEFEEFEEEDDDCCCBBA@@?>><;;9886553220..,**)''%##!  _^^nmmiggbaaYYYQOOFEE<::200)&&  U  "!!+))655A@@LKKVVV_^^feelkk#""zzzTTT    #!!'%%+))/--211544988<;;?>>A@@CBBEDDGFFGFFGFFHGGGFFGFFFEEDCCBAA@??=<<;::7664331//-++)''%##!  qoolkkfdd^]]UTTLJJA@@766.,,%##    '%%100<;;HGGQQQ[[[cbbjiiUTT   " &$$+))/--100544988<;;?>>BAADCCFEEHGGHGGIHHIHHIHHHGGGFFEDDBAA@??>==;::7664331//-++)''%##!  HGGommjhhcbbZYYRPPGFF=<<411*((!  e  #!!-++766CBBNMMWWW_^^gfflkk   "!!&$$*((.,,100433988<;;@??BAAEDDGFFHGGIHHJIIJIIIHHHGGGFFEDDCBBA@@>==;::8774331//-++)''%##!   nnnmkkfee_^^VUUMKKBAA877/--&$$ Q  (&&211>==IHHSSS\\\dccjiiPPP[[[     $"")''-++1//433877<;;?>>BAAEDDGFFHGGIHHJIIJIIIHHHGGGFFEDDCBB@??=<<:997663220..-++(&&$""  FDDonnjhhcbb[ZZRPPHFF><<422+(("!!   $"".,,988DCCONNXXX`__gffmll   $""(&&,**0..322766;::?>>BAADCCFEEHGGIHHIHHIHHIHHHGGGFFEDDCBB@??=<<:99655211/--+))'%%#!! pnnmkkfee_^^VUUMKKCAA9770--'$$ p   *((322?>>JIISSS]]]dccjiiKKK'%%   " '%%+))/--322766:99>==A@@DCCFEEGFFHGGIHHIHHIHHHGGFEEDCCBAA?>><;;877544100.,,*((&$$"!! BAApoojhhcbbZZZRPPHFF><<422+))"!! 4 %##/--:99EDDPOOXXXa``hgglkkPOO   ! %##)''.,,100544988=<<@??BAAEDDFEEGFFHGGHGGGFFFEEDCCCBBA@@>==:997663220..,**)''%##!   nllnllfdd^^^UUUMKKCAA8770--'$$   ! +))433@??KJJTTT]]]eddkjjFEE322   $""(&&,**0..433877;::?>>A@@CBBEDDFEEGFFGFFFEEEDDCBBA@@>==<;;877544100/--+))&$$#!!  @??ommjiibaaZYYQPPGFF=<<422+))"!! v| &$$0..:99EDDOOOYYYa``hggjjj  #!!&$$*((/--211655:99=<>BAADCCDCCEDDDCCDCCCBBA@@?>><;;9886553220..,**)''%##!    lkkljjfee^]]UTTLJJB@@866/--&$$ *  ! +))544@??KJJTTT]]]eddkjjA@@A@@*((    ! %##)''-++1//433877;::=<<@??BAABAACBBBAABAAA@@?>>=<<:997664331//.,,*((&$$#!!  ?==nmmigga``YXXPOOFEE<;;311*(("!!   &$$0..:99EDDOOOYYYa``hggiii      $""'%%,**0..322655988<;;>==@??@??A@@@???>>>===<<:99877433100/--+))(&&$""  kjjkiidbb\\\TSSKIIA??755.,,%## Y  ! +))544@??KJJTTT]]]eddjii<;;POOcbb   " &$$*((-++100433766:99;::=<<=<<>==>===<<;::9887665442110..,**)''%##!   LKKmkkhff`__WVVOMMECC;99200)''!   6  &$$0..:99EDDPOOXXXa``gffhgg      $""(&&,**/--211544766988:99;::;::;:::999886554331000..,**)''%###!! #!!onnjhhcccZYYRQQIGG?==544-**$""   ! +))433?>>JIISSS]]]dccjiiA@@EDD   #!!&$$*((-++0..3224337668779888777667666553220///--,**)''&$$#!!  a``ljjfdd^^^UTTLKKCAA9770..(%%  <  &$$/--988EDDONNXXX`__gffiii<;;   ! $""(&&+)).,,1//2114334335445444334332111//.,,,**)'''%%#!!!   988nllgffa``XWWPNNFEE<;;411+))#!! Y  ! *((433?>>IHHSSS\\\cbbihhGFF988    " &$$)'',**.,,0..1002112112111001///--.,,+))(&&&$$#!!    lkkjhhcbb\[[SQQJHH@>>655.,,&$$ ~  %##/--988CBBNMMWWW_^^feekjjkjj    ! $""&$$)''+)).,,/--/--0..0../--.,,,***(((&&%###!!  POOljjecc^^^UTTLKKCAA9881//)&&!      )''322=<>655.,,&## aC  (&&100<;;GFFPPPYYYa``hggSRR%##     "!!#!!%##&$$&$$&$$&$$%###!!!   KJJjhhdcc\[[VTTKJJBAA9771..(&&     #!!,**655@??KJJTTT\\\dccjii"    ! " #!!#!!#!!#!!!   0..ljjedd_^^VUUNLLDCC;::311+((#""   &$$0..:99DCCNMMWWW_^^feeWVV200        jiigee`__YXXPOOGFF><<533-++%## Cs  ! *((322>==HGGQQQZZZbaahgg(''      ][[hffa``[ZZRPPIHH@??766/--'%%  -  $"".,,766A@@KJJTTT]]]dcc\\\ LKK        HFFiggcbb\[[TRRKIIBAA9881//)&&!    '%%1//:99EDDONNWWW_^^edd<::www       ,++jhhdcc]]]UUUMKKDBB;99311+((#""   "!!*((322>==HGGQQQYYYa``eeefee     feedcc^^^VUUNLLEDD<;;422,**%"" ]  $"".,,766A@@KJJSSS[[[cbbQQQjjj         [YYecc^^^XWWONNGEE><<544.,,&$$ G  '%%0..:99DCCMLLUUU^^^dcc,++ ___          TSSfdd_^^XXXPOOHFF?>>755/--'%%    ! *((211<;;FEEPOOXXX_^^_^^ PPP             LJJfdd`__YXXQPPIGG@??7660..(&&!  s  #!!,**544?>>IHHQQQYYYa``BAANMM      DBBfdd`__ZYYRPPIHHA??8771//)''"!! G  %##.,,766A@@KJJSSS[[[baa+**       ;99fee`__ZYYRPPJHHA@@988200*((#""    '%%1//988CBBMLLTTT\\\TSS=<<           200fdd`__ZYYRPPJHHB@@988200+(($"" 4   ! )''211;::EDDNMMVVV^^^211       )''fdd```ZYYRPPJHHB@@:88300+))$"" v  #!!+))322=<==HGGPPPXXXKKK,**cbb___XWWQPPIHHA@@988300+))$""   %##.,,655@??IHHQQQYYY655766"!!644dcc_^^WVVPOOIGGA??988200+))$""    '%%/--766A@@JIIRRRYXX@??cbb]]]VUUPNNHFF@??877200+(($"" #\    (&&0..877BAAKJJRRRSSS  IHHbbb[ZZTTTNMMGEE?>>8661//*(($""   ! (&&1//988BAAKJJSSSFEEhhh}}} QOO`__ZYYTRRMKKFDD>==7550..)''#"" L  ! )''200:99CBBLKKSSS1//  USS^^^XWWRQQKJJDCC=;;544/--(&&"!! s  "!!*((100:99CBBLKKSRRDDDTTT!ZYY\\\VVVPOOJHHBAA;::422.,,'%%!  l&  " *((211;::DCCMLLMLL <::`__ZZZTSSNMMGFF@??988311-**&$$      #!!+))211;::DCCMLL?>>%##RPP^]]XWWSQQLJJEDD>==7661//+))%## y  #!!+))322<;;EDDNMM+**nnngff+))]\\[ZZUUUPNNIHHCAA<::5440--)''#"" =  $"",**433=<>988411-++'%%"    $""-++433=<>:88422/,,)''$""    $""*((1//655977 RPPXWWTRRNMMIGGCAA<;;6551//,))&$$!  '@   ! '%%,**1//.--  >==XXXTSSPNNJIIECC?==977411.,,)&&#""    " &$$*((" GGGFEE'%%SRRTTTQOOLJJFEEA??;::5440..+((&##! 2y    " DBBTTTQPPMKKHFFBAA<;;755200-**(%%#!!       -++QQQQOOMKKHGGCBB><<877422.,,)''$""  >   RRR,**FDDPNNLKKHGGDBB?==9884330--+((&##!  O     \\\0..MLLKJJHFFDBB?>>:995441//,))'%%"!! I     CBBIHHFEECBB?==:996442//-**(&&#"" ]]]  100FEEDCCB@@>==:99644200.++)''$""   0%! &$$?==B@@?>>=;;988544200.++)''%##!  ,++SSS 0..><<<;;;998664332//.++)''%##!  C7667559777665444111..-++)''%##!  ~AAA #!!4224223112///,,,**)&&%##"    7LLL!  )''0..0--/,,-***(('%%$""!   _WWWLKK*((+))+((*''(&&&###""  -aaa'$$'$$&$$%##$"""  @lll "!!"!!"!!! #wxx   %~~~  vww!     nnn1//    qfffCBB    ]]]YYY       ? UTTrrr    GLLL         CCC8;:: P1001~Z```211+rrr ucTSS655%sssmEFEErrr&?>>GA r|XXXyyy+))DCC<5v[{{{lkk.,,1//(Oyyy%)((gff9'%%Luuub+$""{T^^^KJJrrr.TTTW&1//6I,**KJJ^.xX! 433/Yppp222+ =baaR200k0SSSY,**1// 40<;;0.._ZQPP.,,31^[edd*(()''TTTxxx22~~~b\$""a``?>>[2HGGihh] W    322+)) wwwS3 RRR_ "!! ^^^|||O   4  GFF-++K`   .,, 322H  zzz/--6  c 655/--9    0.. IHH!91//\dgff200?YYY2118 eMLL211| @??322HCBB433544$.,, {qjfaZV~P|M{W~alw655 pppv]Fx0phbaaaaaaaaaaaaaaa bh1pIyb|(g\4qdaaaaaaaaaaaaaaaaaaaaaaaaaaa bi7rY~544{Gxjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaf9s\0N_^^e)maaaaaaaaaaaaaaaaaaaaaaaabbbbccccccddddddddciCwv322,**Q{gaaaaaaaaaaaaaaaaaaaabbccddddeeeeffffffffffffffffmO|:6Jy caaaaaaaaaaaaaaaaabbcdddeefffggghhhhhiiiiiiiiiiiiihhhh)r[200egaaaaaaaaaaaaaaabbcddeeffgghhiiijjjkkkkklllllllllllkkkkkkj k5wgD#~-naaaaaaaaaaaaaabcddeefgghhiijjkklllmmmmnnnnnnoooooonnnnnnmmmmlloA{t1//ZYYLz baaaaaaaaaaaabcddeffghiijjklllmmnnooopppppqqqqqqqqqqqqqqqpppppooonns_N,**3qaaaaaaaaaaabcddefghhijjkllmmnoooppqqqrrrsssstttttttttttttsssssrrrqqqppsY.,,   #kaaaaaaaaaabcdefghhijkklmmnooppqqrssstttuuuuvvvvwwwwwwwwwwvvvvvuuutttsssrrtS     f&yfaaaaaaaaabcdefghijkklmnnoppqrrssttuuvvwwwxxxxyyyyyyzzzzzyyyyyyxxxxwwwvvuuttsuU-++    i caaaaaaaabddefghijklmnoopqqrsttuuvwwwxxyyzzz{{{{|||||||||||||||{{{{zzzzyyxxwwvvuxh   =W}baaaaaaabcdefhijkllmnopqqrstuuvwwxxyzz{{{|||}}~~~~~~~~~~}}}||{{{zzyxxww-}x211   %##(&&+))-**-**,)))''%##!  tttGxaaaaaaabcdefhijklmnoppqrstuuvwxxyzz{{||}~~~~~}}||{{zzy x?  "!!(&&.,,311755:99<::<;;;99766411.++'%%  VbaaR|aaaaaabcdefgijklmnopqrsttuvwxxyz{{|}}~~~~}||{z|lFEE   '%%/,,544<;;CAAHFFKJJMLLMLLLJJHFFBAA;::422+))"!! 'OOO`aaaaaabdefghiklmnoprstuvvwxxyz|}}~~~~~}||B  #!!+))422<;;ECCLKKSQQWVVZZZ\\\\\\[ZZWVVRPPJIIA@@755-++#"" o=< +**xdaaaabcefgijklmpqqstuvwyy{|~~ L   &##0..:99EDDPNNXWW```geelkkpoosqqtrrtrrsqqpnnjiicccZYYPNNCBB644*(( faaaabdefhijlmoppstvwxy{|}%{jjj  &##1..;::GFFRQQ\[[dccljjqpputtxwwzyy{zz{zzzyywvvsrrmkkeccZYYNLL@??311&$$ W haaaacdfghjklmpprsuwyz|~ W  %""0..;::HFFTRR^]]geeommtssxww{zz}||~~~~~~~~|||yxxtssmkkcbbWVVJHH;99.++!   (maaabcefgijkmoprstvw{}   /zzz  #"".,,:99GFFTRR^]]hffpnnuttzyy}||~~}||yxxtrrkii___RQQCBB433'%% qGwaaabcefhiklmpprtuxz|   e ! ,**877FDDSQQ^]]hffqoovuu{zz~}}}||wvvqoofddYXXKII;::-**   haaabdefhiklmpprtvy|~  F  *''544CBBQOO\\\gffpnnvuu{zz~~~~{zztssljj___RPPA@@200$"" daabdefhiklnpqsuxz}  (*))  &$$300@>>NLLZYYfddonnvuu{zz~~}||xwwpnndccVVVGEE655(&& $kaabdefhjkmnprsvwz~   j " .,,;::JHHWVVcbbmlluttzzz~}}~~zyysqqhgg[ZZLJJ;::,** Buaabdefhjkmnqrtvx|    LFFF  )''655ECCSRR`__kiitrryyy~}}|{{uttkjj^^^PNN>==/--! 0caabcefhjkmnqqtvx|  . $""2//?>>NMM[[[gffqooxww}||}||vuunlla``RQQA@@1//"!! |daacefhikmnqqtvxz  olll  ,))977HGGVUUcbbnlluuu{{{~~}||wvvommbbbTSSCBB311$"" I!jaacdfhiklnpqtuxz~   S &##411B@@QOO^]]jhhtrryxx~}}~}}xwwpnncccTTTDCC422$"" >taabdfgiklmorsswy} 4 !-++;99JHHXXXeccpnnwvv|||}||xwwpnncccTTTDCC422$"" b^aabdegijlmnpqstv{}  hBBB  '%%433CBBSQQ___ljjtss{zz~~}||wvvommbbbTSSCBB311$## y caacefgjkknnqrssuw{   A " /,,<;;LJJZYYfeeqooxww}|||{{vuumlla``RQQA@@1//"!! |iaabdehhjklmnmoppruwy {~}    ~~ } } | { { | | } } ~   oiii  (&&644ECCTRRa``lkkutt{zz~~{zztsskii^]]OMM>==/,,  9qaabdefhjjklkllkllmmopqqqppoollljjkjjkmlmoqr t v x z }  J #!!0--><>1//#"" {||zdaa`bddfdedca^^\ZX}VzUxUvTsRrRqQoPnOlNjMjMjLhKhKhKhQnYwYwXvXvWuWuWuVtUrNkMjNkOlPmQoRpTqVtXuZx\{_~behjmpquvxx{}  +z  +((877GFFVUUcbbnllvuu|{{~~{zzvuunmmdccVVVHGG977+)) ;kkkgaa`acdcbba_]\XX}TzTvQtPqNoMmMlLiLhJhOney } jXtQnRnSqUsXuZx\{^~acegilnoruxz|  RZZZ %""200@??PNN]\\ihhsqqyxx~}}~~|{{wvvqoogff\[[OMM@??200%## \\\&k`aa``bbb`_\ZXVzRwQsOqNmKlJiIhNlax  p\yRnRqUsWuYxZz\}^`behjmptvz|  ^   ,**:88IGGWVVdccommvvv|{{~~|{{wwwrppjhh_^^TRRFDD766*(( INMM3o```_````^\ZXUzSvPrMnLlJiIgXy| t `SrSsVvWyY|\^acfimptw{~  &ktuu &$$422BAAQPP^^^kiitrrzyy~}}~}}{zzwvvrppjhh```UTTIGG;::/--#!! ???Dt```____^\ZXUzRvPrMnKkIiTuv  "#%''"{ ^~QsTuVxX|Z~]`bfjmquy|  2n! ! .++;::KIIXXXeddpnnwvv}||~~}||zyyuttpooigg`__UUUJII><<2//&$$ V100Uya```^^]\ZXV}SxPsNoKlPqq  "#%')*,./,#hRsSuUyW|Z^adhmptx{  (^  (%%533DBBSQQ`__ljjtss{zz~~~}}{zzwvvtrrnllgee^^^TTTJII>==311(%% #!!c~b``_^]\ZYW~TzQuNpLlOpz  "#%')*,./13465*tWyTuWyY~\`dhlosw|  N::: "!!/--=;;LKKZYYgeeqooxww}||~}}|{{yxxuttqookiiccc[ZZRQQHFF=;;311(&& bp c``_^]ZYWU|SxPtMoNou  "#%')*,./134687664) _RtUxY|\_cgkotx}  7a  (&&644ECCTSSaaamkkutt{zz~~~~|{{yyyvuurppmkkfdd_^^WVVNMMDCC:991..'%% ye``_^\[XWT{QvOqNpp  "$%')*,./134687665432( cStUxX{[_cglqv{  8bRRR "!!/--><>655.++%"" n)}h``_^\ZWU~TzQvNqi  "$%')*,./134687665432100( gRsUwY|\aejoty~  >p  (%%544ECCSSSbaamllutt{zz~~}||{zzwvvtrrommihhcbb\[[TSSLJJCBB:99200)''"   @aaavg```^\ZWT}RxOsQu  "$%')*,./134687665432100/.-& lRtVy[~^chmsx}  "R[[[   -++<::LJJZZZgffrppyxx~}}~}}|{{xwwtsspnnjiidcc]\\UTTNLLFDD=;;433-++%## zVEEEnda`_^\ZWT}RxOs^ !#%&(*+,./134687665432100/.-,+*$TuTvY|\aflqx}   C  $""300B@@RPP`__lkkutt{zz~~~~}||zyyvuurppljjedd^^^WVVPNNGEE?==655/--(%%! m***e~ b`__^\ZWT}QwNrr !#%&(**,//134687665432100/.-,+**)%XxSuWz[`fkqw~  f@@@ (&&655GEEVUUeccpnnwww}||~}}{{{xwwtrrnmmhffa``YXXQPPIGG@??8661..)''"!!  ,= b`_^]\YVT|PvU{ !"$'')*+-//234687665432100/.-,+**)('$ _StVy[`flry~  ~8 +((:88KIIZYYhffsqqyyy~}}~~}||zyyvuuqppkiidcc\[[TSSKJJBAA:88200*(($"" 2M___]\[XUSzPvd !"%&))+,,-/0235687665432100/.-,+**)('&%$ iStVy[`flsz  }|o(((  -**<::MKK\[[jhhtrrzyy~~~}}|{{xwwtrrommhff`__WWWOMMEDD<;;422,**%"" Ks__^]\YXURzQww  #%'),,-../00244787665432100/.-,+**)('&%$$# cRuW{\agnu|   }|Piv  -++<;;MLL\[[ihhtrryyy~}}~~}||zyyvuurppkjjdcc\[[TRRJII@??766/--'%%  %7[_^]\[YVT}QxZ #'*,.00111122344687665432100/.-,+**)('&%$##" XxSuW{]bipw~  }u  ,**;::LJJZZZgffqppwvv{zz}||}||{zzwwwtrrommhff```XWWONNEDD;::311*(("!!  >^_]]]ZZWUS|Pvi "'+/1244554444455797665432100/.-,+*))('&%$##"! RsTvY}_elsz  }_ *''866HFFVUUcbbmkksqqvuuwwwwvvtssqookiidcc\[[TRRKIIA??766/,,&$$ ,R}]][[YWUS|QxX} !&+0468:999876667679867543210//.-,+*))('&%$##"!  vQrUw[agnw}  ~|3J &##422B@@POO\[[eddljjpnnpooommkjjfdd___WWWONNFDD<;;411+(("!!   >^^\[ZXVU~T|RySxp  $*/59;=>?>><;:888889775643210//.-,+*))('&%$##"!  fRuW{^dkrz  ~n ! -++:88GFFSRR[[[baaeccedddcc_^^YXXRQQJHHA??766/--'$$   %8W][ZXUT}RzQxPtd   '.49=@ABCBA??=<;:9::966553210//.-,+*))('&%$##"! TuUwZ`gnv~  ~,  &$$2//=;;GFFPNNTTTWWWXWWUTTQPPKIICBB;99311+((#!! o6;Z_^[YVT}RyPvOsY}  #)07=@CEEFFDCBA?><;;;987644210//.-,+*))('&%$##"!  lRtXz^dlt|  Ij (%%2//:88A@@FEEIGGHGGFDDA@@;::433-++&$$ FHm`^]ZWT}PvRwe|  %+39?CFGGHGFFDCB@?===:87653310//.-,+*))('&%$##"! TuTx[aiqy  f  &$$-++311655877866544200-++'%%! `V>_`_^\^clv  %.5;ADGHHHIHGFFDCB@?><97754220//.-,+*))('&%$##"!  pRtX|^fnv~  }  ! %##(&&*'')'''%%$##  e(=em s w | ~   &.6;85310/-,+*))('&%$#""! Y}[clt| c _ x x x y z | ~   #*18>CFIIIJJJJJJIJJIIGFEB@=:7421/-,+*)(('&%$#""!  lZbjs{  zNq x x x y z | ~   !(07=CEHIIJJJJJJJIJJIIGFEA?<96420-,,*)(('&%$#""!  Y}airz  i=X x x x y z | ~    '.5;8521/-++)(('&%$#""! \`hpy  ,>*< x x x y z | ~   %,3:?DGIIIJJJJJJJJIJJIHGECA>:742/.,+)(('&%$#""! h_gnw  Jh/ x x x y z | ~   #*18>CFHIIJJJJJJJJJIJIIHGEC?=9530/,+*(('&%$#""!  }]enu~  h  t x x y z | ~   !(/6BEHHJIJJJJJJJJJJJIIIGEC@=:63/,+))'&%$#""!  h^enu~  7M:4J x x y z | ~   ")/6<@DGHIJJJJJJJJJJJJJIIHGEC?<951.+))(&%$#""!  n\dkry  UxJ x x y z | ~   !',39>BFHIJIJJJJJJJJJJJJJIGFEA>:63/-*)''%$#""!  zZ~`hnu|   vwY o x y z | ~   %*17CEGHIJJJJJJJJJJJJJJJIHEC?<730-*'%%#""! RrRsVy[`flry   A[&zRv y z | ~   "',16<@DFGIIIJJJJJJJJJJJIJIHGEA>961.+)&$$""!  RpOoStVy[afmtz  Lk$ y z | ~   !%*/4:>BEGIIJJJJJJJJJJJJJJIHGGC@<830,*&%$""!  SqLkOpRuWz\bhnv   X{W} z | ~   #(,17;@CEGHIJJJJJJJJJJJJIJIHGEB>:52.+(&#""!  !WuJhMlOpSuW{]ciw  e* z | ~   "&*.49=ADFHIIJJJJJJJJJJJJIIIHFDA<730+)&$#"!  !" wIfJhMmPqUwZco  q\ | ~   !$',16:?BEGIIIJJJJJJJJJJJJJIHGEB>:61-*'%""!  !""# _~HgKjOnSuZj  l* { ~    #&*/38<@CFGHIJJJJJJJJJJJJIJIHFDA<84/*(%##!  !"##$%t cUuWze Z|@\ ~   #%(,05:=BDGHIJJIJJJJJJJJJJJIHGEB>:50,(&#"!  !"##$%%&'(&!##"!  Ieb    "#'+.26;>BEFHIJJIJJJJJJJJJIJIHFD@;72.)&$#"  !"##$%%&'(())&%$""!!  &3v x  !#&*,059=@CEGHIJJIJJJJJJJJJJIHGDB=94/+'$#"  !"##$%%&'((*)(''%$$##"""  a-?  ""%(*/26:>ADFGIIIJIJJJJJJJJJJIHFC?;50,)%$!  !"##$%%&'(()+)*('''&%%$$##"!!! f KPq  !#$(),048;?BDGGIIIJIJJJJJJJJJIHGDA=82-)%$"! !"##$%%&'(()*+++*)))(('&&%%$$#$ .: 5^  !"%'(+/259=?CEGHHIJJIJJJJJJJIJIGFB>94/*&$"! !"##$%%&'(()+,+,,,++**))(('''&'e~ !( d  !"$'(*.137;=ACFFHHIJJIJJJJJJJJIHFD@;60+'%#  !"##$%%&'(()**,,,,,,,,+++**))))AO  j  !"$&'*-/159;?BDEFGHIIJJJJJJJJJIHGE@=71,(%#  !"##$%%&'(()*,+,----,,,,,,++++' .7 p  !"$&)),/0469=@BCDFGHIIIJJJJJJIJIGEB=82-)&#!  !"##$%%&'(()*,+,------,,------"" w  !"$&(*+.0258;>ABCEFGHHIIJIJJJJJIHFB>93.)'#!  !"##$%%&'(()*+*,-.-.-.-----.//@K|  !"$&(),-/146:<>?ACDEFGIIIJJJJJJIGGC?:4.)&#!  !"##$%%&'(()*++,-...........0   !"$&()+..0368:=>>@ACEEGHIIIJIJJIHFC@:5/*'$!  !"##$%%&'(()*++,-..././/////$ &  !"$&()+-/02469<<=>@ABDEFGHIIIJIHHGC@:5/*'$!  !"##$%%&'(()*++,--./0000000% '  !"$&()+-.12368::;;=?@ACEFGHIIIIHGFC?:4/*'$!  !"##$%%&'(()*++,-../000111&o q{4  !"$&()+-/03357:99:;<=@ABDEFGHHHGFDB>94/*&#!  !"##$%%&'(()*++,-../0011,IVZ W  !"$&()+-/0245798889;;<>?ABDEEFFFEC@<83-(&#!  !"##$%%&'(()*++,-../00/i} D{ !#$&()+-/023679887789:;=>?ABCCDCB@=:50+'$#!  !"##$%%&'(()*++,-...#KZ 1 # !#$&()+-/023578876667789;<=>?@@?><:62.*&$"  !"##$%%&'(()*++,/$O]@ !#$&()+-/023578765565567899;<<<;:863/,(%""! !"##$%%&'(()-Ih  $dccg  !#$&()+-/02357877554545556678777642/-*'$"!! !"##$%%&)Fj*;:: !#$&()+-/0235787664443333334444320/,*(%$!"  !"##$8_0  !#$&()+-/0235787654333211101100/.-,*(&%""!  !+R| 5   !#$&(*+-/0235787654342100////.-,,**(&%##!! *\;tss !#$&(*+-/023578765433220//...-,+*)('&$$"!! '[TSSA !#$&(*+-/0235787654332100.---,+*)('&&%#"!! %Y+))Gxww !#$&(*+-/023578765433210/.-.-++*)((&%$#"!! DL !#$&(*+-/023578765433210/.--,+*)(''&%$#"!! 'gyRyxx| !#$&(*+-/023578765433210/.--,+*)(''&%$#"!! (4q|134655=<>?T !#%&(*+-/023578765433210/.--,+*)(''&%$#"!  ^k  VUUFEEAciii!, !#%&(*+-/023578765433200/.--,+*)('&&%$#"!  OZbbb/iUTT {  !#%&(*+-/02457876543/#!%*-,+*)('&&%$#"! @I][[oXu | z !#%&(*+-/0245787653' !,+*)('&&%$#"! 18ppp uyyy5F ykd k !#%&(*+-/024578762oquz (+*)('&&%$#"! 39[ZZIGG{ONNmmm" na[yXwk !#%&(*+-/0245775+wcdfiov~ !+*)('&&%$#"! 1NWIHHnmm s i[{RmNhXu v !#%&(*+-/0230&e\uYqYr\u_{dinx '+*)('&&%$#"! 0s866 Me \{PkLeUr b  !#%&(*+-/0*ld`zYqSj Od QgVm[ua|flu~++*)('&&%$#"! )|"!!ONNpooHGG y x[yVr\ze  !#%&(*+-/-rid_zYsUlRi TjXo]wa~glw+,+*)('&&%$#"! &rGFF*))1@ c e p  !#%&(*+-/)umhd`{]w\v]w^ya~fku),,,+*)('&&%$#"! #gwvv<::WVVSk  !#%&(*+-//wpkhffghls*..-,,+*)('&&%$#"!!] A@@xxx z  !#%&(*+-/01*yvt|#+000/.-,,+*)('&&%$#"SQPPw.,, l.  !#%&(*+-/024465314332210/.-,,+*)('&&%$K kXWW\[[`__x  !#%&(*+-/024578765432210/.-,,+*)('&&K@??JIIc544|,  !#%&(*+-/024578765432210/.-,,+*)('E*))[^^^   !#%&(*+-/024678765432210/.-,,+*)3veeeR !c{  !#%&(*+-/024678765432210/.-,++1Fv~kkkVUU J!bbbHX  !#%&(*+-/024678765432110/.-,2>elKKKSRR322B755WVVDCC+4 z  !#%&(*+-/024677765432110/-/q|6>?>>>FEEMLL}~~wwwYXX:LKKBAA(1^r  !#%&(*+-/0246777654321/'%?D*))211988@@@HGGUTT@??aaa2bbb=<<766 >I u  !#%&(*+-/0246777654/%OX&%%-,,433;;;BBBJII ,++*yxx,++RQQ!Sb  !#%&(*+-/0246773&]i &+ ! (''0//666>==EDDYXX"  #) =G Xfs !"$$%&&&'(%xWc6= %##+**211999@@@GGG mmm    ! (''/..555<<>EDDTTT Q]\\ " ,++1002110//,++&$$ sss !&%%,++211766===CBBIII  ^sss %##///555766544000*((    &%%+**100666<;;BAAHGGbbb    #""j (&&322:99;;;:99544.--#""   ! &%%+**0//655;;;A@@GFFLLL   "!!(''(''"!! 866w+))777?>>@@@>>>:99100&%%  "!!'%%,++100655;::@@@FEEKKKwww    ! ,**644:99:880.."!! LKK ...<<==444('' 0..  #""('',++100655;;;@@@FEEKKKUUU  &%%422@??IHHMLLHGG<;;+)) aaa $""433BAAIIIJJJHGGBAA766)(( kkk   ! %$$)((.--322766<;;A@@FEEKKKMMM *((988HGGSRRZYYZYYSRRDCC1//yyy +))<;;IHHNOOOOOKLLEDD988*((     $##('',++0//433888=<==ONN[ZZbbbeeebbbYXXHGG311 "!!433EEEPPPUUUTTTOPPGGG999)''       $""'&&*)).--211655:::?>>CBBHGGLLLQQQ)((DCC  !!'((322CBBTSSaaajjjnnnmmmggg[ZZHGG200  .--@@@OOOXYY[ZZXXXSTTIHH988'%% '&& "!!%##(&&+**.--100544988=<<@@@EDDIIINMMRRR666www   !!,,,877HHHZYYhhhqpputtuttqppiiiZYYEDD.,, *))  *((<<>(&& eee:99  '%%988KLLZZZcccfffeee```VWWGGG322  ppp#!!"!!"!!"!!"!!#!!#""$##&$$'&&(''*)),++.--100322655988<;;?>>BBBFEEJIIMMMRQQVUU/..WVV  $##866KKK_^^qpp}||}||tsseeePOO866!  +**]\\  &$$766JIIYYYeeejkkjkkhhhaaaUUUCBB.,, ;::^]])((*))*))*))+**+**,++-,,.--0//211433555877:::=<<@??CBBFEEIIIMLLPPPTTTSSS wvv  211HGG^]]poo~~~}}qpp^^^FEE.,,  xxx655 '%%777IIIYYYeeelmmoppmnnijj```PPP<;;'%% JII (''211211322322433544655877999;::=<==???A@@CBBEDDGFFIHHKKKNNNQQQTTTWWWGFF -++A@@VUUhhhwvvutt```GFF.,, WVVs><<  ,**=<==SSSbbbhiiklljjjfff_^^STTEEE544%## 322 -++=<==HGGMLLQPPRQQRQQQPPMLLGFF?>>533(&& TSS;::7gBAA*))    -,,&%% %$$200;::A@@EDDFEEEDDCBB?>>:88311*((  BAA0s655      "!!,**3117558667554221//,**&%% 311({||~}} ! %$$'&&'&&%$$"!! %$$!yzzLKK'&&RQQ\ZZ   1//uuuxyy```mmm544   ccc0..xyyxyy311  xyyxyyxyyxxx0..lllA??644311xyyxyyxyyxyyooo]\\ppp|||644[ZZsssxyyxyyxyyxyyxyyyyybaa;:: IHHxyyxyyxyyxyyxyyxyy"!!BAA=<<z{{xyyxyyxyyxyyyzz|}}mmmWVVaaammmxxxwwwxyyxyyxyyxyyz{{}~~;::{{{yyyxyyxyyxyyxyy{{{~;99UUUxyyxyyxyyxyy{||~7660..xyyxyyxyyxyy|}}\ZZxyyxyyyzz|}}211 XWW |||xyyxyyyzz|}}llltttzzzAAAxyyxyyyzz|}}#!!zzzttttttvvv}}}xyyyzz|}}mmmtttttttttttttttttt}}}|$kkkxyyxyy|}}xyyxyyxyywwwttttttttttttttttttuuul-{||xyy{||~~{||xyyxyyxyy~.,,xxxtttttttttttttttttttttvvvxxxzzz[6xxxxyy{{{~}~~z{{xyyxyyxyyoppttttttttttttttttttuuuwwwyyy{{{}}}IGGK?}~~z{{}~~}~~z{{xyyxyy>< uuu {zztttttttttvvvxxxzzz|||~~~$##  '<#""KKKaaawwwtttuuuwwwyyy{{{}}}   ;<<<@@@ " #!!  =;;}}}tttvvvxxxyyy|||~~~$""$"" 9eee~RRR #!!(''&$$#!! tttvvvxxxzzz|||~~~MKK'%%)((&$$#!!  7=<<```xxxyzzmmm[[[GFF.-- !.--,++(''&$$" tttvvvwwwyyy{{{}}}"!!+**/..,++(''&$$#!!  5322322/..,++(''!<;;xxxzzz|||~~~ 0//433211/..,++(''&$$!4766988655211/..(&&kkk}}}{{{}}}322:99877544211/..+**(&& ~2=<<@??<;;988655.--&&&~~~~~~766@??>==;::877544211.--&$$ V0BBBEEEBBB@??<;;433(&&}||;::EEEDDDAAA>==;::877544-,,.&FFFLLLHHHEEEBBB;::xww>==KKKJJJFFFDDD@@@>==;::433KKKRQQONNLLLHHH@@@" ;::zyy(&&@@@QPPPOOMLLJJJFFFCCC@@@:99%##  " POOXWWUTTRQQNMMEEE$""NMMsrrpoo:99 #!!JJJVUUVUUSRRPOOMLLJJJFFF@??+**  /..XXX^^^[[[XWWTSSFFF  100WVV^^^[[[XXXVUUSRRONNMLLFFF100  :99ZZZbbbaaa^^^XXXDDD;::XXXbbbbbb___[[[XXXVUUSRRMLL877d@@@XWW]]]```bbb\\\@??BBBXWW^^^```cccbbb___[[[XXXTSS>==<DDDTSSXWW[[[]]]YYY544  " EEETSSXXX[[[^^^```cccaaa^^^YYYEEE  DDDONNSRRVUUWVVPOO'%%  )((FFFPOOTSSVUUXXX[[[^^^aaabbb^^^LLL,++BBBJJJMLLONNMLL;::322DDDKKKNMMQPPTSSVUUXXX[[[^^^\\\GGG !877@??DDDGGGFFF=<<  %##:99AAAFFFIIILLLNMMQPPTSSWVVXXXUTT988q-,,877<;;@??@??<;;"  0//988>==@@@CCCFFFIIILLLNMMQPPSRRKKK)(( h_&$$100544877988766%##  (''100766:99<;;>==AAACCCFFFIIILLLLLLAAA -M *)).--0//211100'%% %##,++0//322544877:99<;;?>>AAACCCFFFDDD544; %##(&&)((*))#!!  !(&&*))-,,/..100322655877:99<;;?>>@@@>==('' ) !#!!   " &$$(&&)((+**-,,/..100433655877:99:99433 {      " $""&$$(&&)((+**.--/..100433433100"  ?     " $""&$$(&&)((,++.--/..-,,"     " $""&$$(&&)(()((!   " $""#!!   R    t     L  $Xg\4w '6mE*ZG %                  UU                            !        L       7             ;f     "!!#!!#!!#!!#!!" !       ! $""%##'%%(&&(&&'%%'%%&$$%###!!!  @    "!!$""'%%)''*((,**,**,**,**+))*(((&&&$$$""!              $""'%%*((,**.,,0..1//1//1//0../---+++)))''&$$$""!                E4   " &$$)''-++0..1003224335445444333222111//.,,,**)''&$$#!!                #!!'%%+))/--100433766877988:999889887665443221//.,,+))(&&%##"!!           J    $"")''-++1//433766:99<;;=<<>==>==>==<;;;::8776553221//.,,*(('%%#!!              &     %##)''.,,100655988=<>A@@BAACBBCBBBAA@??>==<;;9886552110..,**)''%##"!!           N     %##*((/--322766;::?>>BAADCCFEEGFFGFFGFFFEEDCCA@@?>><;;877433100.,,*(('%%#!!   i     %##*((/--322877=<==:997663220..,**(&&%##"!!  1   $""*((/--433988>==CBBGFFJIIMLLNMMPOOOOOONNNMMLKKJIIGFFDCC@??<;;988544100.,,*(('%%$""!     $"")''/--322988>==DCCHGGLKKONNPPPRRRSSSSSSRRRPPPONNMLLJIIFEEBAA?>>;::7663220..,**)''&$$#!!!   N   #!!)''.,,322988?>>DCCIHHMLLPPPSSSUUUVVVWWWVVVUUUSSSQQQONNLKKHGGEDDA@@=<<988544100/--,**)''&$$$""" !    j   " (&&-++322988?>>DCCJIINMMRRRUUUWWWYYYZZZZZZYYYXXXVVVTTTPPPNMMKJJGFFCBB?>>;::7664331//.,,,***(((&&&$$%##$""$""$""#!!#!!#!!#!!#!!" "!!!      ! '%%-++211877>==DCCJIIONNSSSVVVYYY\\\]]]]]]]]]\\\[[[YYYVVVSSSOOOMLLIHHEDDA@@=<<:99766322100/--.,,,**+))*(()'')''(&&(&&'%%'%%&$$&$$$""#!!"!!   >   &$$,**100766>==DCCJIIOOOTTTXXX[[[^^^`__`__a```___^^]]][[[XXXUUUQQQONNKJJGFFDCC@??=<<:997665443221000../--.,,-++-++,**+))*((*(((&&'%%%###!!!       %##+))1//655=<><;;;::9887666554333221001///---+++))(&&&$$#!!  z   #!!)''/--544<;;BAAIHHOOOTTTZZZ^]]baaeddgffhggihhihhhgggffeddcbba``^^^[[[XXXTTTQQQONNLKKIHHGFFDCCBAA@??>==<;;:998776554332111///--,**)''&$$#!!   G   "!!(&&.,,433;::BAAIHHONNTTTZZZ_^^cbbfeeihhjiikjjlkkkjjjiiihhgffeddbaa`__]]]ZZZWWWTTTQQQONNLKKJIIGFFEDDBAA@??>==<;;9887664332110..-++*((&$$#!!   F  ! '%%-++322:99A@@HGGONNTTTZZZ_^^cbbgffjiilkkmllmmmmmmmlllkkjiiihhfeedcca``^]]\\\YYYVVVSSSPPPNMMLKKIHHFEEDCCA@@>==<;;9886553220..-++)''&$$"  `  ! &$$-++322:99A@@HGGONNTTTZZZ`__dcchggkjjmllnnnooooooooonnnmlllkkjiihggeddcbb`__]]]ZZZWWWTTTRRRPOOMLLJIIGFFDCC@??=<<:996553220..,**)''%##!       &$$-++322:99A@@HGGONNUUUZZZ`__eddihhlkkmmmooopppqqqqqqpppooonnnmllkjjihhfeedcca``^^^[[[XXXUUURRRONNLKKIHHEDDBAA>==:99655211/--+))'%%#!!  2g   &$$-++211:99A@@HGGONNUUU[[[`__eddihhmllnnnpppqqqrrrrrrrrrqqqpppnnnnmmkjjihhgffdcca``^^^ZZZWWWTTTPPPNMMJIIFEEBAA>==:99655100.,,*((&$$"!!  y   &$$-++322:99A@@HGGONNUUU[[[a``feejiimlloooqqqrrrssstttssssssrrrpppooonmmkjjihhfeecbb`__\\\YYYUUUQQQNMMJIIFEEBAA=<<9884331//,**(&&$""  P  ! '%%-++322:99A@@IHHOOOUUU\\\a``feejiimmmppprrrssstttuuuttttttsssrrrpppnnnmlljiigffdcca``]]]YYYUUUQQQNMMJIIEDD@??<;;766211/--*((&$$"!!  !  ! '%%.,,433;::BAAIHHOOOVVV\\\baagffkjjmmmppprrrtttuuuuuuuuuuuutttrrrqqqooomllkjjhggdcca``]]]YYYUUUPPPMLLHGGCBB>==:995441//,**(&&#!!  `:   " (&&/--544<;;CBBJIIPPPWWW]]]baagffkjjnnnqqqssstttuuuvvvuuuuuutttsssqqqooomlljiigffdcc`__\\\XXXSSSOOOKJJFEEA@@<;;766211.,,*((%##!     #!!)''0..655=<==9884330..+))'%%"   '   $""*((1//766>==EDDLKKRRRYYY^]]dcchgglkkoooqqqssstttuuuuuuuuutttsssqqqooommmkjjhggdcca``\\\XXXSSSONNJIIEDD@??;::5441//,**(&&#!!  H    %##+))100877?>>GFFNMMSSSZZZ_^^dccihhmlloooqqqssstttuuuuuutttsssrrrpppnnnlkkihhfeebaa^^^YYYUUUPPPLKKGFFA@@<;;766211.,,)''$""     &$$-++322988A@@HGGONNTTT[[[`__eddihhmlloooqqqssstttttttttsssrrrpppnnnmlljiigffcbb_^^[[[VVVQQQMLLHGGCBB=<<877322/--*((%##!   \   ! (&&.,,433;::BAAIHHOOOUUU\\\a``feejiimlloooqqqrrrssssssrrrrrrpppnnnmlljiigffcbb_^^[[[WWWRRRNMMIHHCBB>==9884330..+))&$$"!! $   " )''/--544<;;CBBJIIPPPVVV\\\a``feejiimllooopppqqqrrrrrrqqqpppnnnmlljiigffcbb`__\\\WWWRRRNMMIHHDCC?>>9884330..+))&$$"  ?   #!!*((0..655=<>:995441//,**'%%"   bk   $""*((1//766>==EDDLKKRRRXXX]]]baafeeihhlkkmmmnnnnnnnnnnnnmllkjjihhfeecbb_^^[[[WWWRRRONNIHHDCC?>>:995441//,**'%%#!!      %##+))100877?>>FEELKKRRRXXX]]]baaeddhggkjjlkkmllmllmlllkkjiihggeddbaa_^^[[[VVVRRRNMMIHHDCC?>>:995441//,**'%%#!!  '   %##,**100877?>>FEELKKRRRWWW\\\a``dccgffihhkjjkjjkjjjiiihhgffdcca``^^^ZZZVVVQQQNMMIHHDCC?>>:995441//,**'%%#!!   z   %##,**100877?>>EDDLKKQQQWWW[[[_^^cbbeddgffhgghgghgggffeddcbb`__]]]YYYUUUQQQMLLHGGCBB>==9884331//,**'%%#!!     %##+))100877>==EDDKJJPPPUUUZZZ^^^a``cbbdcceddedddcccbba``^]][[[XXXTTTPPPLKKHGGCBB>==9884330..+))'%%#!! 5  %##+))1//766=<>EDDJIIONNRRRUUUWWWXXXYYYYYYXXXWWWUUURRROOOLKKHGGDCC?>>;::655211.,,*((%##!      "!!'%%,**100766=<==:99544100-++)''%##!       %##*((0..433988?>>CBBGFFJIIMLLONNNNNOOOONNNMMLKKJIIGFFDCC@??<;;8774331//,**(&&$""    ;  #!!(&&-++100655:99?>>BAAEDDHGGIHHJIIJIIIHHHGGFEEDCCA@@=<<:99655211/--+))'%%#!!   r    %##*((.,,211655:99=<<@??BAACBBDCCDCCCBBBAA@??=<<:997664331//-++*((&$$"      "!!&$$*((.,,100544877:99<;;=<<>===<<=<<;::988766433100/--+))(&&$""!      #!!&$$*((.,,1//211433655766766766655544322100/--,**)''&$$#!!       " &$$)''+)).,,0..1//1001001001///--.,,,**)''&$$$""!     ! $""&$$(&&*((+)),**,**+))+)))''(&&&$$$""!   "   ! #!!$""%##&$$&$$%##%###!!"   5          J     O       H         XA          0:         4       .         a(7tiK%,o#ql-!iC5MM|f Bq$}zz^ wC t)Ri#|!W4$yH!uO qh"P;USL}S!ArN7XylM/ 1CUfx}qdXK?2"?????????????????? ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????wslu-2.3.6/src/wslfetch.sh000066400000000000000000000435151362575655700155130ustar00rootroot00000000000000version=44 is_line=0 is_splash=0 help_short="wslfetch (--help|--version|--splash|--line)" for args; do case $args in -h|--help) help "$0" "$help_short"; exit;; -v|--version) echo "wslu v$wslu_version; wslfetch v$version"; exit;; -s|--splash) is_splash=1;; -l|--line) is_line=1;; esac done hostname=$( # Copyright (C) 2019 Patrick Wu # # 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 . # Version wslu_version=2.3.6 # Speed up script by not using unicode. LC_ALL=C LANG=C # force bash to not showing code manually. set +x # checking interopability grep enabled /proc/sys/fs/binfmt_misc/WSLInterop >/dev/null || (echo "WSL Interopability is disabled. Please enable it before using WSL."; exit 1) # variables ## color black=$(echo -e '\e[30m') red=$(echo -e '\e[31m') green=$(echo -e '\e[32m') brown=$(echo -e '\e[33m') blue=$(echo -e '\e[34m') purple=$(echo -e '\e[35m') cyan=$(echo -e '\e[36m') yellow=$(echo -e '\e[1;33m') white=$(echo -e '\e[1;37m') dark_gray=$(echo -e '\e[1;30m') light_red=$(echo -e '\e[1;31m') light_green=$(echo -e '\e[1;32m') light_blue=$(echo -e '\e[1;34m') light_purple=$(echo -e '\e[1;35m') light_cyan=$(echo -e '\e[1;36m') light_gray=$(echo -e '\e[37m') orange=$(echo -e '\e[38;5;202m') light_orange=$(echo -e '\e[38;5;214m') bold=$(echo -e '\033[1m') reset=$(echo -e '\033(B\033[m') ## indicator info="${green}[info]${reset}" input_info="${cyan}[input]${reset}" error="${red}[error]${reset}" warn="${orange}[warn]${reset}" debug="${orange}${bold}[debug]${reset}" ## Windows build number constant readonly BN_SPR_CREATORS=15063 #1703, Redstone 2, Creators Update readonly BN_FAL_CREATORS=16299 #1709, Redstone 3, Fall Creators Update readonly BN_APR_EIGHTEEN=17134 #1803, Redstone 4, April 2018 Update readonly BN_OCT_EIGHTEEN=17763 #1809, Redstone 5, October 2018 Update readonly BN_MAY_NINETEEN=18362 #1903, 19H1, May 2019 Update # functions function help { app_name=$(basename "$1") echo -e "$app_name - Part of wslu, a collection of utilities for Windows 10 Windows Subsystem for Linux Usage: $2 For more help for $app_name, visit the following site: https://github.com/wslutilities/wslu/wiki/$app_name" } function double_dash_p { echo "${@//\\/\\\\}" } function interop_prefix { if [ -f /etc/wsl.conf ]; then tmp=$(awk -F '=' '/root/ {print $2}' /etc/wsl.conf | awk '{$1=$1;print}') if [ "$tmp" == "" ]; then echo "/mnt/" else echo "$tmp" fi else echo "/mnt/" fi } function chcp_com { "$(interop_prefix)"c/Windows/System32/chcp.com "$@" >/dev/null } function winps_exec { chcp_com $(cat ~/.config/wslu/oemcp) "$(interop_prefix)"c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe -NoProfile -NonInteractive -Command "$@" chcp_com 65001 } function baseexec_gen { wslutmpbuild=$(reg.exe query "HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion" /v CurrentBuild | tail -n 2 | head -n 1 | sed -e 's|\r||g') wslutmpbuild=${wslutmpbuild##* } wslutmpbuild="$(( $wslutmpbuild + 0 ))" if [ $wslutmpbuild -ge $BN_MAY_NINETEEN ]; then # The environment variable only available in 19H1 or later. wslu_distro_regpath=$("$(interop_prefix)"c/Windows/System32/reg.exe query "HKCU\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Lxss" /s /f DistributionName 2>&1 | grep -B1 -e "$WSL_DISTRO_NAME" | head -n1 | sed -e 's|\r||g') if $(interop_prefix)c/Windows/System32/reg.exe query "$wslu_distro_regpath" /v PackageFamilyName &>/dev/null; then # if it is a store distro wslu_distro_packagename=$($(interop_prefix)c/Windows/System32/reg.exe query "$wslu_distro_regpath" /v PackageFamilyName | tail -n 2 | head -n 1 | sed -e 's|\r||g') wslu_distro_packagename=${wslu_distro_packagename##* } wslu_base_exec_folder_path="$(wslpath "$(double_dash_p $(winps_exec "Write-Output \$Env:LOCALAPPDATA" | tr -d "\r"))\\Microsoft\\WindowsApps\\$wslu_distro_packagename")" wslpath -w "$(find "$wslu_base_exec_folder_path" -name "*.exe")" > ~/.config/wslu/baseexec else # fallback if it is imported repository or other type echo "C:\\Windows\\System32\\wsl.exe" > ~/.config/wslu/baseexec fi else # older version fallback. echo "C:\\Windows\\System32\\wsl.exe" > ~/.config/wslu/baseexec fi } # first run, saving some information if [ ! -d ~/.config/wslu ]; then mkdir -p ~/.config/wslu fi # generate oem codepage if [ ! -f ~/.config/wslu/oemcp ]; then "$(interop_prefix)"c/Windows/System32/reg.exe query "HKLM\\SYSTEM\\CurrentControlSet\\Control\\Nls\\CodePage" /v OEMCP 2>&1 | sed -n 3p | sed -e 's|\r||g' | grep -o '[[:digit:]]*' > ~/.config/wslu/oemcp fi # generate base exe locaiton if [ ! -f ~/.config/wslu/baseexec ]; then # if it is not generated baseexec_gen elif grep -q "/" ~/.config/wslu/baseexec; then # if baseexec is using the old linux style, regenerate baseexec_gen elif ! which "$(cat ~/.config/wslu/baseexec)" &>/dev/null; then # if baseexec cannnot be executed, regenerate rm ~/.config/wslu/baseexec baseexec_gen fi # when --debug, debug. if [ "$1" == "--debug" ]; then echo "${debug}Debug Mode Enabled." shift set -x fi # basic distro detection distro="$(head -n1 /etc/os-release | sed -e 's/NAME=\"//g')" case $distro in *Pengwin*) distro="pengwin";; *WLinux*) distro="wlinux";; Ubuntu*) distro="ubuntu";; *Debian*) distro="debian";; *Kali*) distro="kali";; openSUSE*) distro="opensuse";; SLES*) distro="sles";; Alpine*) distro="alpine";; Arch*) distro="archlinux";; *Oracle*) distro="oracle";; Scientific*) distro="scilinux";; *Fedora*) distro="fedora";; *Generic*) [ "fedora" == "$(grep -e "LIKE=" /etc/os-release | sed -e 's/ID_LIKE=//g')" ] && distro="oldfedora" || distro="unknown";; *) distro="unknown";; esac wslu-2.3.6/src/wslupath.sh000066400000000000000000000043031362575655700155330ustar00rootroot00000000000000version="09" ########## CAUTION ########### ## wslupath is a legacy cli for backward compatbility. ## Use it unless it is necessary. style=1 reg_path=0 set_path="" help_short="wslupath (-dOr) [-D|-A|-T|-S|-W|-s|-su|-H|-P|...NAME...]\nwslupath (-h|-v|-R)" function path_double_dash { new_path="${*//\\/\\\\}" echo "$new_path" } function general_converter { target="$*" if [[ $target =~ ^[A-Z]:(\\[^:\\]+)*(\\)?$ ]]; then p=$(wslpath -u "${target}") elif [[ $target =~ ^$(interop_prefix)[A-Za-z](/[^/]+)*(/)?$ ]]; then p=$(wslpath -w "${target}") else echo "${error} No proper path form detected: ""$*""." exit 20 fi echo "$p" } function style_path { case $style in 1) p="$(general_converter "$@")";; 2) p="$*";; 3) p="$(path_double_dash "$@")";; esac echo "$p" } if [[ $# -eq 0 ]]; then echo -e "$help_short" exit 20 else for args; do case $args in #styles -r|--reg-data) reg_path=1;; -O|--original) style=2;; -d|--doubledash-dir) style=3;; ## system location -D|--desktop) set_path="$(style_path "$(wslvar -l 'Desktop')")" break;; -A|--appdata) set_path="$(style_path "$(wslvar -s APPDATA)")" break;; -T|--temp) set_path="$(style_path "$(wslvar -s TMP)")" break;; -S|--sysdir) set_path="$(style_path "$(wslvar -s windir)"\\System32)" break;; -W|--windir) set_path="$(style_path "$(wslvar -s windir)")" break;; -s|--start-menu) set_path="$(style_path "$(wslvar -l 'Start Menu')")" break;; -su|--startup) set_path="$(style_path "$(wslvar -l 'Startup')")" break;; -H|--home) set_path="$(style_path "$(wslvar HOMEDRIVE)""$(wslvar HOMEPATH)")" break;; -P|--program-files) set_path="$(style_path "$(wslvar -s ProgramFiles)")" break;; -h|--help) help "$0" "$help_short"; exit;; -v|--version) echo "wslu v$wslu_version; wslupath v$version"; exit;; -R|--avail-reg) echo "Available registery input:" wslvar -L exit;; *) if [[ "$reg_path" == "1" ]]; then set_path="$(style_path "$(wslvar -l "$args")")" else set_path="$(style_path "$args")" fi break;; esac done fi if [[ "$set_path" == "" ]]; then echo "${error}No path input. Aborted." exit 21 else echo "$set_path" fi wslu-2.3.6/src/wslusc.sh000066400000000000000000000133531362575655700152110ustar00rootroot00000000000000version="37" cname="" iconpath="" is_gui=0 is_interactive=0 customname="" customenv="" help_short="wslusc (--env [PATH]|--name [NAME]|--icon [ICO FILE]|--gui|--interactive|--help|--version) [COMMAND]" while [ "$1" != "" ]; do case "$1" in -I|--interactive)is_interactive=1;shift;; -i|--icon)shift;iconpath=$1;shift;; -n|--name)shift;customname=$1;shift;; -e|--env)shift;customenv=$1;shift;; -g|--gui)is_gui=1;shift;; -h|--help) help "$0" "$help_short"; exit;; -v|--version) echo "wslu v$wslu_version; wslusc v$version"; exit;; *) cname="$*";break;; esac done # interactive mode if [[ $is_interactive -eq 1 ]]; then echo "${info} Welcome to wslu shortcut creator interactive mode." read -r -e -i "$cname" -p "${input_info} Command to execute: " input cname="${input:-$cname}" read -r -e -i "$customname" -p "${input_info} Shortcut name [optional, ENTER for default]: " input customname="${input:-$customname}" read -r -e -i "$is_gui" -p "${input_info} Is it a GUI application? [if yes, input 1; if no, input 0]: " input is_gui=$(( ${input:-$is_gui} + 0 )) read -r -e -i "$customenv" -p "${input_info} Pre-executed command [optional, ENTER for default]: " input customenv="${input:-$customenv}" read -r -e -i "$iconpath" -p "${input_info} Custom icon Linux path (support ico/png/xpm/svg) [optional, ENTER for default]: " input iconpath="${input:-$iconpath}" fi if [[ "$cname" != "" ]]; then tpath=$(double_dash_p "$(wslvar -s TMP)") # Windows Temp, Win Double Sty. dpath=$(wslpath "$(wslvar -l Desktop)") # Windows Desktop, Win Sty. script_location="$(wslpath "$(wslvar -s USERPROFILE)")/wslu" # Windows wslu, Linux WSL Sty. localfile_path="/usr/share/wslu" # WSL wslu source file location, Linux Sty. script_location_win="$(double_dash_p "$(wslvar -s USERPROFILE)")\\wslu" # Windows wslu, Win Double Sty. distro_location_win="$(double_dash_p "$(cat ~/.config/wslu/baseexec)")" # Distro Location, Win Double Sty. # change param according to the exec. distro_param="run" if [[ "$distro_location_win" == *wsl.exe ]]; then distro_param="-e" fi # handling no name given case new_cname=$(basename "$(echo "$cname" | awk '{print $1}')") # handling name given case if [[ "$customname" != "" ]]; then new_cname=$customname fi # Check default icon location if [[ ! -f $script_location/wsl.ico ]]; then echo "${warn} Default wslusc icon \"wsl.ico\" not found in Windows directory. Copying right now..." [[ -d $script_location ]] || mkdir "$script_location" if [[ -f $localfile_path/wsl.ico ]]; then cp "$localfile_path"/wsl.ico "$script_location" echo "${info} Default wslusc icon \"wsl.ico\" copied. Located at \"$script_location\"." else echo "${error} wsl.ico not found. Failed to copy." exit 30 fi fi # Check presence of runHidden.vbs if [[ ! -f $script_location/runHidden.vbs ]]; then echo "${warn} runHidden.vbs not found in Windows directory. Copying right now..." [[ -d $script_location ]] || mkdir "$script_location" if [[ -f $localfile_path/runHidden.vbs ]]; then cp "$localfile_path"/runHidden.vbs "$script_location" echo "${info} runHidden.vbs copied. Located at \"$script_location\"." else echo "${error} runHidden.vbs not found. Failed to copy." exit 30 fi fi # handling icon if [[ "$iconpath" != "" ]]; then icon_filename="$(basename "$iconpath")" ext="${iconpath##*.}" if [[ ! -f $iconpath ]]; then iconpath="$(double_dash_p "$(wslvar -s USERPROFILE)")\\wslu\\wsl.ico" echo "${warn} Icon not found. Reset to default icon..." else echo "${info} You choose to use custom icon: $iconpath. Processing..." cp "$iconpath" "$script_location" if [[ "$ext" != "ico" ]]; then if [[ "$ext" == "svg" ]]; then echo "${info} Converting $ext icon to ico..." convert "$script_location/$icon_filename" -trim -background none -resize 256X256 -define 'icon:auto-resize=16,24,32,64,128,256' "$script_location/${icon_filename%.$ext}.ico" rm "$script_location/$icon_filename" icon_filename="${icon_filename%.$ext}.ico" elif [[ "$ext" == "png" ]] || [[ "$ext" == "xpm" ]]; then echo "${info} Converting $ext icon to ico..." convert "$script_location/$icon_filename" -resize 256X256 "$script_location/${icon_filename%.$ext}.ico" rm "$script_location/$icon_filename" icon_filename="${icon_filename%.$ext}.ico" else echo "${error} wslusc only support creating shortcut using .png/.svg/.ico icon. Aborted." exit 22 fi fi iconpath="$script_location_win\\$icon_filename" fi else iconpath="$(double_dash_p "$(wslvar -s USERPROFILE)")\\wslu\\wsl.ico" fi # handling custom vairable command if [[ "$customenv" != "" ]]; then echo "${info} the following custom variable/command will be applied: $customenv" fi if [[ "$is_gui" == "1" ]]; then winps_exec "Import-Module 'C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules\\Microsoft.PowerShell.Utility\\Microsoft.PowerShell.Utility.psd1';\$s=(New-Object -COM WScript.Shell).CreateShortcut('$tpath\\$new_cname.lnk');\$s.TargetPath='C:\\Windows\\System32\\wscript.exe';\$s.Arguments='$script_location_win\\runHidden.vbs \"$distro_location_win\" $distro_param \"cd ~; export DISPLAY=:0; $customenv $cname\"';\$s.IconLocation='$iconpath';\$s.Save();" else winps_exec "Import-Module 'C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules\\Microsoft.PowerShell.Utility\\Microsoft.PowerShell.Utility.psd1';\$s=(New-Object -COM WScript.Shell).CreateShortcut('$tpath\\$new_cname.lnk');\$s.TargetPath='\"$distro_location_win\"';\$s.Arguments='$distro_param \"cd ~; $customenv $cname\"';\$s.IconLocation='$iconpath';\$s.Save();" fi tpath="$(wslpath "$(wslvar -s TMP)")/$new_cname.lnk" mv "$tpath" "$dpath" echo "${info} Create shortcut ${new_cname}.lnk successful" else echo "${error}No input, aborting" exit 21 fi wslu-2.3.6/src/wslvar.sh000066400000000000000000000023511362575655700152030ustar00rootroot00000000000000version="03" var_type=1 help_short="wslvar (--sys|--shell) [NAME]\nwslvar (--help|--version|--getsys|--getshell)" function call_shell { winps_exec "(Get-ItemProperty 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders').'$*'" | cat } function view_shell { winps_exec "Get-ItemProperty 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders'"| tail -n +3 | head -n -10 } function call_sys { winps_exec "Write-Output \$Env:$*" | cat } function view_sys { winps_exec "Get-ChildItem env:" | tail -n +2 | head -n -2 } function cl_destoryer { echo "$@" | tr -d "\r" } function caller { if [ "$*" != "" ]; then case $var_type in 1) p="$(cl_destoryer "$(call_sys "$@")")";; 2) p="$(cl_destoryer "$(call_shell "$@")")";; *) echo "${error}Invalid variable type. Aborted."; exit 22;; esac echo "$p" else echo "${error} No Input. Aborted." exit 21 fi } while [ "$1" != "" ]; do case "$1" in -s|--sys) var_type=1; shift;; -l|--shell) var_type=2; shift;; -S|--getsys) view_sys; exit;; -L|--getshell) view_shell; exit;; -h|--help) help "$0" "$help_short"; exit;; -v|--version) echo "wslu v$wslu_version; wslvar v$version"; exit;; *) caller "$@"; exit;; esac done exit 21 wslu-2.3.6/src/wslview.sh000066400000000000000000000025121362575655700153640ustar00rootroot00000000000000version="06" lname="" help_short="wslview (--register|--unregister|--help|--version) [LINK]" function del_reg_alt { if [ "$distro" == "archlinux" ] || [ "$distro" == "alpine" ]; then echo "${error}Unsupported action for this distro. Aborted. " exit 34 else sudo update-alternatives --remove x-www-browser /usr/bin/wslview sudo update-alternatives --remove www-browser /usr/bin/wslview exit fi } function add_reg_alt { if [ "$distro" == "archlinux" ] || [ "$distro" == "alpine" ]; then echo "${error}Unsupported action for this distro. Aborted. " exit 34 else sudo update-alternatives --install /usr/bin/x-www-browser x-www-browser /usr/bin/wslview 1 sudo update-alternatives --install /usr/bin/www-browser www-browser /usr/bin/wslview 1 exit fi } for args; do case $args in -r|--register) add_reg_alt;; -u|--unregister) del_reg_alt;; -h|--help) help "$0" "$help_short"; exit;; -v|--version) echo "wslu v$wslu_version; wslview v$version"; exit;; *) lname="$lname$args";; esac done if [[ "$lname" != "" ]]; then #if [[ "$lname" =~ file:///* ]]; then # if [[ "$WSL_DISTRO_NAME" != "" ]]; then # echo "do something" # else # echo "${error} This protocol is not supported before version 1903." # exit 34 # fi #else winps_exec Start "\"$lname\"" #fi else echo "${error}No input, aborting" exit 21 fi wslu-2.3.6/tests/000077500000000000000000000000001362575655700137035ustar00rootroot00000000000000wslu-2.3.6/tests/header.bats000066400000000000000000000014061362575655700160070ustar00rootroot00000000000000#!/usr/bin/env bats #header testing @test "Header - Colortesting 1" { color="$(. src/wslu-header --silent;echo -e $black | cat -A)" [ "$color" = "^[[30m$" ] } @test "Header - Colortesting 2" { color="$(. src/wslu-header;echo -e $light_red | cat -A)" [ "$color" = "^[[1;31m$" ] } @test "Header - colortesting 3" { color="$(. src/wslu-header;echo -e $orange | cat -A)" [ "$color" = "^[[38;5;202m$" ] } @test "Header - Format 1" { format="$(. src/wslu-header;echo -e $bold | cat -A)" [ "$format" = "^[[1m$" ] } @test "Header - Format 2" { format="$(. src/wslu-header;echo -e $reset | cat -A)" [ "$format" = "^[(B^[[m$" ] } @test "Header - Indicator" { format="$(. src/wslu-header;echo -e $info | cat -A)" [ "$format" = "^[[32m[info]^[(B^[[m$" ] } wslu-2.3.6/tests/wslfetch.bats000066400000000000000000000011451362575655700163760ustar00rootroot00000000000000#!/usr/bin/env bats #wslsys testing @test "wslfetch - No parameter" { run out/wslfetch [ "$status" -eq 0 ] } @test "wslfetch - Help" { run out/wslfetch --help [ "${lines[0]}" = "wslfetch - Part of wslu, a collection of utilities for Windows 10 Windows Subsystem for Linux" ] [ "${lines[1]}" = "Usage: wslfetch (--help|--version|--splash|--line)" ] } @test "wslfetch - Help - Alt." { run out/wslfetch -h [ "${lines[0]}" = "wslfetch - Part of wslu, a collection of utilities for Windows 10 Windows Subsystem for Linux" ] [ "${lines[1]}" = "Usage: wslfetch (--help|--version|--splash|--line)" ] } wslu-2.3.6/tests/wslsys.bats000066400000000000000000000011231362575655700161170ustar00rootroot00000000000000#!/usr/bin/env bats #wslsys testing @test "wslsys - No parameter" { run out/wslsys [ "$status" -eq 0 ] } @test "wslsys - Help" { run out/wslsys --help [ "${lines[0]}" = "wslsys - Part of wslu, a collection of utilities for Windows 10 Windows Subsystem for Linux" ] [ "${lines[1]}" = "Usage: wslsys (-h|-v|-I|-b|-B|-fB|-U|-R|-K|-P) -s" ] } @test "wslsys - Help - Alt." { run out/wslsys -h [ "${lines[0]}" = "wslsys - Part of wslu, a collection of utilities for Windows 10 Windows Subsystem for Linux" ] [ "${lines[1]}" = "Usage: wslsys (-h|-v|-I|-b|-B|-fB|-U|-R|-K|-P) -s" ] } wslu-2.3.6/tests/wslupath.bats000066400000000000000000000036751362575655700164400ustar00rootroot00000000000000#!/usr/bin/env bats #wslupath testing @test "wslupath - No parameter" { run out/wslupath [ "${lines[0]}" = "wslupath (-dOr) [-D|-A|-T|-S|-W|-s|-su|-H|-P|...NAME...]" ] [ "${lines[1]}" = "wslupath (-h|-v|-R)" ] [ "$status" -eq 20 ] } @test "wslupath - Help" { run out/wslupath --help [ "${lines[0]}" = "wslupath - Part of wslu, a collection of utilities for Windows 10 Windows Subsystem for Linux" ] [ "${lines[1]}" = "Usage: wslupath (-dOr) [-D|-A|-T|-S|-W|-s|-su|-H|-P|...NAME...]" ] [ "${lines[2]}" = "wslupath (-h|-v|-R)" ] } @test "wslupath - Help - Alt." { run out/wslupath -h [ "${lines[0]}" = "wslupath - Part of wslu, a collection of utilities for Windows 10 Windows Subsystem for Linux" ] [ "${lines[1]}" = "Usage: wslupath (-dOr) [-D|-A|-T|-S|-W|-s|-su|-H|-P|...NAME...]" ] [ "${lines[2]}" = "wslupath (-h|-v|-R)" ] } @test "wslupath - Available Registery" { run out/wslupath --avail-reg [ "${lines[0]}" = "Available registery input:" ] } @test "wslupath - Available Registery - Alt." { run out/wslupath -R [ "${lines[0]}" = "Available registery input:" ] } @test "wslupath - No parameter - Windows Double DirPath" { run out/wslupath "C:\\Windows" [ "${lines[0]}" = "/mnt/c/Windows" ] } @test "wslupath - No parameter - Windows DirPath" { run out/wslupath "C:\Windows" [ "${lines[0]}" = "/mnt/c/Windows" ] } @test "wslupath - No parameter - Linux DirPath" { run out/wslupath "/mnt/c/Windows" [ "${lines[0]}" = "C:\\Windows" ] } @test "wslupath - /w DoubleDash - Windows Double DirPath" { run out/wslupath -d "C:\\Windows" [ "${lines[0]}" = "C:\\\\Windows" ] } @test "wslupath - /w DoubleDash - Windows DirPath" { run out/wslupath -d "C:\Windows" [ "${lines[0]}" = "C:\\\\Windows" ] } @test "wslupath - /w DoubleDash - Linux DirPath" { run out/wslupath -d "/mnt/c/Windows" [ "${lines[0]}" = "/mnt/c/Windows" ] } @test "wslupath - /w parameter - No Input" { run out/wslupath -d [ "${status}" -eq 21 ] } wslu-2.3.6/tests/wslusc.bats000066400000000000000000000020211362575655700160710ustar00rootroot00000000000000#!/usr/bin/env bats #wslusc testing teardown() { echo "removal for temporary shortcuts" rm -rf "`out/wslupath -D`/test1.lnk" rm -rf "`out/wslupath -D`/test2.lnk" } @test "wslusc - No parameter" { run out/wslusc [ "$status" -eq 21 ] } @test "wslusc - Help" { run out/wslusc --help [ "${lines[0]}" = "wslusc - Part of wslu, a collection of utilities for Windows 10 Windows Subsystem for Linux" ] [ "${lines[1]}" = "Usage: wslusc (--env [PATH]|--name [NAME]|--icon [ICO FILE]|--gui|--interactive|--help|--version) [COMMAND]" ] } @test "wslusc - Help - Alt." { run out/wslusc -h [ "${lines[0]}" = "wslusc - Part of wslu, a collection of utilities for Windows 10 Windows Subsystem for Linux" ] [ "${lines[1]}" = "Usage: wslusc (--env [PATH]|--name [NAME]|--icon [ICO FILE]|--gui|--interactive|--help|--version) [COMMAND]" ] } @test "wslusc - without GUI" { run out/wslusc test1 [ -f "`out/wslupath -D`/test1.lnk" ] } @test "wslusc - with GUI" { run out/wslusc -g test2 [ -f "`out/wslupath -D`/test2.lnk" ] } wslu-2.3.6/tests/wslvar.bats000066400000000000000000000016541362575655700161020ustar00rootroot00000000000000#!/usr/bin/env bats #wslvar testing @test "wslvar - No parameter" { run out/wslvar [ "$status" -eq 21 ] } @test "wslvar - Help" { run out/wslvar --help [ "${lines[0]}" = "wslvar - Part of wslu, a collection of utilities for Windows 10 Windows Subsystem for Linux" ] [ "${lines[1]}" = "Usage: wslvar (--sys|--shell) [NAME]" ] [ "${lines[2]}" = "wslvar (--help|--version|--getsys|--getshell)" ] } @test "wslvar - Help - Alt." { run out/wslvar -h [ "${lines[0]}" = "wslvar - Part of wslu, a collection of utilities for Windows 10 Windows Subsystem for Linux" ] [ "${lines[1]}" = "Usage: wslvar (--sys|--shell) [NAME]" ] [ "${lines[2]}" = "wslvar (--help|--version|--getsys|--getshell)" ] } @test "wslvar - System Variables" { run out/wslvar -s ProgramData [ "${lines[0]}" = "C:\ProgramData" ] } @test "wslvar - /w parameter - No Input" { run out/wslvar -s [ "${status}" -eq 21 ] } wslu-2.3.6/tests/wslview.bats000066400000000000000000000011731362575655700162600ustar00rootroot00000000000000#!/usr/bin/env bats #wslview testing @test "wslview - No parameter" { run out/wslview [ "$status" -eq 21 ] } @test "wslview - Help" { run out/wslview --help [ "${lines[0]}" = "wslview - Part of wslu, a collection of utilities for Windows 10 Windows Subsystem for Linux" ] [ "${lines[1]}" = "Usage: wslview (--register|--unregister|--help|--version) [LINK]" ] } @test "wslview - Help - Alt." { run out/wslview -h [ "${lines[0]}" = "wslview - Part of wslu, a collection of utilities for Windows 10 Windows Subsystem for Linux" ] [ "${lines[1]}" = "Usage: wslview (--register|--unregister|--help|--version) [LINK]" ] }