pax_global_header00006660000000000000000000000064124636772570014535gustar00rootroot0000000000000052 comment=9546c0a5e3bcbc8e707a08ed83d9545a30c3c568 aseprite_1.0.9/000077500000000000000000000000001246367725700134425ustar00rootroot00000000000000aseprite_1.0.9/CMakeLists.txt000066400000000000000000000236401246367725700162070ustar00rootroot00000000000000# Aseprite # Copyright (C) 2001-2014 David Capello # # Parts of this file come from the Allegro 4.4 CMakeLists.txt # CMake setup cmake_minimum_required(VERSION 2.6 FATAL_ERROR) if(COMMAND cmake_policy) # CMP0003: Libraries linked via full path no longer produce linker search paths. #cmake_policy(SET CMP0003 NEW) if(CMAKE_MAJOR_VERSION GREATER 2) # CMP0046: Old behavior to silently ignore non-existent dependencies. cmake_policy(SET CMP0046 OLD) endif(CMAKE_MAJOR_VERSION GREATER 2) endif(COMMAND cmake_policy) if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING "Choose the type of build, options are: None Debug Release RelWithDebInfo Profile." FORCE) endif() # Restrict configuration types to the selected build type. # Note: This needs to be done before the project command set(CMAKE_CONFIGURATION_TYPES "${CMAKE_BUILD_TYPE}" CACHE INTERNAL "internal") # Aseprite project project(aseprite C CXX) ###################################################################### # Options (these can be specified in cmake command line or modifying # CMakeCache.txt) option(USE_STATIC_LIBC "Use static version of C and C++ runtimes" off) option(USE_SHARED_CURL "Use your installed copy of curl" off) option(USE_SHARED_GIFLIB "Use your installed copy of giflib" off) option(USE_SHARED_JPEGLIB "Use your installed copy of jpeglib" off) option(USE_SHARED_ZLIB "Use your installed copy of zlib" off) option(USE_SHARED_LIBPNG "Use your installed copy of libpng" off) option(USE_SHARED_LIBLOADPNG "Use your installed copy of libloadpng" off) option(USE_SHARED_TINYXML "Use your installed copy of tinyxml" off) option(USE_SHARED_GTEST "Use your installed copy of gtest" off) option(USE_SHARED_PIXMAN "Use your installed copy of pixman" off) option(USE_SHARED_ALLEGRO4 "Use shared Allegro 4 library (without resize support)" off) option(ENABLE_MEMLEAK "Enable memory-leaks detector (only for developers)" off) option(ENABLE_UPDATER "Enable automatic check for updates" on) option(ENABLE_WEBSERVER "Enable support to run a webserver (for HTML5 gamedev)" off) option(ENABLE_TRIAL_MODE "Compile the trial version" off) option(FULLSCREEN_PLATFORM "Enable fullscreen by default" off) set(CUSTOM_WEBSITE_URL "" CACHE STRING "Enable custom local webserver to check updates") ###################################################################### # Profile build type list(APPEND CMAKE_BUILD_TYPES Profile) mark_as_advanced( CMAKE_C_FLAGS_PROFILE CMAKE_CXX_FLAGS_PROFILE CMAKE_EXE_LINKER_FLAGS_PROFILE ) if(CMAKE_COMPILER_IS_GNUCC) set(CMAKE_C_FLAGS_PROFILE "-pg" CACHE STRING "Profiling C flags") set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_C_FLAGS_PROFILE}" CACHE STRING "Profiling C++ flags") set(CMAKE_EXE_LINKER_FLAGS_PROFILE "-pg" CACHE STRING "Profiling linker flags") endif() if(MSVC) set(CMAKE_C_FLAGS_PROFILE "/MD /Zi /Ox /Gd /D NDEBUG" CACHE STRING "Profiling C flags") set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_C_FLAGS_PROFILE}" CACHE STRING "Profiling C++ flags") set(CMAKE_EXE_LINKER_FLAGS_PROFILE "/PROFILE /DEBUG" CACHE STRING "Profiling linker flags") endif() ###################################################################### # Directories set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib") set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib") set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin") # We need to specify the output for each configuration to make it work # on Visual Studio solutions. set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_DEBUG "${CMAKE_BINARY_DIR}/lib") set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG "${CMAKE_BINARY_DIR}/lib") set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG "${CMAKE_BINARY_DIR}/bin") set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELWITHDEBINFO "${CMAKE_BINARY_DIR}/lib") set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELWITHDEBINFO "${CMAKE_BINARY_DIR}/lib") set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELWITHDEBINFO "${CMAKE_BINARY_DIR}/bin") set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELEASE "${CMAKE_BINARY_DIR}/lib") set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE "${CMAKE_BINARY_DIR}/lib") set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE "${CMAKE_BINARY_DIR}/bin") set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_PROFILE "${CMAKE_BINARY_DIR}/lib") set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_PROFILE "${CMAKE_BINARY_DIR}/lib") set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_PROFILE "${CMAKE_BINARY_DIR}/bin") set(CURL_DIR ${CMAKE_SOURCE_DIR}/third_party/curl) set(GIFLIB_DIR ${CMAKE_SOURCE_DIR}/third_party/giflib) set(LIBFREETYPE_DIR ${CMAKE_SOURCE_DIR}/third_party/freetype) set(LIBJPEG_DIR ${CMAKE_SOURCE_DIR}/third_party/jpeg) set(LIBPNG_DIR ${CMAKE_SOURCE_DIR}/third_party/libpng) set(LOADPNG_DIR ${CMAKE_SOURCE_DIR}/third_party/loadpng) set(MONGOOSE_DIR ${CMAKE_SOURCE_DIR}/third_party/mongoose) set(PIXMAN_DIR ${CMAKE_SOURCE_DIR}/third_party/pixman) set(TINYXML_DIR ${CMAKE_SOURCE_DIR}/third_party/tinyxml) set(ZLIB_DIR ${CMAKE_SOURCE_DIR}/third_party/zlib) # Allegro header files if(NOT USE_SHARED_ALLEGRO4) include_directories(${CMAKE_SOURCE_DIR}/src/allegro/include) include_directories(${CMAKE_BINARY_DIR}/include) endif() # Zlib generated zconf.h file include_directories(${CMAKE_BINARY_DIR}/third_party/zlib) # We need private libpng header files so it doesn't matter if we use # the shared version of libpng or not, we need to find header files in # "third_party/libpng"" directory. include_directories(${LIBPNG_DIR}) # Search in the "cmake" directory for additional CMake modules. list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake) # Put libraries into "lib". set(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/lib) ###################################################################### # Common definitions to compile all sources # Do not use MMX optimizations in PNG code add_definitions(-DPNG_NO_MMX_CODE) # Static Allegro (the code of Allegro library is embedded). add_definitions(-DALLEGRO_STATICLINK) # Debug C/C++ flags if(CMAKE_BUILD_TYPE STREQUAL Debug) add_definitions(-DDEBUGMODE -D_DEBUG) else() add_definitions(-DNDEBUG) endif() if(ENABLE_MEMLEAK) add_definitions(-DMEMLEAK) endif() # Fix to compile gtest with VC11 (2012) if(NOT USE_SHARED_GTEST) if (MSVC_VERSION EQUAL 1700) add_definitions(-D_VARIADIC_MAX=10) endif() endif() ###################################################################### # Platform specific stuff set(PLATFORM_LIBS) # -- Unix -- if(UNIX AND NOT APPLE AND NOT BEOS) # Pthreads find_package(Threads) if(NOT CMAKE_USE_PTHREADS_INIT) message(FATAL_ERROR "Unix port requires pthreads support.") endif() list(APPEND PLATFORM_LIBS m ${CMAKE_THREAD_LIBS_INIT}) # X11 find_package(X11) if(NOT X11_FOUND) message(FATAL_ERROR "Unix port requires X11 (e.g. libx11-dev).") endif() include_directories(SYSTEM ${X11_INCLUDE_DIR}) list(APPEND PLATFORM_LIBS ${X11_LIBRARIES}) if(X11_XShm_FOUND) list(APPEND PLATFORM_LIBS ${X11_Xext_LIB}) endif() if(X11_Xcursor_FOUND) list(APPEND PLATFORM_LIBS ${X11_Xcursor_LIB}) endif() if(X11_Xpm_FOUND) list(APPEND PLATFORM_LIBS ${X11_Xpm_LIB}) endif() find_library(X11_Xxf86vm_LIB Xxf86vm ${X11_LIB_SEARCH_PATH}) mark_as_advanced(X11_Xxf86vm_LIB) if(X11_xf86vmode_FOUND) list(APPEND PLATFORM_LIBS ${X11_Xxf86vm_LIB}) endif() check_library_exists(X11 XOpenIM "${X11_LIB_SEARCH_PATH}" XIM_FOUND) check_library_exists(Xxf86dga XDGAQueryExtension "${X11_LIB_SEARCH_PATH}" XDGA_FOUND) if(XDGA_FOUND) list(APPEND PLATFORM_LIBS Xxf86dga ${X11_LIBRARIES}) endif() endif() # -- Windows -- if(WIN32) find_package(DXGuid) if(NOT DXGUID_FOUND) if(MSVC) message(FATAL_ERROR "DirectX required for Windows port. You might need to add DirectX include and lib directories to your INCLUDE and LIB environment variables.") elseif(MINGW) message(FATAL_ERROR "DirectX required for Windows port. Get it from the Allegro web site (dx80_mgw.zip).") else() message(FATAL_ERROR "DirectX required for Windows port.") endif() endif() include_directories(SYSTEM ${DXGUID_INCLUDE_DIR} ) list(APPEND PLATFORM_LIBS kernel32 user32 gdi32 comdlg32 ole32 ${DXGUID_LIBRARIES} winmm shlwapi psapi wininet comctl32 dbghelp ) # Windows XP is the minimum supported platform. add_definitions(-D_WIN32_WINNT=0x0501 -DWINVER=0x0501) # We need Unicode support add_definitions(-DUNICODE -D_UNICODE) endif(WIN32) # -- Mac OS X -- if(APPLE) find_library(COCOA_LIBRARY Cocoa) find_library(CARBON_LIBRARY Carbon) find_library(IOKIT_LIBRARY IOKit) find_library(COREAUDIO_LIBRARY CoreAudio) find_library(AUDIOUNIT_LIBRARY AudioUnit) find_library(AUDIOTOOLBOX_LIBRARY AudioToolbox) find_package(QuickTime) mark_as_advanced(COCOA_LIBRARY CARBON_LIBRARY IOKIT_LIBRARY) mark_as_advanced(COREAUDIO_LIBRARY AUDIOUNIT_LIBRARY AUDIOTOOLBOX_LIBRARY) mark_as_advanced(QUICKTIME_INCLUDE_DIR QUICKTIME_LIBRARY) list(APPEND PLATFORM_LIBS ${COCOA_LIBRARY} ${CARBON_LIBRARY} ${IOKIT_LIBRARY} ${COREAUDIO_LIBRARY} ${AUDIOUNIT_LIBRARY} ${AUDIOTOOLBOX_LIBRARY} ${QUICKTIME_LIBRARY} ) # Hack to deal with Mac OS X 10.6. NSQuickDrawView is not defined by # NSQuickDrawView.h when compiling in 64-bit mode, and 64-bit mode is the # default when compiling on Snow Leopard. if(${CMAKE_SYSTEM_PROCESSOR} STREQUAL i386) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -arch i386") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -arch i386") endif() # The Mac port simply uses too many deprecated things. if(COMPILER_GCC) set(WFLAGS "${WFLAGS} -Wno-deprecated-declarations") endif(COMPILER_GCC) endif(APPLE) ###################################################################### # Main ASE targets add_subdirectory(src) ###################################################################### # Third party libraries add_subdirectory(third_party) aseprite_1.0.9/CONTRIBUTING.md000066400000000000000000000077151246367725700157050ustar00rootroot00000000000000# Contributing You can contribute to Aseprite in several ways. One of the easiest ways is writting articles, blog posts, recording video tutorials, [creating pixel art](http://aseprite.deviantart.com/), or showing your love to Aseprite e.g. naming Aseprite in your website and linking it to http://www.aseprite.org/, following [@aseprite](https://twitter.com/aseprite) twitter account, or [giving a donation](http://www.aseprite.org/donate/). Other ways to contribute require direct contact with us. For example: * Writting documentation. * Making art *for* Aseprite (logos, skins, mockups). * Sending patches for features or bug fixes. * Reviewing issues in the [issue tracker](https://github.com/aseprite/aseprite/issues) and making comments. The following sections explain some tips about each of these points. ## Documentation You can start seeing the [documentation](http://www.aseprite.org/docs/), and [contact us](support@aseprite.org) if you want to help writting documentation or recording [tutorials](http://www.aseprite.org/tutorial/). If you are going to write documentation, we recommend you to take screenshots or record a GIF animations to show steps: * As screen recording software, on Windows you can generate GIF files using [LICEcap](http://www.cockos.com/licecap/). * You can upload the PNG/GIF images to [Imgur](http://imgur.com/). ## Issues You can review issues, make comments, or create new ones (features, bug reports, etc.) in our [issue tracker](https://github.com/aseprite/aseprite/issues). You are encouraged to create mockups for any issue you see and attach them. ## Hacking The first thing to keep in main if you want to modify the source code: checkout the **master** branch. It is the branch that we use to develop new features and fix issues that are planned for the next big release. To start looking the source code, see how it is organized in [src/README.md](https://github.com/aseprite/aseprite/tree/master/src/#aseprite-source-code) file. ## Get the Source Code If you want to help in Aseprite, first of all you will need a fresh copy of the Git repository. It is located in GitHub, right here: https://github.com/aseprite/aseprite You can clone it locally using the following command (read-only URL): git clone --recursive https://github.com/aseprite/aseprite.git On Windows you can use programs like [msysgit](http://msysgit.github.io/) to clone the repository. ## Compiling See [INSTALL.md](INSTALL.md) to know how to compile Aseprite. ## Forking & Pull Requests You can fork the GitHub repository using the Fork button at [https://github.com/aseprite/aseprite](https://github.com/aseprite/aseprite). The Pull Requests (PR) systems works in this way: 1. You've to create a new branch from `master`, e.g. `fix-8` to fix the issue 8. 1. Start working on that new branch, and push that branch to your fork. 1. Create a new PR to merge your `fix-8` branch to official `master`. 1. If the PR is accepted, your branch is merged into `master`. 1. You will need to pull changes from the official `master` branch, and merge them in your own `master` branch. Finally you can discard your own `fix-8` branch (because those changes should be already merged into `master` if the PR was accepted). 1. Continue working from the new `master` head. To keep in mind: **always** start working from the `master` head, if you want to fix three different issues, create three different branches from `master` and then send three different PR. Do not chain all the fixes in one single branch. E.g. `fix-issues-3-and-8-and-25`. ## Mailing List Subscribe to [aseprite-discuss](http://groups.google.com/group/aseprite-discuss) group. If you want to start working in something (e.g. [an open issue](https://github.com/aseprite/aseprite/issues)), you should send an email to the group describing what you want to do, to avoid programming in something that is already done or which someone else is working on. And always remember to look the [Roadmap](http://www.aseprite.org/roadmap/). aseprite_1.0.9/INSTALL.md000066400000000000000000000063441246367725700151010ustar00rootroot00000000000000# What platforms are supported? You should be able to compile Aseprite successfully on the following platforms: * Windows + MSVC 2012 + DirectX SDK * Mac OS X 10.8 Mountain Lion + Xcode 5.1.1 + Mac OS X 10.4 SDK universal * Linux + gcc with some C++11 support, this port is not compiled regularly so you can expect some errors in the master branch. # How can I compile Aseprite? Aseprite uses the latest version of [CMake](http://www.cmake.org/) (3.0) as its build system. You will not need any extra library because the repository already contains the source code of all dependencies, even a modified version of the Allegro library is included in master branch. The following are the steps to compile Aseprite (in this case we have the source code in a directory called `aseprite-source`): 1. Make a build directory to leave all the files that are result of the compilation process (`.exe`, `.lib`, `.obj`, `.a`, `.o`, etc). C:\...\>cd aseprite-source C:\...\aseprite-source>mkdir build In this way, if you want to start with a fresh copy of Aseprite source code, you can remove the `build` directory and start again. 2. Enter in the new directory and execute cmake giving to it your compiler as generator: C:\...\aseprite-source>cd build If you have nmake (MSVC compilers): C:\...\aseprite-source\build>cmake .. -G "NMake Makefiles" If you have Visual Studio you can generate a solution: C:\...\aseprite-source\build>cmake .. -G "Visual Studio 11 2012" C:\...\aseprite-source\build>cmake .. -G "Visual Studio 12 2013" If you are on Linux: /.../aseprite-source/build$ cmake .. -G "Unix Makefiles" For more information in [CMake wiki](http://www.vtk.org/Wiki/CMake_Generator_Specific_Information). 3. After you have executed one of the `cmake .. -G ` commands, you have to compile the project executing make, nmake, opening the solution, etc. 4. When the project is compiled, you can find the executable file inside `build/bin/aseprite.exe`. ## Mac OS X details You need the old Mac OS X 10.4 SDK universal, which can be obtained from Xcode 3.1 Developer Tools (Xcode 3.1 Developer DVD, `xcode31_2199_developerdvd.dmg`). You can get it from Apple developer website (you need to be registered): https://developer.apple.com/downloads/ Inside the `Packages` folder, there is a MacOSX10.4.Universal.pkg, install it (it will be installed in `/SDKs/MacOSX10.4u.sdk`), and run cmake with the following parameters: -DCMAKE_OSX_ARCHITECTURES:STRING=i386 -DCMAKE_OSX_DEPLOYMENT_TARGET:STRING=10.4 -DCMAKE_OSX_SYSROOT:STRING=/SDKs/MacOSX10.4u.sdk # How to use installed third party libraries? If you don't want to use the embedded code of third party libraries (i.e. to use your installed versions), you can disable static linking configuring each `USE_SHARED_` option. After running `cmake -G`, you edit `build/CMakeCache.txt` file, and enable the `USE_SHARED_` flag (set its value to `ON`) of the library that you want to be linked dynamically. # How to profile Aseprite? You must compile with `Profile` configuration. For example on Linux: /.../aseprite-source/build$ cmake .. -G "Unix Makefiles" -DCMAKE_BUILD_TYPE:STRING=Profile -DCOMPILER_GCC:BOOL=ON aseprite_1.0.9/LICENSE.txt000066400000000000000000000432611246367725700152730ustar00rootroot00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) 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 this service 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 make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. 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. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), 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 distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the 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 a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE 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. 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 convey 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 2 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, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision 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, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This 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 Library General Public License instead of this License. aseprite_1.0.9/README.md000066400000000000000000000117011246367725700147210ustar00rootroot00000000000000# Aseprite *Copyright (C) 2001-2014 David Capello* > THIS PROGRAM IS DISTRIBUTED WITHOUT ANY WARRANTY
> See the [license section](#license) for more information. ## Introduction **Aseprite** is an open source program to create animated sprites. Its main features are: * Sprites are composed by **layers** & **frames** (as separated concepts). * Supported color modes: **RGBA**, **Indexed** (palettes up to 256 colors), and Grayscale. * Load/save sequence of **PNG** files and **GIF** animations (also FLC, FLI, JPG, BMP, PCX, TGA). * Export/import animations to/from **Sprite Sheets**. * **Tiled** drawing mode, useful to draw **patterns** and textures. * **Undo/Redo** for every operation. * Mini-editor with **real-time animation preview**. * **Multiple editors** support. * Pixel art specific tools like filled **Contour** & **Polygon**. * **Onion skinning** ## Issues There are a list of [Known Issues](https://github.com/aseprite/aseprite/issues) (things to be fixed or that aren't yet implemented). If you found a bug or you have a new idea/feature for the program, [you can report them](https://github.com/aseprite/aseprite/issues/new). ## Support You can ask for help in: * [Aseprite mailing list](http://groups.google.com/group/aseprite-discuss) ([subscribe](mailto:aseprite-discuss+subscribe@googlegroups.com)) * [Twitter](http://twitter.com/aseprite/) * [Website](http://www.aseprite.org/) (IRC, G+, Facebook, deviantArt, etc.) ## License 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 2 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](docs/licenses/GPL.txt) along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ## Authors * David Capello [davidcapello@gmail.com](mailto:davidcapello@gmail.com)
Programmer, designer, and maintainer.
http://dacap.com.ar/ * Ilija Melentijevic
New GUI skin (from Aseprite 0.8). A lot of good ideas.
http://ilkke.blogspot.com/
http://www.pixeljoint.com/p/9270.htm * Contributors
http://code.google.com/p/aseprite/people/list Thanks to all the people who have contributed ideas, patches, bugs report, feature requests, donations, and help me developing Aseprite. ## Credits Aseprite uses libraries or parts of the original source code of the following projects created by third-parties: * [Allegro 4](http://alleg.sourceforge.net/) - [allegro4 license](https://github.com/dacap/aseprite/tree/master/docs/licenses/allegro4-LICENSE.txt) * [curl](http://curl.haxx.se/) - [curl license](https://github.com/dacap/aseprite/tree/master/docs/licenses/curl-LICENSE.txt) * [FreeType](http://www.freetype.org/) - [FTL license](https://github.com/dacap/aseprite/tree/master/docs/licenses/FTL.txt) * [giflib](http://sourceforge.net/projects/giflib/) - [giflib license](https://github.com/dacap/aseprite/tree/master/docs/licenses/giflib-LICENSE.txt) * [GIMP](http://www.gimp.org/) - [GPL license](https://github.com/dacap/aseprite/tree/master/docs/licenses/GPL.txt) * [GTK+](http://www.gtk.org/) - [LGPL license](https://github.com/dacap/aseprite/tree/master/docs/licenses/LGPL-2.1.txt) * [Google Test](http://code.google.com/p/googletest/) - [gtest license](https://github.com/dacap/aseprite/tree/master/docs/licenses/gtest-LICENSE.txt) * [mongoose](https://github.com/valenok/mongoose) - [MIT license](https://github.com/valenok/mongoose/blob/master/LICENSE) * [libart](http://www.levien.com/libart/) - [LGPL license](https://github.com/dacap/aseprite/tree/master/docs/licenses/LGPL-2.0.txt) * [libjpeg](http://www.ijg.org/) - [libjpeg license](https://github.com/dacap/aseprite/tree/master/docs/licenses/libjpeg-LICENSE.txt) * [libpng](http://www.libpng.org/pub/png/) - [libpng license](https://github.com/dacap/aseprite/tree/master/docs/licenses/libpng-LICENSE.txt) * [loadpng](http://tjaden.strangesoft.net/loadpng/) - [zlib license](https://github.com/dacap/aseprite/tree/master/docs/licenses/ZLIB.txt) * [tinyxml](http://www.sourceforge.net/projects/tinyxml) - [zlib license](https://github.com/dacap/aseprite/tree/master/docs/licenses/ZLIB.txt) * [XFree86](http://www.x.org/) - [XFree86 license](https://github.com/dacap/aseprite/tree/master/docs/licenses/XFree86-LICENSE.txt) * [zlib](http://www.gzip.org/zlib/) - [ZLIB license](https://github.com/dacap/aseprite/tree/master/docs/licenses/ZLIB.txt) Other parts of code by: * Gary Oberbrunner
Code to quantize RGB images with ordered dither method. aseprite_1.0.9/TODO.md000066400000000000000000000127021246367725700145330ustar00rootroot00000000000000# Next release * canvas dialog should show width and height and expansion point * double click or right click a range outline in timeline should open popups or properties # Hard to reproduce bugs * add PRINTFs to observers, there is something wrong with save as * sometimes, when the background layer is in a strange state: * two layers, hide background, the extra cel/brush preview isn't visible in the mini-editor * timeline: can move background * does lock alpha work correctly? * does onscrollchange notification calls onscrollchange notification? * random clicks on toolbar crashes the program * click Desktop item in file selector crashes the program # Tasks * Paste in place doesn't work as expected sometimes (copy something from one frame, paste in other frame). - Paste does not paste in the correct position if the cel is moved. * onion-skin-bug.ase: See frame 2 with onion skin, there is a bug * add drag-and-drop of colors. * add Mac OS X: - hide OS cursor - Ctrl key should be Cmd key - Use OS menu (the same for Windows?) * update copyright year of source files (automate this in with a script) * Remove Image::getPixelAddress(), it shouldn't be public and almost everywhere we should use iterators for images. Also get/put_pixel_fast and ImageImpl::address() are dangerous. * Warning icon when selecting RGB/HSB color in indexed image. * Warning message when we open a file that is already opened (show an option to create a second view, or maybe this should be forbidden). * New sprite with palette of the clipboard * Ctrl+Shift selection should copy and snap axis * "Duplicate sprite" should copy the "Background" layer as Background. * Fix problem applyToTarget() can throw (it's called from other thread) * After flatten show the background if it is hidden. * Alpha when pasting. * Shade drawing mode. * Improve status bar indicators (show origin of selection in floating state). * Export to sprite sheet: if the file we're using is .ase, select .png by default (and then the latest used extension). * Fix problem with export sprite sheet when the cel has negative pos * Add a warning when exporting RGB sprite to GIF, hinting at the quantize function. * MovingPixelsState: Add undo information in each transformation step. * Add IntEntry class in src/ui/ with spin-buttons. * Add feedback to "Shift+S" shortcut to switch "snap to grid". * Add color swatches bar. * Sort palette entries. * Add "Remap" button to palette editor after a palette entry is modified: This button should apply a color curve to the whole sprite to remap old indexes to the new positions. # Refactoring * Merge everything related to configuration/settings in one class (allow configuration per document). Use cfg.cpp and settings/ dir. * Refactor src/file/ in several layers. * Use streams instead of FILEs. * Destroy modules/gui.h. * Convert update_screen_for_document in an event from contexts or something similar. * Use a class to wrap calls load_window_pos/save_window_pos. * Command::loadParams() should be called one time when the command params is read from the XML file, not each time the command is executed. For this all commands must be got from the CommandsList, then cloned, and finally filled with params. * About Signals/Slots: Add some field in slots to avoid disconnecting them from dead signals. * editors_ -> MultiEditors class widget * convert all widgets to classes: * match UI library design with Vaca library. * move all functions (jwidget_*) to methods in Widget class. * the same for each widget (e.g. jbutton_* to Button widget) * AppHooks to Vaca::Signals * all member functions should be named verbNoun instead of verb_noun or noun_verb. * all functions to handle an object should be converted to member functions: * e.g. jwidget_set_text -> Widget::setText # Old issues * Ctrl+T should transform the current cel * fix bilinear: when getpixel have alpha = 0 get a neighbor color. * fix sliders in Tools Configuration, they are too big for small resolutions. * rewrite palette-editor to edit multiple-palettes. * fix quantize (one palette for all frames, one palette per frame) * pal-operations (sort, quantize, gamma by color-curves, etc.); * complete palette operations, and palette editor (it needs a slider or something to move between palette changes) * drag & drop colors. * if the Tools Configuration dialog box is activated, Shift+G and Shift+S keys should update it. * add two DrawClick2: * DrawClick2FreeHand * DrawClick2Shape * see the new Allegro's load_font * review ICO files support. * add "size" to GUI font (for TTF fonts); * layer movement between sets in animation-editor; * add all the "set" stuff again; * fix algo_ellipsefill; * view_tiled() should support animation playback (partial support: with left and right keys). * dacap wish-list: * added starred file-items in the file-selector. * tweening of cels (translate, scale, rotate) * tweening of polygons * manuq wish-list: * layer-with-constant-cel * Mateusz Czaplinski ideas: * when move selections, will be good the possibility to see relative position from the starting point of movement; * make drawing the 'marching-ants-rectangle' a prioritaire thing to draw (when move it). * fix the fli reader (both Allegro and Gfli): when a frame hasn't chunks means that it's looks like the last frame; * talk with Elias Pschernig, his "do_ellipse_diameter" (algo_ellipse) has a bug with ellipses of some dimensions (I made a test, and a various sizes have errors). aseprite_1.0.9/cmake/000077500000000000000000000000001246367725700145225ustar00rootroot00000000000000aseprite_1.0.9/cmake/FindDXGuid.cmake000066400000000000000000000012111246367725700174440ustar00rootroot00000000000000# - Find dxguid # Find the dxguid libraries # # DXGUID_LIBRARIES - List of libraries # DXGUID_FOUND - True if dxguid found. find_library(DXGUID_LIBRARY NAMES dxguid PATHS "$ENV{DXSDK_DIR}/Lib/$ENV{PROCESSOR_ARCHITECTURE}" ) # Handle the QUIETLY and REQUIRED arguments and set DXGUID_FOUND to TRUE if # all listed variables are TRUE. include(FindPackageHandleStandardArgs) find_package_handle_standard_args(DXGUID DEFAULT_MSG DXGUID_LIBRARY) if(DXGUID_FOUND) set(DXGUID_LIBRARIES ${DXGUID_LIBRARY}) else(DXGUID_FOUND) set(DXGUID_LIBRARIES) endif(DXGUID_FOUND) mark_as_advanced(DXGUID_INCLUDE_DIR DXGUID_LIBRARY) aseprite_1.0.9/cmake/FindV8.cmake000066400000000000000000000011361246367725700166230ustar00rootroot00000000000000# ASEPRITE # Copyright (C) 2001-2012 David Capello find_path(V8_INCLUDE_DIR NAMES v8.h HINTS "$ENV{V8_DIR}/include") find_library(V8_BASE NAMES v8_base HINTS "$ENV{V8_DIR}" "$ENV{V8_DIR}/lib" "$ENV{V8_DIR}/build/Release/lib") find_library(V8_SNAPSHOT NAMES v8_snapshot HINTS "$ENV{V8_DIR}" "$ENV{V8_DIR}/lib" "$ENV{V8_DIR}/build/Release/lib") mark_as_advanced(V8_INCLUDE_DIR V8_BASE V8_SNAPSHOT) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(V8 DEFAULT_MSG V8_BASE V8_SNAPSHOT V8_INCLUDE_DIR) set(V8_LIBRARIES ${V8_BASE} ${V8_SNAPSHOT}) aseprite_1.0.9/cmake/Toolchain-mingw.cmake000066400000000000000000000052011246367725700205610ustar00rootroot00000000000000# Use this command to build the Windows port of Allegro # with a mingw cross compiler: # # cmake -DCMAKE_TOOLCHAIN_FILE=cmake/Toolchain-mingw.cmake . # # or for out of source: # # cmake -DCMAKE_TOOLCHAIN_FILE=../cmake/Toolchain-mingw.cmake .. # # You will need at least CMake 2.6.0. # # Adjust the following paths to suit your environment. # # You might want to set MINGDIR to prevent make install making a mess # in your normal directories. # # This file was based on http://www.cmake.org/Wiki/CmakeMingw # the name of the target operating system set(CMAKE_SYSTEM_NAME Windows) # Assume the target architecture. # XXX for some reason the value set here gets cleared before we reach the # main CMakeLists.txt; see that file for a workaround. # set(CMAKE_SYSTEM_PROCESSOR i686) # Which compilers to use for C and C++, and location of target # environment. if(EXISTS /usr/i586-mingw32msvc) # First look in standard location as used by Debian/Ubuntu/etc. set(CMAKE_C_COMPILER i586-mingw32msvc-gcc) set(CMAKE_CXX_COMPILER i586-mingw32msvc-g++) set(CMAKE_FIND_ROOT_PATH /usr/i586-mingw32msvc) elseif(EXISTS /opt/mingw) # Otherwise you can get a MinGW environment using the script at # . It downloads and builds MinGW and # most of the dependencies for you. This is a suitable location. set(CMAKE_C_COMPILER /opt/mingw/usr/bin/i686-pc-mingw32-gcc) set(CMAKE_CXX_COMPILER /opt/mingw/usr/bin/i686-pc-mingw32-g++) set(CMAKE_FIND_ROOT_PATH /opt/mingw/usr/i686-pc-mingw32) else() # Else fill in local path which the user will likely adjust. # This is the location assumed by set(CMAKE_C_COMPILER /usr/local/cross-tools/bin/i386-mingw32-gcc) set(CMAKE_CXX_COMPILER /usr/local/cross-tools/bin/i386-mingw32-g++) set(CMAKE_FIND_ROOT_PATH /usr/local/cross-tools) endif() # Adjust the default behaviour of the FIND_XXX() commands: # search headers and libraries in the target environment, search # programs in the host environment set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) # Tell pkg-config not to look at the target environment's .pc files. # Setting PKG_CONFIG_LIBDIR sets the default search directory, but we have to # set PKG_CONFIG_PATH as well to prevent pkg-config falling back to the host's # path. set(ENV{PKG_CONFIG_LIBDIR} ${CMAKE_FIND_ROOT_PATH}/lib/pkgconfig) set(ENV{PKG_CONFIG_PATH} ${CMAKE_FIND_ROOT_PATH}/lib/pkgconfig) set(INSTALL_PREFIX ${CMAKE_FIND_ROOT_PATH}) if(ENV{MINGDIR} STREQUAL "") set(ENV{MINGDIR} ${CMAKE_FIND_ROOT_PATH}) endif() aseprite_1.0.9/cmake/Toolchain-psp-gcc.cmake000066400000000000000000000206721246367725700210050ustar00rootroot00000000000000# Use this command to build the PSP port of Allegro: # # cmake -DWANT_TESTS=off -DWANT_TOOLS=off -DWANT_LOGG=off -DWANT_ALLEGROGL=off -DCMAKE_TOOLCHAIN_FILE=cmake/Toolchain-psp-gcc.cmake . # # or for out of source: # # cmake -DWANT_TESTS=off -DWANT_TOOLS=off -DWANT_LOGG=off -DWANT_ALLEGROGL=off -DCMAKE_TOOLCHAIN_FILE=../cmake/Toolchain-psp-gcc.cmake .. # # You will need at least CMake 2.6.0. # # Adjust the following paths to suit your environment. # # This file was based on http://www.cmake.org/Wiki/CmakeMingw # The name of the target operating system. set(CMAKE_SYSTEM_NAME Generic) # Location of target environment. find_program(psp-config_SCRIPT psp-config) if (psp-config_SCRIPT) execute_process(COMMAND ${psp-config_SCRIPT} ARGS --psp-prefix OUTPUT_VARIABLE PSP_PREFIX OUTPUT_STRIP_TRAILING_WHITESPACE) execute_process(COMMAND ${psp-config_SCRIPT} ARGS --pspsdk-path OUTPUT_VARIABLE PSPSDK_PATH OUTPUT_STRIP_TRAILING_WHITESPACE) else (psp-config_SCRIPT) message(FATAL_ERROR "psp-config was not found.\nInstall the PSPDEV toolchain or update the $PATH environment variable.") endif (psp-config_SCRIPT) set(CMAKE_SYSTEM_INCLUDE_PATH "${PSP_PREFIX}/include") set(CMAKE_SYSTEM_LIBRARY_PATH "${PSP_PREFIX}/lib") set(CMAKE_SYSTEM_PROGRAM_PATH "${PSP_PREFIX}/bin") # Which compilers to use for C and C++. set(CMAKE_C_COMPILER psp-gcc) set(CMAKE_CXX_COMPILER psp-g++) # Needed to pass the compiler tests. set(LINK_DIRECTORIES ${PSPSDK_PATH}/lib) set(LINK_LIBRARIES -lc -lpspuser -lpspkernel -lc) # Adjust the default behaviour of the FIND_XXX() commands: # search headers and libraries in the target environment, search # programs in the host environment. set(CMAKE_FIND_ROOT_PATH ${PSP_PREFIX}) set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) # After building the ELF binary build the PSP executable. function(add_psp_executable nm) get_target_property(PSP_EXECUTABLE_OUTPUT_NAME ${nm} OUTPUT_NAME) if (NOT PSP_EXECUTABLE_OUTPUT_NAME) set(PSP_EXECUTABLE_OUTPUT_NAME ${nm}) endif(NOT PSP_EXECUTABLE_OUTPUT_NAME) set_target_properties( ${nm} PROPERTIES LINK_FLAGS "-specs=${PSPSDK_PATH}/lib/prxspecs -Wl,-q,-T${PSPSDK_PATH}/lib/linkfile.prx ${PSPSDK_PATH}/lib/prxexports.o" ) add_custom_command( TARGET ${nm} POST_BUILD COMMAND psp-fixup-imports ${PSP_EXECUTABLE_OUTPUT_NAME} COMMAND mksfo '${PSP_EXECUTABLE_OUTPUT_NAME}' PARAM.SFO COMMAND psp-prxgen ${PSP_EXECUTABLE_OUTPUT_NAME} ${PSP_EXECUTABLE_OUTPUT_NAME}.prx COMMAND pack-pbp EBOOT.PBP PARAM.SFO NULL NULL NULL NULL NULL ${PSP_EXECUTABLE_OUTPUT_NAME}.prx NULL ) endfunction() set(PSP 1) # Use this command to build the PSP port of Allegro: # # cmake -DWANT_TESTS=off -DWANT_TOOLS=off -DWANT_LOGG=off -DWANT_ALLEGROGL=off -DCMAKE_TOOLCHAIN_FILE=cmake/Toolchain-psp-gcc.cmake . # # or for out of source: # # cmake -DWANT_TESTS=off -DWANT_TOOLS=off -DWANT_LOGG=off -DWANT_ALLEGROGL=off -DCMAKE_TOOLCHAIN_FILE=../cmake/Toolchain-psp-gcc.cmake .. # # You will need at least CMake 2.6.0. # # Adjust the following paths to suit your environment. # # This file was based on http://www.cmake.org/Wiki/CmakeMingw # The name of the target operating system. set(CMAKE_SYSTEM_NAME Generic) # Location of target environment. find_program(psp-config_SCRIPT psp-config) if (psp-config_SCRIPT) execute_process(COMMAND ${psp-config_SCRIPT} ARGS --psp-prefix OUTPUT_VARIABLE PSP_PREFIX OUTPUT_STRIP_TRAILING_WHITESPACE) execute_process(COMMAND ${psp-config_SCRIPT} ARGS --pspsdk-path OUTPUT_VARIABLE PSPSDK_PATH OUTPUT_STRIP_TRAILING_WHITESPACE) else (psp-config_SCRIPT) message(FATAL_ERROR "psp-config was not found.\nInstall the PSPDEV toolchain or update the $PATH environment variable.") endif (psp-config_SCRIPT) set(CMAKE_SYSTEM_INCLUDE_PATH "${PSP_PREFIX}/include") set(CMAKE_SYSTEM_LIBRARY_PATH "${PSP_PREFIX}/lib") set(CMAKE_SYSTEM_PROGRAM_PATH "${PSP_PREFIX}/bin") # Which compilers to use for C and C++. set(CMAKE_C_COMPILER psp-gcc) set(CMAKE_CXX_COMPILER psp-g++) # Needed to pass the compiler tests. set(LINK_DIRECTORIES ${PSPSDK_PATH}/lib) set(LINK_LIBRARIES -lc -lpspuser -lpspkernel -lc) # Adjust the default behaviour of the FIND_XXX() commands: # search headers and libraries in the target environment, search # programs in the host environment. set(CMAKE_FIND_ROOT_PATH ${PSP_PREFIX}) set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) # After building the ELF binary build the PSP executable. function(add_psp_executable nm) get_target_property(PSP_EXECUTABLE_OUTPUT_NAME ${nm} OUTPUT_NAME) if (NOT PSP_EXECUTABLE_OUTPUT_NAME) set(PSP_EXECUTABLE_OUTPUT_NAME ${nm}) endif(NOT PSP_EXECUTABLE_OUTPUT_NAME) set_target_properties( ${nm} PROPERTIES LINK_FLAGS "-specs=${PSPSDK_PATH}/lib/prxspecs -Wl,-q,-T${PSPSDK_PATH}/lib/linkfile.prx ${PSPSDK_PATH}/lib/prxexports.o" ) add_custom_command( TARGET ${nm} POST_BUILD COMMAND psp-fixup-imports ${PSP_EXECUTABLE_OUTPUT_NAME} COMMAND mksfo '${PSP_EXECUTABLE_OUTPUT_NAME}' PARAM.SFO COMMAND psp-prxgen ${PSP_EXECUTABLE_OUTPUT_NAME} ${PSP_EXECUTABLE_OUTPUT_NAME}.prx COMMAND pack-pbp EBOOT.PBP PARAM.SFO NULL NULL NULL NULL NULL ${PSP_EXECUTABLE_OUTPUT_NAME}.prx NULL ) endfunction() set(PSP 1) # Use this command to build the PSP port of Allegro: # # cmake -DWANT_TESTS=off -DWANT_TOOLS=off -DWANT_LOGG=off -DWANT_ALLEGROGL=off -DCMAKE_TOOLCHAIN_FILE=cmake/Toolchain-psp-gcc.cmake . # # or for out of source: # # cmake -DWANT_TESTS=off -DWANT_TOOLS=off -DWANT_LOGG=off -DWANT_ALLEGROGL=off -DCMAKE_TOOLCHAIN_FILE=../cmake/Toolchain-psp-gcc.cmake .. # # You will need at least CMake 2.6.0. # # Adjust the following paths to suit your environment. # # This file was based on http://www.cmake.org/Wiki/CmakeMingw # The name of the target operating system. set(CMAKE_SYSTEM_NAME Generic) # Location of target environment. find_program(psp-config_SCRIPT psp-config) if (psp-config_SCRIPT) execute_process(COMMAND ${psp-config_SCRIPT} ARGS --psp-prefix OUTPUT_VARIABLE PSP_PREFIX OUTPUT_STRIP_TRAILING_WHITESPACE) execute_process(COMMAND ${psp-config_SCRIPT} ARGS --pspsdk-path OUTPUT_VARIABLE PSPSDK_PATH OUTPUT_STRIP_TRAILING_WHITESPACE) else (psp-config_SCRIPT) message(FATAL_ERROR "psp-config was not found.\nInstall the PSPDEV toolchain or update the $PATH environment variable.") endif (psp-config_SCRIPT) set(CMAKE_SYSTEM_INCLUDE_PATH "${PSP_PREFIX}/include") set(CMAKE_SYSTEM_LIBRARY_PATH "${PSP_PREFIX}/lib") set(CMAKE_SYSTEM_PROGRAM_PATH "${PSP_PREFIX}/bin") # Which compilers to use for C and C++. set(CMAKE_C_COMPILER psp-gcc) set(CMAKE_CXX_COMPILER psp-g++) # Needed to pass the compiler tests. set(LINK_DIRECTORIES ${PSPSDK_PATH}/lib) set(LINK_LIBRARIES -lc -lpspuser -lpspkernel -lc) # Adjust the default behaviour of the FIND_XXX() commands: # search headers and libraries in the target environment, search # programs in the host environment. set(CMAKE_FIND_ROOT_PATH ${PSP_PREFIX}) set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) # After building the ELF binary build the PSP executable. function(add_psp_executable nm) get_target_property(PSP_EXECUTABLE_OUTPUT_NAME ${nm} OUTPUT_NAME) if (NOT PSP_EXECUTABLE_OUTPUT_NAME) set(PSP_EXECUTABLE_OUTPUT_NAME ${nm}) endif(NOT PSP_EXECUTABLE_OUTPUT_NAME) set_target_properties( ${nm} PROPERTIES LINK_FLAGS "-specs=${PSPSDK_PATH}/lib/prxspecs -Wl,-q,-T${PSPSDK_PATH}/lib/linkfile.prx ${PSPSDK_PATH}/lib/prxexports.o" ) add_custom_command( TARGET ${nm} POST_BUILD COMMAND psp-fixup-imports ${PSP_EXECUTABLE_OUTPUT_NAME} COMMAND mksfo '${PSP_EXECUTABLE_OUTPUT_NAME}' PARAM.SFO COMMAND psp-prxgen ${PSP_EXECUTABLE_OUTPUT_NAME} ${PSP_EXECUTABLE_OUTPUT_NAME}.prx COMMAND pack-pbp EBOOT.PBP PARAM.SFO NULL NULL NULL NULL NULL ${PSP_EXECUTABLE_OUTPUT_NAME}.prx NULL ) endfunction() set(PSP 1) aseprite_1.0.9/data/000077500000000000000000000000001246367725700143535ustar00rootroot00000000000000aseprite_1.0.9/data/convmatr.def000066400000000000000000000202361246367725700166670ustar00rootroot00000000000000# Allegro Sprite Editor convolution matrices -*- Shell-script -*- # Copyright (C) 2001-2011 by David Capello # # Parser in "src/effect/convmatr.c" # # Format: # # matrix-name w h cx cy { data } div bias target # # References: # # w = 1 ... N # h = 1 ... N # width and height of the matrix # # cx = 0 ... w-1 # cy = 0 ... h-1 # center of the matrix # # data = N0 N1 ... N(w*h) # elements of the matrix # # div = N != 0 | auto # final division factor # auto = sum(data) # # bias = -N ... +N | auto # final shift # # target = rgba # [r]ed, [g]reen, [b]lue, [a]lpha # brightness 1 1 0 0 { 1 } 1 +8 rgb contrast 1 1 0 0 { 1 } 1 -8 rgb negative 1 1 0 0 { -1 } auto auto rgb blur-3x3 3 3 1 1 { 1 2 1 2 4 2 1 2 1 } auto auto rgba blur-3x3-hard 3 3 1 1 { 0 1 0 1 8 1 0 1 0 } auto auto rgba blur-5x5 5 5 2 2 { 1 2 3 2 1 2 3 4 3 2 3 4 5 4 3 2 3 4 3 2 1 2 3 2 1 } auto auto rgba blur-7x7 7 7 3 3 { 1 2 3 4 3 2 1 2 3 4 5 4 3 2 3 4 5 6 5 4 3 4 5 6 7 6 5 4 3 4 5 6 5 4 3 2 3 4 5 4 3 2 1 2 3 4 3 2 1 } auto auto rgba blur-9x9 9 9 4 4 { 1 2 3 4 5 4 3 2 1 2 3 4 5 6 5 4 3 2 3 4 5 6 7 6 5 4 3 4 5 6 7 8 7 6 5 4 5 6 7 8 9 8 7 6 5 4 5 6 7 8 7 6 5 4 3 4 5 6 7 6 5 4 3 2 3 4 5 6 5 4 3 2 1 2 3 4 5 4 3 2 1 } auto auto rgba blur-17x17 17 17 8 8 { 1 2 3 4 5 6 7 8 9 8 7 6 5 4 3 2 1 2 3 4 5 6 7 8 9 10 9 8 7 6 5 4 3 2 3 4 5 6 7 8 9 10 11 10 9 8 7 6 5 4 3 4 5 6 7 8 9 10 11 12 11 10 9 8 7 6 5 4 5 6 7 8 9 10 11 12 13 12 11 10 9 8 7 6 5 6 7 8 9 10 11 12 13 14 13 12 11 10 9 8 7 6 7 8 9 10 11 12 13 14 15 14 13 12 11 10 9 8 7 8 9 10 11 12 13 14 15 16 15 14 13 12 11 10 9 8 9 10 11 12 13 14 15 16 17 16 15 14 13 12 11 10 9 8 9 10 11 12 13 14 15 16 15 14 13 12 11 10 9 8 7 8 9 10 11 12 13 14 15 14 13 12 11 10 9 8 7 6 7 8 9 10 11 12 13 14 13 12 11 10 9 8 7 6 5 6 7 8 9 10 11 12 13 12 11 10 9 8 7 6 5 4 5 6 7 8 9 10 11 12 11 10 9 8 7 6 5 4 3 4 5 6 7 8 9 10 11 10 9 8 7 6 5 4 3 2 3 4 5 6 7 8 9 10 9 8 7 6 5 4 3 2 1 2 3 4 5 6 7 8 9 8 7 6 5 4 3 2 1 } auto auto rgba blur-5x3-left 5 3 0 1 { 2 3 2 1 0 6 4 3 2 1 2 3 2 1 0 } auto auto rgba blur-17x3-left 17 3 0 1 { 14 16 13 12 10 8 6 4 3 2 1 0 0 0 0 0 0 24 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 14 16 13 12 10 8 6 4 3 2 1 0 0 0 0 0 0 } auto auto rgba blur-3x17-top 3 17 1 0 { 14 24 14 16 16 16 13 15 13 12 14 12 10 13 10 8 12 8 6 11 6 4 10 4 3 9 3 2 8 2 1 7 1 0 6 0 0 5 0 0 4 0 0 3 0 0 2 0 0 1 0 } auto auto rgba blur-5x5-diagonal(\) 5 5 2 2 { 1 1 1 0 0 1 2 2 1 0 1 2 3 2 1 0 1 2 2 1 0 0 1 1 1 } auto auto rgba blur-5x5-diagonal(/) 5 5 2 2 { 0 0 1 1 1 0 1 2 2 1 1 2 3 2 1 1 2 2 1 0 1 1 1 0 0 } auto auto rgba sharpen-3x3 3 3 1 1 { -1 -1 -1 -1 16 -1 -1 -1 -1 } 8 0 rgba sharpen-5x5 5 5 2 2 { 0 -1 -2 -1 0 -1 -2 -4 -2 -1 -2 -4 48 -4 -2 -1 -2 -4 -2 -1 0 -1 -2 -1 0 } 8 0 rgba sharpen-7x7 7 7 3 3 { 0 -1 -2 -4 -2 -1 0 -1 -2 -4 -8 -4 -2 -1 -2 -4 -8 -16 -8 -4 -2 -4 -8 -16 224 -16 -8 -4 -2 -4 -8 -16 -8 -4 -2 -1 -2 -4 -8 -4 -2 -1 0 -1 -2 -4 -2 -1 -0 } 16 0 rgba edges-find 3 3 1 1 { -1 -1 -1 -1 8 -1 -1 -1 -1 } 1 0 rgba edges-find-horizontal 3 3 1 1 { -1 -2 -1 0 0 0 1 2 1 } 1 0 rgba edges-find-vertical 3 3 1 1 { -1 0 1 -2 0 2 -1 0 1 } 1 0 rgba misc-contour 3 3 1 1 { 1 1 1 1 -8 1 1 1 1 } 1 255 rgb misc-texturize 3 3 1 1 { -2 -2 1 -2 1 2 -1 2 2 } 1 0 rgba misc-emboss 3 3 1 1 { -4 -2 -1 -2 1 2 1 2 4 } 1 0 rgba misc-marmolize 3 3 1 1 { -1 -1 1 -1 0 1 -1 1 1 } 2 128 rgb misc-rock 3 3 1 1 { -4 -2 -1 -2 0 2 1 2 4 } auto auto rgb misc-rock-edges 3 3 1 1 { -1 -1 -1 -1 8 -1 -1 -1 -1 } auto auto rgb drunk-3x3_x 3 3 1 1 { 1 0 1 0 1 0 1 0 1 } auto auto rgba drunk-3x3_+ 3 3 1 1 { 0 1 0 1 1 1 0 1 0 } auto auto rgba drunk-5x5_x 5 5 2 2 { 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 } auto auto rgba drunk-5x5_+ 5 5 2 2 { 0 0 1 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 } auto auto rgba drunk-7x7_x 7 7 3 3 { 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 } auto auto rgba drunk-7x7_+ 7 7 3 3 { 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 } auto auto rgba drunk-9x9_x 9 9 4 4 { 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 } auto auto rgba drunk-9x9_+ 9 9 4 4 { 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 } auto auto rgba drunk-17x17_x 17 17 8 8 { 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 } auto auto rgba drunk-17x17_+ 17 17 8 8 { 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 } auto auto rgba drunk-17x17_o 17 17 8 8 { 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 } auto auto rgba aseprite_1.0.9/data/fonts/000077500000000000000000000000001246367725700155045ustar00rootroot00000000000000aseprite_1.0.9/data/fonts/allegro.pcx000066400000000000000000000514251246367725700176540ustar00rootroot00000000000000 @@ÈÿÿÿÿÿªªªªªªªUªªªUUUUUÿUÿUUÿÿÿUUÿUÿÿÿUÿÿÿAÿÿÿÿÿÿÿÿÅÿÁÿÈÈÿÃÂÃÈÿÂÂÂÈÿÂÂÂÈÿÃÂÃÈÿÈÈÿÂÃÃÈÿÂÂÄÈÿÃÂÃÈÿÂÅÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÅÂÈÿÁÿÈÈÿÂÄÂÈÿÂÂÂÈÿÂÂÂÈÿÆÈÿÂÃÂÈÿÂÂÂÈÿÂÂÄÈÿÂÂÄÈÿÂÂÄÈÿÂÂÂÈÿÃÂÃÈÿÈÈÿÈÈÿÈÈÿÄÂÂÈÿÁÿÈÈÿÂÄÂÈÿÂÂÂÈÿÇÈÿÂÆÈÿÂÂÂÂÈÿÂÃÃÈÿÂÅÈÿÂÅÈÿÃÂÃÈÿÂÄÂÈÿÃÂÃÈÿÈÈÿÈÈÿÈÈÿÃÂÃÈÿÁÿÈÈÿÃÂÃÈÿÈÈÿÂÂÂÈÿÅÂÈÿÃÂÃÈÿÃÂÈÿÈÈÿÂÅÈÿÃÂÃÈÿÈÈÿÆÈÿÈÈÿÆÈÿÈÈÿÂÂÄÈÿÁÿÈÈÿÃÂÃÈÿÈÈÿÇÈÿÅÂÈÿÂÂÄÈÿÂÃÂÈÿÈÈÿÂÅÈÿÃÂÃÈÿÂÄÂÈÿÃÂÃÈÿÈÈÿÈÈÿÈÈÿÂÅÈÿÁÿÈÈÿÈÈÿÈÈÿÂÂÂÈÿÆÂÈÿÂÂÂÈÿÂÂÂÂÈÿÈÈÿÂÂÄÈÿÂÂÄÈÿÂÂÂÈÿÃÂÃÈÿÃÂÃÈÿÈÈÿÃÂÃÈÿÂÆÈÿÁÿÈÈÿÃÂÃÈÿÈÈÿÂÂÂÈÿÃÂÃÈÿÂÃÂÈÿÃÂÈÿÈÈÿÃÂÃÈÿÂÅÈÿÈÈÿÈÈÿÃÂÃÈÿÈÈÿÃÂÃÈÿÇÈÿÁÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÂÂÄÈÿÈÈÿÈÈÿÈÈÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÁÿÅÂÈÿÂÂÄÈÿÄÃÈÿÄÃÈÿÃÃÂÈÿÆÂÈÿÂÃÃÈÿÆÂÈÿÄÃÈÿÄÃÈÿÈÈÿÈÈÿÃÂÃÈÿÈÈÿÂÅÈÿÂÄÂÈÿÁÿÂÂÃÈÿÃÄÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÄÂÈÿÂÆÈÿÂÅÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÃÂÃÈÿÃÂÃÈÿÂÂÄÈÿÈÈÿÂÂÄÈÿÂÂÂÈÿÁÿÂÄÈÿÂÂÄÈÿÄÂÂÈÿÄÂÂÈÿÂÂÂÈÿÅÃÈÿÂÆÈÿÄÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÃÂÃÈÿÃÂÃÈÿÂÅÈÿÆÈÿÃÂÃÈÿÄÂÂÈÿÁÿÄÂÈÿÂÂÄÈÿÂÃÃÈÿÂÃÃÈÿÂÂÂÂÈÿÄÂÂÈÿÅÃÈÿÃÂÃÈÿÄÃÈÿÅÂÈÿÈÈÿÈÈÿÂÆÈÿÈÈÿÄÂÂÈÿÃÂÃÈÿÁÿÃÂÂÈÿÂÂÄÈÿÂÅÈÿÄÂÂÈÿÇÈÿÄÂÂÈÿÂÂÂÂÈÿÂÂÄÈÿÂÂÂÂÈÿÄÂÂÈÿÈÈÿÈÈÿÂÅÈÿÆÈÿÃÂÃÈÿÃÂÃÈÿÁÿÂÃÂÈÿÂÂÄÈÿÂÂÂÂÈÿÂÂÂÂÈÿÄÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÄÈÿÂÂÂÂÈÿÃÂÃÈÿÃÂÃÈÿÃÂÃÈÿÂÂÄÈÿÈÈÿÂÂÄÈÿÈÈÿÁÿÅÂÈÿÆÂÈÿÆÂÈÿÄÃÈÿÃÄÈÿÄÃÈÿÄÃÈÿÂÂÄÈÿÄÃÈÿÃÄÈÿÃÂÃÈÿÃÂÃÈÿÃÂÃÈÿÈÈÿÂÅÈÿÃÂÃÈÿÁÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÂÂÄÈÿÈÈÿÈÈÿÈÈÿÈÈÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÁÿÅÂÈÿÂÂÄÈÿÆÂÈÿÂÄÂÈÿÅÃÈÿÇÈÿÇÈÿÂÄÂÈÿÂÂÂÂÈÿÄÃÈÿÃÄÈÿÃÂÂÈÿÄÄÈÿÂÃÂÈÿÂÃÂÈÿÂÃÃÈÿÁÿÂÃÂÈÿÄÃÈÿÂÂÂÈÿÂÂÂÈÿÂÂÂÈÿÂÃÈÿÂÃÈÿÂÂÂÈÿÂÂÂÂÈÿÂÂÄÈÿÄÂÂÈÿÂÂÂÈÿÂÅÈÿÃÃÈÿÃÂÂÈÿÂÂÂÈÿÁÿÂÄÈÿÂÂÂÂÈÿÂÂÂÈÿÂÆÈÿÂÂÂÈÿÂÃÈÿÂÃÈÿÂÆÈÿÂÂÂÂÈÿÂÂÄÈÿÄÂÂÈÿÂÂÂÈÿÂÅÈÿÇÈÿÄÂÈÿÂÃÂÈÿÁÿÂÄÈÿÂÂÂÂÈÿÅÂÈÿÂÆÈÿÂÂÂÈÿÄÃÈÿÄÃÈÿÂÆÈÿÆÂÈÿÂÂÄÈÿÄÂÂÈÿÄÃÈÿÂÅÈÿÇÈÿÂÄÈÿÂÃÂÈÿÁÿÂÃÂÈÿÆÂÈÿÂÂÂÈÿÂÆÈÿÂÂÂÈÿÂÃÈÿÂÃÈÿÂÂÃÈÿÂÂÂÂÈÿÂÂÄÈÿÂÂÂÂÈÿÂÂÂÈÿÂÃÈÿÂÂÈÿÂÂÃÈÿÂÃÂÈÿÁÿÂÆÈÿÂÂÂÂÈÿÂÂÂÈÿÂÂÂÈÿÂÂÂÈÿÂÃÈÿÂÅÈÿÂÂÂÈÿÂÂÂÂÈÿÂÂÄÈÿÂÂÂÂÈÿÂÂÂÈÿÂÂÂÈÿÂÃÂÈÿÂÃÂÈÿÂÂÂÈÿÁÿÅÂÈÿÂÂÂÂÈÿÆÂÈÿÂÄÂÈÿÅÃÈÿÇÈÿÄÄÈÿÂÃÈÿÂÂÂÂÈÿÄÃÈÿÄÃÈÿÃÂÂÈÿÇÈÿÂÃÂÈÿÂÃÂÈÿÂÃÃÈÿÁÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÁÿÆÂÈÿÅÂÈÿÆÂÈÿÅÂÈÿÆÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÃÂÈÿÂÂÂÂÈÿÇÈÿÄÃÈÿÂÆÈÿÄÃÈÿÃÄÈÿÈÈÿÁÿÂÂÂÈÿÂÃÂÈÿÂÂÂÈÿÂÃÂÈÿÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÅÈÿÂÅÈÿÃÂÃÈÿÂÃÃÈÿÈÈÿÁÿÂÂÂÈÿÂÃÂÈÿÂÂÂÈÿÃÅÈÿÂÂÄÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÈÿÂÂÂÂÈÿÃÂÂÈÿÂÅÈÿÂÂÄÈÿÃÂÃÈÿÂÂÂÈÿÈÈÿÁÿÅÂÈÿÂÃÂÈÿÅÂÈÿÄÃÈÿÂÂÄÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÃÃÈÿÄÃÈÿÃÂÃÈÿÂÅÈÿÃÂÃÈÿÃÂÃÈÿÂÃÂÈÿÈÈÿÁÿÂÅÈÿÂÂÈÿÂÂÂÈÿÄÃÈÿÂÂÄÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÈÿÂÂÂÈÿÂÂÄÈÿÂÂÂÈÿÂÅÈÿÄÂÂÈÿÃÂÃÈÿÈÈÿÈÈÿÁÿÂÅÈÿÅÂÈÿÂÂÂÈÿÂÃÂÈÿÂÂÄÈÿÂÂÂÂÈÿÄÃÈÿÇÈÿÂÃÂÈÿÂÂÄÈÿÂÂÂÈÿÂÅÈÿÅÂÈÿÃÂÃÈÿÈÈÿÈÈÿÁÿÄÄÈÿÄÃÈÿÃÂÂÈÿÅÂÈÿÄÃÈÿÆÂÈÿÂÂÄÈÿÂÂÂÈÿÂÃÂÈÿÄÃÈÿÇÈÿÄÃÈÿÆÈÿÄÃÈÿÈÈÿÈÈÿÁÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÁÿÂÂÄÈÿÈÈÿÃÅÈÿÈÈÿÃÃÂÈÿÈÈÿÂÃÃÈÿÈÈÿÃÅÈÿÂÂÄÈÿÄÂÂÈÿÃÅÈÿÃÄÈÿÈÈÿÈÈÿÈÈÿÁÿÂÂÄÈÿÈÈÿÂÅÈÿÈÈÿÄÂÂÈÿÈÈÿÂÂÂÈÿÈÈÿÂÅÈÿÈÈÿÈÈÿÂÅÈÿÂÂÄÈÿÈÈÿÈÈÿÈÈÿÁÿÃÂÃÈÿÄÃÈÿÂÅÈÿÄÃÈÿÄÂÂÈÿÄÃÈÿÂÂÂÈÿÃÂÈÿÂÂÂÈÿÃÄÈÿÃÃÂÈÿÂÂÂÈÿÂÂÄÈÿÂÂÂÂÈÿÃÃÈÿÄÃÈÿÁÿÈÈÿÄÂÂÈÿÅÂÈÿÂÂÂÂÈÿÅÂÈÿÂÂÂÂÈÿÄÄÈÿÂÂÂÂÈÿÃÂÈÿÂÂÄÈÿÄÂÂÈÿÂÂÂÈÿÂÂÄÈÿÇÈÿÂÂÂÂÈÿÂÂÂÂÈÿÁÿÈÈÿÅÂÈÿÂÂÂÈÿÂÆÈÿÂÂÂÂÈÿÆÂÈÿÂÅÈÿÂÂÂÂÈÿÂÂÂÈÿÂÂÄÈÿÄÂÂÈÿÄÃÈÿÂÂÄÈÿÇÈÿÂÂÂÂÈÿÂÂÂÂÈÿÁÿÈÈÿÂÂÂÂÈÿÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÆÈÿÂÅÈÿÅÂÈÿÂÂÂÈÿÂÂÄÈÿÂÂÂÂÈÿÂÂÂÈÿÂÂÄÈÿÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÁÿÈÈÿÃÂÈÿÂÃÂÈÿÄÃÈÿÃÂÈÿÄÃÈÿÄÄÈÿÄÂÂÈÿÃÂÂÈÿÄÃÈÿÂÂÂÂÈÿÃÂÂÈÿÄÃÈÿÂÂÈÿÂÂÂÂÈÿÄÃÈÿÁÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÅÃÈÿÈÈÿÈÈÿÄÃÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÁÿÈÈÿÈÈÿÈÈÿÈÈÿÃÄÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÃÃÂÈÿÃÂÃÈÿÃÅÈÿÃÂÈÿÈÈÿÁÿÈÈÿÈÈÿÈÈÿÈÈÿÂÂÄÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÂÂÄÈÿÃÂÃÈÿÂÂÄÈÿÂÃÂÈÿÃÄÈÿÁÿÂÃÂÈÿÃÂÈÿÂÃÂÈÿÅÂÈÿÆÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÃÂÈÿÂÂÂÂÈÿÆÂÈÿÂÂÄÈÿÃÂÃÈÿÂÂÄÈÿÈÈÿÂÃÃÈÿÁÿÂÂÂÈÿÂÂÂÂÈÿÃÂÈÿÂÆÈÿÂÂÄÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÈÿÂÂÂÂÈÿÂÂÃÈÿÃÅÈÿÈÈÿÃÃÂÈÿÈÈÿÂÂÂÈÿÁÿÂÂÂÈÿÂÂÂÂÈÿÂÃÈÿÃÄÈÿÂÂÄÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÈÿÂÃÃÈÿÂÂÂÂÈÿÂÂÄÈÿÂÂÄÈÿÃÂÃÈÿÂÂÄÈÿÈÈÿÂÃÂÈÿÁÿÅÂÈÿÅÂÈÿÂÅÈÿÃÃÂÈÿÂÂÂÈÿÂÂÂÂÈÿÄÃÈÿÇÈÿÂÂÂÈÿÅÂÈÿÂÂÂÈÿÂÂÄÈÿÃÂÃÈÿÂÂÄÈÿÈÈÿÂÃÂÈÿÁÿÂÅÈÿÄÂÂÈÿÄÄÈÿÅÃÈÿÃÂÃÈÿÃÂÈÿÂÂÄÈÿÂÂÂÈÿÂÃÂÈÿÄÂÂÈÿÆÂÈÿÃÃÂÈÿÃÂÃÈÿÃÅÈÿÈÈÿÇÈÿÁÿÄÄÈÿÃÄÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÅÃÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÁÿÃÂÃÈÿÃÂÃÈÿÂÃÃÈÿÈÈÿÂÂÂÂÈÿÃÂÃÈÿÂÅÈÿÈÈÿÆÈÿÂÄÂÈÿÈÈÿÈÈÿÈÈÿÆÈÿÈÈÿÂÃÃÈÿÁÿÃÂÃÈÿÃÂÃÈÿÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÃÂÃÈÿÂÄÈÿÂÃÂÈÿÆÈÿÂÂÂÈÿÂÂÂÂÈÿÈÈÿÈÈÿÆÈÿÈÈÿÂÂÂÈÿÁÿÈÈÿÆÈÿÂÂÂÈÿÅÂÈÿÄÃÈÿÃÂÃÈÿÂÄÂÈÿÈÈÿÂÃÈÿÂÂÂÈÿÂÂÂÈÿÈÈÿÈÈÿÃÂÈÿÈÈÿÂÂÂÈÿÁÿÃÂÃÈÿÂÆÈÿÄÄÈÿÂÃÂÈÿÆÂÈÿÈÈÿÂÂÂÈÿÈÈÿÄÈÿÂÅÈÿÂÂÂÂÈÿÆÂÈÿÆÈÿÂÈÿÈÈÿÂÃÃÈÿÁÿÃÂÃÈÿÂÆÈÿÂÅÈÿÂÃÂÈÿÂÂÄÈÿÃÂÃÈÿÂÂÂÈÿÈÈÿÄÈÿÈÈÿÂÂÂÈÿÄÂÂÈÿÈÈÿÃÂÈÿÈÈÿÈÈÿÁÿÃÂÃÈÿÆÈÿÃÂÂÈÿÅÂÈÿÆÂÈÿÃÂÃÈÿÂÄÂÈÿÈÈÿÂÃÈÿÆÈÿÂÂÂÂÈÿÄÂÂÈÿÈÈÿÂÈÿÈÈÿÈÈÿÁÿÃÂÃÈÿÃÂÃÈÿÆÂÈÿÂÃÂÈÿÂÂÄÈÿÃÂÃÈÿÄÂÈÿÈÈÿÆÈÿÈÈÿÈÈÿÈÈÿÈÈÿÆÈÿÈÈÿÈÈÿÁÿÈÈÿÃÂÃÈÿÈÈÿÈÈÿÂÂÄÈÿÈÈÿÅÂÈÿÈÈÿÆÈÿÈÈÿÈÈÿÈÈÿÈÈÿÆÈÿÈÈÿÈÈÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÁÿÂÂÄÈÿÃÄÈÿÄÃÈÿÄÂÂÈÿÈÈÿÇÈÿÈÈÿÈÈÿÃÂÃÈÿÂÃÃÈÿÈÈÿÂÄÂÈÿÂÄÂÈÿÃÄÈÿÂÂÄÈÿÃÂÃÈÿÁÿÂÂÄÈÿÃÂÃÈÿÄÂÂÈÿÃÂÃÈÿÈÈÿÂÂÂÈÿÈÈÿÈÈÿÂÃÃÈÿÂÂÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÃÂÈÿÂÂÂÈÿÈÈÿÄÂÂÈÿÁÿÆÂÈÿÂÂÄÈÿÂÃÃÈÿÂÂÄÈÿÂÂÂÂÈÿÂÂÂÈÿÈÈÿÈÈÿÃÂÃÈÿÂÂÂÈÿÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÃÂÂÈÿÂÂÄÈÿÂÃÃÈÿÁÿÂÂÄÈÿÂÅÈÿÄÂÂÈÿÈÈÿÂÂÂÂÈÿÄÂÈÿÃÂÃÈÿÈÈÿÃÂÃÈÿÂÃÃÈÿÂÂÂÂÈÿÂÂÂÈÿÂÄÈÿÂÃÈÿÂÅÈÿÂÂÂÈÿÁÿÂÂÄÈÿÄÃÈÿÄÃÈÿÈÈÿÂÂÂÈÿÃÂÂÈÿÃÂÃÈÿÈÈÿÂÄÂÈÿÈÈÿÂÂÂÈÿÂÂÃÈÿÂÂÂÂÈÿÄÂÈÿÂÆÈÿÂÃÂÈÿÁÿÈÈÿÈÈÿÈÈÿÈÈÿÆÈÿÃÂÂÈÿÈÈÿÃÂÃÈÿÈÈÿÅÂÈÿÂÂÂÂÈÿÂÄÈÿÂÂÂÈÿÂÈÿÂÂÂÂÈÿÇÈÿÁÿÆÂÈÿÈÈÿÈÈÿÈÈÿÂÆÈÿÃÂÂÈÿÈÈÿÄÂÂÈÿÈÈÿÈÈÿÈÈÿÂÂÄÈÿÂÂÂÂÈÿÅÈÿÄÃÈÿÂÃÂÈÿÁÿÈÈÿÈÈÿÈÈÿÈÈÿÇÈÿÈÈÿÈÈÿÂÃÃÈÿÈÈÿÈÈÿÈÈÿÆÂÈÿÄÄÈÿÄÂÈÿÈÈÿÈÈÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÁÿÂÂÄÈÿÅÂÈÿÃÂÈÿÂÃÂÈÿÃÄÈÿÂÅÈÿÄÃÈÿÂÂÄÈÿÄÂÂÈÿÅÂÈÿÂÃÂÈÿÂÂÄÈÿÄÂÂÈÿÂÄÂÈÿÂÂÂÈÿÅÃÈÿÁÿÂÅÈÿÅÈÿÂÃÂÈÿÈÈÿÂÃÈÿÂÂÂÈÿÂÂÂÂÈÿÃÂÃÈÿÃÂÃÈÿÅÈÿÈÈÿÃÂÃÈÿÃÂÃÈÿÄÈÿÈÈÿÂÂÂÈÿÁÿÂÃÃÈÿÂÃÃÈÿÂÃÃÈÿÂÃÃÈÿÂÃÃÈÿÂÂÂÂÈÿÂÆÈÿÇÈÿÇÈÿÇÈÿÇÈÿÂÄÂÈÿÂÄÂÈÿÂÄÂÈÿÂÄÂÈÿÂÂÂÈÿÁÿÂÂÂÈÿÂÂÂÈÿÂÂÂÈÿÂÂÂÈÿÂÂÂÈÿÇÈÿÂÂÂÂÈÿÂÆÈÿÂÆÈÿÂÆÈÿÂÆÈÿÃÂÃÈÿÃÂÃÈÿÃÂÃÈÿÃÂÃÈÿÄÂÈÿÁÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÂÂÂÂÈÿÄÃÈÿÆÂÈÿÆÂÈÿÆÂÈÿÆÂÈÿÃÂÃÈÿÃÂÃÈÿÃÂÃÈÿÃÂÃÈÿÂÂÂÈÿÁÿÇÈÿÇÈÿÇÈÿÇÈÿÇÈÿÂÂÂÂÈÿÃÂÃÈÿÂÆÈÿÂÆÈÿÂÆÈÿÂÆÈÿÃÂÃÈÿÃÂÃÈÿÃÂÃÈÿÃÂÃÈÿÂÂÂÈÿÁÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÂÂÃÈÿÄÂÂÈÿÇÈÿÇÈÿÇÈÿÇÈÿÂÄÂÈÿÂÄÂÈÿÂÄÂÈÿÂÄÂÈÿÅÃÈÿÁÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÄÃÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÁÿÆÂÈÿÂÂÄÈÿÃÂÃÈÿÅÂÈÿÃÂÈÿÂÃÂÈÿÈÈÿÂÃÈÿÂÅÈÿÃÂÃÈÿÅÂÈÿÂÃÂÈÿÄÂÂÈÿÃÅÈÿÄÃÈÿÃÅÈÿÁÿÈÈÿÃÂÃÈÿÂÂÄÈÿÅÈÿÂÃÂÈÿÈÈÿÂÃÂÈÿÂÂÂÈÿÂÂÄÈÿÂÂÄÈÿÅÈÿÈÈÿÃÂÃÈÿÂÅÈÿÂÂÂÂÈÿÈÈÿÁÿÂÂÂÂÈÿÅÂÈÿÅÂÈÿÅÂÈÿÅÂÈÿÅÂÈÿÂÂÂÈÿÂÂÃÈÿÂÃÂÈÿÂÃÂÈÿÈÈÿÂÃÂÈÿÂÂÂÈÿÅÂÈÿÂÂÂÂÈÿÄÃÈÿÁÿÃÂÂÈÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÂÃÃÈÿÂÂÈÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÂÂÂÈÿÂÂÂÈÿÂÂÃÈÿÄÂÂÈÿÁÿÆÂÈÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÂÂÂÈÿÃÂÂÈÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÂÄÂÈÿÂÂÂÈÿÂÂÂÂÈÿÅÂÈÿÁÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÂÂÂÈÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÂÃÂÈÿÃÂÃÈÿÅÂÈÿÂÃÂÈÿÂÂÂÂÈÿÁÿÂÂÂÂÈÿÅÂÈÿÅÂÈÿÅÂÈÿÅÂÈÿÅÂÈÿÈÈÿÃÃÈÿÅÂÈÿÅÂÈÿÅÂÈÿÅÂÈÿÂÄÂÈÿÂÅÈÿÂÂÂÂÈÿÆÈÿÁÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÄÄÈÿÈÈÿÈÈÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÁÿÃÃÂÈÿÆÈÿÃÂÈÿÂÂÂÂÈÿÂÂÄÈÿÈÈÿÈÈÿÃÅÈÿÃÃÂÈÿÆÈÿÂÂÂÂÈÿÃÅÈÿÂÃÃÈÿÅÂÈÿÂÂÂÂÈÿÄÃÈÿÁÿÈÈÿÂÄÂÈÿÂÃÂÈÿÈÈÿÂÂÄÈÿÈÈÿÈÈÿÈÈÿÈÈÿÂÄÂÈÿÈÈÿÈÈÿÈÈÿÂÃÂÈÿÈÈÿÂÄÂÈÿÁÿÄÃÈÿÂÄÂÈÿÄÃÈÿÄÃÈÿÄÃÈÿÇÈÿÄÃÈÿÄÃÈÿÄÃÈÿÂÄÂÈÿÄÃÈÿÃÄÈÿÃÄÈÿÂÃÃÈÿÃÄÈÿÄÃÈÿÁÿÄÂÂÈÿÅÂÈÿÄÂÂÈÿÄÂÂÈÿÄÂÂÈÿÄÂÂÈÿÂÆÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÈÿÂÂÂÂÈÿÂÂÄÈÿÂÂÄÈÿÃÂÃÈÿÂÂÄÈÿÅÂÈÿÁÿÅÂÈÿÂÅÈÿÅÂÈÿÅÂÈÿÅÂÈÿÇÈÿÂÆÈÿÆÂÈÿÆÂÈÿÆÈÿÆÂÈÿÂÂÄÈÿÂÂÄÈÿÃÂÃÈÿÂÂÄÈÿÂÂÂÂÈÿÁÿÂÂÂÂÈÿÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÄÃÈÿÂÆÈÿÂÆÈÿÂÅÈÿÂÆÈÿÂÂÄÈÿÂÂÄÈÿÃÂÃÈÿÂÂÄÈÿÂÂÂÂÈÿÁÿÆÈÿÂÆÈÿÆÈÿÆÈÿÆÈÿÇÈÿÄÂÂÈÿÄÃÈÿÄÃÈÿÂÄÂÈÿÄÃÈÿÄÃÈÿÄÃÈÿÂÄÂÈÿÄÃÈÿÄÃÈÿÁÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÂÃÃÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÁÿÈÈÿÈÈÿÈÈÿÄÃÈÿÃÂÈÿÈÈÿÂÂÄÈÿÈÈÿÈÈÿÈÈÿÄÃÈÿÈÈÿÃÂÃÈÿÄÄÈÿÈÈÿÇÈÿÁÿÅÃÈÿÃÅÈÿÃÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÂÄÈÿÆÈÿÃÅÈÿÃÃÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÄÈÿÂÅÈÿÂÂÂÂÈÿÈÈÿÁÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÅÂÈÿÈÈÿÈÈÿÈÈÿÈÈÿÂÂÂÂÈÿÅÂÈÿÈÈÿÂÃÃÈÿÁÿÅÃÈÿÄÃÈÿÄÃÈÿÄÃÈÿÄÃÈÿÄÃÈÿÆÂÈÿÂÂÃÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÈÿÂÂÂÂÈÿÂÂÂÈÿÁÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÈÈÿÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÅÂÈÿÂÂÂÂÈÿÂÃÂÈÿÁÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÄÈÿÃÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÅÂÈÿÂÅÈÿÅÂÈÿÇÈÿÁÿÂÂÂÂÈÿÄÃÈÿÄÃÈÿÄÃÈÿÄÃÈÿÄÃÈÿÂÂÄÈÿÅÂÈÿÆÈÿÆÈÿÆÈÿÆÈÿÄÂÂÈÿÄÄÈÿÄÂÂÈÿÂÃÂÈÿÁÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÇÈÿÈÈÿÈÈÿÈÈÿÈÈÿÅÃÈÿÈÈÿÅÃÈÿÈÈÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÁÿÆÂÈÿÅÈÿÂÄÂÈÿÂÃÃÈÿÈÈÿÄÂÂÈÿÃÃÂÈÿÅÂÈÿÆÈÿÃÄÈÿÃÄÈÿÂÂÂÈÿÂÂÂÈÿÂÂÂÈÿÄÂÈÿÅÃÈÿÁÿÈÈÿÅÂÈÿÆÈÿÂÂÂÈÿÄÃÈÿÃÂÃÈÿÈÈÿÅÈÿÂÄÂÈÿÈÈÿÈÈÿÂÃÃÈÿÂÃÃÈÿÂÃÃÈÿÂÂÂÈÿÂÂÂÈÿÁÿÄÃÈÿÂÃÃÈÿÄÃÈÿÂÃÂÈÿÄÂÂÈÿÅÂÈÿÄÃÈÿÅÂÈÿÄÃÈÿÅÂÈÿÄÃÈÿÅÂÈÿÄÃÈÿÅÃÈÿÄÂÂÈÿÂÂÂÈÿÁÿÄÂÂÈÿÂÂÂÈÿÄÂÂÈÿÇÈÿÅÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÂÂÈÿÅÂÈÿÄÂÈÿÁÿÅÂÈÿÂÃÂÈÿÅÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÆÈÿÂÆÈÿÂÆÈÿÂÆÈÿÂÆÈÿÂÆÈÿÂÆÈÿÂÆÈÿÂÂÂÈÿÂÂÂÂÈÿÂÂÂÈÿÁÿÂÂÂÂÈÿÇÈÿÂÂÂÂÈÿÃÃÂÈÿÆÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÂÂÈÿÂÂÂÂÈÿÂÂÂÈÿÁÿÆÈÿÂÃÂÈÿÆÈÿÂÂÄÈÿÂÂÄÈÿÅÂÈÿÄÃÈÿÅÂÈÿÄÃÈÿÅÂÈÿÄÃÈÿÅÂÈÿÄÃÈÿÅÃÈÿÃÂÈÿÅÃÈÿÁÿÈÈÿÈÈÿÈÈÿÃÄÈÿÃÃÂÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÁÿÄÃÈÿÇÈÿÆÂÈÿÂÂÂÈÿÂÂÂÈÿÃÄÈÿÃÄÈÿÇÈÿÈÈÿÂÂÂÈÿÂÂÂÈÿÅÂÈÿÆÈÿÅÈÿÂÄÂÈÿÃÄÈÿÁÿÂÄÂÈÿÈÈÿÈÈÿÂÃÃÈÿÂÃÃÈÿÈÈÿÈÈÿÂÆÈÿÄÃÈÿÂÃÃÈÿÂÃÃÈÿÅÈÿÂÄÂÈÿÅÂÈÿÆÈÿÈÈÿÁÿÄÃÈÿÇÈÿÄÃÈÿÇÈÿÄÃÈÿÇÈÿÄÃÈÿÆÂÈÿÂÂÂÂÈÿÇÈÿÄÃÈÿÅÂÈÿÃÂÈÿÅÂÈÿÃÂÈÿÅÂÈÿÁÿÅÂÈÿÂÆÈÿÂÂÂÂÈÿÂÆÈÿÂÂÂÂÈÿÂÆÈÿÂÂÂÂÈÿÂÆÈÿÆÂÈÿÂÆÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÁÿÂÂÂÂÈÿÆÂÈÿÆÂÈÿÆÂÈÿÆÂÈÿÆÂÈÿÆÂÈÿÇÈÿÂÆÈÿÆÂÈÿÆÂÈÿÂÆÈÿÂÂÂÂÈÿÂÆÈÿÂÂÂÂÈÿÂÆÈÿÁÿÂÂÂÂÈÿÂÆÈÿÂÆÈÿÂÆÈÿÂÆÈÿÂÆÈÿÂÆÈÿÃÂÃÈÿÄÃÈÿÂÆÈÿÂÆÈÿÂÂÃÈÿÅÂÈÿÂÂÃÈÿÅÂÈÿÂÂÃÈÿÁÿÄÃÈÿÇÈÿÄÃÈÿÇÈÿÄÃÈÿÇÈÿÄÃÈÿÂÂÄÈÿÂÃÃÈÿÇÈÿÄÃÈÿÆÈÿÄÂÂÈÿÆÈÿÄÂÂÈÿÆÈÿÁÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÃÃÂÈÿÄÂÂÈÿÈÈÿÈÈÿÈÈÿÅÃÈÿÈÈÿÅÃÈÿÈÈÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÁÿÃÄÈÿÅÂÈÿÃÂÈÿÄÃÈÿÃÃÈÿÂÂÂÂÈÿÃÅÈÿÃÂÈÿÃÂÈÿÄÃÈÿÄÃÈÿÄÂÈÿÂÃÂÈÿÄÃÈÿÂÂÄÈÿÃÄÈÿÁÿÈÈÿÂÃÂÈÿÂÂÂÂÈÿÄÂÈÿÄÂÈÿÇÈÿÇÈÿÂÃÂÈÿÂÃÂÈÿÈÈÿÈÈÿÄÃÈÿÅÂÈÿÂÂÄÈÿÈÈÿÈÈÿÁÿÃÂÈÿÂÆÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÈÿÂÂÂÂÈÿÂÂÂÈÿÄÃÈÿÃÄÈÿÄÃÈÿÃÄÈÿÄÃÈÿÃÄÈÿÂÂÄÈÿÃÄÈÿÄÃÈÿÁÿÂÂÂÂÈÿÂÂÃÈÿÅÂÈÿÂÂÂÂÈÿÃÂÈÿÆÂÈÿÃÂÈÿÂÂÄÈÿÂÂÄÈÿÂÂÄÈÿÂÂÄÈÿÂÂÄÈÿÂÂÄÈÿÂÂÄÈÿÂÂÄÈÿÂÂÄÈÿÁÿÂÂÂÂÈÿÆÈÿÄÂÂÈÿÆÂÈÿÂÂÂÈÿÂÂÂÂÈÿÂÂÂÈÿÂÂÄÈÿÂÂÄÈÿÂÂÄÈÿÂÂÄÈÿÂÂÄÈÿÂÂÄÈÿÄÃÈÿÂÂÄÈÿÂÂÄÈÿÁÿÅÂÈÿÃÂÃÈÿÅÃÈÿÂÂÂÂÈÿÂÂÂÈÿÂÂÂÂÈÿÂÂÂÈÿÂÂÄÈÿÂÂÄÈÿÂÂÄÈÿÂÂÄÈÿÂÂÄÈÿÂÂÄÈÿÃÂÃÈÿÄÃÈÿÂÂÄÈÿÁÿÄÂÂÈÿÄÂÂÈÿÄÂÂÈÿÂÂÂÂÈÿÃÂÂÈÿÂÂÂÂÈÿÃÂÂÈÿÄÃÈÿÄÃÈÿÄÃÈÿÄÃÈÿÄÃÈÿÄÃÈÿÂÂÄÈÿÂÂÄÈÿÄÃÈÿÁÿÅÃÈÿÄÃÈÿÂÃÃÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÃÄÈÿÃÃÂÈÿÈÈÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÁÿÈÈÿÃÃÈÿÄÈÿÅÂÈÿÅÂÈÿÃÂÂÈÿÃÅÈÿÈÈÿÄÂÂÈÿÃÂÂÈÿÄÄÈÿÃÄÈÿÄÈÿÃÈÿÄÄÈÿÃÄÈÿÁÿÈÈÿÄÈÿÈÈÿÅÈÿÂÃÂÈÿÂÂÂÈÿÂÂÂÈÿÈÈÿÂÂÂÈÿÂÂÂÈÿÂÅÈÿÂÂÄÈÿÂÂÂÈÿÂÂÂÈÿÂÅÈÿÂÂÄÈÿÁÿÃÄÈÿÄÈÿÂÃÂÈÿÄÂÂÈÿÃÃÂÈÿÄÃÈÿÂÂÂÈÿÃÂÂÈÿÂÅÈÿÂÂÄÈÿÂÃÈÿÂÂÄÈÿÂÅÈÿÂÂÄÈÿÂÂÂÈÿÂÂÄÈÿÁÿÂÂÄÈÿÄÈÿÄÈÿÄÂÂÈÿÄÂÂÈÿÂÂÂÈÿÄÃÈÿÂÂÂÈÿÂÅÈÿÂÂÄÈÿÂÂÂÈÿÂÂÄÈÿÂÅÈÿÂÂÄÈÿÂÅÈÿÂÂÂÈÿÁÿÂÂÄÈÿÂÈÿÄÈÿÂÂÂÂÈÿÄÂÂÈÿÃÂÂÈÿÂÂÂÈÿÄÃÈÿÂÃÈÿÂÂÄÈÿÇÈÿÂÂÄÈÿÂÃÈÿÂÂÄÈÿÂÃÈÿÂÂÄÈÿÁÿÂÂÄÈÿÂÈÿÄÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÄÈÿÃÂÂÈÿÂÂÂÈÿÂÂÂÈÿÂÂÄÈÿÃÂÃÈÿÄÃÈÿÂÂÂÈÿÂÂÄÈÿÂÂÂÈÿÂÂÄÈÿÁÿÄÃÈÿÃÂÂÈÿÃÃÈÿÄÃÈÿÂÂÂÂÈÿÃÂÃÈÿÂÂÄÈÿÃÂÂÈÿÇÈÿÄÃÈÿÄÂÂÈÿÄÂÂÈÿÇÈÿÄÃÈÿÇÈÿÄÃÈÿÁÿÈÈÿÈÈÿÄÂÂÈÿÈÈÿÄÃÈÿÄÄÈÿÃÅÈÿÈÈÿÈÈÿÈÈÿÄÃÈÿÂÃÃÈÿÈÈÿÈÈÿÈÈÿÈÈÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÁÿÄÄÈÿÃÄÈÿÄÂÂÈÿÃÃÂÈÿÂÂÂÂÈÿÈÈÿÂÂÂÈÿÂÂÂÈÿÂÆÈÿÈÈÿÈÈÿÇÈÿÈÈÿÂÂÂÈÿÂÂÂÈÿÂÂÂÈÿÁÿÂÅÈÿÂÂÄÈÿÃÂÃÈÿÈÈÿÃÂÂÈÿÃÃÈÿÂÃÃÈÿÂÃÃÈÿÇÈÿÂÂÂÂÈÿÃÃÈÿÈÈÿÆÂÈÿÂÃÃÈÿÂÃÃÈÿÂÂÂÈÿÁÿÃÄÈÿÂÃÃÈÿÂÂÂÂÈÿÃÃÈÿÆÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÃÃÈÿÃÂÈÿÃÂÂÈÿÂÂÂÂÈÿÅÂÈÿÈÈÿÅÂÈÿÈÈÿÅÂÈÿÁÿÂÅÈÿÂÂÄÈÿÃÂÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÃÂÂÈÿÂÂÂÂÈÿÂÂÂÈÿÆÂÈÿÂÂÂÂÈÿÂÃÂÈÿÄÃÈÿÂÃÂÈÿÄÃÈÿÂÃÂÈÿÁÿÃÃÈÿÃÄÈÿÆÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÆÂÈÿÂÂÂÂÈÿÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÁÿÂÂÂÈÿÂÂÄÈÿÂÃÂÈÿÂÂÂÂÈÿÂÂÄÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÁÿÇÈÿÄÃÈÿÂÂÂÂÈÿÂÂÂÂÈÿÃÂÃÈÿÂÂÄÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÈÿÄÂÂÈÿÄÂÂÈÿÅÂÈÿÄÃÈÿÅÂÈÿÄÃÈÿÅÂÈÿÁÿÈÈÿÈÈÿÈÈÿÈÈÿÄÄÈÿÃÅÈÿÈÈÿÈÈÿÈÈÿÂÃÃÈÿÂÃÃÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÁÿÂÂÂÈÿÆÈÿÈÈÿÄÂÂÈÿÄÂÂÈÿÆÂÈÿÈÈÿÂÂÂÈÿÂÂÂÈÿÄÂÂÈÿÄÂÂÈÿÅÂÈÿÅÂÈÿÅÂÈÿÈÈÿÂÂÂÈÿÁÿÂÂÂÈÿÂÂÈÿÈÈÿÃÂÃÈÿÃÂÃÈÿÂÂÂÈÿÂÃÂÈÿÂÃÃÈÿÂÃÃÈÿÃÂÃÈÿÃÂÃÈÿÅÈÿÂÃÂÈÿÃÅÈÿÅÂÈÿÂÃÃÈÿÁÿÈÈÿÃÃÈÿÂÂÂÈÿÆÂÈÿÂÃÂÈÿÅÂÈÿÃÂÈÿÆÂÈÿÂÃÂÈÿÅÂÈÿÅÂÈÿÅÂÈÿÅÂÈÿÄÃÈÿÂÆÈÿÅÂÈÿÁÿÄÃÈÿÃÂÂÈÿÂÂÈÿÂÂÂÈÿÃÂÈÿÂÂÂÈÿÂÃÈÿÂÂÂÈÿÃÂÈÿÃÅÈÿÂÆÈÿÃÅÈÿÂÆÈÿÄÃÈÿÃÄÈÿÃÅÈÿÁÿÂÂÂÂÈÿÃÃÈÿÂÄÈÿÅÂÈÿÂÃÈÿÃÂÂÈÿÂÅÈÿÅÂÈÿÂÃÈÿÄÃÈÿÃÄÈÿÄÃÈÿÃÄÈÿÅÂÈÿÃÃÂÈÿÄÃÈÿÁÿÂÂÂÂÈÿÂÂÈÿÂÄÈÿÂÂÂÈÿÂÅÈÿÂÂÄÈÿÄÄÈÿÂÂÂÈÿÂÅÈÿÄÃÈÿÃÃÂÈÿÄÃÈÿÃÃÂÈÿÃÂÃÈÿÅÃÈÿÄÃÈÿÁÿÄÃÈÿÆÈÿÂÂÂÈÿÃÂÂÈÿÄÄÈÿÃÂÃÈÿÂÂÄÈÿÃÂÂÈÿÄÄÈÿÅÂÈÿÅÃÈÿÅÂÈÿÅÃÈÿÄÂÂÈÿÄÂÂÈÿÅÂÈÿÁÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÄÄÈÿÃÅÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÄÃÈÿÂÃÃÈÿÈÈÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÁÿÂÂÂÈÿÆÂÈÿÃÄÈÿÂÂÂÈÿÃÂÈÿÆÂÈÿÃÄÈÿÃÂÈÿÃÂÈÿÇÈÿÈÈÿÂÂÂÈÿÂÂÂÈÿÂÃÃÈÿÂÃÃÈÿÂÂÂÈÿÁÿÂÃÃÈÿÂÂÄÈÿÂÂÄÈÿÂÃÃÈÿÂÃÈÿÂÂÈÿÂÂÄÈÿÂÃÂÈÿÂÃÂÈÿÈÈÿÇÈÿÂÃÃÈÿÂÃÃÈÿÂÂÂÈÿÂÂÂÈÿÂÂÂÈÿÁÿÅÂÈÿÂÂÄÈÿÆÂÈÿÆÂÈÿÆÂÈÿÂÂÄÈÿÆÂÈÿÂÃÂÈÿÈÈÿÂÃÂÈÿÈÈÿÂÃÂÈÿÈÈÿÇÈÿÂÃÃÈÿÂÃÂÈÿÁÿÂÆÈÿÂÂÄÈÿÂÂÄÈÿÂÂÄÈÿÂÂÄÈÿÂÂÄÈÿÂÂÄÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÂÈÿÂÃÂÈÿÂÃÂÈÿÁÿÃÄÈÿÄÃÈÿÂÂÂÈÿÂÂÄÈÿÂÂÄÈÿÆÂÈÿÆÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÁÿÃÃÂÈÿÃÂÃÈÿÃÂÃÈÿÂÂÄÈÿÂÂÂÈÿÂÂÄÈÿÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÁÿÅÃÈÿÄÂÂÈÿÄÂÂÈÿÄÃÈÿÃÂÃÈÿÄÃÈÿÃÂÃÈÿÅÂÈÿÆÈÿÅÂÈÿÆÈÿÅÂÈÿÆÈÿÅÂÈÿÆÈÿÅÂÈÿÁÿÈÈÿÂÃÃÈÿÂÃÃÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÁÿÂÂÂÈÿÂÃÂÈÿÈÈÿÅÂÈÿÅÂÈÿÅÂÈÿÅÂÈÿÂÂÂÂÈÿÄÂÂÈÿÄÂÂÈÿÃÄÈÿÃÄÈÿÂÂÂÈÿÂÂÂÈÿÂÃÃÈÿÂÄÂÈÿÁÿÂÂÂÈÿÂÃÂÈÿÈÈÿÅÈÿÂÃÂÈÿÅÈÿÂÃÂÈÿÈÈÿÃÂÃÈÿÃÂÃÈÿÈÈÿÈÈÿÂÃÃÈÿÂÃÃÈÿÂÂÂÈÿÂÃÈÿÁÿÈÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÈÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÇÈÿÆÂÈÿÇÈÿÆÂÈÿÇÈÿÆÂÈÿÂÂÂÈÿÅÃÈÿÁÿÂÂÂÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÃÂÈÿÂÃÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÂÂÂÂÈÿÃÂÂÈÿÂÂÃÈÿÃÂÂÈÿÂÂÃÈÿÃÂÂÈÿÂÂÃÈÿÃÅÈÿÂÅÈÿÁÿÂÂÂÂÈÿÅÂÈÿÂÂÂÂÈÿÂÂÈÿÂÂÈÿÄÃÈÿÂÂÂÂÈÿÄÃÈÿÃÂÃÈÿÂÂÄÈÿÃÂÃÈÿÂÂÄÈÿÃÂÃÈÿÂÂÄÈÿÂÅÈÿÅÃÈÿÁÿÂÂÂÂÈÿÂÂÄÈÿÆÈÿÇÈÿÇÈÿÂÂÄÈÿÅÂÈÿÂÂÄÈÿÂÂÂÈÿÂÂÂÈÿÂÂÂÈÿÂÂÂÈÿÂÂÂÈÿÂÂÂÈÿÂÅÈÿÂÃÈÿÁÿÆÈÿÂÅÈÿÃÂÃÈÿÂÂÂÈÿÂÂÂÈÿÄÃÈÿÄÂÂÈÿÄÃÈÿÇÈÿÆÂÈÿÇÈÿÆÂÈÿÇÈÿÆÂÈÿÃÅÈÿÂÄÂÈÿÁÿÈÈÿÂÄÂÈÿÄÃÈÿÈÈÿÈÈÿÈÈÿÅÃÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÈÈÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿÿÿÿÿÿÿÿÿÅÿ ÿÿÿÿÿªªªªªªªUªªªUUUUUÿUÿUUÿÿÿUUÿUÿÿÿUÿÿÿ ,,,888DDDPPPaaaqqq‘‘‘¡¡¡¶¶¶ÊÊÊâââÿÿÿÿ@ÿ}ÿ¾ÿÿÿÿ¾ÿ}ÿ@ÿÿ@ÿ}ÿ¾ÿÿ¾ÿ}ÿ@ÿÿÿ@ÿ}ÿ¾ÿÿ¾ÿ}ÿ@ÿ}}ÿ}ÿ¾}ÿÞ}ÿÿ}ÿÿ}Þÿ}¾ÿ}ÿ}}ÿ}ÿ¾}ÿÞ}ÿÿ}Þÿ}¾ÿ}ÿ}}ÿ}}ÿ}ÿ¾}ÿÞ}ÿÿ}Þÿ}¾ÿ}ÿ¶¶ÿƶÿÚ¶ÿê¶ÿÿ¶ÿÿ¶êÿ¶Úÿ¶Æÿ¶¶ÿƶÿÚ¶ÿê¶ÿÿ¶êÿ¶Úÿ¶Æÿ¶¶ÿ¶¶ÿƶÿÚ¶ÿê¶ÿÿ¶êÿ¶Úÿ¶Æÿqq8qUqqqqUq8qqqq8qUqqUq8qqqqq8qUqqUq8qq88qD8qU8qa8qq8qq8aq8Uq8Dq88qD8qU8qa8qq8aq8Uq8Dq88q88qD8qU8qa8qq8aq8Uq8DqPPqYPqaPqiPqqPqqPiqPaqPYqPPqYPqaPqiPqqPiqPaqPYqPPqPPqYPqaPqiPqqPiqPaqPYq@@ @0@@@@0@ @@@@ @0@@0@ @@@@@ @0@@0@ @@ @( @0 @8 @@ @@ 8@ 0@ (@ @( @0 @8 @@ 8@ 0@ (@ @ @( @0 @8 @@ 8@ 0@ (@,,@0,@4,@<,@@,@@,<@,4@,0@,,@0,@4,@<,@@,<@,4@,0@,,@,,@0,@4,@<,@@,<@,4@,0@ÿÿaseprite_1.0.9/data/fonts/anipro_fixed.pcx000066400000000000000000000107021246367725700206670ustar00rootroot00000000000000 à@ÈÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿááÿÿÿÿÿÿäÿÁÿÆÁÿÂÂÂÁÿÂÂÁÿÂÁÿÄÁÿÂÂÁÿÂÃÁÿÂÂÂÁÿÂÂÂÁÿÂÃÁÿÂÁÿÂÃÁÿÆÁÿÆÁÿÆÁÿÃÂÁÿÃÂÁÿÃÂÁÿÄÂÁÿÄÂÁÿÂÂÂÁÿÄÂÁÿÃÂÁÿÅÁÿÃÂÁÿÃÂÁÿÂÂÂÁÿÂÂÂÁÿÃÂÁÿÆÁÿÂÃÁÿÃÂÁÿÁÿÆÁÿÂÂÂÁÿÂÂÁÿÅÁÿÃÁÿÂÂÁÿÂÂÁÿÂÂÂÁÿÂÃÁÿÂÂÂÁÿÂÂÂÁÿÂÃÁÿÆÁÿÆÁÿÆÁÿÂÂÂÁÿÂÂÁÿÂÂÂÁÿÄÁÿÄÁÿÂÁÿÅÁÿÅÁÿÄÁÿÃÁÿÃÁÿÂÂÂÁÿÂÂÂÁÿÂÂÂÁÿÄÁÿÂÂÂÁÿÂÂÁÿÁÿÆÁÿÂÂÂÁÿÂÂÁÿÂÁÿÃÂÁÿÂÃÁÿÂÃÁÿÂÃÁÿÂÃÁÿÂÂÂÁÿÄÁÿÅÁÿÆÁÿÄÁÿÆÁÿÂÃÁÿÁÿÃÂÁÿÃÂÁÿÃÂÁÿÂÂÁÿÄÂÁÿÄÂÁÿÃÂÁÿÃÂÁÿÄÁÿÆÁÿÆÁÿÂÃÁÿÆÁÿÃÂÁÿÂÂÂÁÿÁÿÆÁÿÂÂÂÁÿÆÁÿÅÁÿÂÁÿÂÁÿÃÁÿÆÁÿÂÃÁÿÂÂÂÁÿÂÂÂÁÿÂÃÁÿÂÂÂÁÿÆÁÿÂÂÂÁÿÂÄÁÿÂÂÁÿÃÂÁÿÅÁÿÄÁÿÅÁÿÄÁÿÃÁÿÂÃÁÿÃÁÿÄÁÿÂÂÂÁÿÂÂÂÁÿÂÂÂÁÿÄÁÿÂÂÂÁÿÂÂÂÁÿÁÿÆÁÿÆÁÿÆÁÿÂÁÿÄÂÁÿÂÂÁÿÂÂÁÿÆÁÿÂÂÂÁÿÂÃÁÿÂÁÿÂÃÁÿÂÂÂÁÿÆÁÿÂÂÂÁÿÅÁÿÃÂÁÿÃÂÁÿÅÁÿÄÂÁÿÃÂÁÿÄÂÁÿÃÂÁÿÂÃÁÿÃÂÁÿÃÂÁÿÂÂÂÁÿÃÂÁÿÃÂÁÿÆÁÿÂÃÁÿÆÁÿÁÿÆÁÿÂÂÂÁÿÆÁÿÆÁÿÂÃÁÿÆÁÿÂÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÂÃÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÂÃÁÿÆÁÿÆÁÿÆÁÿÂÂÂÁÿÿÿÿÿÿÿäÿÁÿÃÂÁÿÃÂÁÿÄÂÁÿÄÁÿÄÂÁÿÅÁÿÅÁÿÄÁÿÃÁÿÃÂÁÿÄÁÿÂÁÿÄÁÿÃÁÿÃÁÿÃÂÁÿÄÂÁÿÃÂÁÿÄÂÁÿÄÁÿÅÁÿÃÁÿÃÁÿÃÁÿÃÁÿÃÁÿÅÁÿÄÁÿÂÄÁÿÄÁÿÂÃÁÿÆÁÿÁÿÃÁÿÃÁÿÃÁÿÅÁÿÃÁÿÅÁÿÅÁÿÅÁÿÃÁÿÂÃÁÿÄÁÿÂÁÿÄÁÿÂÂÁÿÂÂÁÿÃÁÿÃÁÿÃÁÿÃÁÿÅÁÿÂÃÁÿÃÁÿÃÁÿÃÁÿÂÁÿÃÁÿÃÂÁÿÂÃÁÿÂÃÁÿÃÂÁÿÃÂÁÿÆÁÿÁÿÃÁÿÅÁÿÄÂÁÿÅÁÿÃÁÿÄÂÁÿÄÂÁÿÂÂÁÿÅÁÿÂÃÁÿÄÁÿÂÃÁÿÄÁÿÁÿÁÿÃÁÿÄÂÁÿÃÁÿÄÂÁÿÃÂÁÿÂÃÁÿÃÁÿÃÁÿÁÿÂÃÁÿÂÁÿÂÃÁÿÂÃÁÿÂÂÂÁÿÃÂÁÿÂÂÁÿÆÁÿÁÿÂÂÁÿÃÁÿÃÁÿÅÁÿÃÁÿÅÁÿÅÁÿÃÁÿÃÁÿÂÃÁÿÃÁÿÂÁÿÄÁÿÃÁÿÂÂÁÿÃÁÿÅÁÿÃÁÿÃÁÿÄÁÿÂÃÁÿÃÁÿÂÁÿÂÂÁÿÂÁÿÂÃÁÿÄÁÿÂÃÁÿÃÂÁÿÃÂÁÿÆÁÿÆÁÿÁÿÅÁÿÃÁÿÄÂÁÿÄÁÿÄÂÁÿÅÁÿÅÁÿÄÁÿÃÁÿÃÂÁÿÃÂÁÿÂÁÿÄÁÿÃÁÿÃÁÿÃÂÁÿÅÁÿÃÂÁÿÂÂÁÿÄÂÁÿÂÃÁÿÄÁÿÂÃÁÿÃÁÿÃÁÿÂÃÁÿÅÁÿÄÁÿÄÁÿÄÁÿÆÁÿÆÁÿÁÿÄÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÃÂÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÅÁÿÿÿÿÿÿÿäÿÁÿÂÃÁÿÃÂÁÿÄÂÁÿÄÁÿÄÂÁÿÅÁÿÅÁÿÄÁÿÃÁÿÃÂÁÿÄÁÿÂÁÿÄÁÿÃÁÿÃÁÿÃÂÁÿÄÂÁÿÃÂÁÿÄÂÁÿÄÁÿÅÁÿÃÁÿÃÁÿÃÁÿÃÁÿÃÁÿÅÁÿÂÃÁÿÂÂÂÁÿÃÂÁÿÄÁÿÆÁÿÁÿÂÃÁÿÃÁÿÃÁÿÅÁÿÃÁÿÅÁÿÅÁÿÅÁÿÃÁÿÂÃÁÿÄÁÿÂÁÿÄÁÿÂÂÁÿÂÂÁÿÃÁÿÃÁÿÃÁÿÃÁÿÅÁÿÂÃÁÿÃÁÿÃÁÿÃÁÿÂÁÿÃÁÿÃÂÁÿÂÂÂÁÿÂÂÂÁÿÂÂÂÁÿÃÁÿÂÃÁÿÁÿÂÂÂÁÿÅÁÿÄÂÁÿÅÁÿÃÁÿÄÂÁÿÄÂÁÿÂÂÁÿÅÁÿÂÃÁÿÄÁÿÂÃÁÿÄÁÿÁÿÁÿÃÁÿÄÂÁÿÃÁÿÄÂÁÿÃÂÁÿÂÃÁÿÃÁÿÃÁÿÁÿÂÃÁÿÂÁÿÂÃÁÿÂÃÁÿÂÂÂÁÿÃÂÁÿÃÁÿÃÂÁÿÁÿÆÁÿÃÁÿÃÁÿÅÁÿÃÁÿÅÁÿÅÁÿÃÁÿÃÁÿÂÃÁÿÃÁÿÂÁÿÄÁÿÃÁÿÂÂÁÿÃÁÿÅÁÿÃÁÿÃÁÿÄÁÿÂÃÁÿÃÁÿÂÁÿÂÂÁÿÂÁÿÂÃÁÿÄÁÿÂÂÂÁÿÂÂÂÁÿÂÂÂÁÿÃÂÁÿÂÂÁÿÁÿÆÁÿÃÁÿÄÂÁÿÄÁÿÄÂÁÿÅÁÿÅÁÿÄÁÿÃÁÿÃÂÁÿÃÂÁÿÂÁÿÄÁÿÃÁÿÃÁÿÃÂÁÿÅÁÿÃÂÁÿÂÂÁÿÄÂÁÿÂÃÁÿÄÁÿÂÃÁÿÃÁÿÃÁÿÂÃÁÿÅÁÿÂÃÁÿÂÂÂÁÿÃÂÁÿÆÁÿÅÁÿÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÃÂÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÂÂÂÁÿÆÁÿÆÁÿÆÁÿÿÿÿÿÿÿäÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿaseprite_1.0.9/data/fonts/anipro_variable.pcx000066400000000000000000000105071246367725700213600ustar00rootroot00000000000000 à@ÈÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿááÿÿÿÿÿÿäÿÁÿÆÁÿÂÄÿÂÂÁÿÂÁÿÄÁÿÂÂÁÿÂÃÁÿÂÃÿÂÃÿÂÂÃÿÂÂÿÂÃÁÿÄÃÿÆÁÿÃÄÿÃÂÁÿÃÂÁÿÃÂÁÿÄÂÁÿÄÂÁÿÂÂÂÁÿÄÂÁÿÃÂÁÿÅÁÿÃÂÁÿÃÂÁÿÂÄÿÂÄÿÂÂÂÿÅÂÿÂÃÂÿÃÂÁÿÁÿÆÁÿÂÄÿÂÂÁÿÅÁÿÃÁÿÂÂÁÿÂÂÁÿÂÃÿÂÂÃÿÂÃÿÂÂÂÿÂÃÁÿÄÃÿÆÁÿÃÄÿÂÂÂÁÿÂÂÁÿÂÂÂÁÿÄÁÿÄÁÿÂÁÿÅÁÿÅÁÿÄÁÿÃÁÿÃÁÿÂÄÿÂÄÿÂÂÂÿÄÂÿÂÂÂÿÂÂÁÿÁÿÆÁÿÂÄÿÂÂÁÿÂÁÿÃÂÁÿÂÃÁÿÂÃÁÿÂÂÃÿÂÂÃÿÂÃÿÄÂÿÅÁÿÄÃÿÄÁÿÃÄÿÂÃÁÿÁÿÃÂÁÿÃÂÁÿÃÂÁÿÂÂÁÿÄÂÁÿÄÂÁÿÃÂÁÿÃÂÁÿÄÁÿÃÄÿÃÄÿÂÃÂÿÅÂÿÂÂÂÿÂÂÂÁÿÁÿÆÁÿÂÄÿÆÁÿÅÁÿÂÁÿÂÁÿÃÁÿÄÃÿÂÂÃÿÂÃÿÂÂÂÿÂÃÁÿÂÃÿÆÁÿÂÄÿÂÄÁÿÂÂÁÿÃÂÁÿÅÁÿÄÁÿÅÁÿÄÁÿÃÁÿÂÃÁÿÃÁÿÄÁÿÂÄÿÂÄÿÂÂÂÿÄÂÿÂÂÂÿÂÂÂÁÿÁÿÆÁÿÃÄÿÆÁÿÂÁÿÄÂÁÿÂÂÁÿÂÂÁÿÄÃÿÂÃÿÂÂÃÿÂÂÿÂÃÁÿÂÃÿÆÁÿÂÄÿÅÁÿÃÂÁÿÃÂÁÿÅÁÿÄÂÁÿÃÂÁÿÄÂÁÿÃÂÁÿÂÃÁÿÃÂÁÿÃÂÁÿÂÄÿÄÿÂÂÂÿÅÂÿÂÃÂÿÆÁÿÁÿÆÁÿÂÄÿÆÁÿÆÁÿÂÃÁÿÆÁÿÂÁÿÄÃÿÄÃÿÄÃÿÅÂÿÆÁÿÂÂÃÿÆÁÿÃÄÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÃÄÿÂÄÿÅÂÿÅÂÿÅÂÿÂÂÂÁÿÿÿÿÿÿÿäÿÁÿÃÂÁÿÃÂÁÿÄÂÁÿÄÁÿÄÂÁÿÅÁÿÅÁÿÄÁÿÃÁÿÃÃÿÄÁÿÂÂÿÄÂÿÃÁÿÃÁÿÃÂÁÿÄÂÁÿÃÂÁÿÄÂÁÿÄÁÿÅÁÿÃÁÿÃÁÿÃÁÿÃÁÿÃÁÿÅÁÿÄÁÿÂÄÁÿÄÁÿÂÃÁÿÆÁÿÁÿÃÁÿÃÁÿÃÁÿÅÁÿÃÁÿÅÁÿÅÁÿÅÁÿÃÁÿÂÃÿÄÁÿÂÂÿÄÂÿÂÂÁÿÂÂÁÿÃÁÿÃÁÿÃÁÿÃÁÿÅÁÿÂÃÁÿÃÁÿÃÁÿÃÁÿÂÁÿÃÁÿÃÂÁÿÂÃÁÿÂÃÁÿÃÂÁÿÃÂÁÿÆÁÿÁÿÃÁÿÅÁÿÄÂÁÿÅÁÿÃÁÿÄÂÁÿÄÂÁÿÂÂÁÿÅÁÿÂÃÿÄÁÿÂÃÂÿÄÂÿÁÿÁÿÃÁÿÄÂÁÿÃÁÿÄÂÁÿÃÂÁÿÂÃÁÿÃÁÿÃÁÿÁÿÂÃÁÿÂÁÿÂÃÁÿÂÃÁÿÂÂÂÁÿÃÂÁÿÂÂÁÿÆÁÿÁÿÂÂÁÿÃÁÿÃÁÿÅÁÿÃÁÿÅÁÿÅÁÿÃÁÿÃÁÿÂÃÿÃÁÿÂÂÿÄÂÿÃÁÿÂÂÁÿÃÁÿÅÁÿÃÁÿÃÁÿÄÁÿÂÃÁÿÃÁÿÂÁÿÂÂÁÿÂÁÿÂÃÁÿÄÁÿÂÃÁÿÃÂÁÿÃÂÁÿÆÁÿÆÁÿÁÿÅÁÿÃÁÿÄÂÁÿÄÁÿÄÂÁÿÅÁÿÅÁÿÄÁÿÃÁÿÃÃÿÃÂÁÿÂÂÿÄÂÿÃÁÿÃÁÿÃÂÁÿÅÁÿÃÂÁÿÂÂÁÿÄÂÁÿÂÃÁÿÄÁÿÂÃÁÿÃÁÿÃÁÿÂÃÁÿÅÁÿÄÁÿÄÁÿÄÁÿÆÁÿÆÁÿÁÿÄÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÄÃÿÆÁÿÅÂÿÅÂÿÆÁÿÆÁÿÆÁÿÆÁÿÃÂÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÅÁÿÿÿÿÿÿÿäÿÁÿÂÂÃÿÃÂÁÿÄÂÁÿÄÁÿÄÂÁÿÅÁÿÅÁÿÄÁÿÃÁÿÃÃÿÄÁÿÂÂÿÄÂÿÃÁÿÃÁÿÃÂÁÿÄÂÁÿÃÂÁÿÄÂÁÿÄÁÿÅÁÿÃÁÿÃÁÿÃÁÿÃÁÿÃÁÿÅÁÿÂÃÁÿÂÂÂÁÿÃÂÁÿÄÁÿÆÁÿÁÿÂÂÃÿÃÁÿÃÁÿÅÁÿÃÁÿÅÁÿÅÁÿÅÁÿÃÁÿÂÃÿÄÁÿÂÂÿÄÂÿÂÂÁÿÂÂÁÿÃÁÿÃÁÿÃÁÿÃÁÿÅÁÿÂÃÁÿÃÁÿÃÁÿÃÁÿÂÁÿÃÁÿÃÂÁÿÂÂÂÁÿÂÂÂÁÿÂÂÂÁÿÃÁÿÂÃÁÿÁÿÂÃÿÅÁÿÄÂÁÿÅÁÿÃÁÿÄÂÁÿÄÂÁÿÂÂÁÿÅÁÿÂÃÿÄÁÿÂÃÂÿÄÂÿÁÿÁÿÃÁÿÄÂÁÿÃÁÿÄÂÁÿÃÂÁÿÂÃÁÿÃÁÿÃÁÿÁÿÂÃÁÿÂÁÿÂÃÁÿÂÃÁÿÂÂÂÁÿÃÂÁÿÃÁÿÃÂÁÿÁÿÄÃÿÃÁÿÃÁÿÅÁÿÃÁÿÅÁÿÅÁÿÃÁÿÃÁÿÂÃÿÃÁÿÂÂÿÄÂÿÃÁÿÂÂÁÿÃÁÿÅÁÿÃÁÿÃÁÿÄÁÿÂÃÁÿÃÁÿÂÁÿÂÂÁÿÂÁÿÂÃÁÿÄÁÿÂÂÂÁÿÂÂÂÁÿÂÂÂÁÿÃÂÁÿÂÂÁÿÁÿÄÃÿÃÁÿÄÂÁÿÄÁÿÄÂÁÿÅÁÿÅÁÿÄÁÿÃÁÿÃÃÿÃÂÁÿÂÂÿÄÂÿÃÁÿÃÁÿÃÂÁÿÅÁÿÃÂÁÿÂÂÁÿÄÂÁÿÂÃÁÿÄÁÿÂÃÁÿÃÁÿÃÁÿÂÃÁÿÅÁÿÂÃÁÿÂÂÂÁÿÃÂÁÿÆÁÿÅÁÿÁÿÄÃÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÄÃÿÆÁÿÅÂÿÅÂÿÆÁÿÆÁÿÆÁÿÆÁÿÃÂÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÆÁÿÂÂÂÁÿÆÁÿÆÁÿÆÁÿÿÿÿÿÿÿäÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿaseprite_1.0.9/data/fonts/ase1.pcx000066400000000000000000000265771246367725700170720ustar00rootroot00000000000000 °™@Èÿÿ ±±šÿÿÿÿóÿÁÿÄÇÿÁþÉÿÁþÁþÇÿÆÅÿÂÁþÂÆÿÇÄÿÂþÅÃÿÁþÈÿÁþÈÿÁþÂÈÿÄÇÿÆÅÿÂÉÿÄÇÿÂÉÿÂÁþÇÿÁÿÄÇÿÁþÉÿÁþÁþÇÿÁþÁþÂÅÿÃþÆÿÂþÂÁþÄÿÁþÁþÄÃÿÁþÈÿÁþÂÈÿÁþÈÿÁþÂÇÿÂÁþÃÅÿÂÉÿÄÇÿÂÉÿÂÁþÇÿÁÿÄÇÿÁþÉÿÁþÁþÇÿÅþÅÿÁþÄÆÿÁþÁþÁþÂÄÿÂÁþÂÁþÂÃÿÁþÂÈÿÁþÂÈÿÁþÈÿÃþÇÿÂÁþÃÅÿÂÉÿÄÇÿÂÉÿÁþÂÇÿÁÿÄÇÿÁþÉÿÄÇÿÁþÁþÂÅÿÄþÆÿÂþÁþÃÄÿÂþÂþÃÃÿÃÈÿÁþÂÈÿÁþÈÿÁþÂÇÿÅþÅÿÂÉÿÃþÇÿÂÉÿÁþÂÇÿÁÿÄÇÿÁþÉÿÄÇÿÅþÅÿÃÁþÆÿÂÁþÂþÄÿÁþÃÁþÃÃÿÃÈÿÁþÂÈÿÁþÈÿÁþÁþÇÿÂÁþÃÅÿÁþÉÿÄÇÿÂÉÿÁþÂÇÿÁÿÄÇÿÂÉÿÄÇÿÁþÁþÂÅÿÃþÂÆÿÁþÁþÁþÄÿÂþÁþÁþÂÃÿÃÈÿÁþÂÈÿÁþÈÿÄÇÿÂÁþÃÅÿÁþÉÿÄÇÿÁþÉÿÁþÃÇÿÁÿÄÇÿÁþÉÿÄÇÿÆÅÿÂÁþÂÆÿÁþÂÂþÂÄÿÂÁþÂÂþÃÿÃÈÿÁþÈÿÁþÂÈÿÄÇÿÆÅÿÁþÉÿÄÇÿÂÉÿÁþÃÇÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÁÿÂþÂÆÿÂþÈÿÃþÇÿÃþÇÿÂÁþÂÆÿÃþÇÿÂþÂÆÿÄþÆÿÂþÂÆÿÂþÂÆÿÂÉÿÂÉÿÅÆÿÅÆÿÅÆÿÂþÇÿÁÿÁþÂÁþÆÿÁþÈÿÂÁþÇÿÂÁþÇÿÂþÂÆÿÁþÃÇÿÁþÄÆÿÃÁþÆÿÁþÂÁþÆÿÁþÂÁþÆÿÁþÉÿÁþÉÿÃÁþÆÿÅÆÿÁþÄÆÿÁþÂÁþÇÿÁÿÁþÂÁþÆÿÁþÈÿÂÁþÇÿÁþÂÇÿÁþÁþÂÆÿÃþÇÿÃþÂÆÿÂÁþÂÆÿÂþÂÆÿÁþÂÁþÆÿÂÉÿÂÉÿÂþÂÆÿÄþÆÿÂþÂÆÿÃÁþÇÿÁÿÁþÂÁþÆÿÁþÈÿÁþÂÇÿÂÁþÇÿÄþÆÿÂÁþÇÿÁþÂÁþÆÿÂÁþÂÆÿÁþÂÁþÆÿÃþÆÿÂÉÿÂÉÿÁþÄÆÿÅÆÿÃÁþÆÿÂÁþÇÿÁÿÁþÂÁþÆÿÁþÈÿÁþÃÇÿÂÁþÇÿÂÁþÂÆÿÂÁþÇÿÁþÂÁþÆÿÁþÃÆÿÁþÂÁþÆÿÃÁþÆÿÂÉÿÁþÉÿÂþÂÆÿÄþÆÿÂþÂÆÿÄÇÿÁÿÂþÂÆÿÁþÈÿÃþÇÿÂþÂÇÿÂÁþÂÆÿÂþÂÇÿÂþÂÆÿÁþÃÆÿÂþÂÆÿÂþÂÆÿÁþÉÿÁþÉÿÃÁþÆÿÅÆÿÁþÄÆÿÂÁþÇÿÁÿÅÆÿÃÈÿÄÇÿÄÇÿÅÆÿÄÇÿÅÆÿÅÆÿÅÆÿÅÆÿÂÉÿÁþÉÿÅÆÿÅÆÿÅÆÿÄÇÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÁÿÂÄþÃÂÿÂÁþÃÅÿÃþÂÆÿÃþÆÿÃþÂÆÿÄþÆÿÄþÆÿÃþÆÿÁþÂÁþÆÿÁþÉÿÁþÈÿÁþÂÁþÆÿÁþÄÆÿÁþÃÁþÅÿÁþÂÁþÆÿÃþÂÅÿÁÿÁþÄÁþÂÂÿÁþÁþÂÅÿÁþÂÁþÆÿÁþÄÆÿÁþÂÁþÆÿÁþÄÆÿÁþÄÆÿÁþÄÆÿÁþÂÁþÆÿÁþÉÿÁþÈÿÁþÁþÂÆÿÁþÄÆÿÂþÂþÅÿÂþÁþÆÿÁþÃÁþÅÿÁÿÁþÂÂþÂÁþÂÿÁþÁþÂÅÿÃþÂÆÿÁþÄÆÿÁþÂÁþÆÿÃþÂÆÿÃþÂÆÿÁþÂþÆÿÄþÆÿÁþÉÿÁþÈÿÂþÃÆÿÁþÄÆÿÁþÁþÁþÅÿÁþÂþÆÿÁþÃÁþÅÿÁÿÁþÁþÂÁþÁþÂÿÃþÂÅÿÁþÂÁþÆÿÁþÄÆÿÁþÂÁþÆÿÁþÄÆÿÁþÄÆÿÁþÂÁþÆÿÁþÂÁþÆÿÁþÉÿÁþÈÿÂþÃÆÿÁþÄÆÿÁþÃÁþÅÿÁþÂÁþÆÿÁþÃÁþÅÿÁÿÁþÁþÂÁþÁþÂÿÁþÃÁþÅÿÁþÂÁþÆÿÁþÄÆÿÁþÂÁþÆÿÁþÄÆÿÁþÄÆÿÁþÂÁþÆÿÁþÂÁþÆÿÁþÉÿÁþÈÿÁþÁþÂÆÿÁþÄÆÿÁþÃÁþÅÿÁþÂÁþÆÿÁþÃÁþÅÿÁÿÁþÂÃþÁþÂÿÁþÃÁþÅÿÃþÂÆÿÃþÆÿÃþÂÆÿÄþÆÿÁþÄÆÿÃþÆÿÁþÂÁþÆÿÁþÉÿÁþÂÈÿÁþÂÁþÆÿÄþÆÿÁþÃÁþÅÿÁþÂÁþÆÿÃþÂÅÿÁÿÁþÃÂþÂÂÿÆÅÿÅÆÿÅÆÿÅÆÿÅÆÿÅÆÿÅÆÿÅÆÿÂÉÿÃÈÿÅÆÿÅÆÿÆÅÿÅÆÿÆÅÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÁÿÃþÂÆÿÃþÂÅÿÃþÂÆÿÃþÆÿÅþÅÿÁþÂÁþÆÿÁþÃÁþÅÿÁþÅÁþÃÿÁþÃÁþÅÿÁþÃÁþÅÿÄþÆÿÂþÈÿÁþÃÇÿÂþÈÿÂÁþÃÅÿÆÅÿÁÿÁþÂÁþÆÿÁþÃÁþÅÿÁþÂÁþÆÿÁþÄÆÿÂÁþÃÅÿÁþÂÁþÆÿÁþÃÁþÅÿÁþÅÁþÃÿÁþÁþÂÅÿÁþÁþÂÅÿÃÁþÆÿÁþÂÈÿÁþÃÇÿÁþÈÿÁþÁþÂÅÿÆÅÿÁÿÁþÂÁþÆÿÁþÃÁþÅÿÁþÂÁþÆÿÂþÂÆÿÂÁþÃÅÿÁþÂÁþÆÿÁþÃÁþÅÿÁþÂÁþÂÁþÃÿÂÁþÃÅÿÂÁþÃÅÿÂÁþÂÆÿÁþÂÈÿÁþÂÇÿÁþÈÿÁþÃÁþÅÿÆÅÿÁÿÃþÂÆÿÁþÃÁþÅÿÃþÂÆÿÃÁþÆÿÂÁþÃÅÿÁþÂÁþÆÿÁþÃÁþÅÿÁþÂÁþÂÁþÃÿÂÁþÃÅÿÂÁþÃÅÿÁþÃÆÿÁþÂÈÿÁþÂÇÿÁþÈÿÆÅÿÆÅÿÁÿÁþÄÆÿÁþÃÁþÅÿÁþÂÁþÆÿÃÁþÆÿÂÁþÃÅÿÁþÂÁþÆÿÁþÁþÂÅÿÁþÁþÁþÂÃÿÁþÁþÂÅÿÂÁþÃÅÿÁþÄÆÿÁþÂÈÿÁþÂÇÿÁþÈÿÆÅÿÆÅÿÁÿÁþÄÆÿÃþÂÅÿÁþÂÁþÆÿÃþÂÆÿÂÁþÃÅÿÂþÂÆÿÂÁþÃÅÿÂÁþÁþÃÃÿÁþÃÁþÅÿÂÁþÃÅÿÄþÆÿÁþÂÈÿÂÁþÇÿÁþÈÿÆÅÿÆÅÿÁÿÅÆÿÃÂþÅÿÅÆÿÅÆÿÆÅÿÅÆÿÆÅÿÈÃÿÆÅÿÆÅÿÅÆÿÂþÈÿÂÁþÇÿÂþÈÿÆÅÿÅþÅÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÁÿÁþÂÈÿÅÆÿÁþÄÆÿÅÆÿÃÁþÆÿÅÆÿÄÇÿÆÅÿÁþÄÆÿÁþÉÿÁþÈÿÁþÄÆÿÁþÉÿÈÃÿÅÆÿÅÆÿÁÿÁþÂÈÿÃþÆÿÁþÄÆÿÃþÆÿÃÁþÆÿÂþÂÆÿÂþÇÿÃþÂÅÿÁþÄÆÿÂÉÿÃÈÿÁþÂÁþÆÿÁþÉÿÆþÂÃÿÃþÂÆÿÂþÂÆÿÁÿÁþÈÿÃÁþÆÿÃþÂÆÿÁþÄÆÿÃþÆÿÁþÂÁþÆÿÁþÂÇÿÁþÂÁþÂÅÿÃþÂÆÿÁþÉÿÁþÈÿÁþÁþÂÆÿÁþÉÿÁþÂÁþÂÁþÃÿÁþÂÁþÆÿÁþÂÁþÆÿÁÿÃÈÿÃþÆÿÁþÂÁþÆÿÁþÄÆÿÁþÂÁþÆÿÄþÆÿÃþÇÿÁþÂÁþÂÅÿÁþÂÁþÆÿÁþÉÿÁþÈÿÂþÃÆÿÁþÉÿÁþÂÁþÂÁþÃÿÁþÂÁþÆÿÁþÂÁþÆÿÁÿÃÈÿÁþÂÁþÆÿÁþÂÁþÆÿÁþÄÆÿÁþÂÁþÆÿÁþÄÆÿÁþÂÇÿÃþÂÅÿÁþÂÁþÆÿÁþÉÿÁþÈÿÁþÁþÂÆÿÁþÉÿÁþÂÁþÂÁþÃÿÁþÂÁþÆÿÁþÂÁþÆÿÁÿÃÈÿÃþÆÿÃþÂÆÿÃþÆÿÃþÆÿÃþÆÿÁþÂÇÿÃÁþÂÅÿÁþÂÁþÆÿÁþÉÿÁþÈÿÁþÂÁþÆÿÁþÉÿÁþÂÁþÂÁþÃÿÁþÂÁþÆÿÂþÂÆÿÁÿÃÈÿÅÆÿÅÆÿÅÆÿÅÆÿÅÆÿÁþÂÇÿÂþÃÅÿÅÆÿÂÉÿÂþÈÿÅÆÿÂÉÿÈÃÿÅÆÿÅÆÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÁÿÅÆÿÅÆÿÄÇÿÄÇÿÁþÂÇÿÅÆÿÅÆÿÆÅÿÆÅÿÅÆÿÅÆÿÂÁþÇÿÁþÉÿÁþÃÇÿÁþÁþÆÿÆÅÿÁÿÃþÂÆÿÃþÆÿÃþÇÿÂþÇÿÃþÇÿÁþÂÁþÆÿÁþÂÁþÆÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÂÁþÆÿÄþÆÿÁþÂÇÿÁþÉÿÁþÂÇÿÁþÁþÂÆÿÂÁþÃÅÿÁÿÁþÂÁþÆÿÁþÂÁþÆÿÁþÃÇÿÁþÃÇÿÁþÂÇÿÁþÂÁþÆÿÁþÂÁþÆÿÁþÃÁþÅÿÁþÁþÂÅÿÁþÂÁþÆÿÂÁþÂÆÿÁþÂÇÿÁþÉÿÁþÂÇÿÅÆÿÁþÁþÂÅÿÁÿÁþÂÁþÆÿÁþÂÁþÆÿÁþÃÇÿÃþÇÿÁþÂÇÿÁþÂÁþÆÿÁþÂÁþÆÿÁþÁþÁþÅÿÂÁþÃÅÿÁþÁþÆÿÁþÃÆÿÁþÃÇÿÁþÉÿÂÁþÇÿÅÆÿÁþÃÁþÅÿÁÿÃþÂÆÿÃþÆÿÁþÃÇÿÂÁþÇÿÁþÂÇÿÁþÂÁþÆÿÁþÁþÆÿÁþÁþÁþÅÿÁþÁþÂÅÿÂÁþÂÆÿÁþÂÁþÆÿÁþÂÇÿÁþÉÿÁþÂÇÿÅÆÿÁþÃÁþÅÿÁÿÁþÄÆÿÃÁþÆÿÁþÃÇÿÂþÂÇÿÂþÇÿÃþÆÿÂÁþÂÆÿÁþÁþÂÅÿÁþÃÁþÅÿÁþÃÆÿÄþÆÿÁþÂÇÿÁþÉÿÁþÂÇÿÅÆÿÅþÅÿÁÿÁþÄÆÿÃÁþÆÿÄÇÿÄÇÿÄÇÿÅÆÿÅÆÿÆÅÿÆÅÿÁþÄÆÿÅÆÿÂÁþÇÿÁþÉÿÁþÃÇÿÅÆÿÆÅÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÁÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÁÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÁÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÁÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÁÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÁÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÁÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÁÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÁÿÊÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÂÂþÂÄÿÆÆÿÆÅÿÆÅÿÆÅÿÂÂþÂÅÿÅþÅÿÁÿÊÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÁþÂÁþÄÿÅþÆÿÆÅÿÅþÅÿÅþÅÿÁþÂÁþÅÿÆÅÿÁÿÊÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÂþÁþÄÿÁþÃÁþÆÿÁþÂÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÂþÁþÅÿÆÅÿÁÿÊÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÁþÂÁþÄÿÁþÃÁþÆÿÁþÂÁþÂÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÂþÁþÅÿÆÅÿÁÿÊÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÂþÁþÄÿÁþÃÁþÆÿÁþÂÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÁþÂþÅÿÆÅÿÁÿÊÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÁþÂÁþÄÿÅþÆÿÆÅÿÅþÅÿÅþÅÿÁþÂÁþÅÿÆÅÿÁÿÊÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÂÂþÂÄÿÆÆÿÆÅÿÆÅÿÆÅÿÂÂþÂÅÿÆÅÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÁÿÂþÃÅÿÂÁþÃÅÿÂþÂÇÿÂþÂÇÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÁþÂÆÿÆÆÿÆÅÿÁþÅÅÿÁþÆÄÿÁþÇÃÿÄÇÿÁÿÁþÂÁþÂÅÿÂÁþÃÅÿÂÁþÇÿÂÁþÇÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÂþÂÆÿÅþÆÿÆÅÿÁþÂÁþÂÅÿÁþÂÁþÃÄÿÁþÆÃÿÁþÂÇÿÁÿÁþÂÁþÂÅÿÅþÅÿÁþÂÇÿÁþÂÇÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÂÆÿÁþÃÁþÆÿÁþÂÁþÅÿÁþÁþÃÅÿÁþÁþÄÄÿÁþÃÁþÃÃÿÄÇÿÁÿÂþÃÅÿÂÁþÃÅÿÁþÃÇÿÂÁþÇÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÂÆÿÁþÃÁþÆÿÂÁþÂÁþÅÿÁþÂþÅÿÁþÂþÂÄÿÁþÁþÂþÃÿÁþÂÇÿÁÿÆÅÿÂÁþÃÅÿÃþÇÿÂþÂÇÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÃþÆÿÁþÃÁþÆÿÁþÂÁþÅÿÁþÁþÁþÅÿÁþÄÁþÄÿÁþÁþÁþÁþÃÿÁþÃÇÿÁÿÆÅÿÆÅÿÄÇÿÄÇÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÄÆÿÅþÆÿÆÅÿÂÃþÅÿÄÁþÂÄÿÁþÂÃþÃÿÁþÂÁþÇÿÁÿÆÅÿÅþÅÿÄÇÿÄÇÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÄÆÿÆÆÿÆÅÿÄÁþÅÿÃÃþÄÿÁþÅÁþÃÿÂþÇÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÁÿÂÁþÃÅÿÂÁþÃÅÿÂÁþÃÅÿÂÁþÃÅÿÂÁþÃÅÿÂÁþÃÅÿÆÅÿÆÅÿÄþÅÿÄþÇÿÄþÆÿÄþÆÿÁþÉÿÁþÉÿÁþÉÿÁþÉÿÁÿÁþÁþÂÅÿÁþÁþÂÅÿÁþÁþÂÅÿÁþÁþÂÅÿÁþÁþÂÅÿÁþÁþÂÅÿÅþÅÿÅþÅÿÁþÄÅÿÁþÄÇÿÁþÄÆÿÁþÄÆÿÁþÉÿÁþÉÿÁþÉÿÁþÉÿÁÿÁþÁþÂÅÿÁþÁþÂÅÿÁþÁþÂÅÿÁþÁþÂÅÿÁþÁþÂÅÿÁþÁþÂÅÿÁþÃÁþÅÿÁþÃÁþÅÿÃþÂÅÿÃþÂÇÿÃþÂÆÿÃþÂÆÿÁþÉÿÁþÉÿÁþÉÿÁþÉÿÁÿÃþÂÅÿÃþÂÅÿÃþÂÅÿÃþÂÅÿÃþÂÅÿÃþÂÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÄÅÿÁþÄÇÿÁþÄÆÿÁþÄÆÿÁþÉÿÁþÉÿÁþÉÿÁþÉÿÁÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÄÅÿÁþÄÇÿÁþÄÆÿÁþÄÆÿÁþÉÿÁþÉÿÁþÉÿÁþÉÿÁÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÅþÅÿÅþÅÿÄþÅÿÄþÇÿÄþÆÿÄþÆÿÁþÉÿÁþÉÿÁþÉÿÁþÉÿÁÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÅÅÿÅÇÿÅÆÿÅÆÿÂÉÿÂÉÿÂÉÿÂÉÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÁÿÆÅÿÄþÆÿÆÅÿÃþÂÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÄÿÆÆÿÁþÂÁþÆÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÁÿÅþÅÿÅÆÿÅþÅÿÁþÃÁþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÄÿÅþÆÿÁþÂÁþÆÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÁÿÁþÃÁþÅÿÂþÁþÆÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÄÿÁþÃÁþÆÿÁþÂÁþÆÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁÿÁþÃÁþÅÿÁþÂþÆÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÄÿÁþÃÁþÆÿÁþÂÁþÆÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁÿÁþÃÁþÅÿÁþÂÁþÆÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÄÿÁþÃÁþÆÿÁþÂÁþÆÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁÿÅþÅÿÁþÂÁþÆÿÅþÅÿÃþÂÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÄÿÅþÆÿÂþÂÆÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÁÿÆÅÿÅÆÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÄÿÆÆÿÅÆÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÁÿÆÅÿÃÁþÆÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÄÿÃÁþÇÿÆÅÿÆÅÿÆÅÿÁþÉÿÆÅÿÆÅÿÁÿÅþÅÿÂÁþÂÆÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÄÿÂÁþÂÇÿÅþÅÿÅþÅÿÅþÅÿÁþÉÿÅþÅÿÅþÅÿÁÿÁþÃÁþÅÿÃþÆÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÄÿÃþÇÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÂÉÿÁþÃÁþÅÿÁþÃÁþÅÿÁÿÁþÃÁþÅÿÃÁþÆÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÄÿÁþÂÁþÇÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÉÿÁþÃÁþÅÿÁþÃÁþÅÿÁÿÁþÃÁþÅÿÃþÆÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÄÿÄþÇÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÉÿÁþÃÁþÅÿÁþÃÁþÅÿÁÿÅþÅÿÁþÂÁþÆÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÄÿÁþÄÇÿÅþÅÿÅþÅÿÅþÅÿÁþÉÿÅþÅÿÅþÅÿÁÿÆÅÿÃþÆÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÆÄÿÃþÇÿÆÅÿÆÅÿÆÅÿÁþÉÿÆÅÿÆÅÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿÁÿÆÅÿÄþÆÿÆÅÿÃÁþÆÿÆÅÿÆÅÿÆÅÿÆÅÿÆÄÿÆÆÿÃÁþÆÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÁÿÅþÅÿÅÆÿÅþÅÿÂÁþÂÆÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÄÿÅþÆÿÂÁþÂÆÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÁÿÁþÃÁþÅÿÃþÂÆÿÁþÃÁþÅÿÂþÂÆÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÄÿÁþÃÁþÆÿÁþÂÁþÆÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁÿÁþÃÁþÅÿÁþÂÁþÆÿÁþÃÁþÅÿÁþÂÁþÆÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÄÿÁþÃÁþÆÿÁþÂÁþÆÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁÿÁþÃÁþÅÿÁþÂÁþÆÿÁþÃÁþÅÿÁþÂÁþÆÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÄÿÁþÃÁþÆÿÁþÂÁþÆÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁþÃÁþÅÿÁÿÅþÅÿÁþÂÁþÆÿÅþÅÿÂþÂÆÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÄÿÅþÆÿÃþÆÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÅþÅÿÁÿÆÅÿÅÆÿÆÅÿÅÆÿÆÅÿÆÅÿÆÅÿÆÅÿÆÄÿÆÆÿÅÆÿÆÅÿÆÅÿÆÅÿÆÅÿÆÅÿÿÿÿÿóÿÿÿÿÿóÿÿÿÿÿóÿ ÿÿ  $$$$$$$$$$$$((((((((((((,,,,,,,,,,,,000000000000444444444444888888888888<<<<<<<<<<< * Left-button: replace/add to current selection. * Right-button: remove from current selection. * Left-button: Replace/add to current selection. * Right-button: Remove from current selection. * Left-button: Replace/add to current selection. * Right-button: Remove from current selection. * Left-button: Replace/add to current selection. * Right-button: Remove from current selection. * Left-button: Replace/add to current selection. * Right-button: Remove from current selection. * Left-button: Erase with the background color in `Background' layer or transparent color in any other layer. * Right-button: Replace foreground with background color. aseprite_1.0.9/data/icons/000077500000000000000000000000001246367725700154665ustar00rootroot00000000000000aseprite_1.0.9/data/icons/ase.ico000066400000000000000000000124461246367725700167410ustar00rootroot00000000000000(F èn00hV@@h ¾ ( €ž’}aUeÿÿÿÏɾ"""" ! 33331 333333 333333 333333 3233#3 3233#3 3233#3 3233#3 333333 333333 #33332"""" ÿÿàÀ€€€€€€€€€€€Àà( @ž’}aUeÿÿÿÏɾ"""""""""""""""""""""""""""""3333333333""3333333333""333333333333""333333333333""333333333333""333333333333""333333333333""333333333333""333"3333"333""333"3333"333""333"3333"333""333"3333"333""333"3333"333""333"3333"333""333"3333"333""333"3333"333""333333333333""333333333333""333333333333""333333333333""3333333333""3333333333"""""""""""""""""""""ÿÿÿÿÿÿÿÿü?ü?ððÀÀÀÀÀÀÀÀÀÀÀÀÀÀÀÀÀÀÀÀÀÀððü?ü?(0`€ž’}aUeÿÿÿÏɾ"""""""""""""" """""""""""""" """""""""""""" "!""!""!""" "" "" "333333333333331" "333333333333331" "333333333333331" "333333333333333333" "333333333333333333" "333333333333333333" "333333333333333333" "333333333333333333" "333333333333333333" "333333333333333333" "333333333333333333" "333333333333333333" "33332"333333"#3333" "33332"333333"#3333" "33332"333333"#3333" "33332"333333"#3333" "33332"333333"#3333" "33332"333333"#3333" "33332"333333"#3333" "33332"333333"#3333" "33332"333333"#3333" "33332"333333"#3333" "33332"333333"#3333" "33332"333333"#3333" "333333333333333333" "333333333333333333" "333333333333333333" "333333333333333333" "333333333333333333" "333333333333333333" "#333333333333332""#333333333333332""#333333333333332""""""""""""""" """""""""""""" """""""""""""" ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€ÿÿ€ÿÿ€ÿü?ü?ü?àààààààààààààààààààààààààààààààààü?ü?ü?ÿ€ÿÿ€ÿÿ€ÿ(@€ž’}aUeÿÿÿÏɾ""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""33333333333333333333""""33333333333333333333""""33333333333333333333""""33333333333333333333""""333333333333333333333333""""333333333333333333333333""""333333333333333333333333""""333333333333333333333333""""333333333333333333333333""""333333333333333333333333""""333333333333333333333333""""333333333333333333333333""""333333333333333333333333""""333333333333333333333333""""333333333333333333333333""""333333333333333333333333""""333333""33333333""333333""""333333""33333333""333333""""333333""33333333""333333""""333333""33333333""333333""""333333""33333333""333333""""333333""33333333""333333""""333333""33333333""333333""""333333""33333333""333333""""333333""33333333""333333""""333333""33333333""333333""""333333""33333333""333333""""333333""33333333""333333""""333333""33333333""333333""""333333""33333333""333333""""333333""33333333""333333""""333333""33333333""333333""""333333333333333333333333""""333333333333333333333333""""333333333333333333333333""""333333333333333333333333""""333333333333333333333333""""333333333333333333333333""""333333333333333333333333""""333333333333333333333333""""33333333333333333333""""33333333333333333333""""33333333333333333333""""33333333333333333333""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿðÿÿðÿÿðÿÿðÿÿÿÿÿÿÿÿÿððððððððððððððððððððððððððððððððððððððððððððÿÿÿÿÿÿÿÿÿðÿÿðÿÿðÿÿðÿaseprite_1.0.9/data/icons/ase16.png000066400000000000000000000002771246367725700171210ustar00rootroot00000000000000‰PNG  IHDRóÿa†IDAT8cd€‚ÚIó^>\Ï@°µmlÎKj€ ÔNš×šøŸXšø¿vÒ<„¤hF6„‰'ãX H K"JŒv.xf­šG”í\@–u“ç­ Y- . ’\ akÛøâða¢5½8|˜AÂÖ¶‘&HQn¤.Þ†—7œEIEND®B`‚aseprite_1.0.9/data/icons/ase32.png000066400000000000000000000003771246367725700171200ustar00rootroot00000000000000‰PNG  IHDR szzôÆIDATX…í—A‚0E‡à2=†ìi;½ŠzÙa{9F/Ã-taÆè“¢Châ¼) ÿõRjÀØž›zï÷üÞ/$Öà´qåëøB2ä ]ð•××F4¨H€añ4¯² ¿r5qéZDЀ  ©{¾?‰y£¦BT@–¡C÷ˆ±{Éì ¨€ ¾‚]ÕŽëL4ˆžË‰¯⓱4ñ4@ÿët.H¬ ê½ËA÷hxö ø»³¡r—ò::ûèU;IEND®B`‚aseprite_1.0.9/data/icons/ase48.png000066400000000000000000000004641246367725700171240ustar00rootroot00000000000000‰PNG  IHDR00Wù‡ûIDAThí™A‚0E©ñ\¦ÇÐ=$ºÓ¨¨7Ð&°—cô2ÜW-CâL¥“ŸÌ[ ’yù“RR“1nuåëι÷ÜœäÖž}}Ý—Õ§gɺ™ xC/¸±y¼ê„- l×e¨¹q‚O^`4B›UÑûZjl8è8=Û&ô Ÿ€ H£Ò,c^¦+ï«VÌ»øT@F¤QiT@š¨½PÌæ_|𠨀4* H/À~ÈŽ÷&Ô—]‘¤™o=pÀ'/0i/4%J)à€=‡¢gd¹µ){ tÎ…šö–µÃHÃ'/`¸zRŸxE‰ä ðØ;â‹YøXIEND®B`‚aseprite_1.0.9/data/icons/ase64.png000066400000000000000000000005641246367725700171230ustar00rootroot00000000000000‰PNG  IHDR@@ªiqÞ;IDATxœí›Í ‚@FÁX„ÍP†Þ%Ñ›vàzÓDïRÍÐ…^Ù!qCØÍS÷{·1J_fG7Ï 6EiaI ³VÍÃÈr„­-œ†±I2 )7NÃØ$€`5Ýÿ¸Ähç‚¡eJBª›<Ÿ2^>L¾¶¶$é\ q-EåISÌ}ï)IEND®B`‚aseprite_1.0.9/data/icons/doc32.png000066400000000000000000000004521246367725700171070ustar00rootroot00000000000000‰PNG  IHDR szzôñIDATX…í—?‚0‡Â\.ÓcÈ.‰Ýô*ê tsÐÝkp6Øt€(I”?é7ñxöñ¥¡eœÍjM—ô€Ãù Ò(òÀ´mÀeçIuË>&ë‚¡JÜ_V דž®w‡s…‰ý5Ë“‰ñèŠÊD†~¹n¾ˆª “1¿œŸŽê*¯«S‘ƱOÇ@´ÊßA Åݯ2çm¶—ˆüM)&ÄX 详»cÛ]tpºÝ€n@7 ünÏ¿40&cŠ3›êÓš‡òµ¿" C)ÜÀŒÔC‚çæ§[IEND®B`‚aseprite_1.0.9/data/icons/doc48.png000066400000000000000000000005521246367725700171170ustar00rootroot00000000000000‰PNG  IHDR00Wù‡1IDAThíš1‚0†Ñ0fH¸ Ç]»é TÔèæ »×à$ÝL`d`Ó‰òHJR…Rþ¤ßô|y•þùÿ€4.Âfµ¦?ÎDDq|jêº(²¦öÂPÌ\v©tíRã¾&^€«2t=F¹KÚÐïdIzlê(ŽEŸÆimçiœà€ !ݨĩâ<“­…w^À,"Dé‹“™lÞxƒ"Ô÷`úu­ uYJûðÀ ˜ô.DLï<—ö)t¦xàL¡ó¶}ãc$´Oa6BX¦0è.4äe¬ƒx¬ÓX¦±Lc˜Æ 0`xJ?§·§î}ü ¼ð:ò‚@Ôô4XåˆO7toxàt"äú¾¨é0æ@Ź´ï¼€/NFC¢Î+P½IEND®B`‚aseprite_1.0.9/data/icons/doc64.png000066400000000000000000000006601246367725700171150ustar00rootroot00000000000000‰PNG  IHDR@@ªiqÞwIDATxœí›1nÂ@EQXÔFâ2>ôAŠ»äI Ü éR$}®ÁIÜ!AIA—t‘wÖZaëaÍÝzmóøV¬ Ë{è× YŦ9¾UsœÍçÁù»çuô~“޼‹ h¦©|þ|õáñO¹ ŸYûyåjýÖ/Š"˜·=áå=¼Þö÷ hšä@“ÚÎu]Åîç¾-@3¸`ië YžW±ëÝW€ h:ïmkù[ï—ÊåtŠÎ»¯@ ÐÜÝ:À®åû}tÞbÏoÃ}(Z€æîzÀö)Ü—(Í3mç-öü6ÜW€ h-@£hšÎ×]ïö½é¾-@£h@ Ð(Z€FÐ4 € Q´ h-@“ü›àëÇwî+@Ð4W= Ëó`lß³K}‡Æ~‹û P´ÍU˜ÎfÁØþWwhœë::ï¾-@ó†mCÂáø"IEND®B`‚aseprite_1.0.9/data/palettes/000077500000000000000000000000001246367725700161745ustar00rootroot00000000000000aseprite_1.0.9/data/palettes/apple-ii.gpl000066400000000000000000000005371246367725700204050ustar00rootroot00000000000000GIMP Palette # 0 0 0 Untitled 108 41 64 Untitled 64 53 120 Untitled 217 60 240 Untitled 19 87 64 Untitled 128 128 128 Untitled 38 151 240 Untitled 191 180 248 Untitled 64 75 7 Untitled 217 104 15 Untitled 128 128 128 Untitled 236 168 191 Untitled 38 195 15 Untitled 191 202 135 Untitled 147 214 191 Untitled 255 255 255 Untitled aseprite_1.0.9/data/palettes/arne16.gpl000066400000000000000000000006241246367725700177760ustar00rootroot00000000000000GIMP Palette # # by Arne Niklas Jansson # http://androidarts.com/ # 0 0 0 Untitled 157 157 157 Untitled 255 255 255 Untitled 190 38 51 Untitled 224 111 139 Untitled 73 60 43 Untitled 164 100 34 Untitled 235 137 49 Untitled 247 226 107 Untitled 47 72 78 Untitled 68 137 26 Untitled 163 206 39 Untitled 27 38 50 Untitled 0 87 132 Untitled 49 162 242 Untitled 178 220 239 Untitled aseprite_1.0.9/data/palettes/arne32.gpl000066400000000000000000000013171246367725700177740ustar00rootroot00000000000000GIMP Palette # # by Arne Niklas Jansson # http://androidarts.com/ # 190 38 51 Untitled 115 41 48 Untitled 203 92 207 Untitled 224 111 139 Untitled 150 75 168 Untitled 158 115 235 Untitled 52 42 151 Untitled 36 90 239 Untitled 27 38 50 Untitled 49 162 242 Untitled 0 87 132 Untitled 105 113 117 Untitled 178 220 239 Untitled 47 72 78 Untitled 20 128 126 Untitled 39 193 167 Untitled 33 92 46 Untitled 68 137 26 Untitled 163 206 39 Untitled 71 81 32 Untitled 188 179 48 Untitled 247 226 107 Untitled 238 182 47 Untitled 73 60 43 Untitled 164 100 34 Untitled 235 137 49 Untitled 247 176 128 Untitled 218 66 0 Untitled 255 255 255 Untitled 204 204 204 Untitled 157 157 157 Untitled aseprite_1.0.9/data/palettes/atari2600-ntsc.gpl000066400000000000000000000124171246367725700212620ustar00rootroot00000000000000GIMP Palette # 0 0 0 Untitled 68 68 0 Untitled 112 40 0 Untitled 132 24 0 Untitled 136 0 0 Untitled 120 0 92 Untitled 72 0 120 Untitled 20 0 132 Untitled 0 0 136 Untitled 0 24 124 Untitled 0 44 92 Untitled 0 64 44 Untitled 0 60 0 Untitled 20 56 0 Untitled 44 48 0 Untitled 68 40 0 Untitled 64 64 64 Untitled 100 100 16 Untitled 132 68 20 Untitled 152 52 24 Untitled 156 32 32 Untitled 140 32 116 Untitled 96 32 144 Untitled 48 32 152 Untitled 28 32 156 Untitled 28 56 144 Untitled 28 76 120 Untitled 28 92 72 Untitled 32 92 32 Untitled 52 92 28 Untitled 76 80 28 Untitled 100 72 24 Untitled 108 108 108 Untitled 132 132 36 Untitled 152 92 40 Untitled 172 80 48 Untitled 176 60 60 Untitled 160 60 136 Untitled 120 60 164 Untitled 76 60 172 Untitled 56 64 176 Untitled 56 84 168 Untitled 56 104 144 Untitled 56 124 100 Untitled 64 124 64 Untitled 80 124 56 Untitled 104 112 52 Untitled 132 104 48 Untitled 144 144 144 Untitled 160 160 52 Untitled 172 120 60 Untitled 192 104 72 Untitled 192 88 88 Untitled 176 88 156 Untitled 140 88 184 Untitled 104 88 192 Untitled 80 92 192 Untitled 80 112 188 Untitled 80 132 172 Untitled 80 156 128 Untitled 92 156 92 Untitled 108 152 80 Untitled 132 140 76 Untitled 160 132 68 Untitled 176 176 176 Untitled 184 184 64 Untitled 188 140 76 Untitled 208 128 92 Untitled 208 112 112 Untitled 192 112 176 Untitled 160 112 204 Untitled 124 112 208 Untitled 104 116 208 Untitled 104 136 204 Untitled 104 156 192 Untitled 104 180 148 Untitled 116 180 116 Untitled 132 180 104 Untitled 156 168 100 Untitled 184 156 88 Untitled 200 200 200 Untitled 208 208 80 Untitled 204 160 92 Untitled 224 148 112 Untitled 224 136 136 Untitled 208 132 192 Untitled 180 132 220 Untitled 148 136 224 Untitled 124 140 224 Untitled 124 156 220 Untitled 124 180 212 Untitled 124 208 172 Untitled 140 208 140 Untitled 156 204 124 Untitled 180 192 120 Untitled 208 180 108 Untitled 220 220 220 Untitled 232 232 92 Untitled 220 180 104 Untitled 236 168 128 Untitled 236 160 160 Untitled 220 156 208 Untitled 196 156 236 Untitled 168 160 236 Untitled 144 164 236 Untitled 144 180 236 Untitled 144 204 232 Untitled 144 228 192 Untitled 164 228 164 Untitled 180 228 144 Untitled 204 212 136 Untitled 232 204 124 Untitled 236 236 236 Untitled 252 252 104 Untitled 236 200 120 Untitled 252 188 148 Untitled 252 180 180 Untitled 236 176 224 Untitled 212 176 252 Untitled 188 180 252 Untitled 164 184 252 Untitled 164 200 252 Untitled 164 224 252 Untitled 164 252 212 Untitled 184 252 184 Untitled 200 252 164 Untitled 224 236 156 Untitled 252 224 140 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 0 0 0 Untitled 255 255 255 Untitled aseprite_1.0.9/data/palettes/atari2600-pal.gpl000066400000000000000000000052171246367725700210670ustar00rootroot00000000000000GIMP Palette # 0 0 0 Untitled 0 0 0 Untitled 128 88 0 Untitled 68 92 0 Untitled 112 52 0 Untitled 0 100 20 Untitled 112 0 20 Untitled 0 92 92 Untitled 112 0 92 Untitled 0 60 112 Untitled 88 0 112 Untitled 0 32 112 Untitled 60 0 128 Untitled 0 0 136 Untitled 0 0 0 Untitled 0 0 0 Untitled 64 64 64 Untitled 64 64 64 Untitled 148 112 32 Untitled 92 120 32 Untitled 136 80 32 Untitled 32 128 52 Untitled 136 32 52 Untitled 32 116 116 Untitled 132 32 116 Untitled 28 88 136 Untitled 108 32 136 Untitled 28 60 136 Untitled 84 32 148 Untitled 32 32 156 Untitled 64 64 64 Untitled 64 64 64 Untitled 108 108 108 Untitled 108 108 108 Untitled 168 132 60 Untitled 116 144 60 Untitled 160 104 60 Untitled 60 152 80 Untitled 160 60 80 Untitled 60 140 140 Untitled 148 60 136 Untitled 56 116 160 Untitled 128 60 160 Untitled 56 88 160 Untitled 108 60 168 Untitled 60 60 176 Untitled 108 108 108 Untitled 108 108 108 Untitled 144 144 144 Untitled 144 144 144 Untitled 188 156 88 Untitled 140 172 88 Untitled 180 132 88 Untitled 88 176 108 Untitled 180 88 108 Untitled 88 164 164 Untitled 168 88 156 Untitled 80 140 180 Untitled 148 88 180 Untitled 80 116 180 Untitled 128 88 188 Untitled 88 88 192 Untitled 144 144 144 Untitled 144 144 144 Untitled 176 176 176 Untitled 176 176 176 Untitled 204 172 112 Untitled 160 192 112 Untitled 200 152 112 Untitled 112 196 132 Untitled 200 112 132 Untitled 112 184 184 Untitled 180 112 176 Untitled 104 164 200 Untitled 164 112 200 Untitled 104 136 200 Untitled 148 112 204 Untitled 112 112 208 Untitled 176 176 176 Untitled 176 176 176 Untitled 200 200 200 Untitled 200 200 200 Untitled 220 192 132 Untitled 176 212 132 Untitled 220 172 132 Untitled 132 216 156 Untitled 220 132 156 Untitled 132 200 200 Untitled 196 132 192 Untitled 124 184 220 Untitled 180 132 220 Untitled 124 160 220 Untitled 168 132 220 Untitled 132 132 224 Untitled 200 200 200 Untitled 200 200 200 Untitled 220 220 220 Untitled 220 220 220 Untitled 236 208 156 Untitled 192 232 156 Untitled 236 192 156 Untitled 156 232 180 Untitled 236 156 180 Untitled 156 220 220 Untitled 208 156 208 Untitled 144 204 236 Untitled 196 156 236 Untitled 144 180 236 Untitled 184 156 236 Untitled 156 156 236 Untitled 220 220 220 Untitled 220 220 220 Untitled 236 236 236 Untitled 236 236 236 Untitled 252 224 176 Untitled 212 252 176 Untitled 252 212 176 Untitled 176 252 200 Untitled 252 176 200 Untitled 176 236 236 Untitled 224 176 224 Untitled 164 224 252 Untitled 212 176 252 Untitled 164 200 252 Untitled 200 176 252 Untitled 176 176 252 Untitled 236 236 236 Untitled 236 236 236 Untitled aseprite_1.0.9/data/palettes/cga.gpl000066400000000000000000000005371246367725700174370ustar00rootroot00000000000000GIMP Palette # 0 0 0 Untitled 0 0 170 Untitled 0 170 0 Untitled 0 170 170 Untitled 170 0 0 Untitled 170 0 170 Untitled 170 85 0 Untitled 170 170 170 Untitled 85 85 85 Untitled 85 85 255 Untitled 85 255 85 Untitled 85 255 255 Untitled 255 85 85 Untitled 255 85 255 Untitled 255 255 85 Untitled 255 255 255 Untitled aseprite_1.0.9/data/palettes/commodore-plus4.gpl000066400000000000000000000052171246367725700217360ustar00rootroot00000000000000GIMP Palette # 0 0 0 Untitled 32 32 32 Untitled 93 8 0 Untitled 0 55 70 Untitled 93 0 109 Untitled 0 78 0 Untitled 32 17 109 Untitled 32 47 0 Untitled 93 16 0 Untitled 62 31 0 Untitled 1 62 0 Untitled 93 1 32 Untitled 0 63 32 Untitled 0 48 109 Untitled 62 1 109 Untitled 0 70 0 Untitled 0 0 0 Untitled 64 64 64 Untitled 125 40 25 Untitled 3 87 102 Untitled 125 18 141 Untitled 3 110 0 Untitled 64 49 141 Untitled 64 79 0 Untitled 125 48 0 Untitled 94 63 0 Untitled 33 94 0 Untitled 125 33 64 Untitled 3 95 64 Untitled 3 80 141 Untitled 94 33 141 Untitled 3 102 25 Untitled 0 0 0 Untitled 96 96 96 Untitled 156 72 57 Untitled 35 119 134 Untitled 156 50 172 Untitled 35 142 19 Untitled 96 81 172 Untitled 96 111 19 Untitled 156 80 19 Untitled 126 95 19 Untitled 65 126 19 Untitled 156 65 96 Untitled 35 127 96 Untitled 35 112 172 Untitled 126 65 172 Untitled 35 134 57 Untitled 0 0 0 Untitled 128 128 128 Untitled 188 104 89 Untitled 67 151 166 Untitled 188 82 204 Untitled 67 173 51 Untitled 128 113 204 Untitled 128 142 51 Untitled 188 111 51 Untitled 158 127 51 Untitled 97 158 51 Untitled 188 97 128 Untitled 67 158 128 Untitled 67 144 204 Untitled 158 97 204 Untitled 67 166 89 Untitled 0 0 0 Untitled 159 159 159 Untitled 220 136 121 Untitled 99 183 198 Untitled 220 113 236 Untitled 99 205 83 Untitled 159 144 236 Untitled 159 174 83 Untitled 220 143 83 Untitled 190 159 83 Untitled 129 190 83 Untitled 220 128 159 Untitled 99 190 159 Untitled 99 175 236 Untitled 190 129 236 Untitled 99 198 121 Untitled 0 0 0 Untitled 191 191 191 Untitled 252 168 153 Untitled 130 215 230 Untitled 252 145 255 Untitled 130 237 114 Untitled 191 176 255 Untitled 191 206 114 Untitled 252 175 114 Untitled 222 191 114 Untitled 161 222 114 Untitled 252 160 191 Untitled 130 222 191 Untitled 130 207 255 Untitled 222 161 255 Untitled 130 230 153 Untitled 0 0 0 Untitled 223 223 223 Untitled 255 200 185 Untitled 162 247 255 Untitled 255 177 255 Untitled 162 255 146 Untitled 223 208 255 Untitled 223 238 146 Untitled 255 207 146 Untitled 254 223 146 Untitled 193 254 146 Untitled 255 192 223 Untitled 162 254 223 Untitled 162 239 255 Untitled 254 193 255 Untitled 162 255 185 Untitled 0 0 0 Untitled 255 255 255 Untitled 255 232 217 Untitled 194 255 255 Untitled 255 209 255 Untitled 194 255 178 Untitled 255 240 255 Untitled 255 255 178 Untitled 255 239 178 Untitled 255 254 178 Untitled 225 255 178 Untitled 255 224 255 Untitled 194 255 255 Untitled 194 255 255 Untitled 255 225 255 Untitled 194 255 217 Untitled aseprite_1.0.9/data/palettes/commodore-vic20.gpl000066400000000000000000000005371246367725700216120ustar00rootroot00000000000000GIMP Palette # 0 0 0 Untitled 255 255 255 Untitled 120 41 34 Untitled 135 214 221 Untitled 170 95 182 Untitled 26 130 38 Untitled 64 49 141 Untitled 191 206 114 Untitled 170 116 73 Untitled 234 180 137 Untitled 184 105 98 Untitled 199 255 255 Untitled 234 159 246 Untitled 148 224 137 Untitled 128 113 204 Untitled 255 255 178 Untitled aseprite_1.0.9/data/palettes/commodore64.gpl000066400000000000000000000005371246367725700210430ustar00rootroot00000000000000GIMP Palette # 0 0 0 Untitled 255 255 255 Untitled 136 57 50 Untitled 103 182 189 Untitled 139 63 150 Untitled 85 160 73 Untitled 64 49 141 Untitled 191 206 114 Untitled 139 84 41 Untitled 87 66 0 Untitled 184 105 98 Untitled 80 80 80 Untitled 120 120 120 Untitled 148 224 137 Untitled 120 105 196 Untitled 159 159 159 Untitled aseprite_1.0.9/data/palettes/db16.gpl000066400000000000000000000006531246367725700174400ustar00rootroot00000000000000GIMP Palette # # by Richard "DawnBringer" Fhager # http://www.pixeljoint.com/p/23821.htm # 20 12 28 Untitled 68 36 52 Untitled 48 52 109 Untitled 78 74 78 Untitled 133 76 48 Untitled 52 101 36 Untitled 208 70 72 Untitled 117 113 97 Untitled 89 125 206 Untitled 210 125 44 Untitled 133 149 161 Untitled 109 170 44 Untitled 210 170 153 Untitled 109 194 202 Untitled 218 212 94 Untitled 222 238 214 Untitled aseprite_1.0.9/data/palettes/db32.gpl000066400000000000000000000013731246367725700174360ustar00rootroot00000000000000GIMP Palette # # by Richard "DawnBringer" Fhager # http://www.pixeljoint.com/p/23821.htm # 0 0 0 Untitled 34 32 52 Untitled 69 40 60 Untitled 102 57 49 Untitled 143 86 59 Untitled 223 113 38 Untitled 217 160 102 Untitled 238 195 154 Untitled 251 242 54 Untitled 153 229 80 Untitled 106 190 48 Untitled 55 148 110 Untitled 75 105 47 Untitled 82 75 36 Untitled 50 60 57 Untitled 63 63 116 Untitled 48 96 130 Untitled 91 110 225 Untitled 99 155 255 Untitled 95 205 228 Untitled 203 219 252 Untitled 255 255 255 Untitled 155 173 183 Untitled 132 126 135 Untitled 105 106 106 Untitled 89 86 82 Untitled 118 66 138 Untitled 172 50 50 Untitled 217 87 99 Untitled 215 123 186 Untitled 143 151 74 Untitled 138 111 48 Untitled aseprite_1.0.9/data/palettes/gameboy.gpl000066400000000000000000000001431246367725700203210ustar00rootroot00000000000000GIMP Palette # 155 188 15 Untitled 139 172 15 Untitled 48 98 48 Untitled 15 56 15 Untitled aseprite_1.0.9/data/palettes/google-ui.gpl000066400000000000000000000067731246367725700206040ustar00rootroot00000000000000GIMP Palette # 246 153 136 Red_200 243 108 96 Red_300 232 78 64 Red_400 229 28 35 Red_500 221 25 29 Red_600 208 23 22 Red_700 196 20 17 Red_800 176 18 10 Red_900 244 143 177 Pink_200 240 98 146 Pink_300 236 64 122 Pink_400 233 30 99 Pink_500 216 27 96 Pink_600 194 24 91 Pink_700 173 20 87 Pink_800 136 14 79 Pink_900 206 147 216 Purple_200 186 104 200 Purple_300 171 71 188 Purple_400 156 39 176 Purple_500 142 36 170 Purple_600 123 31 162 Purple_700 106 27 154 Purple_800 74 20 140 Purple_900 179 157 219 Deep_Purple_200 149 117 205 Deep_Purple_300 126 87 194 Deep_Purple_400 103 58 183 Deep_Purple_500 94 53 177 Deep_Purple_600 81 45 168 Deep_Purple_700 69 39 160 Deep_Purple_800 49 27 146 Deep_Purple_900 159 168 218 Indigo_200 121 134 203 Indigo_300 92 107 192 Indigo_400 63 81 181 Indigo_500 57 73 171 Indigo_600 48 63 159 Indigo_700 40 53 147 Indigo_800 26 35 126 Indigo_900 175 191 255 Blue_200 145 167 255 Blue_300 115 143 254 Blue_400 86 119 252 Blue_500 78 108 239 Blue_600 69 94 222 Blue_700 59 80 206 Blue_800 42 54 177 Blue_900 129 212 250 Light_Blue_200 79 195 247 Light_Blue_300 41 182 246 Light_Blue_400 3 169 244 Light_Blue_500 3 155 229 Light_Blue_600 2 136 209 Light_Blue_700 2 119 189 Light_Blue_800 1 87 155 Light_Blue_900 128 222 234 Cyan_200 77 208 225 Cyan_300 38 198 218 Cyan_400 0 188 212 Cyan_500 0 172 193 Cyan_600 0 151 167 Cyan_700 0 131 143 Cyan_800 0 96 100 Cyan_900 128 203 196 Teal_200 77 182 172 Teal_300 38 166 154 Teal_400 0 150 136 Teal_500 0 137 123 Teal_600 0 121 107 Teal_700 0 105 92 Teal_800 0 77 64 Teal_900 114 213 114 Green_200 66 189 65 Green_300 43 175 43 Green_400 37 155 36 Green_500 10 143 8 Green_600 10 126 7 Green_700 5 111 0 Green_800 13 83 2 Green_900 197 225 165 Light_Green_200 174 213 129 Light_Green_300 156 204 101 Light_Green_400 139 195 74 Light_Green_500 124 179 66 Light_Green_600 104 159 56 Light_Green_700 85 139 47 Light_Green_800 51 105 30 Light_Green_900 230 238 156 Lime_200 220 231 117 Lime_300 212 225 87 Lime_400 205 220 57 Lime_500 192 202 51 Lime_600 175 180 43 Lime_700 158 157 36 Lime_800 130 119 23 Lime_900 255 245 157 Yellow_200 255 241 118 Yellow_300 255 238 88 Yellow_400 255 235 59 Yellow_500 253 216 53 Yellow_600 251 192 45 Yellow_700 249 168 37 Yellow_800 245 127 23 Yellow_900 255 224 130 Amber_200 255 213 79 Amber_300 255 202 40 Amber_400 255 193 7 Amber_500 255 179 0 Amber_600 255 160 0 Amber_700 255 143 0 Amber_800 255 111 0 Amber_900 255 204 128 Orange_200 255 183 77 Orange_300 255 167 38 Orange_400 255 152 0 Orange_500 251 140 0 Orange_600 245 124 0 Orange_700 239 108 0 Orange_800 230 81 0 Orange_900 255 171 145 Deep_Orange_200 255 138 101 Deep_Orange_300 255 112 67 Deep_Orange_400 255 87 34 Deep_Orange_500 244 81 30 Deep_Orange_600 230 74 25 Deep_Orange_700 216 67 21 Deep_Orange_800 191 54 12 Deep_Orange_900 188 170 164 Brown_200 161 136 127 Brown_300 141 110 99 Brown_400 121 85 72 Brown_500 109 76 65 Brown_600 93 64 55 Brown_700 78 52 46 Brown_800 62 39 35 Brown_900 238 238 238 Grey_200 224 224 224 Grey_300 189 189 189 Grey_400 158 158 158 Grey_500 117 117 117 Grey_600 97 97 97 Grey_700 66 66 66 Grey_800 33 33 33 Grey_900 176 190 197 Blue_Grey_200 144 164 174 Blue_Grey_300 120 144 156 Blue_Grey_400 96 125 139 Blue_Grey_500 84 110 122 Blue_Grey_600 69 90 100 Blue_Grey_700 55 71 79 Blue_Grey_800 38 50 56 Blue_Grey_900 0 0 0 Black 255 255 255 White aseprite_1.0.9/data/palettes/master-system.gpl000066400000000000000000000012571246367725700215220ustar00rootroot00000000000000GIMP Palette # 85 0 85 Untitled 170 85 170 Untitled 255 170 255 Untitled 0 0 85 Untitled 85 85 170 Untitled 170 170 255 Untitled 85 170 170 Untitled 0 85 85 Untitled 170 255 255 Untitled 0 85 0 Untitled 170 255 170 Untitled 85 170 0 Untitled 170 255 0 Untitled 170 170 0 Untitled 85 85 0 Untitled 255 255 85 Untitled 170 170 85 Untitled 255 255 170 Untitled 255 170 0 Untitled 170 85 0 Untitled 255 170 85 Untitled 255 85 0 Untitled 255 0 0 Untitled 170 0 0 Untitled 85 0 0 Untitled 255 85 85 Untitled 170 85 85 Untitled 255 170 170 Untitled 255 255 255 Untitled 170 170 170 Untitled 85 85 85 Untitled 0 0 0 Untitled aseprite_1.0.9/data/palettes/nes-ntsc.gpl000066400000000000000000000022471246367725700204370ustar00rootroot00000000000000GIMP Palette # 254 255 255 Untitled 254 255 255 Untitled 160 160 160 Untitled 82 82 82 Untitled 190 214 253 Untitled 105 158 252 Untitled 30 74 157 Untitled 1 26 81 Untitled 204 204 255 Untitled 137 135 255 Untitled 56 55 188 Untitled 15 15 101 Untitled 221 196 255 Untitled 174 118 255 Untitled 88 40 184 Untitled 35 6 99 Untitled 234 192 249 Untitled 206 109 241 Untitled 117 33 148 Untitled 54 3 75 Untitled 242 193 223 Untitled 224 112 178 Untitled 132 35 92 Untitled 64 4 38 Untitled 241 199 194 Untitled 222 124 112 Untitled 130 46 36 Untitled 63 9 4 Untitled 232 208 170 Untitled 200 145 62 Untitled 111 63 0 Untitled 50 19 0 Untitled 217 218 157 Untitled 166 167 37 Untitled 81 82 0 Untitled 31 32 0 Untitled 201 226 158 Untitled 129 186 40 Untitled 49 99 0 Untitled 11 42 0 Untitled 188 230 174 Untitled 99 196 70 Untitled 26 107 5 Untitled 0 47 0 Untitled 180 229 199 Untitled 84 193 125 Untitled 14 105 46 Untitled 0 46 10 Untitled 181 223 228 Untitled 86 179 192 Untitled 16 92 104 Untitled 0 38 45 Untitled 169 169 169 Untitled 60 60 60 Untitled 0 0 0 Untitled 0 0 0 Untitled aseprite_1.0.9/data/palettes/nes.gpl000066400000000000000000000023411246367725700174650ustar00rootroot00000000000000GIMP Palette # 0 0 0 Untitled 0 0 0 Untitled 121 121 121 Untitled 162 162 162 Untitled 48 81 130 Untitled 65 146 195 Untitled 97 211 227 Untitled 162 255 243 Untitled 48 97 65 Untitled 73 162 105 Untitled 113 227 146 Untitled 162 255 203 Untitled 56 109 0 Untitled 73 170 16 Untitled 113 243 65 Untitled 162 243 162 Untitled 56 105 0 Untitled 81 162 0 Untitled 154 235 0 Untitled 203 243 130 Untitled 73 89 0 Untitled 138 138 0 Untitled 235 211 32 Untitled 255 243 146 Untitled 121 65 0 Untitled 195 113 0 Untitled 255 162 0 Untitled 255 219 162 Untitled 162 48 0 Untitled 227 81 0 Untitled 255 121 48 Untitled 255 203 186 Untitled 178 16 48 Untitled 219 65 97 Untitled 255 97 178 Untitled 255 186 235 Untitled 154 32 121 Untitled 219 65 195 Untitled 243 97 255 Untitled 227 178 255 Untitled 97 16 162 Untitled 146 65 243 Untitled 162 113 255 Untitled 195 178 255 Untitled 40 0 186 Untitled 65 65 255 Untitled 81 130 255 Untitled 162 186 255 Untitled 32 0 178 Untitled 65 97 251 Untitled 97 162 255 Untitled 146 211 255 Untitled 121 121 121 Untitled 178 178 178 Untitled 235 235 235 Untitled 255 255 255 Untitled aseprite_1.0.9/data/palettes/teletext.gpl000066400000000000000000000002671246367725700205430ustar00rootroot00000000000000GIMP Palette # 0 0 0 Untitled 0 0 255 Untitled 255 0 0 Untitled 255 0 255 Untitled 0 255 0 Untitled 0 255 255 Untitled 255 255 0 Untitled 255 255 255 Untitled aseprite_1.0.9/data/palettes/win16.gpl000066400000000000000000000005371246367725700176510ustar00rootroot00000000000000GIMP Palette # 0 0 0 Untitled 130 0 0 Untitled 0 130 0 Untitled 130 130 0 Untitled 0 0 130 Untitled 130 0 130 Untitled 0 130 130 Untitled 195 195 195 Untitled 130 130 130 Untitled 255 0 0 Untitled 0 255 0 Untitled 255 255 0 Untitled 0 0 255 Untitled 255 0 255 Untitled 0 255 255 Untitled 255 255 255 Untitled aseprite_1.0.9/data/palettes/zx-spectrum.gpl000066400000000000000000000006301246367725700212000ustar00rootroot00000000000000GIMP Palette # # ZX Spectrum # 0 0 0 Black 0 0 192 Basic Blue 192 0 0 Basic Red 192 0 192 Basic Magenta 0 192 0 Basic Green 0 192 192 Basic Cyan 192 192 0 Basic Yellow 192 192 192 Basic White 0 0 0 Black 0 0 255 Bright Blue 255 0 0 Bright Red 255 0 255 Bright Magenta 0 255 0 Bright Green 0 255 255 Bright Cyan 255 255 0 Bright Yellow 255 255 255 Bright White aseprite_1.0.9/data/skins/000077500000000000000000000000001246367725700155025ustar00rootroot00000000000000aseprite_1.0.9/data/skins/default/000077500000000000000000000000001246367725700171265ustar00rootroot00000000000000aseprite_1.0.9/data/skins/default/font.png000066400000000000000000000136041246367725700206060ustar00rootroot00000000000000‰PNG  IHDR±šàtCŸPLTE  $$$$$$$$$$$$((((((((((((,,,,,,,,,,,,000000000000444444444444888888888888<<<<<<<<<<<]mê\<Ïoüð°b^\¸K+q´Hâõ‘øçʼ¼ÊR|Wpeʉ£¼-£C…uQ °S€íÊN¼­¾½n«§±¾K·Öõ‰‹÷6èÆŠÙÛÞ4ü¶?Ûks‰ánÎ_Áظ3ó âÆEJÑ9. âc#nœÓ©9ÏŠæeÕ9+šÄŸÈЉñ–Öí¬èWØT¯ò Iµ{sØ.+ïõú ÖJ3ÌqçJ¯GŒSXê‹ãÄBÚ|Ž+Ï7lœ,w©ÔEÌ9UbãÇÊV&ˆ­Lœ§;¼´P©/ûƒ9.qq‰ñ“g´Hâõ‘Ø”¬:·òŠ·´u׬uîÍÈà -¬ÝóÞ¬,z}Œ¹—ê:!ª©»Ä^“ò’y¯m”Ø àu/í7EpËß—ñ>O‰Õ5ý¦Q쇆½´{Ÿwª3-^VÌ·öçãÌcV¼×K¿Iìw͘ǒ”xªûo4Û±Íã¡î¶7Ôc¾î¥}e²¥ÙÓŠh‘Äë#"q¿šåöùt×Å¡¸Cg]0ž d›Ôâl·ÕçcWà]n·µÛiùûÆ£SˆKÝ6§µkãcÎw‰m÷o:ÅAb<Ð4^ìÚ;ê.1<2Ôèbå¼ síÖº¬]S++àPË5±—ØÑ5÷î[bS1$^çá5hqΞé¥ßÊc$ÆÎÔ'öµbÌÑÏZÑðîžVøÛ}F‹$^‰/Œ•sØx"˜w(íKÒa…˜ 7çò˜¢þ§´"Z$ñúˆHLQMS•Ç XéÒ\ÃĹ™.ÍI¼>"sѱÉz}ÊS—é·ámµ:¬[€ûY#决V¾!Ö;“®,â=A}›Þ6Ó=Ãôý-LdÓ­hÌq)HŒ·UëÈ™XÿßÞKý³¸Ô ÀÑ̹Ûß6BŒßÚÖåpOxß¼ÍÜØX9üÿk¬ûAâ™9¶O6¸s,þûÄÖ%¶p/‹—Çâe…ÉãNåýE÷ ÙÍc·òêÔÌã ­H—þj$ñúøýÖæ¹šT…Œ±zuSŒ¤=a…}¨â»t9†rØ 9¶rÞµÕ¹&6Ïu¹Çlôx‡¥‡ËÑz@ ]ÌwˆÅ'.Æ+‡uŽ‹3Ǭ@¥7Ór&Æ«4Õf÷˜åb» ë×Ä^C©Û}-7sÜpóˆ‚G\ì'ÐÎ\W7Иc°Õßñké6.Ò"6Ã3¦cqæX‰îVúž§é(õäm‡Tvbýý¡è˧ˆÝ·Éa© æ>Ü!^»øÍ =Ðg´Hâõ‘¸˜ºPaõ4´ø+¸jcošÐícêÄu‡Ògó1qÿæž½T¨»Ø‚¼Eì³M½¨Øvã‘ópŽØ?O3CŸ8Þ37oR/ª<×C§‡'­ðFí-(PwøŒI¼>"»ÆjJoº~l®nÏ+ÀÂÓÍO¹XjÉj•/ãÅ2>æ}ÂæßU¬ÃbtÌÅÆŽ CQbp…ù!,lϨå?åpÞ{ˆ[s<â¼sìfËDšNåñá/êºy¬Ä®±¾ý¡qO+.vqµcC-’x}D$¶©Þ1ËÞ ­Ê«Wäý·Ù?,ì¬`Ͳ#2}ò†°Ù·éYo0˜ëÓÜ;B.oY Þ4î¾ ºÆ S@‡/({^&.sÄ@ïcgú âžKýøjߥհ>’ǦNÝ+ú 7õµÂÿH¬%G•¸¥Ñ"‰×GDâÍ‘´"ÝÂ2×ã°î˜wÃÂÆ…À”û?¥×Ò¢w븥 æœĽðw|¡nÐó8.}¼‰/îЛ·v¦ê ?†ÕÚœY÷Òx–7výñWæ¸;YsYÑËc×çgÜÿð´BÓ„ý¥c+Èq…7w‘.ý­HâõÑú”·_· ŸWM´ßÿKã“âÏÝýìððÛ1ˆÁo$±™ãa³¼3ÝÊ£P…†VD‹$^‰m~·O¢áá{4·‹×KÛûÇ<^qáyæþ1[»û·--[›ØÞ¯àÉØK—>e…*4´"Z$ñúˆH ·Ê( «_yð‚A¼†\:€Ñû< G|¾­N<<"o"|þ-Þ¡Q=ñP7Àg0ˆA—¾›âÿDL¦#y\ê%&…ôµ"Z$ñúˆH ­Eaõ+›;ñP·¡¹³}^„ú@à&ÅiŽïÎÍti®Hâõ‘8^å}Á ^sêÆ`ƒ}^<â»)Þ¿® HÓ‘"¿’úõ«¹ …Õ¯¼—º½~™˜@¼Ôí%ÎÛ+ƒö¼$^ïÒ/b‚4véí…ôµ"Z$ñúˆHLQMS•·_Ÿ¤3ˆ×˜K—Xî7ˆ1Ï‹×ý#ñ`·ãÒ¯!†Ïh‘Äë#"±(tÍn’kT^QbýH k»´Küž¼Éó’ø&b‚Œm»t%¢Ñ"‰×GDâíÛW¿Iä›X–hGZÿ˜Á+Ú}^%fú?dì\S¨BC+¢E¯ˆÄ1~ +¯TE£¯uCâ÷4ýë}^¥§êLÃÍq¸<Ö*䂾VD‹$^‰±—f(¬~åaB ^£êÆcÿ§Î”v1‹SHA_+¢E¯ˆÄÛýÝÕ4Uy¢Mƒx¸t p›ûØçÝN1ßýßMñþ¤éˆK>ƒôµ"Z$ñúˆHœ.ý$]ú.nŽ+1Aš¦KD¯ˆÄÕ4UyE_0ˆ×˜KWb¹ß &„èŸ'&HÓ<–pWôÑ"‰×GDâkbå…¾Sb˜Äß Î¿=¶^+¢E¯ˆÄÕ4Uy Š5­nÁú¼ ˜hÈó$q)Ñ®6E¿B!}­ˆI¼>"kNsV¿òJ• ñP7•c ƒrc Á^:±„ËãxZ-’x}D$¦¨¦©ÊûQ·»ë —οº”8ÞsôsL¦#yü3Åw×ÿ”VD‹$^‰)ªiªò~<únÅšuér»+̺t4b¹'sé`yLQÿSZ-’x}D$¦¨¦©ÊÛt£ªÞíâ5äÒ ÓµaðЦKÛé¾í꺂ó@l’—¾­Ž¨Ñ"‰×GDbѬ¦(¬~åÕ4ñS·ÝB b¨Ï+Œ¸ÔÈ @ƒWBáòx¿° ‚¾VD‹$^‰)ªiªòD¥ŽA¼FÔígœŸK'ñáº"@}tér{ýOiE´Hâõ‘¸0TÓTå1ƒx ¨Ëý1ÖçE#çÒHL¦c.}ýOiE´Hâõ‘8ëK=È/qO½†ö[B@CĘ˜ MG]úEL!}­ˆI¼>"káqV¿òªlpˆ×ˆºUË£0ˆ‘pÄáæ8`‡ÓŠh‘Äë#"1E5MUªx¹t°»±¢ИKžc‚4téÛëJ+¢E¯ˆÄ5¥I «_y@Ì ^ƒê¶Ëý‘½4Áðõݱ˜ Mçò˜B úZ-’x}D$ÖÂã(¬~å©Sˆ×ˆº%~OÓopé$þ"1AšŽ¹ôNL!}­ˆI¼>"STÓTåEüÛc÷»ÂlgZÂÝ?®)Â4IL¦c.}ýOiE´Hâõ‘¸¦4Iaõ+ˆÄkPÝvb¹ß $‰××áHÓ¹<¦‚¾VD‹$^‰5§9 «_y@Ì ^ƒê¶Ëý1ÚçÅ"Öy€F\ZJÜ<¦‚¾VD‹$^‰kÝ‘V¿òŠ3ˆ×ˆº%žò{]:‰¿HL¦c.½SHA_+¢E¯ˆÄñ*/]ú}^4b ML¦éÒ‘Äë#"±hVSV¿ò¶¿‹õRñP·Þ_ßc0ˆ1ÙgœèŸ'&HÓ1—¦Ñ"‰×GDâšÒ$…Õ¯¼¢Ä â5æÒ•Xî7ˆ‘^z‡çëþ¤é KÿSHA_+¢E¯ˆÄÕ4Uy Š5ïÒw»Â¼ƒÜMñÏäæ¼Kß^ÿSZ-’x}D$¦¨¦©ÊcP¬ti®aHb‚ÜL—æŠ$^‰E³š¢°ú•WT9ÄkDÝÊ8¿ˆå~ƒp$þ.1Aš»t$­ˆI¼>"STÓTå1(Öœº1¸Â?ß™Pd/M6|F‹$^‰)ªiªòàƒx¸4,—û b¬Ï+ÂôϤiº4A$ñúˆHLQMS•Ç X“.-÷»Â?ß™Pd/M6|F‹$^‰)ªiªò+]šk’˜ 7Ó¥¹"‰×GDbŠjšª<ÅJ—æ†$&ÈÍti®Hâõ‘XÊžÓøƒ¢¹¾ ˹JX÷wsðÃöºêacvø<î¢À.Ü?ueÜÉKN~·\>.º.bîC]üÚµÔ·ýA±`îð¤Ç€Yá뱃YßhNMc„/rIì zÞNŒ'RçXoË`NÄ8´Ä'.JŒC˜”–ç5渜ˆÍQ—Kâr˜ã¢s\ê—ÓLÀÏ«ÚC˜c‡~I*R³BÓ¦”šÔEê‰!At* íÕfcŽëÙAâƒoêºOw8ª ¦TÜz|F‹$^‰åñØ+äÑ>j ÕŰô!?ÿ^+ÀÛd_¨#3Þ6V—:+‹Ï€«<´¼ý¥šœ×}8ûk?ÌÆv JïnÁ‡YîϱOü€]×±¼M!Jü¸sÌb<½µ¯çØ›y“è9Ç=œcV¼C<—¦.ñg³â¡3ð÷•÷è»Û{éß½!lùdÂí·Á«]\lÁ ŸÑ"‰×GDbkž*˜êEuÃmÚµà!ÆÝœ2¶r$rÚ®´]L_®(Ò–‡§c»´îï“Ý¿éè:=Èéºâd;q¯3èóÜÎt®û·Fî ¹GìúʺÿÁ^Ú?¾¿›ã7»ÿÁ^zpŽ?ÛKK‡ø²—^¬‡-øÃa­ˆI¼>"OWÓt=Êqioc×ÛEèþMKó»å™Î´Ýý?u…óvÏÝÿ™­×K¿I,=⃣7»ÿ³ μßK_ÏÅ\÷¶ ŽÞè¥ÞlôÒÞËÀ_Ÿ°±9vòx —ƹøë^º“Çó.Ý-ïÇź۠ÛKÃÆžî éÒ_‹$^æ|zÌ<bž); ‹6<=v|LŽCóБݱnáü6û¼P4ža‚'Âày¿è <𢉷 ûÄ”OìRÖÞÚ*±ÿXþQóð\]êÍšjÄi†)­§FŸñ†GFÍÓ£æ)ÏçåP‰µÜŠ: ²¡kžµ¥¹G‹$^‰:Í;¤øVÊÜ7Xfž¯f&ñWˆ rs.)êJ+¢E¯ˆÄÕ4Uy Š•.Í5 IL›éÒ\‘Äë#"1E5MUƒb¥Ks Cäfº4W$ñúˆHLQMS•Ç XéÒ\ÃĹ™.ÍI¼>"STÓTå1(Vº4×0$1An¦KsE¯ˆÄÕ4Uy Š•.Í5 IL›éÒ\‘Äë#"1E5MUƒb¥Ks Cäfº4W$ñúˆHLQMS•Ç XéÒ\ÃĹ™.ÍI¼>"STÓTå1(Vº4×0$1An¦KsE¯ˆÄÕ4Uy Š•.Í5 IL›éÒ\‘Äë#"1E5MUƒb¥Ks Cäfº4W$ñúˆHLQMS•Ç XéÒ\ÃĹ™.ÍI¼>"STÓTå1(Vº4×0$1An¦KsE¯ˆÄÕ4Uy Š•.Í5 IL›éÒ\‘Äë#"1E5MUƒb¥Ks Cäfº4W$ñúˆHLQMS•Ç XéÒ\ÃĹ™.Íÿ3¢–Ïü(UIEND®B`‚aseprite_1.0.9/data/skins/default/minifont.png000066400000000000000000000032271246367725700214630ustar00rootroot00000000000000‰PNG  IHDR±šÑœYPLTE  $$$$$$$$$$$$((((((((((((,,,,,,,,,,,,000000000000444444444444888888888888<<<<<<<<<<<æ19•ýF<Z_ˆàuc~@},Š)ànX@Ó'†Ù­âãÙÐy¨çç”Îù\L.ñŽo~Õu<^}¼³Ž‡çã8G55q¼š8^‰m„|´–˜›0ç±À YÁÏn`bÌ› a!ç™|,t C¡ñX£©¾ca*æS¦˜Ù[žö<Ú›9kPsw“çãiš9{^[/üf÷0>;2_ž1/×ñ`.ôÖ±oòUá®côq55q¼š8^‰™a<Ðù}‰Ž•#Æ´Y͘ ñ"±²¬À³ôª/%6IZgý¨Cü’xx Çn %–¡>.ñâ7Ýñ1Ÿ%æ>æ«âo¬cá­ŒØ÷lÓøÁ:®¦&ŽWÇ«"±)Ýè†! ƒ¥¶Bü÷†´ãµÕVM@l²‚¾š…Û§êö±)ù1ßxl/Êj‡Ø-ù\báö*MÙrô-±ƒ?í øc„؉»Äöl›ÁÓWóƒsrÏ#ëØî61¶ÕÔÄñjâxU$6§üL˜†fzµ”¾bQç†yÉÏ6MI³±¯0[ 6‚wQΉñœß/÷?¨Lù–f£2å… Íš˜ŽìQùÙZÚ›3%æ÷Ò{Äß]µ´KŒ«¢šš8^M¯ŠÄ‹\HMyMómŽ¥ŸÏì™{A˜GÓYšîTÿç‰iÊÉn[Äx/ýbï°}uÄ€…§L[h5Î?ªÚõ±3òbUX¿=Ö±ýÒðwWSÇ«‰ãU‘øïAæ¿ÍMœËÌAqÊ,¢&ŽWÇ«"q†0uõxœƒ¢‰“šEÔÄñjâxU$Φ®sP4qR³ˆš8^M¯ŠÄxSˆíyÍñ…{×ÿ5ëùøß4ñ‡f5q¼š8^‰3„©«WM9(š8©YDM¯&ŽWEâ aêêñ8E'5‹¨‰ãÕÄñªHœ!L]=ç hâ¤f5q¼š8^‰3„©«ÇãMœÔ,¢&ŽWÇëÖgIóݺ†IEND®B`‚aseprite_1.0.9/data/skins/default/palette.png000066400000000000000000000021401246367725700212670ustar00rootroot00000000000000‰PNG  IHDR(-SPLTE }}}ÇÇÇÿÿÿeUaÿë¶Ó˾–‚uyaQÿÿU}’ž®Ëßÿÿ}AA,ªªUÿÛ¶UÿÿÿAÿž}ªÿUUªªãããÇUÿ¶¶¶ªªªª}žÿUUU}ÿÿÎ͆3IDATÓïþ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿsá‚®IEND®B`‚aseprite_1.0.9/data/skins/default/sheet.png000066400000000000000000000305101246367725700207430ustar00rootroot00000000000000‰PNG  IHDR, K8 IDATxœíÏ‹%וçO˜üfÑ^ÌFÍ`fpK h ½eôcUÙv“e•ԫ̪²ŒTt4%· ªÊz²lÑPÕ¤„%UU¬l©\ÅØN-Ë ^ªÔƒìYôBнŸåEƼqãþ8÷GD܈w>äˈ{î½/~|ß¹¿N0­!¿q˘6¿q‹ÅJfœëÉ>´Ü‡<äm'‚=1aÖë5s¡¸yÛ)}ßù»¦Ï€1ÆàWþd=9ßê1Ȳ v³õz ‹Å¢“¾ª*X.—üÄÆH“uZê€Ì'Äž1fÖÒ¢( ,KU¹è² uÑž7¤½îœ€1ƪªB§_,ðæ?ÞA§¿þ·{ðÕW_¡Óë[ß‚÷óþ•ïž‚³{¯¡ÓoüêÑŸàóê÷h£gŸý6û§ú_;X, Ë2X¯×Mšår ⃼X,š‡DL'>h<ŒåalxÛ…[,°^¯a¹\28yPÑ‚¡±àB®® c\°´ùºÜtÜFõÙÇ~.äyÎLç9Ïs(ËRû£çP‰üH|#VFõƒ Ð%žÎtœo°|UUÊÕåáヹ ¬úì" èôyžót™aÓ©0Ù6y ëÂe¹|wBA4Á8-“Xq°b4UcÍVÅØÕñÁÖ}¶!‹¸OIY–&ÉLX(\¨@l]0IL‰¶bfÆÅ #ZQ›2Y–cLl*ÒÍŠ£ÓÜ®É Ç’ ,ËV7Èjµ‚ÕjÕê.¨›­É~‡Ô‰æa‰"%6U`ÄŒoSC¼a¹hm˜Ñ–Æt\{,Ï󦹧k’åyÎòwB›„¶ã¨‡¾î3bBŒò½¨‘J±žÙr¹$ÑŠD°`•—Ï›/Fd"¤ÁNU¡ë;Ó¥U ;-Ø´é ¾èFѻ؟%äé”xtº ÈedËå’m€‡Ý;Q§5ŒEQ°Z­P¢£ Þo†YšãÑÇ–Õ7ió¿k6\W´é Q$TŸ1ÈË.8iš)<_Œ`øz€Æ<¥û YÏîûêÒ9§ôëõš½òÝS¨´UUAUUðñwÑé'/XûWàâUüdÀ²,k›wœíŽŽ:öHŒ7U¨à|þ?ådëkƒ ãYŽùäƒZLg+çš |!öõ+&FrS¶¦.÷"Øó€‰J\sê}û‘1ÆÄ8T×ÿvÎ»åþÈÐþI/bôa5sTëèø‰ãÇTëëä4ÊŠvršxV?Þ3·ŒÞºsO¸®±/nÞ6Ú¯.ëØ×¿HMý¥Ï(÷Z^Æ„Ç ãeÙê.³ºtÎtNÇ€†û#P[­Vü3¬V+ã9}q÷UÆGéÎî½wßÃ,]Râï˜J–(Z¶E¿˜ãb¾6¸Xýõ+?2¦ûñÞxëNשÀˆ@qó6z˜—{Z¼©Ø÷ðsâ`š ÊŽ\aÁ0-kA .wß˲Ã÷0Y3Ígþÿ צ¬ÇŸz>83ŒXq6!’ Z¦¾¹Ãï3‹½%\¡+cúúo«9p–âH%Á(íœ-€ð)ËΆyZZ±2Ìê,› Ž|•‘6®ër]Wxl@öì³ßúå¢xXjtÎÔÌEË&VNßY¼¡I°æ…ÏÛ¢(VOØšÅb‡üŒ`UUÁÇG^ÅŠÛÀ¬~ÈæŒ¹°Aë)Ö1¢7%<ÈŸ…4®Q ’ç™gž‡¶Ü}_± +5Ä–Á­„ÙÄÃzëÎ=ÔÄQUUÁêÒ9ôÄQ.>ìcbzk ›œ±"ÒdÌ£Y,~æM ÉiexsÃ6)TKñ³ÜÜ3Í€ /Ã××>6¡Í@‘™êúäЉ”°$m؉£S%f<,L? 6–0ý٧ó¬B|l{êj}·oÉ&µÂÃÔ?Ȫå9\hÄõ„ÕòÕâþ¡Å `&7DÊñ°„™îº Kш`Š¢`êå8ª5…/î¾Ê@íS·¦#X.k ]áüfAh<«>ãa!:'w\ó¬ábjOÌ€zás&ÿÍZ¿w_ewßË俪ûÕÖo%ŠXÒ‚•J<,À¶™Ö²ù؈ ÆD.•° "XXUÀ.œÝm¦&ˆ|ýàA3w*Rmxˆ¹3[Z&†}^ÇP?bb¬×k¶\.¡~=]×Û´†¾ë¼w¯¿Y–)·w¯¿n´ož:Õ¥Z]:×þYN§J£Êß@#6ü-|;::jý¿X,TAø”bÐí˜ÖØgr|zf5§*A_/Ìyfš _¿ÈÿÇèFŇ¢%¼xõÈó¶··[ ŽŽŽàâÕ^{ógÆŒx¬(ñ¯Ìq1_ØÙµºé.£Y¦´µ§•L ºªªØŒæ@5ž,BDš´ò_@Än^ußz)+¶¢ÒË[ÁVÞœð™¢ã’w+Z·Ÿ¸a‚€q0bÕ”å8oh*¤äi=óÌ3cW¡ãáðÑ,¬=!jžçQæda®OY–™ð^ÃÌU¬V«U+âHŒ(‹a<Å¡Y.—Y_,—Ë,ZxhyX6\CúN‰D«ª*&þ&>´|è3Y•1Æä& Q¬V` µé¸¨ð…ߪIœ®øˆUíÅ¢½Y~oØ’i¶A‰&X²¸èÄfÊ"äŠ$Z½^äÅbqæ•—$ä¦ ÿÿ•—ÏÁb±ð}‡!–¨b%ÆZ«û“Ððôò_E:9^¹x:×ÍÖÄ+ж··a{{;H´ b¥maîUf{ÀÉH²=“¶Ái-ÍQu˜a:³¿~ð`°4E´ îE¿ÿÁGwÎÀËpïÜß½Ò­‡Âíx>øèNß3ÛbµZ­0‘G›|øý˜e ªyž·šŸâ_Õý\–e&ˆCkÊŠü?æeâÀÕöö¶sýëïмý†ÛaÊvlr#̰NÀc¬žé­Üö¯h]Æ gwµvp[¯×-Ïóξú{0Ù^EžçÊý{¹þšý}°#6ÿ„r}gûÀªªêlŽM”æzòóåÐi­½–œzJ„2?E9ÌrÜZ8™†¾æò}øsàÔlÓ#CÞº}ƒ5 ·N6š¦.è\FЇu>—áû§Pþ¦ªª{'^ü]Óuo¬)‚g…*_áY¡ë­šì‹}ÿ­d=²¢(˜èñ>¸zªñš‹ž@³˜9Ãxg¢÷Ê?›<Ú³{¯øNÂK\ -ìèä”hýzš<,ÉËiìÅc"*Kó Ýñ¤„rZŸÿG??xi{T;°óƒ—öL¿œÑàž”¼9LehÏéJo›o€8çò‚Óš¼lž|ÿù–#] ubw_µyXpÒT”K Ñ6ÝTB$ÜŒ-{UZyA0_ Ž`‰›âX4ê@.T";°3â,ÑB±¡æÅ:gÆzèDR÷W…êÃôc!Š”(\¦/¡ûQ2ÙÄdò3pyhì’Ï*“íåYþ2üÍ-–3Í”ÜTì}þwÀÜ©n;NÔñ1¯ÞÞb- æUõâÿ–WÕ10 È›*ŒL¨½ñW'ø×ž ˆcf£¦)ÇêóŸÍy'ˆ!i5‹LèšA†é(>üø0ÖË­GìxXA Ä7¸X1iÝ—¼]¼úÚ ¶^¯;u–÷éBÃD°'b¶¸X½{ýuí‹ö¯X_ êú’SþòÔ4ñ¬ä×|ɯþzëÎ=Õ\˜Æ^^6$GžX]:‡šK=̯š(\Üé\ ‹Óyç£D¦å9ºéCÇÄjÖò‘²õzÝÚò<·¾!†cóÒø.VýÊšM„ïûñÞm<,ÌÇâæmL¬~mG÷ÄØm§P.QG«CÊÔç:ƒz«-=c'k u¢Ä‘ýγ ­µ„ª±‹Å‚Þ¸;Uö`¤°câ½4ôú¶MfèóΧE 5"j<,"¸w5†—¥úe'/kä©4â¾nbÞ8™ÌìŸçîá{™êUa}A‚ùb6÷ŠÝ.cõv»`°WØSëÕ/;yYý#†²áŸMámÄuƒü³i-¡<+>´¾>`Å£s ùÿÒß^.tvnu棬…=é`ýÿGÙ ²s«¾ãaôÒWI˜qý¡PyF:o‰÷[Ý{ ÆìÇj –j5{_¯ì™;±ê“û/‹ÖéÈc±zyÀ7=‹÷rŒÈ›„ñ<‹QtˆÞ”µÁƘžVÓé~°Eû6’ƒý+ƒUˆâþËgØ^ýêú;pì]í¼|nœ×Ò#öào{–÷éÒß=|/;+yü¶Îó»‡ïeÙá{a `ë`ÿJÇÉ‹Ïv°zÓC\àÌ箉{/ÿvшÕGçVð¼ë^vn°¨üõè¢XÑ\¬pü9µÅÎ[¯¾“ì_a¶æ¨%BÁèÈ“DEþÇû?mÒ¨¨ª õz²Õ¥sé7‘÷ZÍ?€s+øå9¸÷+†žâì½Bl0˜ðƪM° %¥xXÊzHíý^G ÁkÈ)EQ0qª\bÞÿ rÑù?ÿþÈÉî?ÿÙS¾ø9f<,{Ú~ÈÚ‹íÓó xXĬ‰&X¾ÄˆÖ€‰6!¤íˆM¨½Ý9¡fÑ;®o²z¶z³,€IÄÃ"ˆÞÞKØú¬ãÅÝW*ñólùâ³ß1¾éÓÈö˜hŸ619Ø¿Âä-þ77Œuû™TûLû‰qq]¥Šßn‹é>6Í<,ß `_>úêyíÚbñ|“NæâÕw ¿q V—Î)•½¸y›]¼|^[þÁþöÚ›?SÙ2GoHþþ¡¿4±óëÆ –eÇ¿È\”Ä}â~‚ƒ-€c±úòѧðà“Oœ38uút#VºÐ+ÇÇô¢¥+~¬¼|¾×‡„7kŸ|üÏàó/ÿ€4WùBRqVï1²°b" &)"ëÁ'ŸxM ýâô騋K?úoÍçS§nþô¿ûfŸP©ŽAO¢å"*²×4uŸ @Ø9 àˆL#X¯¾ÃC;òÿ"VgÞ åi¥+ZªÓ|i¶Óýîá{ÙÔ:Ý[üÑ4;èšySâƒîÀ^Úëìû0;§B3C«¤ˆ©#®'Äœk.Züsßõ eËž$mêŽõNsÈ¥Ã]Ö3tÆ$ûz|ú¨°ÍÊÈbÅÈC³3çõ„“,€8s£"Äö1õ]%KH‡ºM´z«i`"*Ið+nÞÖ>4¦c)ƇåE–­öû°õ«º9ÓÙH¬€ë`ÿ ”—ÏC–eLµ•—ÏS<®~¹æ#ZµÍ5Õ±±F[‰PV1Ƙo¼&ÜÄÑE“_˜ë×êÓÅÃêk´kÓNnÊ…Ús›9‚AôQ×àç¿þ{å»§àýß<€~ï;IŸÿh}X_>ú‹çµÇˆùC£ã"ŠÀqðDÓÔQ¬^ùî)€_ÿ¥,Z-‹¿Ù)ƒ©õ2÷‹u…S!f®1V\Å$T5ç"yX¡}Mäa…á%Dw³¦üL7‚õå£Oቧ_ð΃h+Öµô\°x–(~bß?ÆLyÂÊìk àd’OVÂßm,²z6»òXå^¼h)Ó‰žW–­€±âªìñýõ$‚ærŸi?1.ºMêÄú0ÞÉÒ ìÊÁþ8%,~Ö5)¿øìwbšL:f=A¶‘EUü«úû <Õ÷Ǿtƒ_à1Ýhf¸)3j²o r§{½OÛ§(wºL`¤ÐóÄÀ|l½^+7)] 1¸Ÿn³ÕŸ1âÆ¿ –ʈß_®3& /g¬_&ÀZÛqEZÛõ"ÆAœx‹yùÇÏý‡æyþù¯ÿü½’Aý̽{ýu§ð2ûWàµ7¼³Þ4ÂXU,—Køâ³ßu¼%. §NŸnâqÉŸM÷ŽcÇ=Úõ²@á=ŠÖøëëõŽŽŽZ;···ù‹eö|„µþ<¸§Õ$Q3…j—EÌ…Vx™<Ïa{{e¸\./^Å"6)uŸMÔbÅö€£Xµàß]/,õäP&‹–jAî´–æ¬V+X,¨-Ä7W‹båÃÑÑ‘·Xq¸hñÿ¹6H“‘kâHÚ¨[(n¦fJ¨½)—w#†ÚýÒô÷¸ö_1ÆZýW:Ä~¬Ø•ç}X'/¬`Œ¡ß‚Ãû°Týn.}Xò&ž'qŸ×—4•ŸV¦,S«`™ì%¡Qæ=„`ý2iÁ87vwØ»;ÎoÍÒ·6l>:Á‚vÇo¢Õ,ų<{u‚Òx – 6Öò o—Am‰‰–S=MÏô¤:Ý]?óô¡î) &ì´S÷”|n…EÐQÎCGë4 ìtg`/Ë”{*—!Ê6¥u}XS¹õ–§5Ø~0“ŸÖ3ð°ÆDö¢LçJLk»q¸fñ®®E*ØMB—ó©m2Öa œêŠ|¶“eôxXs‚ÕÞ”¼@ë3ÿ?ÒÍq-Ø×m°!³Ò‹¢À7 uö.e#Ññ*ÌcÁG§Žx.Äÿ s®zò°RbLkS;Ý7ÊÈ$X\´TvÖúQ]d•HÉŸG©lÏд†QØ\Á2õCékìʧ ?GòF猈Œ“ÀÛžë)Œ2Ƙrhß´Õó’ÿrc"‹/¢œ¼Ñ©‹Uðâç±ëŸ:äDd\½+¼¬Q*<1H¬"Ê·&{äá ïˆðÉ'Í‚ç'—1>[à4Ã]„4˜N $‚ˆD^ÆõU\?¥~¥—/Øp2©¢ý±ýÝð“Ãû$š‚*ê¨Dë^PEm%û&–Hf¦;Ø7eäÙícòÆî{ëÎ=xëνF¸†&Ï󦿳þìe 4¸ƒÂ&Vò }›X½ÿ›Ñê‹h/R%‛ÇÄÅŠsüù ÃØ…–-R–%OËʲ8”}žpÀâYu0‰Uª$#XSoÊQÐ)G‘ïq«vžfÑúÉáýLgÏËw%Ïs&ŠOý¿ñ;È6Á¡&aDØÉK0İ2ÁMš±â`š‡?9¼Ÿù“ oÒɃ"+BG2‚5uÄþ«>D+†ØÄ=b¿“¯è¸öu›E2‚5ñ&a&nÑòîHî»=T¬bxF†<¨Þ‚kØ›;ÕmŒ.XO<ýB&oc×)ZÑ’›®ô%Z!b€oÆåyn:†ý^s¸G¢³Z­2“hÉò?üÞw2“h¥Ø)?º`Í¥ha§<˜šv±EË&V1ú´8¦w¤è‘X¨Ã!›¶?üÞw2ƒV V¿tD ïkŠ)¾`ëbòœ„ã¡@r1,$X Â;ÆuBéüøUé Эեsðƒ—öðögwáƒîô)XŒÕ/U­ÿ!Ñ „/šÆ,ž&æKËò‰À±‡Å=0¾`ùÉÅs(±8öl¸'öà“OþÃ…'ÏÁ‹—Ïc u#fYÆîþèMø¼ú}³ïÃì?€;¨úzЫº¢ Vˆf!ZßLj…=ls õÂJƒX}÷¾ ÷-Â7R‰”—ûa.ÏHë¹Ð/§7d¿±»£| /¦Ó[g+ßQ¢(š7[lTŸ±Ç ‚@Ò*ð+³è„ŠÖö5ò÷fŠ}*,$X ¹ˆq`ÌÜ Dƒ[³P5MÓœŒQvÜ%æc$kò}11&ËÇ»Š‰è) õ¦ç&!OƒÙ,MKbÆÐ¯Tj}j3vXZHÌ º‘ãe3AADö¯ û.äí`ÿ µÿòѧìËGŸjGÆtp»aÎÒ$ÀŒÚìä k?&¾õÖå#&¬ '‘¶!öL£Àç—þŧÿ¾|ô)üÅ_>ï^.^}ew°^{ógð/ÿü{xü©ç©É§¾ö.#~:†5´å¡élõ_zö[Š£Ì™â¢†/~f<.ú¯ýÉhðý§ãñÐÅ ÌÖë5, T¡UUÁr¹LjhúâÕw”/·P¦½|^{óg=×h2ègÈëkÙ‰ü]äüúX"¤'ñE&I='cÓDkxrñ7o[ øod‹…Uì8ßG A8à+ZZÏ)¸FH4žT†} Ô&Aáeâ"O˜t=N„á#ZâäV/\Ôn‹²@PÄÑx0ÆÔo}Vv"çyÎCÌÌé—S÷Põ°…4Ût‹Ó™æ¯ÊÆÇÃ35«çt¯CVš~ƘBøò4†¾ Ì ª}(Öë53õ%Öý‡Zû<Ï­å—eiëÛÛ3ð kc;ÖK’æ~è,÷"ÈÊAëÆc·«6žFçiÕšÛñ£££ ã¶xé†ã¾ÆÜCÙÈ÷j ÁJŒ²,3(åy®òn:öEQ(EaµÏ²Lû’‡Õjuüt)稙ò7ÙÉ`í]Ê ¤/ñèœV+5$XሿÀ3n<é†T‰F¬D{Y´0b%~!Y´lbeú¿Ošñÿé#z•›äa:A‚‡F´Š¢Ð6‹¢@‡EËE¬Dû¢( ª*ÀcâIDAT'±¿Ðöö6loo£Åʶ¿f$Z„…¦Ó]7¿JÅçÕï;ûªªBϯªª Y½I!ΛÑyN¬,KíqEú¬þëU¡²,3_[h:çCò .Z:a%æA#X_?xŸÿnâç×ÿû_;ûnÿÃûpô_̺&û™`{Xèaê­ùÃë̇º¾.E|[A¨ýèì_‹õÚDLZâ]sl,Ñ Ñš7âEÝq´½/ýïe°…aËpá±ÿNÝOó‰ksþ埛ŴøùQ´\ÄÂÔ÷D¢CÈŒ~C|ñÙïØƒO>ñ²=uú4„؇>$X1 cÇ£Û¾> ;ö®åܑϫj?ÖÞô7uû!±]›ä—en¡a8õµ·ÍÞÖÁG¯Ëw>’-¡^²â²ŒE]íe ̆ œ<Ïù|:ÅõâÓr,£Â£^—&X¢¢ Ò‡Pû<Ïþãcn5ÿ·?5å1ÆÐ¡m8ßê±NÀ4ìt‹ÅbA3‘Oàâ"?(®‘Tö.åc÷›Òé>÷Y~L¬ÓÑ„µ¬Âw×ÂÚìaÄû¾™8Z–%ä7nc î~öGåÆƒüÆ-¥0•e ëõÚ:Ó{½^Ob^á„è!eÒ>,™æ³‹f¿.Ü”ó±›T£ˆ•ÇZV§µ°cGiEk°ñ³M.Åñ›yð>ÛÍ:ÖÍÜ7Ü›bŠ}X˜ôyhKö}ì}ÊÁ`‘ÑFz…–æÄ£¯xX£v‚bÂÍÔøzHr®Z,Ëô¹Ïò{Áa-+j-l*`Å¡ù…[­VÚ‹ÎûíD+xÄ)d+‹h‰ž”,8¾^’ËÃ>ö(_r£„º¦¡a-«u-l*¢E‚ŽSOƒ-ù˜óÃÅÊG´d‘BŠ–¸…6é\=ÝßÔíû$·²,MæY–e ¬u·d ÁJ8 …'$ä‹NœL¢åÛ„¨Ó{ÏÃ’EÙU¤Ç¶›%'P2"9œf9vXXã–7˜æ¥aFXu v.€_UUÊòUùbËâ'OLµåö¦¿©Ûn`Å¡-Ó|4Þén›Ëâ»JU™¡ì¹¸È"é²Y-׺êÊÀ–­J{Ÿò{&ÆH^Rž"5 ãaêÀô!L.4Y¸‹øp»<躴®’Ü”ó±Ew@±b*Üwõˆ Cþƒ‹YËÃÂñSïã`‚ø¥¼¯ª*§¥9l7鬄УòT^— 1­‹wËÃ’=B{Ÿòc ®8évˆ5A»ïü]h+Ïs(‘ñ tŠË×úØ2x  —h§¢ÈÑÑ‘õ2„Q |TÙ[Á6']ö›Òùxy¡åG 9õ¼HL·CBù;ÃÖë5se½^7CØ!ö­aúˆÞ‘i_ö<îoêöiž-è§©Öwþ(¶ö¯ =#@/ÄþÔéÓpàe}+Èþ8øß}p€*0ÜXtî[ÆÔž”«‡£û›º}D²ÌòNÄóÇUb¬‚%ěݧN!ö¶_‹TÎQê„^ñP=„£?˜ÐÝ×¶ïäk7)Lk`ëõºùg¹\ºŶ~ܳ‘e°ÍŸò9÷¹1ÏGpx“ÆAn•b>_»!HfZƒk¾)Á^L‰#N 9AN¶ÒÓìŸ,™°$l»M€åyÎÖë5«—~¸Þ¬M§¿0àdoÙB;*™ôÿ=w±ì[y9D™á¾s¶MÆŸ'—{®u¿æy>·û5˜8¹I|FßÞ‚Z´jû·íS¬ÑoË,Ÿ«Á µ÷œ>®ûX(ÇU°o#àÓ |§ ¼~bЯ`uÄ Ü.~”›$dˆ=Ïs›Œ*X¼#ÙvÊ¢eúqt½ç’lP#Õ~|ÏcRHipÀ–·X/ïëÄÅÊg˜]|ø ëåzºÖ;Ô[OcùyžCY–YžçL˜Á=¥çCy¿Nðì#Ï ¦tAú¢Á2]hLÞr¼®“èY¹ –ì©X„@u]GèBì éž‹(,}åëE2£„#¢\¨,ld×Ùô«dÍ;ÆUèLk]ˆ ™4êz3ûž÷`„þã>" H°"!>°¡.tÝ4 ªOèLë,Ë2¬hñÙêâ"b×ò˜€se5y¹Úˆ§_  a}N_b„v®+ñœæÑ­XÀC(Œ9Ù„¤­¯ËwGÑD&:µÁÔQ>‹Nw"½]ÜN¨×POÑæ­[·ör^®ó°f VœÖ½HÓûk$ Lˆ`…Úû Ž*û ¥à!m‰‰ ºç7â"-X¡Þ‘l;7Ñ‚@ÁJí>Nañó, ŽÉq¨§[„ÌÃà±ø3`Ž#¤Iã«»©ê5=eD0*oÄe”2ÔžP¢SœI‡—éŒrõ¼m›ð]Uß±ù_µ´ÇÐlcÂßNñMÔBÆó‹h"Še)Ë´¼[·OkƒXîDhàMB–çùO]]áÚþ‘«mmÇ !ÕÎoÜjÝ@ååóQf$£«O|$DxŒç·^nã2 Ø5¯˜å¶ -Vïb¼Z­Þ.Ë\mW«ÕÛðÓTDK+¾/@´ë.gHâ»öÌb%æA¢Õ®È,î½o€³àDàïçÔ±)Ñ+€h³ŽSgL±J%¯˜å‡ÀX7`ä,î=ZšÓEQ´FY;~#´£Þ\ž–ñÜà]øÚ¥˜WÌò}i~0ÅÍ ZØ>æ$ú¢I°â“©^0)¼‹÷ÍcÑE‹ÄJáÝsL¢¥ðÆt™æ›+mH´ìv¡¶1òS¬ÄIž…÷âm ‰VËCÂÆpO!Ö;cŒ½-«'r{;ÀþmH¨]߸ÅÄ-0»ÐÙÂAnwèlm>ìNÃï“ 5Sº÷\ë³bm¡ò8´ï;SþƒC‚Ÿh‚å#LÂÕ^+ÓÂg±,yŸk™¢K½}ËíÅr}ìMy@¨à4÷‰§à  V|¢–¯w"V'‚…±—Ëñ-WÁ ßrMå‡ÖÉ콦!Ý>I˜tvƒB}X‰ÂcŒ‡ä²¼eµZ9Ûû>¤1î˜á+¸±Ê÷;éš(¯B×ñ©¿Š1eäÜÁaŒ<¬˜Èn9c¬ån[ í7 }x\ì™_{qŸ¯½ ªrCË÷­‹'O 46xïX=·Áñ,5É_ð˜èxŸ<|ø±’ËòÉKe3°`õ“Dî]jƧãZ36î›F†Â· #2CÌè>yÍ,ºD&O<…Dî]¬~hDkSÄŠ3†h‘XõÂ(o1²±p¼”¤^ì_nâcï¸TeŠdõ‚g€„.xlTk¨h¹ØÇx;PH^1¿?a§­qÄ:Nß?£ÿg~±°üãa‰¶0Á2‰þ¾ù´¾·Ü ­ñBŒÏÃàÁ0-·Ÿ±÷Ӝ➺ úÎß©"4JFgT%¥‘•è̬ÿGŽ¢Éö탒=¢>úƒÓÁS!Þo}Ü{}ç†:Ý#"ª8#.à›Ëœ¬õzÝMÛÒš¨¼¢æ³Ê+Rx9²gÔêª=#ÅÛ¥cxwS… ;=þZßù{Uˆ<¬0Z¿@àÿ+¤›Ü‡Z ¡tó$냭³v¿®La¨½k½°öS!x¢òÈù»Wˆ+˜Ž`IûÐù 6s%Ò¬¦N‰ÛÏŽ â~ÁæmÈp¨I.Æœ±]ç06¯ͯ±íçLŒïžÔù#ÁŠ„"m³?†h­×ë úUUdO)@‚‡Ö¬`‹h9»ëëõ–Ë¥·hUU‹Å‚D‹°Ýw“Ù¦>¬~èôkI}IªïÞ鳪Gù¼û°ä‘Ø_HSVkÄÙtï1ÖâÒ½«ø<8[ö$„'Íè;ïFßS¨"Ïóξ£££–‡µ\.µê<(ò°6 ÙÃW“Þ“ÙܧŒ1PMO©+{HÞ^’‡íÛàaq”žlÆw'†AëUé6ŒG†°qñ3€×fZüL£ÒñæûB(c—k Δey~’‘«ÕëÏ„”9%¨ûˆèÅe¢Žèˆb‡±‡1§:ÔÜ—0Ò¶3À×KÓ9 ˆØhï·NwHäžÍ¸¢fY6´€Ü¸<‚Øt¸à˜¢]˜ŽÎðgcKéY>?1Ýá1ÝwÂO˜7‰8òšDÊ‹H‡ U)°•eËo܂ե?97k„ŠÝÊN-ÜJ~PAv¾dPø–_^>ŸÃ DKfð¿i˜wB}<³Øhb6™|.ÀØå÷NŒ±~ðҿ‡¢Œ.œÝ…>úOeÇZÁ¾ú-üò[ƒ,ôðòW¿…ì[P–?yÁ8Y£+FQñÉóS´ª¦pµ`%y'DL×W°Lv­¹W†´±¾Gtš‰£~|Ø4ñldYÆ>Zqàdÿ²´¯.%>Y–årùsA.—›¦</K9²¤Úè½ã _H~ 3HX˜tÐL÷þoÝÍÑ’¸9Ö¼,#²‡5vódìòCÁÜ7!yÛD«Ïò½!ÁêÖƒõ|¤y2¨rdoÈÃËj žù…Þ¨1b—ïÒ<±n}æ­ýí±|o(ZC´n„5¡›\CÒˆa™CB4ƒmb¦Èó‰Äޤ̈ˆ‘Dpb•,äaõ‡ÏR 1n9vÔOõK˜‚g4b÷éô!|.×ÖV>Ó|ŽU~¯`õƒÜ Î÷»\ìÌA´bz¢}Ìk†mž]~ïP“0>LÑyí{ãd®ÍCÂȬšG›yXq1‰UˆhMU¬Æ®wÍ£˜å÷ÍØåG‡+1=+L>YbMDZë‘Rùc\—±ËïjÆ¡O±ra7%Aèh<¬ gwÑ‹˜/œÝíìûàAÿB“g–e¨éëªòSaôxADªŒÝ<»ü(G½ù|ð€Ër—âæc'ÿ<¨àå¯~ òr#Nâ‹—?.òô+Bfì{bìò£:\Ë~Êáe( A$@ iÕ:ObFg Í#´ID˜$]§»¸tÀ5—L¹X±œì' “ßî|Kd„<œó ¨ƒý½ ƒEdŠåë‚OT³G÷…g¼H1Å2aæ{ïD>|èºS©ÆÕù¼4xàcŒÅ¸Ç}ó±Ù‰ÇMic}>PyX&u]S&0Gƒ:™Åæc?g$ab>Þ™ÆFŽ·¥ò²dÏ,èúÄ||½1ËE¬ìò¹Åo Uþ}–¹¿êt;’¯ÉFñ1ׄÿ¯)šÇZû‰Â½Tˆé˜O:£½‡œS¤1•ü°Ç ß|lvXoߥü>¾shùŠçÏš·oùc@#ƒî„ “Òùt°cmå²°ut&EÁ }xûª«)Ÿ˜åûˆtjÏ´Ø$d°ï›Qýżí'Œ¦!;Ýù=!¤w­€µ ž´NŸÔM8&ŒÙ›G®ùŪ›*O[ýb‰–oùCBÞUª_o¬÷Ò‹—ƒ„<,C91ËÍgJÞ^_ˆVr¦¤¼#¡ £ò¾R;Oª@º©“F¼GEo*†gE …—‰‹ê¦o„LUš±m³6„±‘ûhÅ,¿oÆ.Ÿ˜.M§øˆM? ­æìØ•™ )6ÇÌ'Ї5 âË%|—íôMjõ!ˆÔn–N×(µ0#6_Ҭ㤈é™lâ$Zb\¦ÒÜšJ= ‚ "=þ?Ä™ ¼]!2—IEND®B`‚aseprite_1.0.9/data/skins/default/skin.xml000066400000000000000000001015441246367725700206210ustar00rootroot00000000000000 aseprite_1.0.9/data/widgets/000077500000000000000000000000001246367725700160215ustar00rootroot00000000000000aseprite_1.0.9/data/widgets/advanced_mode.xml000066400000000000000000000007541246367725700213220ustar00rootroot00000000000000