Warning: there may be occasional oddness due to css and blog edits. **KNOWN ISSUE: possible hidden text**

Friday, May 8, 2026

Trying portscout for unofficial ports

My collection of unofficial ports which track upstream commits is getting a bit large.  I had been keeping a tab in firefox to each git repo commits/master or commits/main page open.  I also keep a tab for each of my own repos because I may not know when I made my own update the last time.  I have known that portscout exists and discovered that it is in our ports tree at ports-mgmt/portscout.

I am going to try to setup portscout for my collection of unofficial ports.  Not long ago I organized slightly better by placing them all in one directory, GitRepos.  I have so far avoided organizing them as my own sparse ports tree.  Placing all the various unofficial ports into GitRepos also lets me add that directory as a shortcut in bluefish so I can include files when useful.

Installing the port is simple, I chose to build it but I could have installed with pkg.

INITIAL SET-UP
   Initialise Database
     The recommended database backend is PostgreSQL.

     Option One: PostgreSQL

     Create database:

         # createuser -U pgsql -P portscout
         # createdb -U pgsql portscout

     Execute the included pgsql_init.sql script via "psql":

         # psql portscout portscout < sql/pgsql_init.sql

     This will create the database tables for you.

According to the PORTSCOUT(1) manpage I am supposed to create a user, then create the database.

root@ichigo:/home/tigersharke/GitRepos # createuser -U pgsql -P portscout
Enter password for new role: 
Enter it again: 
createuser: error: connection to server on socket "/tmp/.s.PGSQL.5432" failed: No such file or directory
        Is the server running locally and accepting connections on that socket?
root@ichigo:/home/tigersharke/GitRepos #

What seems to be necessary is databases/postgresql18-server because the first step described in the portscout manpage failed, or perhaps something failed to be installed.  I installed the server and looked at the output messages to see what it may tell me about getting things going.

To use PostgreSQL, enable it in rc.conf using

  sysrc postgresql_enable=yes

To initialize the database, run

  service postgresql initdb

You can then start PostgreSQL by running:

  service postgresql start

This is what I did, using the instructions described in the order given above.

root@ichigo:/home/tigersharke/GitRepos # sysrc postgresql_enable=yes
postgresql_enable:  -> yes
root@ichigo:/home/tigersharke/GitRepos # service postgresql initdb
initdb postgresql
The files belonging to this database system will be owned by user "postgres".
This user must also own the server process.

The database cluster will be initialized with this locale configuration:
  locale provider:   libc
  LC_COLLATE:  C
  LC_CTYPE:    C.UTF-8
  LC_MESSAGES: C.UTF-8
  LC_MONETARY: C.UTF-8
  LC_NUMERIC:  C.UTF-8
  LC_TIME:     C.UTF-8
The default text search configuration will be set to "english".

Data page checksums are enabled.

creating directory /var/db/postgres/data18 ... ok
creating subdirectories ... ok
selecting dynamic shared memory implementation ... posix
selecting default "max_connections" ... 100
selecting default "shared_buffers" ... 128MB
selecting default time zone ... America/Chicago
creating configuration files ... ok
running bootstrap script ... ok
performing post-bootstrap initialization ... ok
syncing data to disk ... ok

initdb: warning: enabling "trust" authentication for local connections
initdb: hint: You can change this by editing pg_hba.conf or using the option -A, or --auth-local and --auth-host, the next time you run initdb.

Success. You can now start the database server using:

    /usr/local/bin/pg_ctl -D /var/db/postgres/data18 -l logfile start

root@ichigo:/home/tigersharke/GitRepos # service postgresql start
start postgresql
root@ichigo:/home/tigersharke/GitRepos #

Now when I try the first part of the portscout setup, I get a different error so it appears that I need to investigate postgres sql server a bit.

root@ichigo:/home/tigersharke/GitRepos # createuser -U pgsql -P portscout
Enter password for new role: 
Enter it again: 
createuser: error: connection to server on socket "/tmp/.s.PGSQL.5432" failed: FATAL:  role "pgsql" does not exist
root@ichigo:/home/tigersharke/GitRepos #

According to a FreeBSD forum post I believe I need to change 'pgsql' to 'postgres' for that command, so I will try this and see if it succeeds.  It turns out to be the piece I missed and which may need to be changed in the portscout manpage.

root@ichigo:/home/tigersharke/GitRepos # createuser -U postgres -P portscout
Enter password for new role: 
Enter it again: 
root@ichigo:/home/tigersharke/GitRepos # createdb -U postgres portscout
root@ichigo:/home/tigersharke/GitRepos # psql portscout portscout < sql/pgsql_init.sql
sql/pgsql_init.sql: No such file or directory.
root@ichigo:/home/tigersharke/GitRepos # postgres portscout portscout < sql/pgsql_init.sql
sql/pgsql_init.sql: No such file or directory.
root@ichigo:/home/tigersharke/GitRepos # locate sql/pgsql_init.sql
/usr/local/share/portscout/sql/pgsql_init.sql
root@ichigo:/home/tigersharke/GitRepos # postgres portscout portscout < /usr/local/share/portscout/sql/pgsql_init.sql
"root" execution of the PostgreSQL server is not permitted.
The server must be started under an unprivileged user ID to prevent
possible system security compromise.  See the documentation for
more information on how to properly start the server.
root@ichigo:/home/tigersharke/GitRepos #

Easy enough to go to my user and start it there.

tigersharke@ichigo [~] % psql portscout portscout < /usr/local/share/portscout/sql/pgsql_init.sql
ERROR:  permission denied for schema public
LINE 9: CREATE TABLE portdata (
                     ^
ERROR:  permission denied for schema public
LINE 1: CREATE TABLE sitedata (
                     ^
ERROR:  permission denied for schema public
LINE 1: CREATE TABLE moveddata (
                     ^
ERROR:  permission denied for schema public
LINE 1: CREATE TABLE maildata (
                     ^
ERROR:  permission denied for schema public
LINE 1: CREATE TABLE systemdata (
                     ^
ERROR:  permission denied for schema public
LINE 1: CREATE TABLE allocators (
                     ^
ERROR:  permission denied for schema public
LINE 1: CREATE TABLE portscout (
                     ^
ERROR:  permission denied for schema public
LINE 1: CREATE TABLE stats (
                     ^
ERROR:  relation "portscout" does not exist
LINE 2:   INTO portscout (dbver)
               ^
ERROR:  relation "stats" does not exist
LINE 2:   INTO stats (key)
               ^
ERROR:  relation "portdata" does not exist
ERROR:  relation "portdata" does not exist
ERROR:  relation "portdata" does not exist
ERROR:  relation "portdata" does not exist
ERROR:  relation "portdata" does not exist
ERROR:  relation "sitedata" does not exist
ERROR:  relation "moveddata" does not exist
tigersharke@ichigo [~] %

There is obviously a bit more to setup and configure but I believe the majority of portscout is ready to go.  It looks like I need to copy /usr/local/etc/portscout.conf.sample to ~/portscout.conf and then edit to fit my needs.  At github portscout.pod other documentation is available.  As is common, if I do not define a configuration file, it will use an internal default, so I believe that is why I got so many errors above.

I made quite a few changes from the sample to my own custom configuration file, most notably that I will need to create an xml file to control how it will search for updates in GitRepo for my unofficial -dev ports.

#------------------------------------------------------------------------------
# portscout config file
#
# Format:
#   - Comments begin with '#' and extend to the end of the line
#   - Variables are case insensitive, and may use spaces or underscores as word
#     separators (i.e. ports dir == ports_dir)
#   - Variables are separated from their values by a single '='
#   - Paths must have no trailing slash
#   - Use quotes if you need to retain leading/trailing whitespace
#   - You can reuse previously set variables, like: %(name) - these variables
#     must use underscores, not spaces.
#
# $Id: portscout.conf,v 1.16 2011/04/09 17:17:34 samott Exp $
#------------------------------------------------------------------------------

# Space saving variables (only used within this file)

prefix           = /usr/local
tmpdir           = /tmp
wwwdir           = %(prefix)/www/data

#-- Data Provider -------------------------------------------------------------

# The DataSrc module is what portscout uses to compile information
# into its internal database. In other words, it's the layer between
# the repository of software and portscout itself.

# Option One: FreeBSD ports (NetBSD and OpenBSD supported too)

#datasrc          = Portscout::DataSrc::Ports
#datasrc opts     = type:NetBSD

# Option Two: XML file

datasrc          = Portscout::DataSrc::XML
#datasrc opts     = file:%(prefix)/etc/portscout/software.xml
datasrc opts     = file:/home/tigerharke/GitRepos/software.xml

#-- User Privileges -----------------------------------------------------------

# If these are not empty, portscout will switch to this
# user/group as soon as is practical after starting (if it
# is running as root).

user             = portscout
group            = portscout

#-- Directories ---------------------------------------------------------------

ports dir        = /usr/ports          		# Ports root directory

html data dir    = %(wwwdir)/portscout 		# Where to put generated HTML

templates dir    = %(prefix)/share/portscout/templates # Where HTML templates are kept

#-- Limit Processing ----------------------------------------------------------

# The following three variables are comma-separated lists of
# items that portscout should process. If left empty, portscout
# will not limit itself, and will process the whole ports tree.

# Items in the list may contain * and ? wildcard characters.

restrict maintainer =        				# Limit to these maintainers
restrict category   =        				# "     "  "     categories
restrict port       =        				# "     "  "     ports

# Note that if you set restrict_maintainer, the entire ports
# tree needs to be processed to ascertain which ports meet
# the restriction criterion. This can be avoided if portscout
# has access to an INDEX file. If you don't have an INDEX file,
# and aren't impatient, you can switch off the following.
# With no maintainer restriction in place, it has no effect.

indexfile enable    = true   				# Use INDEX if needed

#-- Mailing Settings ----------------------------------------------------------

# These are only required if you plan to send out reminder mails
# It is enabled by default because you will need to add some
# addresses to the database for anything to happen anyway.

# The sender address will have the local hostname attached if it
# is a bare username.

#mail enable                = true
mail enable                = false

mail from                  = portscout 			# Sender address
mail subject               = FreeBSD ports you maintain which are out of date
mail subject unmaintained  = Unmaintained FreeBSD ports which are out of date
mail method                = sendmail  			# Can be 'sendmail' or 'smtp'
#mail host                  = localhost			# SMTP server, if method is 'smtp'

#-- Output Settings -----------------------------------------------------------

# Timezone options. This is just eye-candy for template generation,
# but setting it to anything other than 'GMT' will cause portscout
# to use the local time, rather than GMT.

local timezone   = GMT       				# Use Greenwich Time

# Hide results for ports with no new distfile?

hide unchanged   = false     				# Show ports with no updates.

#-- Other Settings ------------------------------------------------------------

mastersite limit = 4         				# Give up after this many sites

oldfound enable  = true      				# Stop if curr. distfile found

precious data    = false     				# Don't write anything to database
num children     = 15        				# How many worker children to spawn
workqueue size   = 20        				# How many ports per child at a time

# This variable specifies what version comparison algorithm
# to use. Supported values are "internal" and "pkg_version";
# the latter uses 'pkg_version -t', which is pretty straight-
# forward, but makes no attempt at best-guessing backwards
# looking version numbers. The former is a bit more
# sophisticated.

version compare  = internal  				# Version algorithm to use

# It is possible for individual ports to give us information
# such as the "limit version" regex. The following variable
# enables this.

portconfig enable = true     				# Respect port config hints

# If you're using portscout with a something other than the
# FreeBSD ports tree, switch this off to disable rejection of
# non-FreeBSD distfiles (such as 1.3.2-win32.zip).

#freebsdhacks enable = true
freebsdhacks enable = false

# HTTP/FTP options

http timeout     = 120       				# Timeout in seconds

ftp timeout      = 120       				# Timeout in seconds
ftp passive      = true      				# Try to use passive FTP
ftp retries      = 3         				# Give up after this many failures

# The following tell portscout how to deal with sites which have a robots.txt
# file. Possible values:
#   standard - Check for robots.txt but only respect portscout-specific bans.
#   strict   - Respect all bans, including '*' wildcards.
#
# You can disable any robots checks with robots_enable. But think twice
# before doing so: angry system admins are likely to block bots they don't
# like using other methods.
#
# Plenty of sites have blanket robot bans, intended to stop search engine
# crawlers from indexing pages, and thus 'strict' is likely to affect the
# number of results we can gather.

robots enable    = true      				# Check for robots.txt files
robots checking  = strict    				# Strict robots.txt checking

# Database connection details

db user          = portscout 				# Database username
db name          = portscout 				# Database name
db pass          =           				# Password

# These two are only used for db_connstr, below

db host          =           				# Host
db port          =           				# Port

db connstr       = DBI:Pg:dbname=%(db_name)
#db connstr       = DBI:Pg:dbname=%(db_name);host=%(db_host);port=%(db_port)
#db connstr       = DBI:SQLite:dbname=/var/db/portscout.db

# GitHub site handler settings
# GitHub rate limits requests to its API to a very low number for unauthenticated
# requests, and 5000 per hour for authenticated requests.
# GitHub personal access tokens can be requested on github accounts that
# have a verified email address here: https://github.com/settings/tokens
# A public personal access token without any special permissions will do(!)

#github token     =             # GitHub personal access token
github token     = ghQ_nG4JUadwpM2RcAQIMkneVX7C4zN96Z24IkQG

# ex: ts=4 sw=4

I believe the format of the xml file is like below, which I found in https://github.com/freebsd/portscout/blob/master/Portscout/DataSrc/XML.pm and I'm sure exists amongst the portscout install but I don't know where.  It seems like the details in the xml file ought to be obtained from the Makefile or distfile and looks like a lot of excess typing, is there something that would generate this?  Not only that, but items like version would need to be revised each time I update the Makefiles, couldn't those specific details be pulled into an updated xml file so I would only need to edit the Makefile each time?

    <items>
        <item>
            <category>software</category>
            <name>foo</name>
            <desc>Foomatic Professional</desc>
            <version>0.4.3</version>
            <suffix>.tar.gz</suffix>
            <distname>%(name)-%(version)</distname>
            <distfiles>
                <file>%(distname)%(suffix)</file>
            </distfiles>
            <sites>
                <site>http://foo.example.net/releases/</site>
                <site>ftp://mirror.local/pub/foo/</site>
            </sites>
            <options>
                <option name="limit" value="1,even" />
            </options>
        </item>
        <item>
            <category>software</category>
            <name>bar</name>
            <desc>Barware</desc>
            <version>1.8</version>
            <sites>
                <site>http://example.org/software/bar/</site>
            </sites>
        </item>
    </items>

What I will try is to create the xml file as above but only include a small portion of the content, and only for one of the unofficial ports, likely luanti-dev.  After the file exists and I point portscout at it (in the config file I believe) then I will see what it does, will it check the url for the git tag and compare it to what is in the xml file?

I have been running around in circles, periodically smashing my head against a brick wall.  I decided to ask Grok to see if I could get some coherent documentation or at least an understanding of all of it because I have obviously missed something.

**Portscout can be configured to scan a custom/local ports tree (or a subset of one) containing your unofficial ports.** It does not directly scan arbitrary distfile directories for version checks in the way you described (i.e., reading local distfiles first and then probing upstream). Instead, it parses each port's `Makefile` (via `make`) to extract `DISTNAME`/`DISTVERSION`, `MASTER_SITES` (including GitHub/GitLab via `USE_GITHUB`/`USE_GITLAB`), `PORTSCOUT` hints, etc., then checks those upstream sites for newer versions.

### Recommended Setup for Local/Unofficial Ports

1. **Create a ports-like directory structure**  
   Organize your local ports like this (you can mix with a full tree or keep it separate):

   ```
   /path/to/my-local-ports/
   ├── category1/
   │   └── myport1/
   │       ├── Makefile
   │       ├── distinfo
   │       └── (other files)
   ├── category2/
   │   └── myport2/
   └── Makefile  (optional top-level with SUBDIR entries)
   ```

   Each `Makefile` should define the usual variables (`PORTNAME`, `DISTVERSION` or `DISTNAME`, `MASTER_SITES`, `USE_GITHUB`, `USE_GITLAB`, etc.). Portscout relies heavily on these.

2. **Configure portscout** (usually `/usr/local/etc/portscout.conf` or wherever you installed it)  
   Key settings:

   ```
   ports dir = /path/to/my-local-ports
   datasrc   = Portscout::DataSrc::Ports
   # datasrc opts = type:FreeBSD   (default; works for custom trees too)
   ```

   You can also use restrictions to scan only specific ports/categories:

   ```
   restrict category = category1,category2
   restrict port     = myport1,myport2
   restrict maintainer = your@email.com
   ```

   Other useful options:
   - `portconfig enable = true` (respects `PORTSCOUT=` hints in Makefiles).
   - `freebsdhacks enable = true` (or false if your ports aren't FreeBSD-style).
   - GitHub/GitLab support is built-in (including tokens for rate limits).

3. **Initialize / Populate the Database**  
   ```sh
   portscout build          # Full initial build (parses all Makefiles)
   # or
   portscout rebuild        # Incremental (faster for updates)
   ```

4. **Run Checks**  
   ```sh
   portscout check          # Checks upstream for new versions
   portscout showupdates    # Console summary of updates
   portscout generate       # HTML reports
   # portscout mail         # Email notifications (opt-in)
   ```

### Enhancing Individual Local Ports (Makefile Level)

Add a `PORTSCOUT` variable in your local `Makefile`s for better behavior:

```
PORTSCOUT= site:https://github.com/user/repo/releases  # Prefer specific page
# or
PORTSCOUT= limit:^\d+\.\d+  # Regex to filter versions
# PORTSCOUT= skipb:0        # Accept betas if desired
# PORTSCOUT= ignore:1       # Skip this port entirely
```

For GitHub/GitLab releases, standard `USE_GITHUB= yes` + `GH_ACCOUNT` / `GH_PROJECT` / `GH_TAGNAME` works well—portscout knows how to handle them.

### Distfile Handling Notes

- Portscout does **not** primarily read your local `distfiles/` directories to determine the "current" version for comparison. It uses the version from the `Makefile` (`DISTNAME`/`DISTVERSION`).
- It then probes the `MASTER_SITES` (and any `PORTSCOUT= site:...` hints) for newer files matching the expected naming pattern.
- If you want it to consider a local distfile's presence, ensure your `distinfo` and `Makefile` are consistent, and the port builds cleanly with `make fetch`.
- You can set `DISTDIR` in the environment or Makefile if your distfiles live elsewhere, but this is secondary for portscout's version-checking logic.

### Tips and Limitations

- **Performance**: For a small local tree, reduce `num_children` and `workqueue_size` in the config.
- **Incremental scans**: `portscout rebuild` + `check` is efficient if you only update a few ports.
- **Custom make**: If your tree isn't standard FreeBSD, you may need to adjust `Portscout::Make` behavior or test with a small subset.
- **Multiple trees**: You could maintain separate config files/databases for official vs. local ports and run them independently.
- Portscout's Ports backend walks category directories looking for subdirs with Makefiles, so a clean tree structure is key.

For full details, see the portscout source/docs (especially `portscout.pod`, `portscout.conf`, and `docs/portscout-portconfig.txt`). Install via `pkg install portscout` or from ports-mgmt/portscout, then run `perldoc portscout` or check the GitHub repo.

This setup should let you efficiently track upstream updates for your local/unofficial ports using their defined mastersites.
So I adjusted some lines in the portscout.conf but what I also realized is that portscout only looks in /usr/local/etc/ for the portscout.conf.
#------------------------------------------------------------------------------
# portscout config file
#
# Format:
#   - Comments begin with '#' and extend to the end of the line
#   - Variables are case insensitive, and may use spaces or underscores as word
#     separators (i.e. ports dir == ports_dir)
#   - Variables are separated from their values by a single '='
#   - Paths must have no trailing slash
#   - Use quotes if you need to retain leading/trailing whitespace
#   - You can reuse previously set variables, like: %(name) - these variables
#     must use underscores, not spaces.
#
# $Id: portscout.conf,v 1.16 2011/04/09 17:17:34 samott Exp $
#------------------------------------------------------------------------------

# Space saving variables (only used within this file)

prefix           = /usr/local
tmpdir           = /tmp
wwwdir           = %(prefix)/www/data

#-- Data Provider -------------------------------------------------------------

# The DataSrc module is what portscout uses to compile information
# into its internal database. In other words, it's the layer between
# the repository of software and portscout itself.

# Option One: FreeBSD ports (NetBSD and OpenBSD supported too)

datasrc          = Portscout::DataSrc::Ports
#datasrc opts     = type:NetBSD

# Option Two: XML file

#datasrc          = Portscout::DataSrc::XML
#datasrc opts     = file:%(prefix)/etc/portscout/software.xml

#-- User Privileges -----------------------------------------------------------

# If these are not empty, portscout will switch to this
# user/group as soon as is practical after starting (if it
# is running as root).

user             = portscout
group            = portscout

#-- Directories ---------------------------------------------------------------

#ports dir        = /usr/ports          		# Ports root directory
ports dir        = /home/tigersharke/GitRepos/PortsTree          		# Ports root directory

html data dir    = %(wwwdir)/portscout 		# Where to put generated HTML

templates dir    = %(prefix)/share/portscout/templates # Where HTML templates are kept

#-- Limit Processing ----------------------------------------------------------

# The following three variables are comma-separated lists of
# items that portscout should process. If left empty, portscout
# will not limit itself, and will process the whole ports tree.

# Items in the list may contain * and ? wildcard characters.

restrict maintainer =        				# Limit to these maintainers
restrict category   =        				# "     "  "     categories
restrict port       =        				# "     "  "     ports

# Note that if you set restrict_maintainer, the entire ports
# tree needs to be processed to ascertain which ports meet
# the restriction criterion. This can be avoided if portscout
# has access to an INDEX file. If you don't have an INDEX file,
# and aren't impatient, you can switch off the following.
# With no maintainer restriction in place, it has no effect.

#indexfile enable    = true   				# Use INDEX if needed
indexfile enable    = false   				# Use INDEX if needed

#-- Mailing Settings ----------------------------------------------------------

# These are only required if you plan to send out reminder mails
# It is enabled by default because you will need to add some
# addresses to the database for anything to happen anyway.

# The sender address will have the local hostname attached if it
# is a bare username.

#mail enable                = true
mail enable                = false

mail from                  = portscout 			# Sender address
mail subject               = FreeBSD ports you maintain which are out of date
mail subject unmaintained  = Unmaintained FreeBSD ports which are out of date
mail method                = sendmail  			# Can be 'sendmail' or 'smtp'
#mail host                  = localhost			# SMTP server, if method is 'smtp'

#-- Output Settings -----------------------------------------------------------

# Timezone options. This is just eye-candy for template generation,
# but setting it to anything other than 'GMT' will cause portscout
# to use the local time, rather than GMT.

local timezone   = GMT       				# Use Greenwich Time

# Hide results for ports with no new distfile?

hide unchanged   = false     				# Show ports with no updates.

#-- Other Settings ------------------------------------------------------------

mastersite limit = 4         				# Give up after this many sites

oldfound enable  = true      				# Stop if curr. distfile found

precious data    = false     				# Don't write anything to database
num children     = 15        				# How many worker children to spawn
workqueue size   = 20        				# How many ports per child at a time

# This variable specifies what version comparison algorithm
# to use. Supported values are "internal" and "pkg_version";
# the latter uses 'pkg_version -t', which is pretty straight-
# forward, but makes no attempt at best-guessing backwards
# looking version numbers. The former is a bit more
# sophisticated.

version compare  = internal  				# Version algorithm to use

# It is possible for individual ports to give us information
# such as the "limit version" regex. The following variable
# enables this.

portconfig enable = true     				# Respect port config hints

# If you're using portscout with a something other than the
# FreeBSD ports tree, switch this off to disable rejection of
# non-FreeBSD distfiles (such as 1.3.2-win32.zip).

#freebsdhacks enable = true
freebsdhacks enable = false

# HTTP/FTP options

http timeout     = 120       				# Timeout in seconds

ftp timeout      = 120       				# Timeout in seconds
ftp passive      = true      				# Try to use passive FTP
ftp retries      = 3         				# Give up after this many failures

# The following tell portscout how to deal with sites which have a robots.txt
# file. Possible values:
#   standard - Check for robots.txt but only respect portscout-specific bans.
#   strict   - Respect all bans, including '*' wildcards.
#
# You can disable any robots checks with robots_enable. But think twice
# before doing so: angry system admins are likely to block bots they don't
# like using other methods.
#
# Plenty of sites have blanket robot bans, intended to stop search engine
# crawlers from indexing pages, and thus 'strict' is likely to affect the
# number of results we can gather.

robots enable    = true      				# Check for robots.txt files
robots checking  = strict    				# Strict robots.txt checking

# Database connection details

db user          = portscout 				# Database username
db name          = portscout 				# Database name
db pass          = portscout    			# Password

# These two are only used for db_connstr, below

#db host          =           				# Host
#db port          =           				# 
db host			= localhost                   # or 127.0.0.1
db port			= 5432

db connstr       = DBI:Pg:dbname=%(db_name)
#db connstr       = DBI:Pg:dbname=%(db_name);host=%(db_host);port=%(db_port)
#db connstr       = DBI:SQLite:dbname=/var/db/portscout.db

# GitHub site handler settings
# GitHub rate limits requests to its API to a very low number for unauthenticated
# requests, and 5000 per hour for authenticated requests.
# GitHub personal access tokens can be requested on github accounts that
# have a verified email address here: https://github.com/settings/tokens
# A public personal access token without any special permissions will do(!)

#github token     =				# GitHub personal access token
github token     = ghQ_nG4JUadwpM2RcAQIMkneVX7C4zN96Z24IkQG


# ex: ts=4 sw=4

And then I asked Grok about setting up postgres properly, because I likely goofed that up also.

**Portscout uses PostgreSQL (recommended) or SQLite** to store port metadata, version information, check results, maintainer emails, etc. For a local/unofficial ports tree, the PostgreSQL setup is essentially the same as for the official tree — you just point it at your custom `ports dir`.

### 1. Install PostgreSQL on FreeBSD

```sh
pkg install postgresql17-server postgresql17-client
sysrc postgresql_enable=YES
service postgresql initdb
service postgresql start
```

(Adjust version number if you prefer a different one.)

### 2. Create the Portscout Database User and Database

As root or with `sudo`:

```sh
# Create the user (prompts for a password)
createuser -U postgres -P -d portscout   # -d allows it to create databases if needed

# Create the database
createdb -U postgres -O portscout portscout
```

### 3. Initialize the Schema

Portscout ships with the SQL script:

```sh
psql -U portscout -d portscout -f /usr/local/share/portscout/sql/pgsql_init.sql
```

(If installed via ports/pkg, the path is usually under `/usr/local/share/portscout/sql/`.)

### 4. Configure portscout for PostgreSQL

Edit (or copy from sample) `/usr/local/etc/portscout.conf` (or wherever your config lives):

```conf
# Database settings
db user     = portscout
db name     = portscout
db pass     = your_password_here          # Leave empty if using trust/peer auth

db host     = localhost                   # or 127.0.0.1
db port     = 5432

db connstr  = DBI:Pg:dbname=%(db_name);host=%(db_host);port=%(db_port)
# Or simpler if local Unix socket + trust/peer:
# db connstr = DBI:Pg:dbname=%(db_name)
```

**Important options for local ports usage:**

```conf
ports dir = /path/to/my-local-ports     # Your custom tree root

# Optional restrictions (very useful for unofficial ports)
restrict category   = mycategory1,mycategory2
restrict port       = myport1,myport2
restrict maintainer = your@email.com

datasrc = Portscout::DataSrc::Ports
# datasrc opts = type:FreeBSD   # usually not needed

portconfig enable   = true      # Respect PORTSCOUT= hints in Makefiles
freebsdhacks enable = false     # Set to false if your tree isn't FreeBSD-style
```

Other performance tweaks for smaller trees:
- `num children = 4` (or lower)
- `workqueue size = 10`

### 5. Authentication (pg_hba.conf)

For simplicity on a local machine, edit `/var/db/postgres/data/pg_hba.conf` (or equivalent) and add near the top (before other rules):

```
# TYPE  DATABASE    USER        ADDRESS          METHOD
local   portscout   portscout                    trust
host    portscout   portscout   127.0.0.1/32     scram-sha-256   # or md5
```

Then reload:

```sh
service postgresql reload
```

### 6. Test and Populate

```sh
portscout build          # First full parse of your local tree
portscout rebuild        # Later incremental updates
portscout check          # Check for new upstream versions
portscout showupdates    # See results
```

### Notes for Local/Unofficial Ports

- Your local tree must have a standard structure (`category/port/Makefile` etc.) so the `Ports` data source can walk it.
- `build`/`rebuild` will call `make` in each port directory, so your Makefiles must be valid.
- PostgreSQL gives much better performance than SQLite, especially if you ever scale beyond a handful of ports.
- You can run multiple independent Portscout setups (different config files + different DB names) for official vs. local ports.

For full details, see the installed documentation:

- `perldoc portscout`
- `/usr/local/share/doc/portscout/` or the GitHub repo (portscout.pod and portscout.conf).

This setup works cleanly with your local ports tree while leveraging PostgreSQL for reliable storage and querying of version data.

The results were much much more positive.

# service postgresql initdb
initdb postgresql
The files belonging to this database system will be owned by user "postgres".
This user must also own the server process.

The database cluster will be initialized with this locale configuration:
  locale provider:   libc
  LC_COLLATE:  C
  LC_CTYPE:    C.UTF-8
  LC_MESSAGES: C.UTF-8
  LC_MONETARY: C.UTF-8
  LC_NUMERIC:  C.UTF-8
  LC_TIME:     C.UTF-8
The default text search configuration will be set to "english".

Data page checksums are enabled.

creating directory /var/db/postgres/data18 ... ok
creating subdirectories ... ok
selecting dynamic shared memory implementation ... posix
selecting default "max_connections" ... 100
selecting default "shared_buffers" ... 128MB
selecting default time zone ... America/Chicago
creating configuration files ... ok
running bootstrap script ... ok
performing post-bootstrap initialization ... ok
syncing data to disk ... ok

initdb: warning: enabling "trust" authentication for local connections
initdb: hint: You can change this by editing pg_hba.conf or using the option -A, or --auth-local and --auth-host, the next time you run initdb.

Success. You can now start the database server using:

    /usr/local/bin/pg_ctl -D /var/db/postgres/data18 -l logfile start

# service postgresql start
start postgresql
# createuser -U postgres -P -d portscout
Enter password for new role: 
Enter it again: 
# createdb -U postgres -O portscout portscout
# psql -U portscout -d portscout -f /usr/local/share/portscout/sql/pgsql_init.sql
CREATE TABLE
CREATE TABLE
CREATE TABLE
CREATE TABLE
CREATE TABLE
CREATE TABLE
CREATE TABLE
CREATE TABLE
INSERT 0 1
INSERT 0 1
CREATE INDEX
CREATE INDEX
CREATE INDEX
CREATE INDEX
CREATE INDEX
CREATE INDEX
CREATE INDEX
# 

My unofficial ports are not arranged in a tree form, they're only a bunch of directories in a main directory GitRepos.  For portscout to work properly, it uses make for its tasks, so I need to setup a PortsTree directory with all the directories named similarly and with all the Makefiles in each directory as well.  This is a simple thing to do, I copy and revise what exists in /usr/ports and each category directory.

I need to edit a few more things.

root@ichigo:~ # vi /var/db/postgres/data18/pg_hba.conf

# TYPE  DATABASE        USER            ADDRESS                 METHOD

local   portscout   portscout                    trust
host    portscout   portscout   127.0.0.1/32     scram-sha-256   # or md5

# "local" is for Unix domain socket connections only
local   all             all                                     trust
# IPv4 local connections:
host    all             all             127.0.0.1/32            trust
# IPv6 local connections:
host    all             all             ::1/128                 trust
# Allow replication connections from localhost, by a user with the
# replication privilege.
/var/db/postgres/data18/pg_hba.conf: 129 lines, 5851 characters
root@ichigo:~ #
After my edits I had to redo a few things.
root@ichigo:~ # service postgresql start
start postgresql
pg_ctl: another server might be running; trying to start server anyway
pg_ctl: could not start server
Examine the log output.
root@ichigo:~ # service postgresql initdb
initdb postgresql
The files belonging to this database system will be owned by user "postgres".
This user must also own the server process.

The database cluster will be initialized with this locale configuration:
  locale provider:   libc
  LC_COLLATE:  C
  LC_CTYPE:    C.UTF-8
  LC_MESSAGES: C.UTF-8
  LC_MONETARY: C.UTF-8
  LC_NUMERIC:  C.UTF-8
  LC_TIME:     C.UTF-8
The default text search configuration will be set to "english".

Data page checksums are enabled.

initdb: error: directory "/var/db/postgres/data18" exists but is not empty
initdb: hint: If you want to create a new database system, either remove or empty the directory "/var/db/postgres/data18" or run initdb with an argument other than "/var/db/postgres/data18".
root@ichigo:~ #

That error I tried to solve but saw more error messages instead.  I was working in multiple xterm windows and may have erased /var/db/postgres/data18 at some point to start over and did all of this a number of times.  When those directories are found during the portscout build process logged below, I had constructed a sort of ports tree with the assorted Makefiles in each directory.

tigersharke@ichigo [~/GitRepos] % psql -U portscout -d portscout -f /usr/local/share/portscout/sql/pgsql_init.sql                           
psql: error: connection to server on socket "/tmp/.s.PGSQL.5432" failed: FATAL:  role "portscout" does not exist                            
tigersharke@ichigo [~/GitRepos] % createuser -U postgres -P -d portscout                                                                    
Enter password for new role:                                                                                                                
Enter it again:                                                                                                                             
tigersharke@ichigo [~/GitRepos] % createdb -U postgres -O portscout portscout
tigersharke@ichigo [~/GitRepos] % portscout build
portscout v0.8.1, by Shaun Amott

DBD::Pg::st execute failed: ERROR:  relation "portscout" does not exist
LINE 2:      FROM portscout
                  ^ at /usr/local/lib/perl5/site_perl/Portscout/Util.pm line 856.
DBD::Pg::st fetchrow_array failed: no statement executing at /usr/local/lib/perl5/site_perl/Portscout/Util.pm line 858.
Database schema mismatch; did you forget to upgrade?
tigersharke@ichigo [~/GitRepos] % psql -U portscout -d portscout -f /usr/local/share/portscout/sql/pgsql_init.sql
CREATE TABLE
CREATE TABLE
CREATE TABLE
CREATE TABLE
CREATE TABLE
CREATE TABLE
CREATE TABLE
CREATE TABLE
INSERT 0 1
INSERT 0 1
CREATE INDEX
CREATE INDEX
CREATE INDEX
CREATE INDEX
CREATE INDEX
CREATE INDEX
CREATE INDEX
tigersharke@ichigo [~/GitRepos] % portscout build
portscout v0.8.1, by Shaun Amott

-- [ Building ports database ] -----------------------------------------

Couldn't stat MOVED file at /usr/local/lib/perl5/site_perl/Portscout/DataSrc/Ports.pm line 220.
tigersharke@ichigo [~/GitRepos] % portscout build
portscout v0.8.1, by Shaun Amott

-- [ Building ports database ] -----------------------------------------

Scanning deskutils ...
Matched: deskutils/flameshot-dev
Scanning games ...
Matched: games/endless-sky-dev
Matched: games/minetestmapper-dev
Matched: games/luanti-dev
Matched: games/endless-sky-high-dpi-dev
Matched: games/lutris-freebsd
Scanning graphics ...
Matched: graphics/feh-dev
Scanning www ...
Matched: www/librewolf-dev
Scanning x11-fonts ...
Matched: x11-fonts/google-fonts-dev
Scanning x11-wm ...
Matched: x11-wm/fvwm3-dev

Building...

[deskutils      ] [flameshot-dev                 ] (got 1 out of 10)
make failed for /home/tigersharke/GitRepos/PortsTree/deskutils/flameshot-dev at /usr/local/lib/perl5/site_perl/Portscout/Make.pm line 161.
[games          ] [endless-sky-dev               ] (got 2 out of 10)
make failed for /home/tigersharke/GitRepos/PortsTree/games/endless-sky-dev at /usr/local/lib/perl5/site_perl/Portscout/Make.pm line 161.
[games          ] [minetestmapper-dev            ] (got 3 out of 10)
make failed for /home/tigersharke/GitRepos/PortsTree/games/minetestmapper-dev at /usr/local/lib/perl5/site_perl/Portscout/Make.pm line 161.
[games          ] [luanti-dev                    ] (got 4 out of 10)
make failed for /home/tigersharke/GitRepos/PortsTree/games/luanti-dev at /usr/local/lib/perl5/site_perl/Portscout/Make.pm line 161.
[games          ] [endless-sky-high-dpi-dev      ] (got 5 out of 10)
make failed for /home/tigersharke/GitRepos/PortsTree/games/endless-sky-high-dpi-dev at /usr/local/lib/perl5/site_perl/Portscout/Make.pm line 161.
[games          ] [lutris-freebsd                ] (got 6 out of 10)
make failed for /home/tigersharke/GitRepos/PortsTree/games/lutris-freebsd at /usr/local/lib/perl5/site_perl/Portscout/Make.pm line 161.
[graphics       ] [feh-dev                       ] (got 7 out of 10)
make failed for /home/tigersharke/GitRepos/PortsTree/graphics/feh-dev at /usr/local/lib/perl5/site_perl/Portscout/Make.pm line 161.
[www            ] [librewolf-dev                 ] (got 8 out of 10)
Insufficient data for port www/librewolf-dev: missing version
[x11-fonts      ] [google-fonts-dev              ] (got 9 out of 10)
make failed for /home/tigersharke/GitRepos/PortsTree/x11-fonts/google-fonts-dev at /usr/local/lib/perl5/site_perl/Portscout/Make.pm line 161.
[x11-wm         ] [fvwm3-dev                     ] (got 10 out of 10)
make failed for /home/tigersharke/GitRepos/PortsTree/x11-wm/fvwm3-dev at /usr/local/lib/perl5/site_perl/Portscout/Make.pm line 161.

Cross-referencing master/slave ports...
Processing MOVED entries...
Finalising pending MOVED terminations...
tigersharke@ichigo [~/GitRepos] %

Since this is not the FreeBSD ports tree, portscout doesn't know that I likely would not have a MOVED file, so I simply touch MOVED in the PortsTree directory to satisfy that.  Maybe there is a method to properly generate a MOVED file, I do not know.  The output above seems to indicate that I have to improve my Makefiles, so I will see what portlint tells me, its likely something easy to cure.  The main issue was DISABLE_LICENSES="YES" in /etc/make.conf and the rest were improvements to Makefiles and other files that portlint helped me implement.

The result is now something that looks like it will help me in the future, but I can test now by revising luanti-dev to an older commit, reverting the distinfo file to match.

tigersharke@ichigo [~/GitRepos/PortsTree] % portscout rebuild
portscout v0.8.1, by Shaun Amott

Incremental build: Looking for updated ports...

Scanning deskutils ...
Scanning deskutils/flameshot-dev ... Matched: deskutils/flameshot-dev
Scanning games ...
Scanning games/endless-sky-dev ... Matched: games/endless-sky-dev
Scanning games/minetestmapper-dev ... Matched: games/minetestmapper-dev
Scanning games/luanti-dev ... Scanning games/endless-sky-high-dpi-dev ... Scanning games/lutris-freebsd ... Matched: games/lutris-freebsd
Scanning graphics ...
Scanning graphics/feh-dev ... Matched: graphics/feh-dev
Scanning www ...
Scanning www/librewolf-dev ... Scanning x11-fonts ...
Scanning x11-fonts/google-fonts-dev ... Scanning x11-wm ...
Scanning x11-wm/fvwm3-dev ... 
Building...

[deskutils      ] [flameshot-dev                 ] (got 1 out of 5)
[games          ] [endless-sky-dev               ] (got 2 out of 5)
[games          ] [minetestmapper-dev            ] (got 3 out of 5)
[games          ] [lutris-freebsd                ] (got 4 out of 5)
[graphics       ] [feh-dev                       ] (got 5 out of 5)

Cross-referencing master/slave ports...
tigersharke@ichigo [~/GitRepos/PortsTree] %

Since all of this looks like it is setup and ready, I try portscout check to see what it thinks has updated.

root@ichigo:/home/tigersharke/GitRepos/PortsTree # portscout check
portscout v0.8.1, by Shaun Amott

Couldn't determine GID from name portscout
root@ichigo:/home/tigersharke/GitRepos/PortsTree # exit

That is not a very helpful message as it seems to work fine if I am not root so perhaps warn of user being root instead?  I figured it out anyway.

tigersharke@ichigo [~/GitRepos/PortsTree/games/luanti-dev] % portscout
Usage: 
       portscout build
       portscout rebuild
       portscout check
       portscout uncheck

       portscout mail
       portscout generate
       portscout showupdates

       portscout add-mail user@host ...
       portscout remove-mail user@host ...
       portscout show-mail
tigersharke@ichigo [~/GitRepos/PortsTree/games/luanti-dev] % portscout check
portscout v0.8.1, by Shaun Amott

-- [ Checking ports distfiles ] ----------------------------------------

Spawned PID #14150 (0 ports unallocated)
[lutris-freebsd                ] VersionCheck()
[lutris-freebsd                ] Checking site: https://codeload.github.com/lutris/lutris/tar.gz/0c93c2fad546e684346c8fe3179ab797d5e033f3?dummy=/                                                                                                       
Does site handler exist ... Yes 
[lutris-freebsd                ] Done
[feh-dev                       ] VersionCheck()
[feh-dev                       ] Checking site: https://codeload.github.com/derf/feh/tar.gz/c5e05ad638e819f0f9852df9b33400ca63662d19?dummy=/                                                                                                            
Does site handler exist ... Yes 
[feh-dev                       ] [https://code...3662d19?dummy=/] UPDATE g20260507 -> 3.12.2
[feh-dev                       ] Done
[endless-sky-dev               ] VersionCheck()
[endless-sky-dev               ] Checking site: https://codeload.github.com/endless-sky/endless-sky/tar.gz/2d14be69937685d9b52df1ea3270cacab1f1cfcc?dummy=/                                                                                             
Does site handler exist ... Yes 
[endless-sky-dev               ] Done
[minetestmapper-dev            ] VersionCheck()
[minetestmapper-dev            ] Checking site: https://codeload.github.com/luanti-org/minetestmapper/tar.gz/b5d41a35c388db377edda60c01969fe0fa113ca4?dummy=/                                                                                           
Does site handler exist ... Yes 
[minetestmapper-dev            ] Done
[flameshot-dev                 ] VersionCheck()
[flameshot-dev                 ] Checking site: https://codeload.github.com/flameshot-org/flameshot/tar.gz/a6694bf45ace6a8552351d5f9ca6f006786ce6f9?dummy=/                                                                                             
Does site handler exist ... Yes 
[flameshot-dev                 ] Done
PID #30712 finished work block (took 6 seconds)
Master process finished. All work has been distributed.
tigersharke@ichigo [~/GitRepos/PortsTree/games/luanti-dev] %

I believe feh-dev is actually current to the most recent commit, so I may need to adjust something but setting luanti-dev to use an older commit might help me with additional feedback.  After the adjustment to luanti-dev I need to do portscout rebuild for it to see that something changed locally and then the portscout check will give me a result.

tigersharke@ichigo [~/GitRepos/PortsTree/games/luanti-dev] % portscout rebuild
portscout v0.8.1, by Shaun Amott

Incremental build: Looking for updated ports...

Scanning deskutils ...
Scanning deskutils/flameshot-dev ... Scanning games ...
Scanning games/endless-sky-dev ... Scanning games/minetestmapper-dev ... Scanning games/luanti-dev ... Matched: games/luanti-dev
Scanning games/endless-sky-high-dpi-dev ... Scanning games/lutris-freebsd ... Scanning graphics ...
Scanning graphics/feh-dev ... Scanning www ...
Scanning www/librewolf-dev ... Scanning x11-fonts ...
Scanning x11-fonts/google-fonts-dev ... Scanning x11-wm ...
Scanning x11-wm/fvwm3-dev ... 
Building...

[games          ] [luanti-dev                    ] (got 1 out of 1)

Cross-referencing master/slave ports...
tigersharke@ichigo [~/GitRepos/PortsTree/games/luanti-dev] % portscout check
portscout v0.8.1, by Shaun Amott

-- [ Checking ports distfiles ] ----------------------------------------

Spawned PID #57294 (0 ports unallocated)
[luanti-dev                    ] VersionCheck()
[luanti-dev                    ] Checking site: https://codeload.github.com/luanti-org/luanti/tar.gz/bb7fcd32c7da2f5610458e679f567dbc09a1c909?dummy=/                                                                                                   
Does site handler exist ... Yes 
[luanti-dev                    ] [https://code...9a1c909?dummy=/] UPDATE g20260502 -> 5.16.0
[luanti-dev                    ] Done
[minetestmapper-dev            ] VersionCheck()
[minetestmapper-dev            ] Checking site: https://codeload.github.com/luanti-org/minetestmapper/tar.gz/b5d41a35c388db377edda60c01969fe0fa113ca4?dummy=/                                                                                           
Does site handler exist ... Yes 
[minetestmapper-dev            ] Done
[feh-dev                       ] VersionCheck()
[feh-dev                       ] Checking site: https://codeload.github.com/derf/feh/tar.gz/c5e05ad638e819f0f9852df9b33400ca63662d19?dummy=/                                                                                                            
Does site handler exist ... Yes 
[feh-dev                       ] Done
[lutris-freebsd                ] VersionCheck()
[lutris-freebsd                ] Checking site: https://codeload.github.com/lutris/lutris/tar.gz/0c93c2fad546e684346c8fe3179ab797d5e033f3?dummy=/                                                                                                       
Does site handler exist ... Yes 
[lutris-freebsd                ] Done
[flameshot-dev                 ] VersionCheck()
[flameshot-dev                 ] Checking site: https://codeload.github.com/flameshot-org/flameshot/tar.gz/a6694bf45ace6a8552351d5f9ca6f006786ce6f9?dummy=/                                                                                             
Does site handler exist ... Yes 
[flameshot-dev                 ] Done
[endless-sky-dev               ] VersionCheck()
[endless-sky-dev               ] Checking site: https://codeload.github.com/endless-sky/endless-sky/tar.gz/2d14be69937685d9b52df1ea3270cacab1f1cfcc?dummy=/                                                                                             
Does site handler exist ... Yes 
[endless-sky-dev               ] Done
PID #71632 finished work block (took 6 seconds)
Master process finished. All work has been distributed.
tigersharke@ichigo [~/GitRepos/PortsTree/games/luanti-dev] % portscout
Usage: 
       portscout build
       portscout rebuild
       portscout check
       portscout uncheck

       portscout mail
       portscout generate
       portscout showupdates

       portscout add-mail user@host ...
       portscout remove-mail user@host ...
       portscout show-mail
tigersharke@ichigo [~/GitRepos/PortsTree/games/luanti-dev] % portscout showupdates
portscout v0.8.1, by Shaun Amott

nope@nothere's ports:
  games/luanti-dev g20260502 -> 5.16.0
  graphics/feh-dev g20260507 -> 3.12.2
tigersharke@ichigo [~/GitRepos/PortsTree/games/luanti-dev] %

I know that portscout is technically correct, both luanti-dev and feh-dev have updates, or versions that do not match what I use due to following upstream commits.  There is surely a way to handle this, and maybe the answer is in the ports tree with another bleeding edge variety that follows upstream commits.

I didn't need to edit an xml file, the configuration I ultimately used did not involve one.  Some of the commands Grok gave me seem to have been more successful than those from documentation. It is important to do some tasks as root and some, especially directly interacting with portscout as a user not root.  There also seem to be changes outside of portscout that I had to adjust for that were not in the documentation I was trying to follow.

Looking deeper into portscout confirms for me that there is no method to compare commit hashes as a basis to determine an upstream update.  Grok suggested to use tags but those also tend to be normal version numbers and not tied to commits either.  I asked how I could extend portscout to handle commit hashes, and maybe this is possible but I suspect I would be relying heavily upon how Grok suggests to do it since I know approximately zero about perl.

**An extension to portscout’s GitHub/GitLab site handlers would be a new Perl module** that follows the existing pattern used by `Portscout::SiteHandler::GitHub`, `::PyPI`, and `::SourceForge`.

### Architecture Overview

Site handlers are auto-registered Perl classes in `Portscout/SiteHandler/`. Key points from the core:

- `Portscout::SiteHandler.pm` maintains `@sitehandlers` and has `FindHandler()` which calls `CanHandle()` on each.
- Each handler must:
  - `push @Portscout::SiteHandler::sitehandlers, __PACKAGE__;`
  - Implement `new()`, `CanHandle($url)`, and `GetFiles($url, \%port, \@files)`.
- `GetFiles()` populates the `@$files` array with candidate distfile URLs (or version strings) that the main engine later compares against the port’s current `DISTVERSION`.

The **GitHub handler** currently:
- Detects codeload / archive URLs.
- Calls the GitHub API (`/repos/.../releases` then falls back to `/tags`).
- Collects `tarball_url`s from non-draft/non-prerelease releases (or tags).

### What a Commit/Branch-Aware Extension Could Look Like

For your use case (tracking latest commit on a branch instead of tagged versions), you could create something like `Portscout::SiteHandler::GitHubCommits` or enhance the existing one.

#### Example: `Portscout/SiteHandler/GitHubCommits.pm`

```perl
#------------------------------------------------------------------------------
package Portscout::SiteHandler::GitHubCommits;

use JSON qw(decode_json);
use LWP::UserAgent;
use URI::Escape;

use Portscout::Const;
use Portscout::Config;

use strict;

push @Portscout::SiteHandler::sitehandlers, __PACKAGE__;

our %settings;

sub new {
    my $self = {};
    bless($self, shift);
    $self->{name} = 'GitHubCommits';
    return $self;
}

# CanHandle: Trigger on ports that want commit tracking
# You could key off PORTSCOUT= commit:branchname or a specific URL pattern
sub CanHandle {
    my ($self, $url) = @_;
    # Example patterns or check $port->{portscout} hints
    return ($url =~ /github\.com/ && $url =~ /\/(archive|tar\.gz)/);
    # Or more specific: look for a custom PORTSCOUT flag parsed earlier
}

sub GetFiles {
    my ($self, $url, $port, $files) = @_;

    my $owner_repo = _extract_owner_repo($url) or return 0;
    my $branch = $port->{portscout_branch} || 'main';  # Could come from PORTSCOUT= or Makefile

    # Get latest commit on branch
    my $data = _call_github_api("/repos/$owner_repo/commits/$branch") or return 0;

    if (my $sha = $data->{sha}) {
        # Construct a tarball URL using the commit hash
        my $tarball_url = "https://github.com/$owner_repo/archive/$sha.tar.gz";
        push @$files, $tarball_url;

        # Optionally also store the short SHA or date for version comparison
        _debug("Found latest commit $sha on $branch");
    }

    return 1;
}

# Reuse or copy the _call_github_api from GitHub.pm (support token, etc.)
sub _call_github_api { ... }   # identical to the one in GitHub.pm

sub _extract_owner_repo { ... }

sub _debug { ... }

1;
```

### Integration & Configuration Ideas

1. **Makefile-level hints** (best approach):
   ```make
   PORTSCOUT= site:github-commits branch:main   # or "commit:main"
   # Or
   PORTSCOUT= limit:^g[0-9]{8} site:https://api.github.com/repos/user/repo/commits/main
   ```

2. Extend `Portscout::Make` or the port parsing logic to extract extra fields like `portscout_branch` from the `PORTSCOUT` variable.

3. **Version comparison logic**:
   - For commit tracking you often want to compare SHA or commit date rather than semver.
   - You might need to extend the core comparison (in `Portscout.pm` or wherever versions are ranked) to understand “newer commit” semantics when a handler flags it.

4. **GitLab equivalent** would be almost identical, just using `api.gitlab.com` or self-hosted endpoints (`/projects/.../repository/commits`).

### Practical Steps to Implement

- Copy `GitHub.pm` as a starting point.
- Place the new `.pm` in `/usr/local/lib/perl5/site_perl/Portscout/SiteHandler/` (or wherever portscout installs modules).
- Register it by ensuring the `push` statement runs (it happens at `use`/`require` time).
- Test with `portscout -d rebuild` and `portscout -d check` on a sample port.
- Handle rate limits (GitHub token in `portscout.conf` already exists).

This kind of extension is relatively straightforward because the design is already pluggable. Many people have extended portscout (or its predecessor portroach) this way in the past.

If you want a full “latest commit on default branch” mode, the handler above (plus small core tweaks for version extraction) would get you most of the way there. Would you like a more complete skeleton or help with the `PORTSCOUT` parsing part?

Many may suggest that using AI such as Grok to figure something out is not the best way to get the solution.  I say that if documentation is sparse or spread out or nonexistent, then maybe a tool that has scraped places old and new that also may not be accessible or known could help.  If only to point toward solutions or sources of solutions, using AI will be helpful and speed a solution.

Surely portscout documentation could use some improvement.  There might be some things that are left out of the manpage and documentation, or that have changed since it was originally written.  I believe that extending portscout to check for upstream commits (hashes) instead of version strings or tags (also versions) would be a very useful and helpful addition to the tool.

Right now I have portscout setup to handle all my unofficial ports but it will not tell me anything has updated until a new version rather than a new commit has been made.  All of my unofficial ports get updated based upon upstream commits.  Why should I have to pair portscout with another tool if it could be a one-stop solution to knowing whether any of my growing list of unofficial ports has an upstream commit.  Six is already becoming a challenge, so I can imagine how helpful it is for porters who have more than double or triple that number of ports that are updated based upon upstream release versions.

I tried to use portscout to help me but I mostly learned how to install and configure it properly despite my struggle with the documentation, it will not yet do what I need.

Monday, May 4, 2026

Endless Sky adopted and adapted

I have played Endless Sky from time to time and made considerable progress in the past.  My recent gameplay reached a progression that was leading me to imminent ship upgrade.  I had a plan to go back to Luna to trade in my ship but every time I attempted to leave the planet for a jump, the game crashed.  I thought maybe it was graphics settings, graphics drivers, or some other settings.  Nothing I did let me continue my progress.

I reinstalled the game, edited my save files, reinstalled all of the dependencies of the game and rebuilt it, reinstalled graphics ports like drm-kmod, mesa-dri, and mesa-libs, and then I decided I had to see if a much more recent version of the game would function.

I looked at the upstream github repo for the game and discovered that it had been updated within the last week.  After I found this out, my path was clear: I am going to create a -dev version of the game to track upstream git commits.  This is now a simple task and made even easier because I only need to copy and revise the Makefile from games/endless-sky.

Revising the Makefile involves a lot of the same things I've done before.  I adapted the changes I made for luanti-dev for this new endless-sky-dev.

The diff of the official port Makefile and my revised unofficial one:

PORTNAME=	endless-sky								PORTNAME=	endless-sky
PORTVERSION=	0.11.0								      |	DISTVERSION=	g20260502
DISTVERSIONPREFIX=	v							      |	CATEGORIES=		games
CATEGORIES=	games								      |	MASTER_SITES=   GH
										      >	PKGNAMESUFFIX=  -dev
											
MAINTAINER=	amdmi3@FreeBSD.org							MAINTAINER=	nope@nothere
COMMENT=	Space exploration and combat game similar to Escape Velocity		COMMENT=	Space exploration and combat game similar to Escape Velocity
WWW=		https://endless-sky.github.io/						WWW=		https://endless-sky.github.io/
											
LICENSE=	GPLv3+ GPLv2 CC-BY-2.0 CC-BY-3.0 CC-BY-4.0 CC-BY-SA-3.0 CC-BY-SA-4.0 	LICENSE=	GPLv3+ GPLv2 CC-BY-2.0 CC-BY-3.0 CC-BY-4.0 CC-BY-SA-3.0 CC-BY-SA-4.0 
LICENSE_COMB=	multi									LICENSE_COMB=	multi
LICENSE_FILE=	${WRKSRC}/copyright							LICENSE_FILE=	${WRKSRC}/copyright
LICENSE_FILE_GPLv3+ =	${WRKSRC}/license.txt						LICENSE_FILE_GPLv3+ =	${WRKSRC}/license.txt
											
LIB_DEPENDS=	libpng.so:graphics/png \						LIB_DEPENDS=	libpng.so:graphics/png \
		libmad.so:audio/libmad \					      |					libmad.so:audio/libmad \
		libuuid.so:misc/libuuid \					      |					libuuid.so:misc/libuuid \
		libminizip.so:archivers/minizip \				      |					libminizip.so:archivers/minizip \
		libavif.so:graphics/libavif \					      |					libavif.so:graphics/libavif \
		libFLAC++.so:audio/flac						      |					libFLAC++.so:audio/flac
											
USE_GITHUB=	yes								      |	USE_GITHUB=		yes
										      >	GH_ACCOUNT=		endless-sky
										      >	GH_PROJECT=		endless-sky
										      >	GH_TAGNAME=		dfc141a77ae96aaa3b3781fc8a81d6bdd01ab33e
											
USES=		cmake compiler:c++11-lang gl jpeg openal pkgconfig sdl		      |	USES=			cmake compiler:c++11-lang gl jpeg openal pkgconfig sdl
USE_SDL=	sdl2								      |	USE_SDL=		sdl2
USE_GL=		gl glew								      |	USE_GL=			gl glew
CMAKE_OFF=	ES_USE_VCPKG \							      |	CMAKE_OFF=		ES_USE_VCPKG \
		CMAKE_CXX_SCAN_FOR_MODULES					      |					CMAKE_CXX_SCAN_FOR_MODULES
CMAKE_ARGS=	-DCMAKE_INSTALL_DOCDIR="${DOCSDIR}"				      |	CMAKE_ARGS=		-DCMAKE_INSTALL_DOCDIR="${DOCSDIR}"
											
LDFLAGS_i386=	-Wl,-znotext							      |	#LDFLAGS_i386=	-Wl,-znotext
										      >	
										      >	CONFLICTS=		endless-sky
											
PORTDATA=	*									PORTDATA=	*
PORTDOCS=	*									PORTDOCS=	*
											
OPTIONS_DEFINE=	DOCS TEST								OPTIONS_DEFINE=	DOCS TEST
											
TEST_CMAKE_BOOL=	BUILD_TESTING							TEST_CMAKE_BOOL=	BUILD_TESTING
TEST_BUILD_DEPENDS=	catch2>=0:devel/catch2						TEST_BUILD_DEPENDS=	catch2>=0:devel/catch2
											
post-build:										post-build:
	@${REINPLACE_CMD} -e 's|/usr/local/|${PREFIX}/|; s|share/games|share|' \		@${REINPLACE_CMD} -e 's|/usr/local/|${PREFIX}/|; s|share/games|share|' \
		${WRKSRC}/source/Files.cpp								${WRKSRC}/source/Files.cpp
											
do-test-TEST-on:									do-test-TEST-on:
	@cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${LOCALBASE}/bin/ctest -V			@cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${LOCALBASE}/bin/ctest -V
											
.include 									.include 

When I finally revised everything, built it, and made the new pkg-plist file, my comparison to the original surprised me because it was quite empty as opposed to my own.  Surely everything gets built and installed or deinstalled but it is so odd that its done in a way that avoids a large pkg-plist file.  I think I prefer a pkg-plist file that shows everything so I can be more sure about it all.

The pkg-plist file I generated with make makeplist > pkg-plist is below:

bin/endless-sky
share/applications/io.github.endless_sky.endless_sky.desktop
%%PORTDOCS%%%%DOCSDIR%%/endless-sky/changelog
%%DATADIR%%/credits.txt
%%DATADIR%%/data/_deprecated/deprecated events.txt
%%DATADIR%%/data/_deprecated/deprecated outfits.txt
%%DATADIR%%/data/_deprecated/deprecated ships.txt
%%DATADIR%%/data/_ui/flight checks.txt
%%DATADIR%%/data/_ui/help.txt
%%DATADIR%%/data/_ui/interfaces.txt
%%DATADIR%%/data/_ui/landing messages.txt
%%DATADIR%%/data/_ui/messages.txt
%%DATADIR%%/data/_ui/ratings.txt
%%DATADIR%%/data/_ui/swizzles.txt
%%DATADIR%%/data/_ui/tooltips.txt
%%DATADIR%%/data/avgi/avgi 0 first contact.txt
%%DATADIR%%/data/avgi/avgi culture conversations.txt
%%DATADIR%%/data/avgi/avgi events.txt
%%DATADIR%%/data/avgi/avgi fleets.txt
%%DATADIR%%/data/avgi/avgi hails.txt
%%DATADIR%%/data/avgi/avgi jobs.txt
%%DATADIR%%/data/avgi/avgi news.txt
%%DATADIR%%/data/avgi/avgi outfits.txt
%%DATADIR%%/data/avgi/avgi sales.txt
%%DATADIR%%/data/avgi/avgi ships.txt
%%DATADIR%%/data/avgi/avgi side missions.txt
%%DATADIR%%/data/avgi/avgi weapons.txt
%%DATADIR%%/data/avgi/avgi.txt
%%DATADIR%%/data/avgi/windjammers.txt
%%DATADIR%%/data/bunrodea/bunrodea missions.txt
%%DATADIR%%/data/bunrodea/bunrodea outfits.txt
%%DATADIR%%/data/bunrodea/bunrodea ships.txt
%%DATADIR%%/data/bunrodea/bunrodea weapons.txt
%%DATADIR%%/data/bunrodea/bunrodea.txt
%%DATADIR%%/data/categories.txt
%%DATADIR%%/data/coalition/coalition culture conversations.txt
%%DATADIR%%/data/coalition/coalition jobs.txt
%%DATADIR%%/data/coalition/coalition missions.txt
%%DATADIR%%/data/coalition/coalition news.txt
%%DATADIR%%/data/coalition/coalition outfits.txt
%%DATADIR%%/data/coalition/coalition ships.txt
%%DATADIR%%/data/coalition/coalition weapons.txt
%%DATADIR%%/data/coalition/coalition.txt
%%DATADIR%%/data/coalition/heliarch intro.txt
%%DATADIR%%/data/coalition/lunarium intro.txt
%%DATADIR%%/data/commodities.txt
%%DATADIR%%/data/dialog phrases.txt
%%DATADIR%%/data/drak/drak culture conversations.txt
%%DATADIR%%/data/drak/drak missions.txt
%%DATADIR%%/data/drak/drak outfits.txt
%%DATADIR%%/data/drak/drak ships.txt
%%DATADIR%%/data/drak/indigenous.txt
%%DATADIR%%/data/effects.txt
%%DATADIR%%/data/formations.txt
%%DATADIR%%/data/gamerules.txt
%%DATADIR%%/data/gegno/gegno I corroboration.txt
%%DATADIR%%/data/gegno/gegno events.txt
%%DATADIR%%/data/gegno/gegno fleets.txt
%%DATADIR%%/data/gegno/gegno intro missions.txt
%%DATADIR%%/data/gegno/gegno jobs.txt
%%DATADIR%%/data/gegno/gegno outfits.txt
%%DATADIR%%/data/gegno/gegno sales.txt
%%DATADIR%%/data/gegno/gegno ships.txt
%%DATADIR%%/data/gegno/gegno.txt
%%DATADIR%%/data/globals.txt
%%DATADIR%%/data/governments.txt
%%DATADIR%%/data/hai/hai culture conversations.txt
%%DATADIR%%/data/hai/hai fleets.txt
%%DATADIR%%/data/hai/hai jobs.txt
%%DATADIR%%/data/hai/hai missions.txt
%%DATADIR%%/data/hai/hai news.txt
%%DATADIR%%/data/hai/hai outfits.txt
%%DATADIR%%/data/hai/hai ships.txt
%%DATADIR%%/data/hai/hai.txt
%%DATADIR%%/data/hai/unfettered 0 prologue.txt
%%DATADIR%%/data/hai/unfettered jobs.txt
%%DATADIR%%/data/hai/unfettered side missions.txt
%%DATADIR%%/data/harvesting.txt
%%DATADIR%%/data/hazards.txt
%%DATADIR%%/data/human/boarding missions.txt
%%DATADIR%%/data/human/campaign events.txt
%%DATADIR%%/data/human/culture conversations.txt
%%DATADIR%%/data/human/deep jobs.txt
%%DATADIR%%/data/human/deep missions.txt
%%DATADIR%%/data/human/derelicts.txt
%%DATADIR%%/data/human/dirt belt jobs.txt
%%DATADIR%%/data/human/engines.txt
%%DATADIR%%/data/human/far north jobs.txt
%%DATADIR%%/data/human/fleets.txt
%%DATADIR%%/data/human/free worlds 0 prologue.txt
%%DATADIR%%/data/human/free worlds 1 start.txt
%%DATADIR%%/data/human/free worlds 2 middle.txt
%%DATADIR%%/data/human/free worlds 3 checkmate.txt
%%DATADIR%%/data/human/free worlds 3 reconciliation.txt
%%DATADIR%%/data/human/free worlds 4 epilogue.txt
%%DATADIR%%/data/human/free worlds side plots.txt
%%DATADIR%%/data/human/free worlds war jobs.txt
%%DATADIR%%/data/human/frontier jobs.txt
%%DATADIR%%/data/human/hails.txt
%%DATADIR%%/data/human/human missions.txt
%%DATADIR%%/data/human/intro missions.txt
%%DATADIR%%/data/human/jobs.txt
%%DATADIR%%/data/human/kestrel.txt
%%DATADIR%%/data/human/marauders.txt
%%DATADIR%%/data/human/message buoys.txt
%%DATADIR%%/data/human/names.txt
%%DATADIR%%/data/human/near earth jobs.txt
%%DATADIR%%/data/human/news.txt
%%DATADIR%%/data/human/outfits.txt
%%DATADIR%%/data/human/paradise world jobs.txt
%%DATADIR%%/data/human/pirate jobs.txt
%%DATADIR%%/data/human/post-war reactions.txt
%%DATADIR%%/data/human/power.txt
%%DATADIR%%/data/human/rim jobs.txt
%%DATADIR%%/data/human/sales.txt
%%DATADIR%%/data/human/ships.txt
%%DATADIR%%/data/human/south jobs.txt
%%DATADIR%%/data/human/syndicate jobs.txt
%%DATADIR%%/data/human/variants.txt
%%DATADIR%%/data/human/weapons.txt
%%DATADIR%%/data/iije/iije.txt
%%DATADIR%%/data/incipias/incipias first contact.txt
%%DATADIR%%/data/incipias/incipias outfits.txt
%%DATADIR%%/data/incipias/incipias ships.txt
%%DATADIR%%/data/incipias/incipias.txt
%%DATADIR%%/data/incipias/tace mesa.txt
%%DATADIR%%/data/kahet/aberrant missions.txt
%%DATADIR%%/data/kahet/aberrant outfits.txt
%%DATADIR%%/data/kahet/aberrant ships.txt
%%DATADIR%%/data/kahet/aberrant.txt
%%DATADIR%%/data/kahet/beyond patir assets.txt
%%DATADIR%%/data/kahet/kahet missions.txt
%%DATADIR%%/data/kahet/kahet outfits.txt
%%DATADIR%%/data/kahet/kahet ships.txt
%%DATADIR%%/data/kahet/kahet.txt
%%DATADIR%%/data/korath/korath culture conversations.txt
%%DATADIR%%/data/korath/korath hails.txt
%%DATADIR%%/data/korath/korath jobs.txt
%%DATADIR%%/data/korath/korath missions.txt
%%DATADIR%%/data/korath/korath news.txt
%%DATADIR%%/data/korath/korath outfits.txt
%%DATADIR%%/data/korath/korath ships.txt
%%DATADIR%%/data/korath/korath variants.txt
%%DATADIR%%/data/korath/korath weapons.txt
%%DATADIR%%/data/korath/korath.txt
%%DATADIR%%/data/korath/nanobots.txt
%%DATADIR%%/data/map beyond patir.txt
%%DATADIR%%/data/map planets.txt
%%DATADIR%%/data/map systems.txt
%%DATADIR%%/data/persons.txt
%%DATADIR%%/data/pug/pug missions.txt
%%DATADIR%%/data/pug/pug news.txt
%%DATADIR%%/data/pug/pug outfits.txt
%%DATADIR%%/data/pug/pug ships.txt
%%DATADIR%%/data/pug/pug.txt
%%DATADIR%%/data/quarg/quarg missions.txt
%%DATADIR%%/data/quarg/quarg news.txt
%%DATADIR%%/data/quarg/quarg outfits.txt
%%DATADIR%%/data/quarg/quarg ships.txt
%%DATADIR%%/data/quarg/quarg.txt
%%DATADIR%%/data/remnant/remnant 1 introduction.txt
%%DATADIR%%/data/remnant/remnant 2 cognizance.txt
%%DATADIR%%/data/remnant/remnant 2 side missions.txt
%%DATADIR%%/data/remnant/remnant commodities.txt
%%DATADIR%%/data/remnant/remnant events.txt
%%DATADIR%%/data/remnant/remnant jobs.txt
%%DATADIR%%/data/remnant/remnant news.txt
%%DATADIR%%/data/remnant/remnant outfits.txt
%%DATADIR%%/data/remnant/remnant ships.txt
%%DATADIR%%/data/remnant/remnant.txt
%%DATADIR%%/data/rulei/rulei outfits.txt
%%DATADIR%%/data/rulei/rulei ships.txt
%%DATADIR%%/data/rulei/rulei.txt
%%DATADIR%%/data/series.txt
%%DATADIR%%/data/sheragi/archaeology missions.txt
%%DATADIR%%/data/sheragi/sheragi outfits.txt
%%DATADIR%%/data/sheragi/sheragi ships.txt
%%DATADIR%%/data/stars.txt
%%DATADIR%%/data/starts.txt
%%DATADIR%%/data/substitutions.txt
%%DATADIR%%/data/successors/successor 1 prologue.txt
%%DATADIR%%/data/successors/successor culture conversations.txt
%%DATADIR%%/data/successors/successor events.txt
%%DATADIR%%/data/successors/successor fleets.txt
%%DATADIR%%/data/successors/successor hails.txt
%%DATADIR%%/data/successors/successor jobs.txt
%%DATADIR%%/data/successors/successor news.txt
%%DATADIR%%/data/successors/successor outfits.txt
%%DATADIR%%/data/successors/successor sales.txt
%%DATADIR%%/data/successors/successor ships.txt
%%DATADIR%%/data/successors/successor side missions.txt
%%DATADIR%%/data/successors/successor variants.txt
%%DATADIR%%/data/successors/successor weapons.txt
%%DATADIR%%/data/successors/successors.txt
%%DATADIR%%/data/vyrmeid/vyrmeid.txt
%%DATADIR%%/data/wanderer/wanderer jobs.txt
%%DATADIR%%/data/wanderer/wanderer missions.txt
%%DATADIR%%/data/wanderer/wanderer news.txt
%%DATADIR%%/data/wanderer/wanderer outfits.txt
%%DATADIR%%/data/wanderer/wanderer ships.txt
%%DATADIR%%/data/wanderer/wanderers middle.txt
%%DATADIR%%/data/wanderer/wanderers start.txt
%%DATADIR%%/data/wanderer/wanderers.txt
%%DATADIR%%/images/_menu/buttonless side panel@1x.png
%%DATADIR%%/images/_menu/compass@1x.png
%%DATADIR%%/images/_menu/forest2.png
%%DATADIR%%/images/_menu/g5.png
%%DATADIR%%/images/_menu/haze+.jpg
%%DATADIR%%/images/_menu/haze-133+.jpg
%%DATADIR%%/images/_menu/haze-33+.jpg
%%DATADIR%%/images/_menu/haze-67+.jpg
%%DATADIR%%/images/_menu/haze-black+.jpg
%%DATADIR%%/images/_menu/haze-blackbody+.jpg
%%DATADIR%%/images/_menu/haze-brown+0.jpg
%%DATADIR%%/images/_menu/haze-brown+1.jpg
%%DATADIR%%/images/_menu/haze-chanai+.jpg
%%DATADIR%%/images/_menu/haze-coal.png
%%DATADIR%%/images/_menu/haze-dark-nebula+.jpg
%%DATADIR%%/images/_menu/haze-full+.jpg
%%DATADIR%%/images/_menu/haze-ghila+.jpg
%%DATADIR%%/images/_menu/haze-lathia+.jpg
%%DATADIR%%/images/_menu/haze-maithi+.jpg
%%DATADIR%%/images/_menu/haze-mitera+0.jpg
%%DATADIR%%/images/_menu/haze-mitera+1.jpg
%%DATADIR%%/images/_menu/haze-mitera+2.jpg
%%DATADIR%%/images/_menu/haze-none+.png
%%DATADIR%%/images/_menu/haze-red+.jpg
%%DATADIR%%/images/_menu/haze-sarifa+0.jpg
%%DATADIR%%/images/_menu/haze-sarifa+1.jpg
%%DATADIR%%/images/_menu/haze-sarifa+2.jpg
%%DATADIR%%/images/_menu/haze-sarifa+3.jpg
%%DATADIR%%/images/_menu/haze-sarifa+4.jpg
%%DATADIR%%/images/_menu/haze-sarifa+5.jpg
%%DATADIR%%/images/_menu/haze-sarifa+6.jpg
%%DATADIR%%/images/_menu/haze-tear-0.png
%%DATADIR%%/images/_menu/haze-tear-1.png
%%DATADIR%%/images/_menu/haze-twilight+.jpg
%%DATADIR%%/images/_menu/haze-twilight-thick+.jpg
%%DATADIR%%/images/_menu/haze-twilight-thin+.jpg
%%DATADIR%%/images/_menu/haze-twilit-embers+.jpg
%%DATADIR%%/images/_menu/haze-yellow+.jpg
%%DATADIR%%/images/_menu/oberon.png
%%DATADIR%%/images/_menu/scenario panel@1x.png
%%DATADIR%%/images/_menu/side panel@1x.png
%%DATADIR%%/images/_menu/title@1x.png
%%DATADIR%%/images/asteroid/bioroid/spin-00.png
%%DATADIR%%/images/asteroid/bioroid/spin-01.png
%%DATADIR%%/images/asteroid/bioroid/spin-02.png
%%DATADIR%%/images/asteroid/bioroid/spin-03.png
%%DATADIR%%/images/asteroid/bioroid/spin-04.png
%%DATADIR%%/images/asteroid/bioroid/spin-05.png
%%DATADIR%%/images/asteroid/bioroid/spin-06.png
%%DATADIR%%/images/asteroid/bioroid/spin-07.png
%%DATADIR%%/images/asteroid/bioroid/spin-08.png
%%DATADIR%%/images/asteroid/bioroid/spin-09.png
%%DATADIR%%/images/asteroid/bioroid/spin-10.png
%%DATADIR%%/images/asteroid/bioroid/spin-11.png
%%DATADIR%%/images/asteroid/bioroid/spin-12.png
%%DATADIR%%/images/asteroid/bioroid/spin-13.png
%%DATADIR%%/images/asteroid/bioroid/spin-14.png
%%DATADIR%%/images/asteroid/bioroid/spin-15.png
%%DATADIR%%/images/asteroid/bioroid/spin-16.png
%%DATADIR%%/images/asteroid/bioroid/spin-17.png
%%DATADIR%%/images/asteroid/bioroid/spin-18.png
%%DATADIR%%/images/asteroid/bioroid/spin-19.png
%%DATADIR%%/images/asteroid/bioroid/spin-20.png
%%DATADIR%%/images/asteroid/bioroid/spin-21.png
%%DATADIR%%/images/asteroid/bioroid/spin-22.png
%%DATADIR%%/images/asteroid/bioroid/spin-23.png
%%DATADIR%%/images/asteroid/bioroid/spin-24.png
%%DATADIR%%/images/asteroid/bioroid/spin-25.png
%%DATADIR%%/images/asteroid/bioroid/spin-26.png
%%DATADIR%%/images/asteroid/bioroid/spin-27.png
%%DATADIR%%/images/asteroid/bioroid/spin-28.png
%%DATADIR%%/images/asteroid/bioroid/spin-29.png
%%DATADIR%%/images/asteroid/bioroid/spin-30.png
%%DATADIR%%/images/asteroid/bioroid/spin-31.png
%%DATADIR%%/images/asteroid/bioroid/spin-32.png
%%DATADIR%%/images/asteroid/bioroid/spin-33.png
%%DATADIR%%/images/asteroid/bioroid/spin-34.png
%%DATADIR%%/images/asteroid/bioroid/spin-35.png
%%DATADIR%%/images/asteroid/bioroid/spin-36.png
%%DATADIR%%/images/asteroid/bioroid/spin-37.png
%%DATADIR%%/images/asteroid/bioroid/spin-38.png
%%DATADIR%%/images/asteroid/bioroid/spin-39.png
%%DATADIR%%/images/asteroid/bioroid/spin-40.png
%%DATADIR%%/images/asteroid/bioroid/spin-41.png
%%DATADIR%%/images/asteroid/bioroid/spin-42.png
%%DATADIR%%/images/asteroid/bioroid/spin-43.png
%%DATADIR%%/images/asteroid/bioroid/spin-44.png
%%DATADIR%%/images/asteroid/bioroid/spin-45.png
%%DATADIR%%/images/asteroid/bioroid/spin-46.png
%%DATADIR%%/images/asteroid/bioroid/spin-47.png
%%DATADIR%%/images/asteroid/bioroid/spin-48.png
%%DATADIR%%/images/asteroid/bioroid/spin-49.png
%%DATADIR%%/images/asteroid/bioroid/spin-50.png
%%DATADIR%%/images/asteroid/bioroid/spin-51.png
%%DATADIR%%/images/asteroid/bioroid/spin-52.png
%%DATADIR%%/images/asteroid/bioroid/spin-53.png
%%DATADIR%%/images/asteroid/bioroid/spin-54.png
%%DATADIR%%/images/asteroid/bioroid/spin-55.png
%%DATADIR%%/images/asteroid/bioroid/spin-56.png
%%DATADIR%%/images/asteroid/bioroid/spin-57.png
%%DATADIR%%/images/asteroid/bioroid/spin-58.png
%%DATADIR%%/images/asteroid/bioroid/spin-59.png
%%DATADIR%%/images/asteroid/gold/spin-00.png
%%DATADIR%%/images/asteroid/gold/spin-01.png
%%DATADIR%%/images/asteroid/gold/spin-02.png
%%DATADIR%%/images/asteroid/gold/spin-03.png
%%DATADIR%%/images/asteroid/gold/spin-04.png
%%DATADIR%%/images/asteroid/gold/spin-05.png
%%DATADIR%%/images/asteroid/gold/spin-06.png
%%DATADIR%%/images/asteroid/gold/spin-07.png
%%DATADIR%%/images/asteroid/gold/spin-08.png
%%DATADIR%%/images/asteroid/gold/spin-09.png
%%DATADIR%%/images/asteroid/gold/spin-10.png
%%DATADIR%%/images/asteroid/gold/spin-11.png
%%DATADIR%%/images/asteroid/gold/spin-12.png
%%DATADIR%%/images/asteroid/gold/spin-13.png
%%DATADIR%%/images/asteroid/gold/spin-14.png
%%DATADIR%%/images/asteroid/gold/spin-15.png
%%DATADIR%%/images/asteroid/gold/spin-16.png
%%DATADIR%%/images/asteroid/gold/spin-17.png
%%DATADIR%%/images/asteroid/gold/spin-18.png
%%DATADIR%%/images/asteroid/gold/spin-19.png
%%DATADIR%%/images/asteroid/gold/spin-20.png
%%DATADIR%%/images/asteroid/gold/spin-21.png
%%DATADIR%%/images/asteroid/gold/spin-22.png
%%DATADIR%%/images/asteroid/gold/spin-23.png
%%DATADIR%%/images/asteroid/gold/spin-24.png
%%DATADIR%%/images/asteroid/gold/spin-25.png
%%DATADIR%%/images/asteroid/gold/spin-26.png
%%DATADIR%%/images/asteroid/gold/spin-27.png
%%DATADIR%%/images/asteroid/gold/spin-28.png
%%DATADIR%%/images/asteroid/gold/spin-29.png
%%DATADIR%%/images/asteroid/gold/spin-30.png
%%DATADIR%%/images/asteroid/gold/spin-31.png
%%DATADIR%%/images/asteroid/gold/spin-32.png
%%DATADIR%%/images/asteroid/gold/spin-33.png
%%DATADIR%%/images/asteroid/gold/spin-34.png
%%DATADIR%%/images/asteroid/gold/spin-35.png
%%DATADIR%%/images/asteroid/gold/spin-36.png
%%DATADIR%%/images/asteroid/gold/spin-37.png
%%DATADIR%%/images/asteroid/gold/spin-38.png
%%DATADIR%%/images/asteroid/gold/spin-39.png
%%DATADIR%%/images/asteroid/gold/spin-40.png
%%DATADIR%%/images/asteroid/gold/spin-41.png
%%DATADIR%%/images/asteroid/gold/spin-42.png
%%DATADIR%%/images/asteroid/gold/spin-43.png
%%DATADIR%%/images/asteroid/gold/spin-44.png
%%DATADIR%%/images/asteroid/gold/spin-45.png
%%DATADIR%%/images/asteroid/gold/spin-46.png
%%DATADIR%%/images/asteroid/gold/spin-47.png
%%DATADIR%%/images/asteroid/gold/spin-48.png
%%DATADIR%%/images/asteroid/gold/spin-49.png
%%DATADIR%%/images/asteroid/gold/spin-50.png
%%DATADIR%%/images/asteroid/integral tree/tree a.png
%%DATADIR%%/images/asteroid/integral tree/tree b.png
%%DATADIR%%/images/asteroid/integral tree/tree c.png
%%DATADIR%%/images/asteroid/integral tree/tree d.png
%%DATADIR%%/images/asteroid/integral tree/tree e.png
%%DATADIR%%/images/asteroid/integral tree/tree f.png
%%DATADIR%%/images/asteroid/iron/spin-00.png
%%DATADIR%%/images/asteroid/iron/spin-01.png
%%DATADIR%%/images/asteroid/iron/spin-02.png
%%DATADIR%%/images/asteroid/iron/spin-03.png
%%DATADIR%%/images/asteroid/iron/spin-04.png
%%DATADIR%%/images/asteroid/iron/spin-05.png
%%DATADIR%%/images/asteroid/iron/spin-06.png
%%DATADIR%%/images/asteroid/iron/spin-07.png
%%DATADIR%%/images/asteroid/iron/spin-08.png
%%DATADIR%%/images/asteroid/iron/spin-09.png
%%DATADIR%%/images/asteroid/iron/spin-10.png
%%DATADIR%%/images/asteroid/iron/spin-11.png
%%DATADIR%%/images/asteroid/iron/spin-12.png
%%DATADIR%%/images/asteroid/iron/spin-13.png
%%DATADIR%%/images/asteroid/iron/spin-14.png
%%DATADIR%%/images/asteroid/iron/spin-15.png
%%DATADIR%%/images/asteroid/iron/spin-16.png
%%DATADIR%%/images/asteroid/iron/spin-17.png
%%DATADIR%%/images/asteroid/iron/spin-18.png
%%DATADIR%%/images/asteroid/iron/spin-19.png
%%DATADIR%%/images/asteroid/iron/spin-20.png
%%DATADIR%%/images/asteroid/iron/spin-21.png
%%DATADIR%%/images/asteroid/iron/spin-22.png
%%DATADIR%%/images/asteroid/iron/spin-23.png
%%DATADIR%%/images/asteroid/iron/spin-24.png
%%DATADIR%%/images/asteroid/iron/spin-25.png
%%DATADIR%%/images/asteroid/iron/spin-26.png
%%DATADIR%%/images/asteroid/iron/spin-27.png
%%DATADIR%%/images/asteroid/iron/spin-28.png
%%DATADIR%%/images/asteroid/iron/spin-29.png
%%DATADIR%%/images/asteroid/iron/spin-30.png
%%DATADIR%%/images/asteroid/iron/spin-31.png
%%DATADIR%%/images/asteroid/iron/spin-32.png
%%DATADIR%%/images/asteroid/iron/spin-33.png
%%DATADIR%%/images/asteroid/iron/spin-34.png
%%DATADIR%%/images/asteroid/iron/spin-35.png
%%DATADIR%%/images/asteroid/iron/spin-36.png
%%DATADIR%%/images/asteroid/iron/spin-37.png
%%DATADIR%%/images/asteroid/iron/spin-38.png
%%DATADIR%%/images/asteroid/iron/spin-39.png
%%DATADIR%%/images/asteroid/iron/spin-40.png
%%DATADIR%%/images/asteroid/iron/spin-41.png
%%DATADIR%%/images/asteroid/iron/spin-42.png
%%DATADIR%%/images/asteroid/iron/spin-43.png
%%DATADIR%%/images/asteroid/iron/spin-44.png
%%DATADIR%%/images/asteroid/iron/spin-45.png
%%DATADIR%%/images/asteroid/iron/spin-46.png
%%DATADIR%%/images/asteroid/iron/spin-47.png
%%DATADIR%%/images/asteroid/iron/spin-48.png
%%DATADIR%%/images/asteroid/iron/spin-49.png
%%DATADIR%%/images/asteroid/iron/spin-50.png
%%DATADIR%%/images/asteroid/iron/spin-51.png
%%DATADIR%%/images/asteroid/iron/spin-52.png
%%DATADIR%%/images/asteroid/iron/spin-53.png
%%DATADIR%%/images/asteroid/iron/spin-54.png
%%DATADIR%%/images/asteroid/iron/spin-55.png
%%DATADIR%%/images/asteroid/iron/spin-56.png
%%DATADIR%%/images/asteroid/iron/spin-57.png
%%DATADIR%%/images/asteroid/iron/spin-58.png
%%DATADIR%%/images/asteroid/iron/spin-59.png
%%DATADIR%%/images/asteroid/large metal/spin-00.png
%%DATADIR%%/images/asteroid/large metal/spin-01.png
%%DATADIR%%/images/asteroid/large metal/spin-02.png
%%DATADIR%%/images/asteroid/large metal/spin-03.png
%%DATADIR%%/images/asteroid/large metal/spin-04.png
%%DATADIR%%/images/asteroid/large metal/spin-05.png
%%DATADIR%%/images/asteroid/large metal/spin-06.png
%%DATADIR%%/images/asteroid/large metal/spin-07.png
%%DATADIR%%/images/asteroid/large metal/spin-08.png
%%DATADIR%%/images/asteroid/large metal/spin-09.png
%%DATADIR%%/images/asteroid/large metal/spin-10.png
%%DATADIR%%/images/asteroid/large metal/spin-11.png
%%DATADIR%%/images/asteroid/large metal/spin-12.png
%%DATADIR%%/images/asteroid/large metal/spin-13.png
%%DATADIR%%/images/asteroid/large metal/spin-14.png
%%DATADIR%%/images/asteroid/large metal/spin-15.png
%%DATADIR%%/images/asteroid/large metal/spin-16.png
%%DATADIR%%/images/asteroid/large metal/spin-17.png
%%DATADIR%%/images/asteroid/large metal/spin-18.png
%%DATADIR%%/images/asteroid/large metal/spin-19.png
%%DATADIR%%/images/asteroid/large metal/spin-20.png
%%DATADIR%%/images/asteroid/large metal/spin-21.png
%%DATADIR%%/images/asteroid/large metal/spin-22.png
%%DATADIR%%/images/asteroid/large metal/spin-23.png
%%DATADIR%%/images/asteroid/large metal/spin-24.png
%%DATADIR%%/images/asteroid/large metal/spin-25.png
%%DATADIR%%/images/asteroid/large metal/spin-26.png
%%DATADIR%%/images/asteroid/large metal/spin-27.png
%%DATADIR%%/images/asteroid/large metal/spin-28.png
%%DATADIR%%/images/asteroid/large metal/spin-29.png
%%DATADIR%%/images/asteroid/large metal/spin-30.png
%%DATADIR%%/images/asteroid/large metal/spin-31.png
%%DATADIR%%/images/asteroid/large metal/spin-32.png
%%DATADIR%%/images/asteroid/large metal/spin-33.png
%%DATADIR%%/images/asteroid/large metal/spin-34.png
%%DATADIR%%/images/asteroid/large metal/spin-35.png
%%DATADIR%%/images/asteroid/large metal/spin-36.png
%%DATADIR%%/images/asteroid/large metal/spin-37.png
%%DATADIR%%/images/asteroid/large metal/spin-38.png
%%DATADIR%%/images/asteroid/large metal/spin-39.png
%%DATADIR%%/images/asteroid/large metal/spin-40.png
%%DATADIR%%/images/asteroid/large metal/spin-41.png
%%DATADIR%%/images/asteroid/large metal/spin-42.png
%%DATADIR%%/images/asteroid/large metal/spin-43.png
%%DATADIR%%/images/asteroid/large metal/spin-44.png
%%DATADIR%%/images/asteroid/large metal/spin-45.png
%%DATADIR%%/images/asteroid/large metal/spin-46.png
%%DATADIR%%/images/asteroid/large metal/spin-47.png
%%DATADIR%%/images/asteroid/large metal/spin-48.png
%%DATADIR%%/images/asteroid/large metal/spin-49.png
%%DATADIR%%/images/asteroid/large metal/spin-50.png
%%DATADIR%%/images/asteroid/large metal/spin-51.png
%%DATADIR%%/images/asteroid/large metal/spin-52.png
%%DATADIR%%/images/asteroid/large metal/spin-53.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^00.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^01.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^02.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^03.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^04.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^05.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^06.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^07.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^08.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^09.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^10.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^11.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^12.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^13.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^14.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^15.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^16.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^17.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^18.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^19.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^20.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^21.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^22.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^23.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^24.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^25.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^26.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^27.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^28.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^29.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^30.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^31.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^32.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^33.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^34.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^35.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^36.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^37.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^38.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^39.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^40.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^41.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^42.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^43.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^44.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^45.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^46.png
%%DATADIR%%/images/asteroid/large plant cluster/large plant cluster^47.png
%%DATADIR%%/images/asteroid/large plant/large plant^00.png
%%DATADIR%%/images/asteroid/large plant/large plant^01.png
%%DATADIR%%/images/asteroid/large plant/large plant^02.png
%%DATADIR%%/images/asteroid/large plant/large plant^03.png
%%DATADIR%%/images/asteroid/large plant/large plant^04.png
%%DATADIR%%/images/asteroid/large plant/large plant^05.png
%%DATADIR%%/images/asteroid/large plant/large plant^06.png
%%DATADIR%%/images/asteroid/large plant/large plant^07.png
%%DATADIR%%/images/asteroid/large plant/large plant^08.png
%%DATADIR%%/images/asteroid/large plant/large plant^09.png
%%DATADIR%%/images/asteroid/large plant/large plant^10.png
%%DATADIR%%/images/asteroid/large plant/large plant^11.png
%%DATADIR%%/images/asteroid/large plant/large plant^12.png
%%DATADIR%%/images/asteroid/large plant/large plant^13.png
%%DATADIR%%/images/asteroid/large plant/large plant^14.png
%%DATADIR%%/images/asteroid/large plant/large plant^15.png
%%DATADIR%%/images/asteroid/large plant/large plant^16.png
%%DATADIR%%/images/asteroid/large plant/large plant^17.png
%%DATADIR%%/images/asteroid/large plant/large plant^18.png
%%DATADIR%%/images/asteroid/large plant/large plant^19.png
%%DATADIR%%/images/asteroid/large plant/large plant^20.png
%%DATADIR%%/images/asteroid/large plant/large plant^21.png
%%DATADIR%%/images/asteroid/large plant/large plant^22.png
%%DATADIR%%/images/asteroid/large plant/large plant^23.png
%%DATADIR%%/images/asteroid/large plant/large plant^24.png
%%DATADIR%%/images/asteroid/large plant/large plant^25.png
%%DATADIR%%/images/asteroid/large plant/large plant^26.png
%%DATADIR%%/images/asteroid/large plant/large plant^27.png
%%DATADIR%%/images/asteroid/large plant/large plant^28.png
%%DATADIR%%/images/asteroid/large plant/large plant^29.png
%%DATADIR%%/images/asteroid/large plant/large plant^30.png
%%DATADIR%%/images/asteroid/large plant/large plant^31.png
%%DATADIR%%/images/asteroid/large plant/large plant^32.png
%%DATADIR%%/images/asteroid/large plant/large plant^33.png
%%DATADIR%%/images/asteroid/large plant/large plant^34.png
%%DATADIR%%/images/asteroid/large plant/large plant^35.png
%%DATADIR%%/images/asteroid/large plant/large plant^36.png
%%DATADIR%%/images/asteroid/large plant/large plant^37.png
%%DATADIR%%/images/asteroid/large plant/large plant^38.png
%%DATADIR%%/images/asteroid/large plant/large plant^39.png
%%DATADIR%%/images/asteroid/large plant/large plant^40.png
%%DATADIR%%/images/asteroid/large plant/large plant^41.png
%%DATADIR%%/images/asteroid/large plant/large plant^42.png
%%DATADIR%%/images/asteroid/large plant/large plant^43.png
%%DATADIR%%/images/asteroid/large plant/large plant^44.png
%%DATADIR%%/images/asteroid/large plant/large plant^45.png
%%DATADIR%%/images/asteroid/large plant/large plant^46.png
%%DATADIR%%/images/asteroid/large plant/large plant^47.png
%%DATADIR%%/images/asteroid/large plant/large plant^48.png
%%DATADIR%%/images/asteroid/large plant/large plant^49.png
%%DATADIR%%/images/asteroid/large plant/large plant^50.png
%%DATADIR%%/images/asteroid/large plant/large plant^51.png
%%DATADIR%%/images/asteroid/large plant/large plant^52.png
%%DATADIR%%/images/asteroid/large plant/large plant^53.png
%%DATADIR%%/images/asteroid/large plant/large plant^54.png
%%DATADIR%%/images/asteroid/large plant/large plant^55.png
%%DATADIR%%/images/asteroid/large plant/large plant^56.png
%%DATADIR%%/images/asteroid/large plant/large plant^57.png
%%DATADIR%%/images/asteroid/large plant/large plant^58.png
%%DATADIR%%/images/asteroid/large plant/large plant^59.png
%%DATADIR%%/images/asteroid/large plant/large plant^60.png
%%DATADIR%%/images/asteroid/large plant/large plant^61.png
%%DATADIR%%/images/asteroid/large plant/large plant^62.png
%%DATADIR%%/images/asteroid/large plant/large plant^63.png
%%DATADIR%%/images/asteroid/large plant/large plant^64.png
%%DATADIR%%/images/asteroid/large plant/large plant^65.png
%%DATADIR%%/images/asteroid/large plant/large plant^66.png
%%DATADIR%%/images/asteroid/large plant/large plant^67.png
%%DATADIR%%/images/asteroid/large plant/large plant^68.png
%%DATADIR%%/images/asteroid/large plant/large plant^69.png
%%DATADIR%%/images/asteroid/large plant/large plant^70.png
%%DATADIR%%/images/asteroid/large plant/large plant^71.png
%%DATADIR%%/images/asteroid/large plant/large plant^72.png
%%DATADIR%%/images/asteroid/large plant/large plant^73.png
%%DATADIR%%/images/asteroid/large plant/large plant^74.png
%%DATADIR%%/images/asteroid/large plant/large plant^75.png
%%DATADIR%%/images/asteroid/large plant/large plant^76.png
%%DATADIR%%/images/asteroid/large plant/large plant^77.png
%%DATADIR%%/images/asteroid/large plant/large plant^78.png
%%DATADIR%%/images/asteroid/large plant/large plant^79.png
%%DATADIR%%/images/asteroid/large plant/large plant^80.png
%%DATADIR%%/images/asteroid/large plant/large plant^81.png
%%DATADIR%%/images/asteroid/large plant/large plant^82.png
%%DATADIR%%/images/asteroid/large plant/large plant^83.png
%%DATADIR%%/images/asteroid/large plant/large plant^84.png
%%DATADIR%%/images/asteroid/large plant/large plant^85.png
%%DATADIR%%/images/asteroid/large plant/large plant^86.png
%%DATADIR%%/images/asteroid/large plant/large plant^87.png
%%DATADIR%%/images/asteroid/large plant/large plant^88.png
%%DATADIR%%/images/asteroid/large plant/large plant^89.png
%%DATADIR%%/images/asteroid/large plant/large plant^90.png
%%DATADIR%%/images/asteroid/large plant/large plant^91.png
%%DATADIR%%/images/asteroid/large plant/large plant^92.png
%%DATADIR%%/images/asteroid/large plant/large plant^93.png
%%DATADIR%%/images/asteroid/large plant/large plant^94.png
%%DATADIR%%/images/asteroid/large plant/large plant^95.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^00.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^01.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^02.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^03.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^04.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^05.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^06.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^07.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^08.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^09.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^10.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^11.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^12.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^13.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^14.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^15.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^16.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^17.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^18.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^19.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^20.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^21.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^22.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^23.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^24.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^25.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^26.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^27.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^28.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^29.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^30.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^31.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^32.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^33.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^34.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^35.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^36.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^37.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^38.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^39.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^40.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^41.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^42.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^43.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^44.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^45.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^46.png
%%DATADIR%%/images/asteroid/large plant2/large plant2^47.png
%%DATADIR%%/images/asteroid/large rock/spin-00.png
%%DATADIR%%/images/asteroid/large rock/spin-01.png
%%DATADIR%%/images/asteroid/large rock/spin-02.png
%%DATADIR%%/images/asteroid/large rock/spin-03.png
%%DATADIR%%/images/asteroid/large rock/spin-04.png
%%DATADIR%%/images/asteroid/large rock/spin-05.png
%%DATADIR%%/images/asteroid/large rock/spin-06.png
%%DATADIR%%/images/asteroid/large rock/spin-07.png
%%DATADIR%%/images/asteroid/large rock/spin-08.png
%%DATADIR%%/images/asteroid/large rock/spin-09.png
%%DATADIR%%/images/asteroid/large rock/spin-10.png
%%DATADIR%%/images/asteroid/large rock/spin-11.png
%%DATADIR%%/images/asteroid/large rock/spin-12.png
%%DATADIR%%/images/asteroid/large rock/spin-13.png
%%DATADIR%%/images/asteroid/large rock/spin-14.png
%%DATADIR%%/images/asteroid/large rock/spin-15.png
%%DATADIR%%/images/asteroid/large rock/spin-16.png
%%DATADIR%%/images/asteroid/large rock/spin-17.png
%%DATADIR%%/images/asteroid/large rock/spin-18.png
%%DATADIR%%/images/asteroid/large rock/spin-19.png
%%DATADIR%%/images/asteroid/large rock/spin-20.png
%%DATADIR%%/images/asteroid/large rock/spin-21.png
%%DATADIR%%/images/asteroid/large rock/spin-22.png
%%DATADIR%%/images/asteroid/large rock/spin-23.png
%%DATADIR%%/images/asteroid/large rock/spin-24.png
%%DATADIR%%/images/asteroid/large rock/spin-25.png
%%DATADIR%%/images/asteroid/large rock/spin-26.png
%%DATADIR%%/images/asteroid/large rock/spin-27.png
%%DATADIR%%/images/asteroid/large rock/spin-28.png
%%DATADIR%%/images/asteroid/large rock/spin-29.png
%%DATADIR%%/images/asteroid/large rock/spin-30.png
%%DATADIR%%/images/asteroid/large rock/spin-31.png
%%DATADIR%%/images/asteroid/large rock/spin-32.png
%%DATADIR%%/images/asteroid/large rock/spin-33.png
%%DATADIR%%/images/asteroid/large rock/spin-34.png
%%DATADIR%%/images/asteroid/large rock/spin-35.png
%%DATADIR%%/images/asteroid/large rock/spin-36.png
%%DATADIR%%/images/asteroid/large rock/spin-37.png
%%DATADIR%%/images/asteroid/large rock/spin-38.png
%%DATADIR%%/images/asteroid/large rock/spin-39.png
%%DATADIR%%/images/asteroid/large rock/spin-40.png
%%DATADIR%%/images/asteroid/large rock/spin-41.png
%%DATADIR%%/images/asteroid/large rock/spin-42.png
%%DATADIR%%/images/asteroid/large rock/spin-43.png
%%DATADIR%%/images/asteroid/large rock/spin-44.png
%%DATADIR%%/images/asteroid/large rock/spin-45.png
%%DATADIR%%/images/asteroid/large rock/spin-46.png
%%DATADIR%%/images/asteroid/large rock/spin-47.png
%%DATADIR%%/images/asteroid/large rock/spin-48.png
%%DATADIR%%/images/asteroid/large rock/spin-49.png
%%DATADIR%%/images/asteroid/large rock/spin-50.png
%%DATADIR%%/images/asteroid/large rock/spin-51.png
%%DATADIR%%/images/asteroid/large rock/spin-52.png
%%DATADIR%%/images/asteroid/large rock/spin-53.png
%%DATADIR%%/images/asteroid/large rock/spin-54.png
%%DATADIR%%/images/asteroid/large rock/spin-55.png
%%DATADIR%%/images/asteroid/large rock/spin-56.png
%%DATADIR%%/images/asteroid/large rock/spin-57.png
%%DATADIR%%/images/asteroid/large rock/spin-58.png
%%DATADIR%%/images/asteroid/large rock/spin-59.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^00.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^01.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^02.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^03.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^04.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^05.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^06.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^07.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^08.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^09.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^10.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^11.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^12.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^13.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^14.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^15.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^16.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^17.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^18.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^19.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^20.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^21.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^22.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^23.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^24.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^25.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^26.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^27.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^28.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^29.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^30.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^31.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^32.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^33.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^34.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^35.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^36.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^37.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^38.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^39.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^40.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^41.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^42.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^43.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^44.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^45.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^46.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^47.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^48.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^49.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^50.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^51.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^52.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^53.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^54.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^55.png
%%DATADIR%%/images/asteroid/large space flora/large space flora^56.png
%%DATADIR%%/images/asteroid/lead/spin-00.png
%%DATADIR%%/images/asteroid/lead/spin-01.png
%%DATADIR%%/images/asteroid/lead/spin-02.png
%%DATADIR%%/images/asteroid/lead/spin-03.png
%%DATADIR%%/images/asteroid/lead/spin-04.png
%%DATADIR%%/images/asteroid/lead/spin-05.png
%%DATADIR%%/images/asteroid/lead/spin-06.png
%%DATADIR%%/images/asteroid/lead/spin-07.png
%%DATADIR%%/images/asteroid/lead/spin-08.png
%%DATADIR%%/images/asteroid/lead/spin-09.png
%%DATADIR%%/images/asteroid/lead/spin-10.png
%%DATADIR%%/images/asteroid/lead/spin-11.png
%%DATADIR%%/images/asteroid/lead/spin-12.png
%%DATADIR%%/images/asteroid/lead/spin-13.png
%%DATADIR%%/images/asteroid/lead/spin-14.png
%%DATADIR%%/images/asteroid/lead/spin-15.png
%%DATADIR%%/images/asteroid/lead/spin-16.png
%%DATADIR%%/images/asteroid/lead/spin-17.png
%%DATADIR%%/images/asteroid/lead/spin-18.png
%%DATADIR%%/images/asteroid/lead/spin-19.png
%%DATADIR%%/images/asteroid/lead/spin-20.png
%%DATADIR%%/images/asteroid/lead/spin-21.png
%%DATADIR%%/images/asteroid/lead/spin-22.png
%%DATADIR%%/images/asteroid/lead/spin-23.png
%%DATADIR%%/images/asteroid/lead/spin-24.png
%%DATADIR%%/images/asteroid/lead/spin-25.png
%%DATADIR%%/images/asteroid/lead/spin-26.png
%%DATADIR%%/images/asteroid/lead/spin-27.png
%%DATADIR%%/images/asteroid/lead/spin-28.png
%%DATADIR%%/images/asteroid/lead/spin-29.png
%%DATADIR%%/images/asteroid/lead/spin-30.png
%%DATADIR%%/images/asteroid/lead/spin-31.png
%%DATADIR%%/images/asteroid/lead/spin-32.png
%%DATADIR%%/images/asteroid/lead/spin-33.png
%%DATADIR%%/images/asteroid/lead/spin-34.png
%%DATADIR%%/images/asteroid/lead/spin-35.png
%%DATADIR%%/images/asteroid/lead/spin-36.png
%%DATADIR%%/images/asteroid/lead/spin-37.png
%%DATADIR%%/images/asteroid/lead/spin-38.png
%%DATADIR%%/images/asteroid/lead/spin-39.png
%%DATADIR%%/images/asteroid/lead/spin-40.png
%%DATADIR%%/images/asteroid/lead/spin-41.png
%%DATADIR%%/images/asteroid/lead/spin-42.png
%%DATADIR%%/images/asteroid/lead/spin-43.png
%%DATADIR%%/images/asteroid/lead/spin-44.png
%%DATADIR%%/images/asteroid/lead/spin-45.png
%%DATADIR%%/images/asteroid/lead/spin-46.png
%%DATADIR%%/images/asteroid/lead/spin-47.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^00.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^01.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^02.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^03.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^04.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^05.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^06.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^07.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^08.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^09.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^10.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^11.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^12.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^13.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^14.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^15.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^16.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^17.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^18.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^19.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^20.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^21.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^22.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^23.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^24.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^25.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^26.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^27.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^28.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^29.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^30.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^31.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^32.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^33.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^34.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^35.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^36.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^37.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^38.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^39.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^40.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^41.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^42.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^43.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^44.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^45.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^46.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^47.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^48.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^49.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^50.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^51.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^52.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^53.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^54.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^55.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^56.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^57.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^58.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^59.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^60.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^61.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^62.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^63.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^64.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^65.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^66.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^67.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^68.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^69.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^70.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^71.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^72.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^73.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^74.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^75.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^76.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^77.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^78.png
%%DATADIR%%/images/asteroid/livecrystal/livecrystal^79.png
%%DATADIR%%/images/asteroid/medium metal/spin-00.png
%%DATADIR%%/images/asteroid/medium metal/spin-01.png
%%DATADIR%%/images/asteroid/medium metal/spin-02.png
%%DATADIR%%/images/asteroid/medium metal/spin-03.png
%%DATADIR%%/images/asteroid/medium metal/spin-04.png
%%DATADIR%%/images/asteroid/medium metal/spin-05.png
%%DATADIR%%/images/asteroid/medium metal/spin-06.png
%%DATADIR%%/images/asteroid/medium metal/spin-07.png
%%DATADIR%%/images/asteroid/medium metal/spin-08.png
%%DATADIR%%/images/asteroid/medium metal/spin-09.png
%%DATADIR%%/images/asteroid/medium metal/spin-10.png
%%DATADIR%%/images/asteroid/medium metal/spin-11.png
%%DATADIR%%/images/asteroid/medium metal/spin-12.png
%%DATADIR%%/images/asteroid/medium metal/spin-13.png
%%DATADIR%%/images/asteroid/medium metal/spin-14.png
%%DATADIR%%/images/asteroid/medium metal/spin-15.png
%%DATADIR%%/images/asteroid/medium metal/spin-16.png
%%DATADIR%%/images/asteroid/medium metal/spin-17.png
%%DATADIR%%/images/asteroid/medium metal/spin-18.png
%%DATADIR%%/images/asteroid/medium metal/spin-19.png
%%DATADIR%%/images/asteroid/medium metal/spin-20.png
%%DATADIR%%/images/asteroid/medium metal/spin-21.png
%%DATADIR%%/images/asteroid/medium metal/spin-22.png
%%DATADIR%%/images/asteroid/medium metal/spin-23.png
%%DATADIR%%/images/asteroid/medium metal/spin-24.png
%%DATADIR%%/images/asteroid/medium metal/spin-25.png
%%DATADIR%%/images/asteroid/medium metal/spin-26.png
%%DATADIR%%/images/asteroid/medium metal/spin-27.png
%%DATADIR%%/images/asteroid/medium metal/spin-28.png
%%DATADIR%%/images/asteroid/medium metal/spin-29.png
%%DATADIR%%/images/asteroid/medium metal/spin-30.png
%%DATADIR%%/images/asteroid/medium metal/spin-31.png
%%DATADIR%%/images/asteroid/medium metal/spin-32.png
%%DATADIR%%/images/asteroid/medium metal/spin-33.png
%%DATADIR%%/images/asteroid/medium metal/spin-34.png
%%DATADIR%%/images/asteroid/medium metal/spin-35.png
%%DATADIR%%/images/asteroid/medium metal/spin-36.png
%%DATADIR%%/images/asteroid/medium metal/spin-37.png
%%DATADIR%%/images/asteroid/medium metal/spin-38.png
%%DATADIR%%/images/asteroid/medium metal/spin-39.png
%%DATADIR%%/images/asteroid/medium metal/spin-40.png
%%DATADIR%%/images/asteroid/medium metal/spin-41.png
%%DATADIR%%/images/asteroid/medium metal/spin-42.png
%%DATADIR%%/images/asteroid/medium metal/spin-43.png
%%DATADIR%%/images/asteroid/medium metal/spin-44.png
%%DATADIR%%/images/asteroid/medium metal/spin-45.png
%%DATADIR%%/images/asteroid/medium metal/spin-46.png
%%DATADIR%%/images/asteroid/medium metal/spin-47.png
%%DATADIR%%/images/asteroid/medium rock/spin-00.png
%%DATADIR%%/images/asteroid/medium rock/spin-01.png
%%DATADIR%%/images/asteroid/medium rock/spin-02.png
%%DATADIR%%/images/asteroid/medium rock/spin-03.png
%%DATADIR%%/images/asteroid/medium rock/spin-04.png
%%DATADIR%%/images/asteroid/medium rock/spin-05.png
%%DATADIR%%/images/asteroid/medium rock/spin-06.png
%%DATADIR%%/images/asteroid/medium rock/spin-07.png
%%DATADIR%%/images/asteroid/medium rock/spin-08.png
%%DATADIR%%/images/asteroid/medium rock/spin-09.png
%%DATADIR%%/images/asteroid/medium rock/spin-10.png
%%DATADIR%%/images/asteroid/medium rock/spin-11.png
%%DATADIR%%/images/asteroid/medium rock/spin-12.png
%%DATADIR%%/images/asteroid/medium rock/spin-13.png
%%DATADIR%%/images/asteroid/medium rock/spin-14.png
%%DATADIR%%/images/asteroid/medium rock/spin-15.png
%%DATADIR%%/images/asteroid/medium rock/spin-16.png
%%DATADIR%%/images/asteroid/medium rock/spin-17.png
%%DATADIR%%/images/asteroid/medium rock/spin-18.png
%%DATADIR%%/images/asteroid/medium rock/spin-19.png
%%DATADIR%%/images/asteroid/medium rock/spin-20.png
%%DATADIR%%/images/asteroid/medium rock/spin-21.png
%%DATADIR%%/images/asteroid/medium rock/spin-22.png
%%DATADIR%%/images/asteroid/medium rock/spin-23.png
%%DATADIR%%/images/asteroid/medium rock/spin-24.png
%%DATADIR%%/images/asteroid/medium rock/spin-25.png
%%DATADIR%%/images/asteroid/medium rock/spin-26.png
%%DATADIR%%/images/asteroid/medium rock/spin-27.png
%%DATADIR%%/images/asteroid/medium rock/spin-28.png
%%DATADIR%%/images/asteroid/medium rock/spin-29.png
%%DATADIR%%/images/asteroid/medium rock/spin-30.png
%%DATADIR%%/images/asteroid/medium rock/spin-31.png
%%DATADIR%%/images/asteroid/medium rock/spin-32.png
%%DATADIR%%/images/asteroid/medium rock/spin-33.png
%%DATADIR%%/images/asteroid/medium rock/spin-34.png
%%DATADIR%%/images/asteroid/medium rock/spin-35.png
%%DATADIR%%/images/asteroid/medium rock/spin-36.png
%%DATADIR%%/images/asteroid/medium rock/spin-37.png
%%DATADIR%%/images/asteroid/medium rock/spin-38.png
%%DATADIR%%/images/asteroid/medium rock/spin-39.png
%%DATADIR%%/images/asteroid/medium rock/spin-40.png
%%DATADIR%%/images/asteroid/medium rock/spin-41.png
%%DATADIR%%/images/asteroid/medium rock/spin-42.png
%%DATADIR%%/images/asteroid/medium rock/spin-43.png
%%DATADIR%%/images/asteroid/medium rock/spin-44.png
%%DATADIR%%/images/asteroid/medium rock/spin-45.png
%%DATADIR%%/images/asteroid/medium rock/spin-46.png
%%DATADIR%%/images/asteroid/medium rock/spin-47.png
%%DATADIR%%/images/asteroid/medium rock/spin-48.png
%%DATADIR%%/images/asteroid/medium rock/spin-49.png
%%DATADIR%%/images/asteroid/medium rock/spin-50.png
%%DATADIR%%/images/asteroid/medium rock/spin-51.png
%%DATADIR%%/images/asteroid/medium rock/spin-52.png
%%DATADIR%%/images/asteroid/medium rock/spin-53.png
%%DATADIR%%/images/asteroid/medium rock/spin-54.png
%%DATADIR%%/images/asteroid/medium rock/spin-55.png
%%DATADIR%%/images/asteroid/medium rock/spin-56.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^00.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^01.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^02.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^03.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^04.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^05.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^06.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^07.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^08.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^09.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^10.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^11.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^12.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^13.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^14.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^15.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^16.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^17.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^18.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^19.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^20.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^21.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^22.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^23.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^24.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^25.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^26.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^27.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^28.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^29.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^30.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^31.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^32.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^33.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^34.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^35.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^36.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^37.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^38.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^39.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^40.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^41.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^42.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^43.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^44.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^45.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^46.png
%%DATADIR%%/images/asteroid/plant cluster/plant cluster^47.png
%%DATADIR%%/images/asteroid/plant/plant^00.png
%%DATADIR%%/images/asteroid/plant/plant^01.png
%%DATADIR%%/images/asteroid/plant/plant^02.png
%%DATADIR%%/images/asteroid/plant/plant^03.png
%%DATADIR%%/images/asteroid/plant/plant^04.png
%%DATADIR%%/images/asteroid/plant/plant^05.png
%%DATADIR%%/images/asteroid/plant/plant^06.png
%%DATADIR%%/images/asteroid/plant/plant^07.png
%%DATADIR%%/images/asteroid/plant/plant^08.png
%%DATADIR%%/images/asteroid/plant/plant^09.png
%%DATADIR%%/images/asteroid/plant/plant^10.png
%%DATADIR%%/images/asteroid/plant/plant^11.png
%%DATADIR%%/images/asteroid/plant/plant^12.png
%%DATADIR%%/images/asteroid/plant/plant^13.png
%%DATADIR%%/images/asteroid/plant/plant^14.png
%%DATADIR%%/images/asteroid/plant/plant^15.png
%%DATADIR%%/images/asteroid/plant/plant^16.png
%%DATADIR%%/images/asteroid/plant/plant^17.png
%%DATADIR%%/images/asteroid/plant/plant^18.png
%%DATADIR%%/images/asteroid/plant/plant^19.png
%%DATADIR%%/images/asteroid/plant/plant^20.png
%%DATADIR%%/images/asteroid/plant/plant^21.png
%%DATADIR%%/images/asteroid/plant/plant^22.png
%%DATADIR%%/images/asteroid/plant/plant^23.png
%%DATADIR%%/images/asteroid/plant/plant^24.png
%%DATADIR%%/images/asteroid/plant/plant^25.png
%%DATADIR%%/images/asteroid/plant/plant^26.png
%%DATADIR%%/images/asteroid/plant/plant^27.png
%%DATADIR%%/images/asteroid/plant/plant^28.png
%%DATADIR%%/images/asteroid/plant/plant^29.png
%%DATADIR%%/images/asteroid/plant/plant^30.png
%%DATADIR%%/images/asteroid/plant/plant^31.png
%%DATADIR%%/images/asteroid/plant/plant^32.png
%%DATADIR%%/images/asteroid/plant/plant^33.png
%%DATADIR%%/images/asteroid/plant/plant^34.png
%%DATADIR%%/images/asteroid/plant/plant^35.png
%%DATADIR%%/images/asteroid/plant/plant^36.png
%%DATADIR%%/images/asteroid/plant/plant^37.png
%%DATADIR%%/images/asteroid/plant/plant^38.png
%%DATADIR%%/images/asteroid/plant/plant^39.png
%%DATADIR%%/images/asteroid/plant/plant^40.png
%%DATADIR%%/images/asteroid/plant/plant^41.png
%%DATADIR%%/images/asteroid/plant/plant^42.png
%%DATADIR%%/images/asteroid/plant/plant^43.png
%%DATADIR%%/images/asteroid/plant/plant^44.png
%%DATADIR%%/images/asteroid/plant/plant^45.png
%%DATADIR%%/images/asteroid/plant/plant^46.png
%%DATADIR%%/images/asteroid/plant/plant^47.png
%%DATADIR%%/images/asteroid/plant2/plant2^00.png
%%DATADIR%%/images/asteroid/plant2/plant2^01.png
%%DATADIR%%/images/asteroid/plant2/plant2^02.png
%%DATADIR%%/images/asteroid/plant2/plant2^03.png
%%DATADIR%%/images/asteroid/plant2/plant2^04.png
%%DATADIR%%/images/asteroid/plant2/plant2^05.png
%%DATADIR%%/images/asteroid/plant2/plant2^06.png
%%DATADIR%%/images/asteroid/plant2/plant2^07.png
%%DATADIR%%/images/asteroid/plant2/plant2^08.png
%%DATADIR%%/images/asteroid/plant2/plant2^09.png
%%DATADIR%%/images/asteroid/plant2/plant2^10.png
%%DATADIR%%/images/asteroid/plant2/plant2^11.png
%%DATADIR%%/images/asteroid/plant2/plant2^12.png
%%DATADIR%%/images/asteroid/plant2/plant2^13.png
%%DATADIR%%/images/asteroid/plant2/plant2^14.png
%%DATADIR%%/images/asteroid/plant2/plant2^15.png
%%DATADIR%%/images/asteroid/plant2/plant2^16.png
%%DATADIR%%/images/asteroid/plant2/plant2^17.png
%%DATADIR%%/images/asteroid/plant2/plant2^18.png
%%DATADIR%%/images/asteroid/plant2/plant2^19.png
%%DATADIR%%/images/asteroid/plant2/plant2^20.png
%%DATADIR%%/images/asteroid/plant2/plant2^21.png
%%DATADIR%%/images/asteroid/plant2/plant2^22.png
%%DATADIR%%/images/asteroid/plant2/plant2^23.png
%%DATADIR%%/images/asteroid/plant2/plant2^24.png
%%DATADIR%%/images/asteroid/plant2/plant2^25.png
%%DATADIR%%/images/asteroid/plant2/plant2^26.png
%%DATADIR%%/images/asteroid/plant2/plant2^27.png
%%DATADIR%%/images/asteroid/plant2/plant2^28.png
%%DATADIR%%/images/asteroid/plant2/plant2^29.png
%%DATADIR%%/images/asteroid/plant2/plant2^30.png
%%DATADIR%%/images/asteroid/plant2/plant2^31.png
%%DATADIR%%/images/asteroid/plant2/plant2^32.png
%%DATADIR%%/images/asteroid/plant2/plant2^33.png
%%DATADIR%%/images/asteroid/plant2/plant2^34.png
%%DATADIR%%/images/asteroid/plant2/plant2^35.png
%%DATADIR%%/images/asteroid/plant2/plant2^36.png
%%DATADIR%%/images/asteroid/plant2/plant2^37.png
%%DATADIR%%/images/asteroid/plant2/plant2^38.png
%%DATADIR%%/images/asteroid/plant2/plant2^39.png
%%DATADIR%%/images/asteroid/plant2/plant2^40.png
%%DATADIR%%/images/asteroid/plant2/plant2^41.png
%%DATADIR%%/images/asteroid/plant2/plant2^42.png
%%DATADIR%%/images/asteroid/plant2/plant2^43.png
%%DATADIR%%/images/asteroid/plant2/plant2^44.png
%%DATADIR%%/images/asteroid/plant2/plant2^45.png
%%DATADIR%%/images/asteroid/plant2/plant2^46.png
%%DATADIR%%/images/asteroid/plant2/plant2^47.png
%%DATADIR%%/images/asteroid/silicon/spin-00.png
%%DATADIR%%/images/asteroid/silicon/spin-01.png
%%DATADIR%%/images/asteroid/silicon/spin-02.png
%%DATADIR%%/images/asteroid/silicon/spin-03.png
%%DATADIR%%/images/asteroid/silicon/spin-04.png
%%DATADIR%%/images/asteroid/silicon/spin-05.png
%%DATADIR%%/images/asteroid/silicon/spin-06.png
%%DATADIR%%/images/asteroid/silicon/spin-07.png
%%DATADIR%%/images/asteroid/silicon/spin-08.png
%%DATADIR%%/images/asteroid/silicon/spin-09.png
%%DATADIR%%/images/asteroid/silicon/spin-10.png
%%DATADIR%%/images/asteroid/silicon/spin-11.png
%%DATADIR%%/images/asteroid/silicon/spin-12.png
%%DATADIR%%/images/asteroid/silicon/spin-13.png
%%DATADIR%%/images/asteroid/silicon/spin-14.png
%%DATADIR%%/images/asteroid/silicon/spin-15.png
%%DATADIR%%/images/asteroid/silicon/spin-16.png
%%DATADIR%%/images/asteroid/silicon/spin-17.png
%%DATADIR%%/images/asteroid/silicon/spin-18.png
%%DATADIR%%/images/asteroid/silicon/spin-19.png
%%DATADIR%%/images/asteroid/silicon/spin-20.png
%%DATADIR%%/images/asteroid/silicon/spin-21.png
%%DATADIR%%/images/asteroid/silicon/spin-22.png
%%DATADIR%%/images/asteroid/silicon/spin-23.png
%%DATADIR%%/images/asteroid/silicon/spin-24.png
%%DATADIR%%/images/asteroid/silicon/spin-25.png
%%DATADIR%%/images/asteroid/silicon/spin-26.png
%%DATADIR%%/images/asteroid/silicon/spin-27.png
%%DATADIR%%/images/asteroid/silicon/spin-28.png
%%DATADIR%%/images/asteroid/silicon/spin-29.png
%%DATADIR%%/images/asteroid/silicon/spin-30.png
%%DATADIR%%/images/asteroid/silicon/spin-31.png
%%DATADIR%%/images/asteroid/silicon/spin-32.png
%%DATADIR%%/images/asteroid/silicon/spin-33.png
%%DATADIR%%/images/asteroid/silicon/spin-34.png
%%DATADIR%%/images/asteroid/silicon/spin-35.png
%%DATADIR%%/images/asteroid/silicon/spin-36.png
%%DATADIR%%/images/asteroid/silicon/spin-37.png
%%DATADIR%%/images/asteroid/silicon/spin-38.png
%%DATADIR%%/images/asteroid/silicon/spin-39.png
%%DATADIR%%/images/asteroid/silicon/spin-40.png
%%DATADIR%%/images/asteroid/silicon/spin-41.png
%%DATADIR%%/images/asteroid/silicon/spin-42.png
%%DATADIR%%/images/asteroid/silicon/spin-43.png
%%DATADIR%%/images/asteroid/silicon/spin-44.png
%%DATADIR%%/images/asteroid/silicon/spin-45.png
%%DATADIR%%/images/asteroid/silicon/spin-46.png
%%DATADIR%%/images/asteroid/silicon/spin-47.png
%%DATADIR%%/images/asteroid/silicon/spin-48.png
%%DATADIR%%/images/asteroid/silicon/spin-49.png
%%DATADIR%%/images/asteroid/silicon/spin-50.png
%%DATADIR%%/images/asteroid/silicon/spin-51.png
%%DATADIR%%/images/asteroid/silicon/spin-52.png
%%DATADIR%%/images/asteroid/silicon/spin-53.png
%%DATADIR%%/images/asteroid/silver/spin-00.png
%%DATADIR%%/images/asteroid/silver/spin-01.png
%%DATADIR%%/images/asteroid/silver/spin-02.png
%%DATADIR%%/images/asteroid/silver/spin-03.png
%%DATADIR%%/images/asteroid/silver/spin-04.png
%%DATADIR%%/images/asteroid/silver/spin-05.png
%%DATADIR%%/images/asteroid/silver/spin-06.png
%%DATADIR%%/images/asteroid/silver/spin-07.png
%%DATADIR%%/images/asteroid/silver/spin-08.png
%%DATADIR%%/images/asteroid/silver/spin-09.png
%%DATADIR%%/images/asteroid/silver/spin-10.png
%%DATADIR%%/images/asteroid/silver/spin-11.png
%%DATADIR%%/images/asteroid/silver/spin-12.png
%%DATADIR%%/images/asteroid/silver/spin-13.png
%%DATADIR%%/images/asteroid/silver/spin-14.png
%%DATADIR%%/images/asteroid/silver/spin-15.png
%%DATADIR%%/images/asteroid/silver/spin-16.png
%%DATADIR%%/images/asteroid/silver/spin-17.png
%%DATADIR%%/images/asteroid/silver/spin-18.png
%%DATADIR%%/images/asteroid/silver/spin-19.png
%%DATADIR%%/images/asteroid/silver/spin-20.png
%%DATADIR%%/images/asteroid/silver/spin-21.png
%%DATADIR%%/images/asteroid/silver/spin-22.png
%%DATADIR%%/images/asteroid/silver/spin-23.png
%%DATADIR%%/images/asteroid/silver/spin-24.png
%%DATADIR%%/images/asteroid/silver/spin-25.png
%%DATADIR%%/images/asteroid/silver/spin-26.png
%%DATADIR%%/images/asteroid/silver/spin-27.png
%%DATADIR%%/images/asteroid/silver/spin-28.png
%%DATADIR%%/images/asteroid/silver/spin-29.png
%%DATADIR%%/images/asteroid/silver/spin-30.png
%%DATADIR%%/images/asteroid/silver/spin-31.png
%%DATADIR%%/images/asteroid/silver/spin-32.png
%%DATADIR%%/images/asteroid/silver/spin-33.png
%%DATADIR%%/images/asteroid/silver/spin-34.png
%%DATADIR%%/images/asteroid/silver/spin-35.png
%%DATADIR%%/images/asteroid/silver/spin-36.png
%%DATADIR%%/images/asteroid/silver/spin-37.png
%%DATADIR%%/images/asteroid/silver/spin-38.png
%%DATADIR%%/images/asteroid/silver/spin-39.png
%%DATADIR%%/images/asteroid/silver/spin-40.png
%%DATADIR%%/images/asteroid/silver/spin-41.png
%%DATADIR%%/images/asteroid/small metal/spin-00.png
%%DATADIR%%/images/asteroid/small metal/spin-01.png
%%DATADIR%%/images/asteroid/small metal/spin-02.png
%%DATADIR%%/images/asteroid/small metal/spin-03.png
%%DATADIR%%/images/asteroid/small metal/spin-04.png
%%DATADIR%%/images/asteroid/small metal/spin-05.png
%%DATADIR%%/images/asteroid/small metal/spin-06.png
%%DATADIR%%/images/asteroid/small metal/spin-07.png
%%DATADIR%%/images/asteroid/small metal/spin-08.png
%%DATADIR%%/images/asteroid/small metal/spin-09.png
%%DATADIR%%/images/asteroid/small metal/spin-10.png
%%DATADIR%%/images/asteroid/small metal/spin-11.png
%%DATADIR%%/images/asteroid/small metal/spin-12.png
%%DATADIR%%/images/asteroid/small metal/spin-13.png
%%DATADIR%%/images/asteroid/small metal/spin-14.png
%%DATADIR%%/images/asteroid/small metal/spin-15.png
%%DATADIR%%/images/asteroid/small metal/spin-16.png
%%DATADIR%%/images/asteroid/small metal/spin-17.png
%%DATADIR%%/images/asteroid/small metal/spin-18.png
%%DATADIR%%/images/asteroid/small metal/spin-19.png
%%DATADIR%%/images/asteroid/small metal/spin-20.png
%%DATADIR%%/images/asteroid/small metal/spin-21.png
%%DATADIR%%/images/asteroid/small metal/spin-22.png
%%DATADIR%%/images/asteroid/small metal/spin-23.png
%%DATADIR%%/images/asteroid/small metal/spin-24.png
%%DATADIR%%/images/asteroid/small metal/spin-25.png
%%DATADIR%%/images/asteroid/small metal/spin-26.png
%%DATADIR%%/images/asteroid/small metal/spin-27.png
%%DATADIR%%/images/asteroid/small metal/spin-28.png
%%DATADIR%%/images/asteroid/small metal/spin-29.png
%%DATADIR%%/images/asteroid/small metal/spin-30.png
%%DATADIR%%/images/asteroid/small metal/spin-31.png
%%DATADIR%%/images/asteroid/small metal/spin-32.png
%%DATADIR%%/images/asteroid/small metal/spin-33.png
%%DATADIR%%/images/asteroid/small metal/spin-34.png
%%DATADIR%%/images/asteroid/small metal/spin-35.png
%%DATADIR%%/images/asteroid/small metal/spin-36.png
%%DATADIR%%/images/asteroid/small metal/spin-37.png
%%DATADIR%%/images/asteroid/small metal/spin-38.png
%%DATADIR%%/images/asteroid/small metal/spin-39.png
%%DATADIR%%/images/asteroid/small metal/spin-40.png
%%DATADIR%%/images/asteroid/small metal/spin-41.png
%%DATADIR%%/images/asteroid/small rock/spin-00.png
%%DATADIR%%/images/asteroid/small rock/spin-01.png
%%DATADIR%%/images/asteroid/small rock/spin-02.png
%%DATADIR%%/images/asteroid/small rock/spin-03.png
%%DATADIR%%/images/asteroid/small rock/spin-04.png
%%DATADIR%%/images/asteroid/small rock/spin-05.png
%%DATADIR%%/images/asteroid/small rock/spin-06.png
%%DATADIR%%/images/asteroid/small rock/spin-07.png
%%DATADIR%%/images/asteroid/small rock/spin-08.png
%%DATADIR%%/images/asteroid/small rock/spin-09.png
%%DATADIR%%/images/asteroid/small rock/spin-10.png
%%DATADIR%%/images/asteroid/small rock/spin-11.png
%%DATADIR%%/images/asteroid/small rock/spin-12.png
%%DATADIR%%/images/asteroid/small rock/spin-13.png
%%DATADIR%%/images/asteroid/small rock/spin-14.png
%%DATADIR%%/images/asteroid/small rock/spin-15.png
%%DATADIR%%/images/asteroid/small rock/spin-16.png
%%DATADIR%%/images/asteroid/small rock/spin-17.png
%%DATADIR%%/images/asteroid/small rock/spin-18.png
%%DATADIR%%/images/asteroid/small rock/spin-19.png
%%DATADIR%%/images/asteroid/small rock/spin-20.png
%%DATADIR%%/images/asteroid/small rock/spin-21.png
%%DATADIR%%/images/asteroid/small rock/spin-22.png
%%DATADIR%%/images/asteroid/small rock/spin-23.png
%%DATADIR%%/images/asteroid/small rock/spin-24.png
%%DATADIR%%/images/asteroid/small rock/spin-25.png
%%DATADIR%%/images/asteroid/small rock/spin-26.png
%%DATADIR%%/images/asteroid/small rock/spin-27.png
%%DATADIR%%/images/asteroid/small rock/spin-28.png
%%DATADIR%%/images/asteroid/small rock/spin-29.png
%%DATADIR%%/images/asteroid/small rock/spin-30.png
%%DATADIR%%/images/asteroid/small rock/spin-31.png
%%DATADIR%%/images/asteroid/small rock/spin-32.png
%%DATADIR%%/images/asteroid/small rock/spin-33.png
%%DATADIR%%/images/asteroid/small rock/spin-34.png
%%DATADIR%%/images/asteroid/small rock/spin-35.png
%%DATADIR%%/images/asteroid/small rock/spin-36.png
%%DATADIR%%/images/asteroid/small rock/spin-37.png
%%DATADIR%%/images/asteroid/small rock/spin-38.png
%%DATADIR%%/images/asteroid/small rock/spin-39.png
%%DATADIR%%/images/asteroid/small rock/spin-40.png
%%DATADIR%%/images/asteroid/small rock/spin-41.png
%%DATADIR%%/images/asteroid/small rock/spin-42.png
%%DATADIR%%/images/asteroid/small rock/spin-43.png
%%DATADIR%%/images/asteroid/small rock/spin-44.png
%%DATADIR%%/images/asteroid/small rock/spin-45.png
%%DATADIR%%/images/asteroid/small rock/spin-46.png
%%DATADIR%%/images/asteroid/small rock/spin-47.png
%%DATADIR%%/images/asteroid/small rock/spin-48.png
%%DATADIR%%/images/asteroid/small rock/spin-49.png
%%DATADIR%%/images/asteroid/small rock/spin-50.png
%%DATADIR%%/images/asteroid/space flora/space flora^00.png
%%DATADIR%%/images/asteroid/space flora/space flora^01.png
%%DATADIR%%/images/asteroid/space flora/space flora^02.png
%%DATADIR%%/images/asteroid/space flora/space flora^03.png
%%DATADIR%%/images/asteroid/space flora/space flora^04.png
%%DATADIR%%/images/asteroid/space flora/space flora^05.png
%%DATADIR%%/images/asteroid/space flora/space flora^06.png
%%DATADIR%%/images/asteroid/space flora/space flora^07.png
%%DATADIR%%/images/asteroid/space flora/space flora^08.png
%%DATADIR%%/images/asteroid/space flora/space flora^09.png
%%DATADIR%%/images/asteroid/space flora/space flora^10.png
%%DATADIR%%/images/asteroid/space flora/space flora^11.png
%%DATADIR%%/images/asteroid/space flora/space flora^12.png
%%DATADIR%%/images/asteroid/space flora/space flora^13.png
%%DATADIR%%/images/asteroid/space flora/space flora^14.png
%%DATADIR%%/images/asteroid/space flora/space flora^15.png
%%DATADIR%%/images/asteroid/space flora/space flora^16.png
%%DATADIR%%/images/asteroid/space flora/space flora^17.png
%%DATADIR%%/images/asteroid/space flora/space flora^18.png
%%DATADIR%%/images/asteroid/space flora/space flora^19.png
%%DATADIR%%/images/asteroid/space flora/space flora^20.png
%%DATADIR%%/images/asteroid/space flora/space flora^21.png
%%DATADIR%%/images/asteroid/space flora/space flora^22.png
%%DATADIR%%/images/asteroid/space flora/space flora^23.png
%%DATADIR%%/images/asteroid/space flora/space flora^24.png
%%DATADIR%%/images/asteroid/space flora/space flora^25.png
%%DATADIR%%/images/asteroid/space flora/space flora^26.png
%%DATADIR%%/images/asteroid/space flora/space flora^27.png
%%DATADIR%%/images/asteroid/space flora/space flora^28.png
%%DATADIR%%/images/asteroid/space flora/space flora^29.png
%%DATADIR%%/images/asteroid/space flora/space flora^30.png
%%DATADIR%%/images/asteroid/space flora/space flora^31.png
%%DATADIR%%/images/asteroid/space flora/space flora^32.png
%%DATADIR%%/images/asteroid/space flora/space flora^33.png
%%DATADIR%%/images/asteroid/space flora/space flora^34.png
%%DATADIR%%/images/asteroid/space flora/space flora^35.png
%%DATADIR%%/images/asteroid/space flora/space flora^36.png
%%DATADIR%%/images/asteroid/space flora/space flora^37.png
%%DATADIR%%/images/asteroid/space flora/space flora^38.png
%%DATADIR%%/images/asteroid/space flora/space flora^39.png
%%DATADIR%%/images/asteroid/space flora/space flora^40.png
%%DATADIR%%/images/asteroid/space flora/space flora^41.png
%%DATADIR%%/images/asteroid/space flora/space flora^42.png
%%DATADIR%%/images/asteroid/space flora/space flora^43.png
%%DATADIR%%/images/asteroid/space flora/space flora^44.png
%%DATADIR%%/images/asteroid/space flora/space flora^45.png
%%DATADIR%%/images/asteroid/space flora/space flora^46.png
%%DATADIR%%/images/asteroid/space flora/space flora^47.png
%%DATADIR%%/images/asteroid/space flora/space flora^48.png
%%DATADIR%%/images/asteroid/space flora/space flora^49.png
%%DATADIR%%/images/asteroid/space flora/space flora^50.png
%%DATADIR%%/images/asteroid/space flora/space flora^51.png
%%DATADIR%%/images/asteroid/space flora/space flora^52.png
%%DATADIR%%/images/asteroid/space flora/space flora^53.png
%%DATADIR%%/images/asteroid/space flora/space flora^54.png
%%DATADIR%%/images/asteroid/space flora/space flora^55.png
%%DATADIR%%/images/asteroid/space flora/space flora^56.png
%%DATADIR%%/images/asteroid/titanium/spin-00.png
%%DATADIR%%/images/asteroid/titanium/spin-01.png
%%DATADIR%%/images/asteroid/titanium/spin-02.png
%%DATADIR%%/images/asteroid/titanium/spin-03.png
%%DATADIR%%/images/asteroid/titanium/spin-04.png
%%DATADIR%%/images/asteroid/titanium/spin-05.png
%%DATADIR%%/images/asteroid/titanium/spin-06.png
%%DATADIR%%/images/asteroid/titanium/spin-07.png
%%DATADIR%%/images/asteroid/titanium/spin-08.png
%%DATADIR%%/images/asteroid/titanium/spin-09.png
%%DATADIR%%/images/asteroid/titanium/spin-10.png
%%DATADIR%%/images/asteroid/titanium/spin-11.png
%%DATADIR%%/images/asteroid/titanium/spin-12.png
%%DATADIR%%/images/asteroid/titanium/spin-13.png
%%DATADIR%%/images/asteroid/titanium/spin-14.png
%%DATADIR%%/images/asteroid/titanium/spin-15.png
%%DATADIR%%/images/asteroid/titanium/spin-16.png
%%DATADIR%%/images/asteroid/titanium/spin-17.png
%%DATADIR%%/images/asteroid/titanium/spin-18.png
%%DATADIR%%/images/asteroid/titanium/spin-19.png
%%DATADIR%%/images/asteroid/titanium/spin-20.png
%%DATADIR%%/images/asteroid/titanium/spin-21.png
%%DATADIR%%/images/asteroid/titanium/spin-22.png
%%DATADIR%%/images/asteroid/titanium/spin-23.png
%%DATADIR%%/images/asteroid/titanium/spin-24.png
%%DATADIR%%/images/asteroid/titanium/spin-25.png
%%DATADIR%%/images/asteroid/titanium/spin-26.png
%%DATADIR%%/images/asteroid/titanium/spin-27.png
%%DATADIR%%/images/asteroid/titanium/spin-28.png
%%DATADIR%%/images/asteroid/titanium/spin-29.png
%%DATADIR%%/images/asteroid/titanium/spin-30.png
%%DATADIR%%/images/asteroid/titanium/spin-31.png
%%DATADIR%%/images/asteroid/titanium/spin-32.png
%%DATADIR%%/images/asteroid/titanium/spin-33.png
%%DATADIR%%/images/asteroid/titanium/spin-34.png
%%DATADIR%%/images/asteroid/titanium/spin-35.png
%%DATADIR%%/images/asteroid/titanium/spin-36.png
%%DATADIR%%/images/asteroid/titanium/spin-37.png
%%DATADIR%%/images/asteroid/titanium/spin-38.png
%%DATADIR%%/images/asteroid/titanium/spin-39.png
%%DATADIR%%/images/asteroid/titanium/spin-40.png
%%DATADIR%%/images/asteroid/titanium/spin-41.png
%%DATADIR%%/images/asteroid/titanium/spin-42.png
%%DATADIR%%/images/asteroid/titanium/spin-43.png
%%DATADIR%%/images/asteroid/titanium/spin-44.png
%%DATADIR%%/images/asteroid/titanium/spin-45.png
%%DATADIR%%/images/asteroid/titanium/spin-46.png
%%DATADIR%%/images/asteroid/titanium/spin-47.png
%%DATADIR%%/images/asteroid/titanium/spin-48.png
%%DATADIR%%/images/asteroid/titanium/spin-49.png
%%DATADIR%%/images/asteroid/titanium/spin-50.png
%%DATADIR%%/images/asteroid/titanium/spin-51.png
%%DATADIR%%/images/asteroid/titanium/spin-52.png
%%DATADIR%%/images/asteroid/titanium/spin-53.png
%%DATADIR%%/images/asteroid/titanium/spin-54.png
%%DATADIR%%/images/asteroid/titanium/spin-55.png
%%DATADIR%%/images/asteroid/titanium/spin-56.png
%%DATADIR%%/images/asteroid/water droplet/droplet^0.png
%%DATADIR%%/images/asteroid/water droplet/droplet^01.png
%%DATADIR%%/images/asteroid/water droplet/droplet^02.png
%%DATADIR%%/images/asteroid/water droplet/droplet^03.png
%%DATADIR%%/images/asteroid/water droplet/droplet^04.png
%%DATADIR%%/images/asteroid/water droplet/droplet^05.png
%%DATADIR%%/images/asteroid/water droplet/droplet^06.png
%%DATADIR%%/images/asteroid/water droplet/droplet^07.png
%%DATADIR%%/images/asteroid/water droplet/droplet^08.png
%%DATADIR%%/images/asteroid/water droplet/droplet^09.png
%%DATADIR%%/images/asteroid/water droplet/droplet^10.png
%%DATADIR%%/images/asteroid/water droplet/droplet^11.png
%%DATADIR%%/images/asteroid/water droplet/droplet^12.png
%%DATADIR%%/images/asteroid/water droplet/droplet^13.png
%%DATADIR%%/images/asteroid/water droplet/droplet^14.png
%%DATADIR%%/images/asteroid/water droplet/droplet^15.png
%%DATADIR%%/images/asteroid/water droplet/droplet^16.png
%%DATADIR%%/images/asteroid/water droplet/droplet^17.png
%%DATADIR%%/images/asteroid/water droplet/droplet^18.png
%%DATADIR%%/images/asteroid/water droplet/droplet^19.png
%%DATADIR%%/images/asteroid/water droplet/droplet^20.png
%%DATADIR%%/images/asteroid/water droplet/droplet^21.png
%%DATADIR%%/images/asteroid/water droplet/droplet^22.png
%%DATADIR%%/images/asteroid/water droplet/droplet^23.png
%%DATADIR%%/images/asteroid/water droplet/droplet^24.png
%%DATADIR%%/images/asteroid/water droplet/droplet^25.png
%%DATADIR%%/images/asteroid/water droplet/droplet^26.png
%%DATADIR%%/images/asteroid/water droplet/droplet^27.png
%%DATADIR%%/images/asteroid/water droplet/droplet^28.png
%%DATADIR%%/images/asteroid/water droplet/droplet^29.png
%%DATADIR%%/images/asteroid/water droplet/droplet^30.png
%%DATADIR%%/images/asteroid/yottrite/spin-00.png
%%DATADIR%%/images/asteroid/yottrite/spin-01.png
%%DATADIR%%/images/asteroid/yottrite/spin-02.png
%%DATADIR%%/images/asteroid/yottrite/spin-03.png
%%DATADIR%%/images/asteroid/yottrite/spin-04.png
%%DATADIR%%/images/asteroid/yottrite/spin-05.png
%%DATADIR%%/images/asteroid/yottrite/spin-06.png
%%DATADIR%%/images/asteroid/yottrite/spin-07.png
%%DATADIR%%/images/asteroid/yottrite/spin-08.png
%%DATADIR%%/images/asteroid/yottrite/spin-09.png
%%DATADIR%%/images/asteroid/yottrite/spin-10.png
%%DATADIR%%/images/asteroid/yottrite/spin-11.png
%%DATADIR%%/images/asteroid/yottrite/spin-12.png
%%DATADIR%%/images/asteroid/yottrite/spin-13.png
%%DATADIR%%/images/asteroid/yottrite/spin-14.png
%%DATADIR%%/images/asteroid/yottrite/spin-15.png
%%DATADIR%%/images/asteroid/yottrite/spin-16.png
%%DATADIR%%/images/asteroid/yottrite/spin-17.png
%%DATADIR%%/images/asteroid/yottrite/spin-18.png
%%DATADIR%%/images/asteroid/yottrite/spin-19.png
%%DATADIR%%/images/asteroid/yottrite/spin-20.png
%%DATADIR%%/images/asteroid/yottrite/spin-21.png
%%DATADIR%%/images/asteroid/yottrite/spin-22.png
%%DATADIR%%/images/asteroid/yottrite/spin-23.png
%%DATADIR%%/images/asteroid/yottrite/spin-24.png
%%DATADIR%%/images/asteroid/yottrite/spin-25.png
%%DATADIR%%/images/asteroid/yottrite/spin-26.png
%%DATADIR%%/images/asteroid/yottrite/spin-27.png
%%DATADIR%%/images/asteroid/yottrite/spin-28.png
%%DATADIR%%/images/asteroid/yottrite/spin-29.png
%%DATADIR%%/images/asteroid/yottrite/spin-30.png
%%DATADIR%%/images/asteroid/yottrite/spin-31.png
%%DATADIR%%/images/asteroid/yottrite/spin-32.png
%%DATADIR%%/images/asteroid/yottrite/spin-33.png
%%DATADIR%%/images/asteroid/yottrite/spin-34.png
%%DATADIR%%/images/asteroid/yottrite/spin-35.png
%%DATADIR%%/images/asteroid/yottrite/spin-36.png
%%DATADIR%%/images/asteroid/yottrite/spin-37.png
%%DATADIR%%/images/asteroid/yottrite/spin-38.png
%%DATADIR%%/images/asteroid/yottrite/spin-39.png
%%DATADIR%%/images/asteroid/yottrite/spin-40.png
%%DATADIR%%/images/asteroid/yottrite/spin-41.png
%%DATADIR%%/images/asteroid/yottrite/spin-42.png
%%DATADIR%%/images/asteroid/yottrite/spin-43.png
%%DATADIR%%/images/asteroid/yottrite/spin-44.png
%%DATADIR%%/images/asteroid/yottrite/spin-45.png
%%DATADIR%%/images/asteroid/yottrite/spin-46.png
%%DATADIR%%/images/asteroid/yottrite/spin-47.png
%%DATADIR%%/images/asteroid/yottrite/spin-48.png
%%DATADIR%%/images/asteroid/yottrite/spin-49.png
%%DATADIR%%/images/asteroid/yottrite/spin-50.png
%%DATADIR%%/images/asteroid/yottrite/spin-51.png
%%DATADIR%%/images/asteroid/yottrite/spin-52.png
%%DATADIR%%/images/asteroid/yottrite/spin-53.png
%%DATADIR%%/images/asteroid/yottrite/spin-54.png
%%DATADIR%%/images/asteroid/yottrite/spin-55.png
%%DATADIR%%/images/asteroid/yottrite/spin-56.png
%%DATADIR%%/images/effect/acuit hit^0.png
%%DATADIR%%/images/effect/acuit hit^1.png
%%DATADIR%%/images/effect/acuit hit^2.png
%%DATADIR%%/images/effect/acuit hit^3.png
%%DATADIR%%/images/effect/acuit hit^4.png
%%DATADIR%%/images/effect/afterburner+0.png
%%DATADIR%%/images/effect/afterburner+1.png
%%DATADIR%%/images/effect/afterburner+2.png
%%DATADIR%%/images/effect/afterburner+3.png
%%DATADIR%%/images/effect/afterburner+4.png
%%DATADIR%%/images/effect/anti-missile 3 die+0.png
%%DATADIR%%/images/effect/anti-missile 3 die+1.png
%%DATADIR%%/images/effect/anti-missile 3 die+2.png
%%DATADIR%%/images/effect/anti-missile 3 die+3.png
%%DATADIR%%/images/effect/anti-missile 3 die+4.png
%%DATADIR%%/images/effect/anti-missile 3 die+5.png
%%DATADIR%%/images/effect/anti-missile 3 fire+0.png
%%DATADIR%%/images/effect/anti-missile 3 fire+1.png
%%DATADIR%%/images/effect/antimatter spark+0.png
%%DATADIR%%/images/effect/antimatter spark+1.png
%%DATADIR%%/images/effect/antimatter spark+2.png
%%DATADIR%%/images/effect/archon teleport/archonateleport-0.png
%%DATADIR%%/images/effect/archon teleport/archonateleport-1.png
%%DATADIR%%/images/effect/archon teleport/archonateleport-10.png
%%DATADIR%%/images/effect/archon teleport/archonateleport-11.png
%%DATADIR%%/images/effect/archon teleport/archonateleport-12.png
%%DATADIR%%/images/effect/archon teleport/archonateleport-13.png
%%DATADIR%%/images/effect/archon teleport/archonateleport-14.png
%%DATADIR%%/images/effect/archon teleport/archonateleport-15.png
%%DATADIR%%/images/effect/archon teleport/archonateleport-16.png
%%DATADIR%%/images/effect/archon teleport/archonateleport-17.png
%%DATADIR%%/images/effect/archon teleport/archonateleport-18.png
%%DATADIR%%/images/effect/archon teleport/archonateleport-19.png
%%DATADIR%%/images/effect/archon teleport/archonateleport-2.png
%%DATADIR%%/images/effect/archon teleport/archonateleport-20.png
%%DATADIR%%/images/effect/archon teleport/archonateleport-3.png
%%DATADIR%%/images/effect/archon teleport/archonateleport-4.png
%%DATADIR%%/images/effect/archon teleport/archonateleport-5.png
%%DATADIR%%/images/effect/archon teleport/archonateleport-6.png
%%DATADIR%%/images/effect/archon teleport/archonateleport-7.png
%%DATADIR%%/images/effect/archon teleport/archonateleport-8.png
%%DATADIR%%/images/effect/archon teleport/archonateleport-9.png
%%DATADIR%%/images/effect/archon teleport/archonbteleport-0.png
%%DATADIR%%/images/effect/archon teleport/archonbteleport-1.png
%%DATADIR%%/images/effect/archon teleport/archonbteleport-10.png
%%DATADIR%%/images/effect/archon teleport/archonbteleport-11.png
%%DATADIR%%/images/effect/archon teleport/archonbteleport-12.png
%%DATADIR%%/images/effect/archon teleport/archonbteleport-13.png
%%DATADIR%%/images/effect/archon teleport/archonbteleport-14.png
%%DATADIR%%/images/effect/archon teleport/archonbteleport-15.png
%%DATADIR%%/images/effect/archon teleport/archonbteleport-16.png
%%DATADIR%%/images/effect/archon teleport/archonbteleport-17.png
%%DATADIR%%/images/effect/archon teleport/archonbteleport-18.png
%%DATADIR%%/images/effect/archon teleport/archonbteleport-19.png
%%DATADIR%%/images/effect/archon teleport/archonbteleport-2.png
%%DATADIR%%/images/effect/archon teleport/archonbteleport-20.png
%%DATADIR%%/images/effect/archon teleport/archonbteleport-3.png
%%DATADIR%%/images/effect/archon teleport/archonbteleport-4.png
%%DATADIR%%/images/effect/archon teleport/archonbteleport-5.png
%%DATADIR%%/images/effect/archon teleport/archonbteleport-6.png
%%DATADIR%%/images/effect/archon teleport/archonbteleport-7.png
%%DATADIR%%/images/effect/archon teleport/archonbteleport-8.png
%%DATADIR%%/images/effect/archon teleport/archonbteleport-9.png
%%DATADIR%%/images/effect/archon teleport/archoncteleport-0.png
%%DATADIR%%/images/effect/archon teleport/archoncteleport-1.png
%%DATADIR%%/images/effect/archon teleport/archoncteleport-10.png
%%DATADIR%%/images/effect/archon teleport/archoncteleport-11.png
%%DATADIR%%/images/effect/archon teleport/archoncteleport-12.png
%%DATADIR%%/images/effect/archon teleport/archoncteleport-13.png
%%DATADIR%%/images/effect/archon teleport/archoncteleport-14.png
%%DATADIR%%/images/effect/archon teleport/archoncteleport-15.png
%%DATADIR%%/images/effect/archon teleport/archoncteleport-16.png
%%DATADIR%%/images/effect/archon teleport/archoncteleport-17.png
%%DATADIR%%/images/effect/archon teleport/archoncteleport-18.png
%%DATADIR%%/images/effect/archon teleport/archoncteleport-19.png
%%DATADIR%%/images/effect/archon teleport/archoncteleport-2.png
%%DATADIR%%/images/effect/archon teleport/archoncteleport-20.png
%%DATADIR%%/images/effect/archon teleport/archoncteleport-3.png
%%DATADIR%%/images/effect/archon teleport/archoncteleport-4.png
%%DATADIR%%/images/effect/archon teleport/archoncteleport-5.png
%%DATADIR%%/images/effect/archon teleport/archoncteleport-6.png
%%DATADIR%%/images/effect/archon teleport/archoncteleport-7.png
%%DATADIR%%/images/effect/archon teleport/archoncteleport-8.png
%%DATADIR%%/images/effect/archon teleport/archoncteleport-9.png
%%DATADIR%%/images/effect/ast hit^0.png
%%DATADIR%%/images/effect/ast hit^1.png
%%DATADIR%%/images/effect/ast hit^2.png
%%DATADIR%%/images/effect/ast hit^3.png
%%DATADIR%%/images/effect/ast hit^4.png
%%DATADIR%%/images/effect/asteroid adult 2 flare+0.png
%%DATADIR%%/images/effect/asteroid adult 2 flare+1.png
%%DATADIR%%/images/effect/asteroid adult 3 flare+0.png
%%DATADIR%%/images/effect/asteroid adult 3 flare+1.png
%%DATADIR%%/images/effect/asteroid adult 4 flare+0.png
%%DATADIR%%/images/effect/asteroid adult 4 flare+1.png
%%DATADIR%%/images/effect/asteroid adult 5 flare+0.png
%%DATADIR%%/images/effect/asteroid adult 5 flare+1.png
%%DATADIR%%/images/effect/asteroid adult flare+0.png
%%DATADIR%%/images/effect/asteroid adult flare+1.png
%%DATADIR%%/images/effect/asteroid am circle defense+0.png
%%DATADIR%%/images/effect/asteroid am circle defense+1.png
%%DATADIR%%/images/effect/asteroid am fire+0.png
%%DATADIR%%/images/effect/asteroid am fire+1.png
%%DATADIR%%/images/effect/asteroid am fire+2.png
%%DATADIR%%/images/effect/asteroid am fire+3.png
%%DATADIR%%/images/effect/asteroid am fire+4.png
%%DATADIR%%/images/effect/asteroid circle trail+0.png
%%DATADIR%%/images/effect/asteroid circle trail+1.png
%%DATADIR%%/images/effect/asteroid circle trail+2.png
%%DATADIR%%/images/effect/asteroid circle trail+3.png
%%DATADIR%%/images/effect/asteroid circle trail+4.png
%%DATADIR%%/images/effect/asteroid glow+0.png
%%DATADIR%%/images/effect/asteroid glow+1.png
%%DATADIR%%/images/effect/asteroid glow+2.png
%%DATADIR%%/images/effect/asteroid glow+3.png
%%DATADIR%%/images/effect/asteroid glow+4.png
%%DATADIR%%/images/effect/asteroid laser+.png
%%DATADIR%%/images/effect/asteroid medium flare+0.png
%%DATADIR%%/images/effect/asteroid medium flare+1.png
%%DATADIR%%/images/effect/asteroid projectile print+0.png
%%DATADIR%%/images/effect/asteroid projectile print+1.png
%%DATADIR%%/images/effect/asteroid projectile print+2.png
%%DATADIR%%/images/effect/asteroid projectile static+0.png
%%DATADIR%%/images/effect/asteroid projectile static+1.png
%%DATADIR%%/images/effect/asteroid projectile static+2.png
%%DATADIR%%/images/effect/asteroid young 2 flare+0.png
%%DATADIR%%/images/effect/asteroid young 2 flare+1.png
%%DATADIR%%/images/effect/asteroid young 3 flare+0.png
%%DATADIR%%/images/effect/asteroid young 3 flare+1.png
%%DATADIR%%/images/effect/asteroid young 4 flare+0.png
%%DATADIR%%/images/effect/asteroid young 4 flare+1.png
%%DATADIR%%/images/effect/asteroid young flare+0.png
%%DATADIR%%/images/effect/asteroid young flare+1.png
%%DATADIR%%/images/effect/atomic flare/huge+0.png
%%DATADIR%%/images/effect/atomic flare/huge+1.png
%%DATADIR%%/images/effect/atomic flare/huge+2.png
%%DATADIR%%/images/effect/atomic flare/huge+3.png
%%DATADIR%%/images/effect/atomic flare/large+0.png
%%DATADIR%%/images/effect/atomic flare/large+1.png
%%DATADIR%%/images/effect/atomic flare/large+2.png
%%DATADIR%%/images/effect/atomic flare/large+3.png
%%DATADIR%%/images/effect/atomic flare/medium+0.png
%%DATADIR%%/images/effect/atomic flare/medium+1.png
%%DATADIR%%/images/effect/atomic flare/medium+2.png
%%DATADIR%%/images/effect/atomic flare/medium+3.png
%%DATADIR%%/images/effect/atomic flare/small+0.png
%%DATADIR%%/images/effect/atomic flare/small+1.png
%%DATADIR%%/images/effect/atomic flare/small+2.png
%%DATADIR%%/images/effect/atomic flare/small+3.png
%%DATADIR%%/images/effect/atomic flare/tiny+0.png
%%DATADIR%%/images/effect/atomic flare/tiny+1.png
%%DATADIR%%/images/effect/atomic flare/tiny+2.png
%%DATADIR%%/images/effect/atomic flare/tiny+3.png
%%DATADIR%%/images/effect/attractor impact+0.png
%%DATADIR%%/images/effect/attractor impact+1.png
%%DATADIR%%/images/effect/attractor impact+2.png
%%DATADIR%%/images/effect/attractor impact+3.png
%%DATADIR%%/images/effect/attractor impact+4.png
%%DATADIR%%/images/effect/avgi flare/antimatter+0.png
%%DATADIR%%/images/effect/avgi flare/antimatter+01.png
%%DATADIR%%/images/effect/avgi flare/antimatter+02.png
%%DATADIR%%/images/effect/avgi flare/antimatter+03.png
%%DATADIR%%/images/effect/avgi flare/antimatter+04.png
%%DATADIR%%/images/effect/avgi flare/antimatter+05.png
%%DATADIR%%/images/effect/avgi flare/antimatter+06.png
%%DATADIR%%/images/effect/avgi flare/antimatter+07.png
%%DATADIR%%/images/effect/avgi flare/antimatter+08.png
%%DATADIR%%/images/effect/avgi flare/antimatter+09.png
%%DATADIR%%/images/effect/avgi flare/antimatter+10.png
%%DATADIR%%/images/effect/avgi flare/antimatter+11.png
%%DATADIR%%/images/effect/avgi flare/antimatter+12.png
%%DATADIR%%/images/effect/avgi flare/antimatter+13.png
%%DATADIR%%/images/effect/avgi flare/antimatter+14.png
%%DATADIR%%/images/effect/avgi flare/antimatter+15.png
%%DATADIR%%/images/effect/avgi flare/fusion+0.png
%%DATADIR%%/images/effect/avgi flare/fusion+01.png
%%DATADIR%%/images/effect/avgi flare/fusion+02.png
%%DATADIR%%/images/effect/avgi flare/fusion+03.png
%%DATADIR%%/images/effect/avgi flare/fusion+04.png
%%DATADIR%%/images/effect/avgi flare/fusion+05.png
%%DATADIR%%/images/effect/avgi flare/fusion+06.png
%%DATADIR%%/images/effect/avgi flare/fusion+07.png
%%DATADIR%%/images/effect/avgi flare/fusion+08.png
%%DATADIR%%/images/effect/avgi flare/fusion+09.png
%%DATADIR%%/images/effect/avgi flare/fusion+10.png
%%DATADIR%%/images/effect/avgi flare/fusion+11.png
%%DATADIR%%/images/effect/avgi flare/fusion+12.png
%%DATADIR%%/images/effect/avgi flare/fusion+13.png
%%DATADIR%%/images/effect/avgi flare/fusion+14.png
%%DATADIR%%/images/effect/avgi flare/fusion+15.png
%%DATADIR%%/images/effect/avgi flare/ntr+0.png
%%DATADIR%%/images/effect/avgi flare/ntr+01.png
%%DATADIR%%/images/effect/avgi flare/ntr+02.png
%%DATADIR%%/images/effect/avgi flare/ntr+03.png
%%DATADIR%%/images/effect/avgi flare/ntr+04.png
%%DATADIR%%/images/effect/avgi flare/ntr+05.png
%%DATADIR%%/images/effect/avgi flare/ntr+06.png
%%DATADIR%%/images/effect/avgi flare/ntr+07.png
%%DATADIR%%/images/effect/avgi flare/ntr+08.png
%%DATADIR%%/images/effect/avgi flare/ntr+09.png
%%DATADIR%%/images/effect/avgi flare/ntr+10.png
%%DATADIR%%/images/effect/avgi flare/ntr+11.png
%%DATADIR%%/images/effect/avgi flare/ntr+12.png
%%DATADIR%%/images/effect/avgi flare/ntr+13.png
%%DATADIR%%/images/effect/avgi flare/ntr+14.png
%%DATADIR%%/images/effect/avgi flare/ntr+15.png
%%DATADIR%%/images/effect/avgi flare/rcs+0.png
%%DATADIR%%/images/effect/avgi flare/rcs+01.png
%%DATADIR%%/images/effect/avgi flare/rcs+02.png
%%DATADIR%%/images/effect/avgi flare/rcs+03.png
%%DATADIR%%/images/effect/avgi flare/rcs+04.png
%%DATADIR%%/images/effect/avgi flare/rcs+05.png
%%DATADIR%%/images/effect/avgi flare/rcs+06.png
%%DATADIR%%/images/effect/avgi flare/rcs+07.png
%%DATADIR%%/images/effect/avgi flare/rcs+08.png
%%DATADIR%%/images/effect/avgi flare/rcs+09.png
%%DATADIR%%/images/effect/avgi flare/rcs+10.png
%%DATADIR%%/images/effect/avgi flare/rcs+11.png
%%DATADIR%%/images/effect/avgi flare/rcs+12.png
%%DATADIR%%/images/effect/avgi flare/rcs+13.png
%%DATADIR%%/images/effect/avgi flare/rcs+14.png
%%DATADIR%%/images/effect/avgi flare/rcs+15.png
%%DATADIR%%/images/effect/avgi flare/remass+0.png
%%DATADIR%%/images/effect/avgi flare/remass+01.png
%%DATADIR%%/images/effect/avgi flare/remass+02.png
%%DATADIR%%/images/effect/avgi flare/remass+03.png
%%DATADIR%%/images/effect/avgi flare/remass+04.png
%%DATADIR%%/images/effect/avgi flare/remass+05.png
%%DATADIR%%/images/effect/avgi flare/remass+06.png
%%DATADIR%%/images/effect/avgi flare/remass+07.png
%%DATADIR%%/images/effect/avgi flare/remass+08.png
%%DATADIR%%/images/effect/avgi flare/remass+09.png
%%DATADIR%%/images/effect/avgi flare/remass+10.png
%%DATADIR%%/images/effect/avgi flare/remass+11.png
%%DATADIR%%/images/effect/avgi flare/remass+12.png
%%DATADIR%%/images/effect/avgi flare/remass+13.png
%%DATADIR%%/images/effect/avgi flare/remass+14.png
%%DATADIR%%/images/effect/avgi flare/remass+15.png
%%DATADIR%%/images/effect/balfire+0.png
%%DATADIR%%/images/effect/balfire+1.png
%%DATADIR%%/images/effect/balfire+2.png
%%DATADIR%%/images/effect/balfire+3.png
%%DATADIR%%/images/effect/balfire+4.png
%%DATADIR%%/images/effect/balfire+5.png
%%DATADIR%%/images/effect/balfire+6.png
%%DATADIR%%/images/effect/banisher impact+0.png
%%DATADIR%%/images/effect/banisher impact+1.png
%%DATADIR%%/images/effect/banisher impact+2.png
%%DATADIR%%/images/effect/banisher impact+3.png
%%DATADIR%%/images/effect/banisher impact+4.png
%%DATADIR%%/images/effect/bimodal impact+0.png
%%DATADIR%%/images/effect/bimodal impact+1.png
%%DATADIR%%/images/effect/bimodal impact+2.png
%%DATADIR%%/images/effect/bimodal impact+3.png
%%DATADIR%%/images/effect/bimodal switch impact^0.png
%%DATADIR%%/images/effect/bimodal switch impact^1.png
%%DATADIR%%/images/effect/bimodal switch impact^2.png
%%DATADIR%%/images/effect/bimodal switch impact^3.png
%%DATADIR%%/images/effect/bimodal switch impact^4.png
%%DATADIR%%/images/effect/blaster impact+0.png
%%DATADIR%%/images/effect/blaster impact+1.png
%%DATADIR%%/images/effect/blaster impact+2.png
%%DATADIR%%/images/effect/blaster impact+3.png
%%DATADIR%%/images/effect/blaze-pike hit+0.png
%%DATADIR%%/images/effect/blaze-pike hit+1.png
%%DATADIR%%/images/effect/blaze-pike hit+2.png
%%DATADIR%%/images/effect/blaze-pike hit+3.png
%%DATADIR%%/images/effect/blaze-pike hit+4.png
%%DATADIR%%/images/effect/blink-00.png
%%DATADIR%%/images/effect/blink-01.png
%%DATADIR%%/images/effect/blink-02.png
%%DATADIR%%/images/effect/blink-03.png
%%DATADIR%%/images/effect/blink-04.png
%%DATADIR%%/images/effect/blink-05.png
%%DATADIR%%/images/effect/blink-06.png
%%DATADIR%%/images/effect/blink-07.png
%%DATADIR%%/images/effect/blink-08.png
%%DATADIR%%/images/effect/blink-09.png
%%DATADIR%%/images/effect/blood-0.png
%%DATADIR%%/images/effect/blood-1.png
%%DATADIR%%/images/effect/blood-2.png
%%DATADIR%%/images/effect/blood-3.png
%%DATADIR%%/images/effect/blood-4.png
%%DATADIR%%/images/effect/blood-5.png
%%DATADIR%%/images/effect/blood-6.png
%%DATADIR%%/images/effect/blue optical laser glare+0.png
%%DATADIR%%/images/effect/blue optical laser glare+1.png
%%DATADIR%%/images/effect/blue optical laser glare+2.png
%%DATADIR%%/images/effect/bolide^0.png
%%DATADIR%%/images/effect/bolide^1.png
%%DATADIR%%/images/effect/bolide^2.png
%%DATADIR%%/images/effect/bolide^3.png
%%DATADIR%%/images/effect/bolide^4.png
%%DATADIR%%/images/effect/bolide^5.png
%%DATADIR%%/images/effect/bolide^6.png
%%DATADIR%%/images/effect/bombardment impact^0.png
%%DATADIR%%/images/effect/bombardment impact^1.png
%%DATADIR%%/images/effect/bombardment impact^2.png
%%DATADIR%%/images/effect/bombardment impact^3.png
%%DATADIR%%/images/effect/bombardment impact^4.png
%%DATADIR%%/images/effect/box-0.png
%%DATADIR%%/images/effect/box-1.png
%%DATADIR%%/images/effect/box-2.png
%%DATADIR%%/images/effect/box-3.png
%%DATADIR%%/images/effect/box-4.png
%%DATADIR%%/images/effect/box-5.png
%%DATADIR%%/images/effect/box-6.png
%%DATADIR%%/images/effect/box-7.png
%%DATADIR%%/images/effect/bullet impact-0.png
%%DATADIR%%/images/effect/bullet impact-1.png
%%DATADIR%%/images/effect/bullet impact-2.png
%%DATADIR%%/images/effect/bullet impact-3.png
%%DATADIR%%/images/effect/bullet impact-4.png
%%DATADIR%%/images/effect/bullet impact-5.png
%%DATADIR%%/images/effect/bullet impact-6.png
%%DATADIR%%/images/effect/bullet impact-7.png
%%DATADIR%%/images/effect/bunrodea flare/large+0.png
%%DATADIR%%/images/effect/bunrodea flare/large+1.png
%%DATADIR%%/images/effect/bunrodea flare/large+2.png
%%DATADIR%%/images/effect/burning spark-0.png
%%DATADIR%%/images/effect/burning spark-1.png
%%DATADIR%%/images/effect/burning spark-2.png
%%DATADIR%%/images/effect/burning spark-3.png
%%DATADIR%%/images/effect/burning spark-4.png
%%DATADIR%%/images/effect/burning spark-5.png
%%DATADIR%%/images/effect/burning spark-6.png
%%DATADIR%%/images/effect/burning spark-7.png
%%DATADIR%%/images/effect/burning spark-8.png
%%DATADIR%%/images/effect/burning spark-9.png
%%DATADIR%%/images/effect/buzzer am^0.png
%%DATADIR%%/images/effect/buzzer am^1.png
%%DATADIR%%/images/effect/chfire+0.png
%%DATADIR%%/images/effect/chfire+1.png
%%DATADIR%%/images/effect/chfire+2.png
%%DATADIR%%/images/effect/chfire+3.png
%%DATADIR%%/images/effect/chfire+4.png
%%DATADIR%%/images/effect/chfire+5.png
%%DATADIR%%/images/effect/coalition flare/large^0.png
%%DATADIR%%/images/effect/coalition flare/large^1.png
%%DATADIR%%/images/effect/coalition flare/large^2.png
%%DATADIR%%/images/effect/coalition flare/large^3.png
%%DATADIR%%/images/effect/coalition flare/large^4.png
%%DATADIR%%/images/effect/coalition flare/small^0.png
%%DATADIR%%/images/effect/coalition flare/small^1.png
%%DATADIR%%/images/effect/coalition flare/small^2.png
%%DATADIR%%/images/effect/coalition flare/small^3.png
%%DATADIR%%/images/effect/coalition flare/small^4.png
%%DATADIR%%/images/effect/composed+00.png
%%DATADIR%%/images/effect/composed+01.png
%%DATADIR%%/images/effect/composed+02.png
%%DATADIR%%/images/effect/composed+03.png
%%DATADIR%%/images/effect/composed+04.png
%%DATADIR%%/images/effect/composed+05.png
%%DATADIR%%/images/effect/composed+06.png
%%DATADIR%%/images/effect/composed+07.png
%%DATADIR%%/images/effect/composed+08.png
%%DATADIR%%/images/effect/composed+09.png
%%DATADIR%%/images/effect/composed+10.png
%%DATADIR%%/images/effect/composed+11.png
%%DATADIR%%/images/effect/composed+12.png
%%DATADIR%%/images/effect/corrosion spark-0.png
%%DATADIR%%/images/effect/corrosion spark-1.png
%%DATADIR%%/images/effect/corrosion spark-10.png
%%DATADIR%%/images/effect/corrosion spark-11.png
%%DATADIR%%/images/effect/corrosion spark-12.png
%%DATADIR%%/images/effect/corrosion spark-13.png
%%DATADIR%%/images/effect/corrosion spark-14.png
%%DATADIR%%/images/effect/corrosion spark-2.png
%%DATADIR%%/images/effect/corrosion spark-3.png
%%DATADIR%%/images/effect/corrosion spark-4.png
%%DATADIR%%/images/effect/corrosion spark-5.png
%%DATADIR%%/images/effect/corrosion spark-6.png
%%DATADIR%%/images/effect/corrosion spark-7.png
%%DATADIR%%/images/effect/corrosion spark-8.png
%%DATADIR%%/images/effect/corrosion spark-9.png
%%DATADIR%%/images/effect/detainer impact+0.png
%%DATADIR%%/images/effect/detainer impact+1.png
%%DATADIR%%/images/effect/detainer impact+2.png
%%DATADIR%%/images/effect/detainer impact+3.png
%%DATADIR%%/images/effect/detainer impact+4.png
%%DATADIR%%/images/effect/detainer impact+5.png
%%DATADIR%%/images/effect/detainer impact+6.png
%%DATADIR%%/images/effect/detainer impact+7.png
%%DATADIR%%/images/effect/detainer impact+8.png
%%DATADIR%%/images/effect/detainer sparks+0.png
%%DATADIR%%/images/effect/detainer sparks+1.png
%%DATADIR%%/images/effect/detainer sparks+2.png
%%DATADIR%%/images/effect/detainer sparks+3.png
%%DATADIR%%/images/effect/detainer sparks+4.png
%%DATADIR%%/images/effect/detainer sparks+5.png
%%DATADIR%%/images/effect/detainer sparks+6.png
%%DATADIR%%/images/effect/distancer+0.png
%%DATADIR%%/images/effect/distancer+1.png
%%DATADIR%%/images/effect/drag cannon impact^0.png
%%DATADIR%%/images/effect/drag cannon impact^1.png
%%DATADIR%%/images/effect/dragonflame+0.png
%%DATADIR%%/images/effect/dragonflame+1.png
%%DATADIR%%/images/effect/dragonflame+2.png
%%DATADIR%%/images/effect/dragonflame+3.png
%%DATADIR%%/images/effect/dragonflame+4.png
%%DATADIR%%/images/effect/drain+00.png
%%DATADIR%%/images/effect/drain+01.png
%%DATADIR%%/images/effect/drain+02.png
%%DATADIR%%/images/effect/drain+03.png
%%DATADIR%%/images/effect/drain+04.png
%%DATADIR%%/images/effect/drain+05.png
%%DATADIR%%/images/effect/drain+06.png
%%DATADIR%%/images/effect/drain+07.png
%%DATADIR%%/images/effect/drain+08.png
%%DATADIR%%/images/effect/drain+09.png
%%DATADIR%%/images/effect/drain+10.png
%%DATADIR%%/images/effect/drain+11.png
%%DATADIR%%/images/effect/drain+12.png
%%DATADIR%%/images/effect/drak bolt impact^0.png
%%DATADIR%%/images/effect/drak bolt impact^1.png
%%DATADIR%%/images/effect/drak bolt impact^2.png
%%DATADIR%%/images/effect/drak bolt impact^3.png
%%DATADIR%%/images/effect/drak bolt impact^4.png
%%DATADIR%%/images/effect/drak bolt impact^5.png
%%DATADIR%%/images/effect/drak bolt impact^6.png
%%DATADIR%%/images/effect/efreti flare/huge+0.png
%%DATADIR%%/images/effect/efreti flare/huge+1.png
%%DATADIR%%/images/effect/efreti flare/huge+2.png
%%DATADIR%%/images/effect/efreti flare/huge+3.png
%%DATADIR%%/images/effect/efreti flare/huge+4.png
%%DATADIR%%/images/effect/efreti flare/large+0.png
%%DATADIR%%/images/effect/efreti flare/large+1.png
%%DATADIR%%/images/effect/efreti flare/large+2.png
%%DATADIR%%/images/effect/efreti flare/large+3.png
%%DATADIR%%/images/effect/efreti flare/large+4.png
%%DATADIR%%/images/effect/efreti flare/medium+0.png
%%DATADIR%%/images/effect/efreti flare/medium+1.png
%%DATADIR%%/images/effect/efreti flare/medium+2.png
%%DATADIR%%/images/effect/efreti flare/medium+3.png
%%DATADIR%%/images/effect/efreti flare/medium+4.png
%%DATADIR%%/images/effect/efreti flare/small+0.png
%%DATADIR%%/images/effect/efreti flare/small+1.png
%%DATADIR%%/images/effect/efreti flare/small+2.png
%%DATADIR%%/images/effect/efreti flare/small+3.png
%%DATADIR%%/images/effect/efreti flare/small+4.png
%%DATADIR%%/images/effect/efreti flare/tiny+0.png
%%DATADIR%%/images/effect/efreti flare/tiny+1.png
%%DATADIR%%/images/effect/efreti flare/tiny+2.png
%%DATADIR%%/images/effect/efreti flare/tiny+3.png
%%DATADIR%%/images/effect/efreti flare/tiny+4.png
%%DATADIR%%/images/effect/electron impact+0.png
%%DATADIR%%/images/effect/electron impact+1.png
%%DATADIR%%/images/effect/electron impact+2.png
%%DATADIR%%/images/effect/ember tear/ember tear fire.png
%%DATADIR%%/images/effect/ember tear/ember tear impact.png
%%DATADIR%%/images/effect/ember tear/ember tear spark^0.png
%%DATADIR%%/images/effect/ember tear/ember tear spark^1.png
%%DATADIR%%/images/effect/ember tear/ember tear spark^2.png
%%DATADIR%%/images/effect/ember tear/ember tear spark^3.png
%%DATADIR%%/images/effect/ember tear/ember tear spark^4.png
%%DATADIR%%/images/effect/ember tear/ember tear spark^5.png
%%DATADIR%%/images/effect/ember tear/ember tear vortex^00.png
%%DATADIR%%/images/effect/ember tear/ember tear vortex^01.png
%%DATADIR%%/images/effect/ember tear/ember tear vortex^02.png
%%DATADIR%%/images/effect/ember tear/ember tear vortex^03.png
%%DATADIR%%/images/effect/ember tear/ember tear vortex^04.png
%%DATADIR%%/images/effect/ember tear/ember tear vortex^05.png
%%DATADIR%%/images/effect/ember tear/ember tear vortex^06.png
%%DATADIR%%/images/effect/ember tear/ember tear vortex^07.png
%%DATADIR%%/images/effect/ember tear/ember tear vortex^08.png
%%DATADIR%%/images/effect/ember tear/ember tear vortex^09.png
%%DATADIR%%/images/effect/ember tear/ember tear vortex^10.png
%%DATADIR%%/images/effect/ember tear/ember tear vortex^11.png
%%DATADIR%%/images/effect/ember tear/ember tear vortex^12.png
%%DATADIR%%/images/effect/ember tear/ember tear vortex^13.png
%%DATADIR%%/images/effect/emp ring+00.png
%%DATADIR%%/images/effect/emp ring+01.png
%%DATADIR%%/images/effect/emp ring+02.png
%%DATADIR%%/images/effect/emp ring+03.png
%%DATADIR%%/images/effect/emp ring+04.png
%%DATADIR%%/images/effect/emp ring+05.png
%%DATADIR%%/images/effect/emp ring+06.png
%%DATADIR%%/images/effect/emp ring+07.png
%%DATADIR%%/images/effect/emp ring+08.png
%%DATADIR%%/images/effect/emp ring+09.png
%%DATADIR%%/images/effect/emp ring+10.png
%%DATADIR%%/images/effect/emp ring+11.png
%%DATADIR%%/images/effect/emp ring+12.png
%%DATADIR%%/images/effect/emp spark+0.png
%%DATADIR%%/images/effect/emp spark+1.png
%%DATADIR%%/images/effect/emp spark+2.png
%%DATADIR%%/images/effect/emp spark+3.png
%%DATADIR%%/images/effect/emp spark+4.png
%%DATADIR%%/images/effect/emp spark+5.png
%%DATADIR%%/images/effect/emp spark+6.png
%%DATADIR%%/images/effect/emp torpedo fire+0.png
%%DATADIR%%/images/effect/emp torpedo fire+1.png
%%DATADIR%%/images/effect/emp torpedo fire+2.png
%%DATADIR%%/images/effect/emp torpedo fire+3.png
%%DATADIR%%/images/effect/emp torpedo fire+4.png
%%DATADIR%%/images/effect/emp torpedo fire+5.png
%%DATADIR%%/images/effect/explosion/huge^0.png
%%DATADIR%%/images/effect/explosion/huge^1.png
%%DATADIR%%/images/effect/explosion/huge^2.png
%%DATADIR%%/images/effect/explosion/huge^3.png
%%DATADIR%%/images/effect/explosion/huge^4.png
%%DATADIR%%/images/effect/explosion/huge^5.png
%%DATADIR%%/images/effect/explosion/huge^6.png
%%DATADIR%%/images/effect/explosion/huge^7.png
%%DATADIR%%/images/effect/explosion/huge^8.png
%%DATADIR%%/images/effect/explosion/huge^9.png
%%DATADIR%%/images/effect/explosion/large^0.png
%%DATADIR%%/images/effect/explosion/large^1.png
%%DATADIR%%/images/effect/explosion/large^2.png
%%DATADIR%%/images/effect/explosion/large^3.png
%%DATADIR%%/images/effect/explosion/large^4.png
%%DATADIR%%/images/effect/explosion/large^5.png
%%DATADIR%%/images/effect/explosion/large^6.png
%%DATADIR%%/images/effect/explosion/large^7.png
%%DATADIR%%/images/effect/explosion/large^8.png
%%DATADIR%%/images/effect/explosion/medium^0.png
%%DATADIR%%/images/effect/explosion/medium^1.png
%%DATADIR%%/images/effect/explosion/medium^2.png
%%DATADIR%%/images/effect/explosion/medium^3.png
%%DATADIR%%/images/effect/explosion/medium^4.png
%%DATADIR%%/images/effect/explosion/medium^5.png
%%DATADIR%%/images/effect/explosion/medium^6.png
%%DATADIR%%/images/effect/explosion/medium^7.png
%%DATADIR%%/images/effect/explosion/neutron^0.png
%%DATADIR%%/images/effect/explosion/neutron^1.png
%%DATADIR%%/images/effect/explosion/neutron^2.png
%%DATADIR%%/images/effect/explosion/neutron^3.png
%%DATADIR%%/images/effect/explosion/neutron^4.png
%%DATADIR%%/images/effect/explosion/neutron^5.png
%%DATADIR%%/images/effect/explosion/nuke+0.png
%%DATADIR%%/images/effect/explosion/nuke+1.png
%%DATADIR%%/images/effect/explosion/nuke+2.png
%%DATADIR%%/images/effect/explosion/nuke+3.png
%%DATADIR%%/images/effect/explosion/nuke+4.png
%%DATADIR%%/images/effect/explosion/nuke+5.png
%%DATADIR%%/images/effect/explosion/nuke+6.png
%%DATADIR%%/images/effect/explosion/nuke+7.png
%%DATADIR%%/images/effect/explosion/pug/huge^0.png
%%DATADIR%%/images/effect/explosion/pug/huge^1.png
%%DATADIR%%/images/effect/explosion/pug/huge^2.png
%%DATADIR%%/images/effect/explosion/pug/huge^3.png
%%DATADIR%%/images/effect/explosion/pug/huge^4.png
%%DATADIR%%/images/effect/explosion/pug/huge^5.png
%%DATADIR%%/images/effect/explosion/pug/huge^6.png
%%DATADIR%%/images/effect/explosion/pug/huge^7.png
%%DATADIR%%/images/effect/explosion/pug/huge^8.png
%%DATADIR%%/images/effect/explosion/pug/huge^9.png
%%DATADIR%%/images/effect/explosion/pug/large^0.png
%%DATADIR%%/images/effect/explosion/pug/large^1.png
%%DATADIR%%/images/effect/explosion/pug/large^2.png
%%DATADIR%%/images/effect/explosion/pug/large^3.png
%%DATADIR%%/images/effect/explosion/pug/large^4.png
%%DATADIR%%/images/effect/explosion/pug/large^5.png
%%DATADIR%%/images/effect/explosion/pug/large^6.png
%%DATADIR%%/images/effect/explosion/pug/large^7.png
%%DATADIR%%/images/effect/explosion/pug/large^8.png
%%DATADIR%%/images/effect/explosion/pug/large^9.png
%%DATADIR%%/images/effect/explosion/pug/medium^0.png
%%DATADIR%%/images/effect/explosion/pug/medium^1.png
%%DATADIR%%/images/effect/explosion/pug/medium^2.png
%%DATADIR%%/images/effect/explosion/pug/medium^3.png
%%DATADIR%%/images/effect/explosion/pug/medium^4.png
%%DATADIR%%/images/effect/explosion/pug/medium^5.png
%%DATADIR%%/images/effect/explosion/pug/medium^6.png
%%DATADIR%%/images/effect/explosion/pug/medium^7.png
%%DATADIR%%/images/effect/explosion/pug/medium^8.png
%%DATADIR%%/images/effect/explosion/pug/medium^9.png
%%DATADIR%%/images/effect/explosion/pug/small^0.png
%%DATADIR%%/images/effect/explosion/pug/small^1.png
%%DATADIR%%/images/effect/explosion/pug/small^2.png
%%DATADIR%%/images/effect/explosion/pug/small^3.png
%%DATADIR%%/images/effect/explosion/pug/small^4.png
%%DATADIR%%/images/effect/explosion/pug/small^5.png
%%DATADIR%%/images/effect/explosion/pug/small^6.png
%%DATADIR%%/images/effect/explosion/pug/small^7.png
%%DATADIR%%/images/effect/explosion/pug/small^8.png
%%DATADIR%%/images/effect/explosion/pug/small^9.png
%%DATADIR%%/images/effect/explosion/pug/tiny^0.png
%%DATADIR%%/images/effect/explosion/pug/tiny^1.png
%%DATADIR%%/images/effect/explosion/pug/tiny^2.png
%%DATADIR%%/images/effect/explosion/pug/tiny^3.png
%%DATADIR%%/images/effect/explosion/pug/tiny^4.png
%%DATADIR%%/images/effect/explosion/pug/tiny^5.png
%%DATADIR%%/images/effect/explosion/pug/tiny^6.png
%%DATADIR%%/images/effect/explosion/pug/tiny^7.png
%%DATADIR%%/images/effect/explosion/pug/tiny^8.png
%%DATADIR%%/images/effect/explosion/pug/tiny^9.png
%%DATADIR%%/images/effect/explosion/quarg/huge^00.png
%%DATADIR%%/images/effect/explosion/quarg/huge^01.png
%%DATADIR%%/images/effect/explosion/quarg/huge^02.png
%%DATADIR%%/images/effect/explosion/quarg/huge^03.png
%%DATADIR%%/images/effect/explosion/quarg/huge^04.png
%%DATADIR%%/images/effect/explosion/quarg/huge^05.png
%%DATADIR%%/images/effect/explosion/quarg/huge^06.png
%%DATADIR%%/images/effect/explosion/quarg/huge^07.png
%%DATADIR%%/images/effect/explosion/quarg/huge^08.png
%%DATADIR%%/images/effect/explosion/quarg/large^00.png
%%DATADIR%%/images/effect/explosion/quarg/large^01.png
%%DATADIR%%/images/effect/explosion/quarg/large^02.png
%%DATADIR%%/images/effect/explosion/quarg/large^03.png
%%DATADIR%%/images/effect/explosion/quarg/large^04.png
%%DATADIR%%/images/effect/explosion/quarg/large^05.png
%%DATADIR%%/images/effect/explosion/quarg/large^06.png
%%DATADIR%%/images/effect/explosion/quarg/large^07.png
%%DATADIR%%/images/effect/explosion/quarg/large^08.png
%%DATADIR%%/images/effect/explosion/quarg/medium^00.png
%%DATADIR%%/images/effect/explosion/quarg/medium^01.png
%%DATADIR%%/images/effect/explosion/quarg/medium^02.png
%%DATADIR%%/images/effect/explosion/quarg/medium^03.png
%%DATADIR%%/images/effect/explosion/quarg/medium^04.png
%%DATADIR%%/images/effect/explosion/quarg/medium^05.png
%%DATADIR%%/images/effect/explosion/quarg/medium^06.png
%%DATADIR%%/images/effect/explosion/quarg/medium^07.png
%%DATADIR%%/images/effect/explosion/quarg/medium^08.png
%%DATADIR%%/images/effect/explosion/quarg/small^00.png
%%DATADIR%%/images/effect/explosion/quarg/small^01.png
%%DATADIR%%/images/effect/explosion/quarg/small^02.png
%%DATADIR%%/images/effect/explosion/quarg/small^03.png
%%DATADIR%%/images/effect/explosion/quarg/small^04.png
%%DATADIR%%/images/effect/explosion/quarg/small^05.png
%%DATADIR%%/images/effect/explosion/quarg/small^06.png
%%DATADIR%%/images/effect/explosion/quarg/small^07.png
%%DATADIR%%/images/effect/explosion/quarg/small^08.png
%%DATADIR%%/images/effect/explosion/quarg/tiny^00.png
%%DATADIR%%/images/effect/explosion/quarg/tiny^01.png
%%DATADIR%%/images/effect/explosion/quarg/tiny^02.png
%%DATADIR%%/images/effect/explosion/quarg/tiny^03.png
%%DATADIR%%/images/effect/explosion/quarg/tiny^04.png
%%DATADIR%%/images/effect/explosion/quarg/tiny^05.png
%%DATADIR%%/images/effect/explosion/quarg/tiny^06.png
%%DATADIR%%/images/effect/explosion/quarg/tiny^07.png
%%DATADIR%%/images/effect/explosion/quarg/tiny^08.png
%%DATADIR%%/images/effect/explosion/small^0.png
%%DATADIR%%/images/effect/explosion/small^1.png
%%DATADIR%%/images/effect/explosion/small^2.png
%%DATADIR%%/images/effect/explosion/small^3.png
%%DATADIR%%/images/effect/explosion/small^4.png
%%DATADIR%%/images/effect/explosion/small^5.png
%%DATADIR%%/images/effect/explosion/small^6.png
%%DATADIR%%/images/effect/explosion/tiny^0.png
%%DATADIR%%/images/effect/explosion/tiny^1.png
%%DATADIR%%/images/effect/explosion/tiny^2.png
%%DATADIR%%/images/effect/explosion/tiny^3.png
%%DATADIR%%/images/effect/explosion/tiny^4.png
%%DATADIR%%/images/effect/explosion/tiny^5.png
%%DATADIR%%/images/effect/finisher impact^0.png
%%DATADIR%%/images/effect/finisher impact^1.png
%%DATADIR%%/images/effect/finisher impact^2.png
%%DATADIR%%/images/effect/finisher impact^3.png
%%DATADIR%%/images/effect/finisher impact^4.png
%%DATADIR%%/images/effect/finisher impact^5.png
%%DATADIR%%/images/effect/finisher impact^6.png
%%DATADIR%%/images/effect/finisher sparks^0.png
%%DATADIR%%/images/effect/finisher sparks^1.png
%%DATADIR%%/images/effect/finisher sparks^2.png
%%DATADIR%%/images/effect/finisher sparks^3.png
%%DATADIR%%/images/effect/finisher trail+0.png
%%DATADIR%%/images/effect/finisher trail+1.png
%%DATADIR%%/images/effect/finisher trail+2.png
%%DATADIR%%/images/effect/finisher trail+3.png
%%DATADIR%%/images/effect/fire-lance impact+0.png
%%DATADIR%%/images/effect/fire-lance impact+1.png
%%DATADIR%%/images/effect/fire-lance impact+2.png
%%DATADIR%%/images/effect/fire-lance impact+3.png
%%DATADIR%%/images/effect/firestorm ring+00.png
%%DATADIR%%/images/effect/firestorm ring+01.png
%%DATADIR%%/images/effect/firestorm ring+02.png
%%DATADIR%%/images/effect/firestorm ring+03.png
%%DATADIR%%/images/effect/firestorm ring+04.png
%%DATADIR%%/images/effect/firestorm ring+05.png
%%DATADIR%%/images/effect/firestorm ring+06.png
%%DATADIR%%/images/effect/firestorm ring+07.png
%%DATADIR%%/images/effect/firestorm ring+08.png
%%DATADIR%%/images/effect/firestorm ring+09.png
%%DATADIR%%/images/effect/firestorm ring+10.png
%%DATADIR%%/images/effect/firestorm ring+11.png
%%DATADIR%%/images/effect/firestorm ring+12.png
%%DATADIR%%/images/effect/fissionflare+0.png
%%DATADIR%%/images/effect/fissionflare+1.png
%%DATADIR%%/images/effect/fissionflare+2.png
%%DATADIR%%/images/effect/fissionflare+3.png
%%DATADIR%%/images/effect/flame^0.png
%%DATADIR%%/images/effect/flame^1.png
%%DATADIR%%/images/effect/flame^2.png
%%DATADIR%%/images/effect/flame^3.png
%%DATADIR%%/images/effect/flame^4.png
%%DATADIR%%/images/effect/flame^5.png
%%DATADIR%%/images/effect/flotsam aluminum.png
%%DATADIR%%/images/effect/flotsam anomalous mass.png
%%DATADIR%%/images/effect/flotsam anomalous shield restorer.png
%%DATADIR%%/images/effect/flotsam antimatter power cell.png
%%DATADIR%%/images/effect/flotsam copper.png
%%DATADIR%%/images/effect/flotsam gold.png
%%DATADIR%%/images/effect/flotsam integral wood.png
%%DATADIR%%/images/effect/flotsam iron.png
%%DATADIR%%/images/effect/flotsam jamfruit pod.png
%%DATADIR%%/images/effect/flotsam lead.png
%%DATADIR%%/images/effect/flotsam neodymium.png
%%DATADIR%%/images/effect/flotsam nucleolysis beam.png
%%DATADIR%%/images/effect/flotsam platinum.png
%%DATADIR%%/images/effect/flotsam pollen particle.png
%%DATADIR%%/images/effect/flotsam silicon.png
%%DATADIR%%/images/effect/flotsam silver.png
%%DATADIR%%/images/effect/flotsam telescopic antimissile.png
%%DATADIR%%/images/effect/flotsam titanium.png
%%DATADIR%%/images/effect/flotsam tungsten.png
%%DATADIR%%/images/effect/flotsam uranium.png
%%DATADIR%%/images/effect/flotsam voidfish.png
%%DATADIR%%/images/effect/flotsam yottrite.png
%%DATADIR%%/images/effect/fusionflare+0.png
%%DATADIR%%/images/effect/fusionflare+1.png
%%DATADIR%%/images/effect/fusionflare+2.png
%%DATADIR%%/images/effect/fusionflare+3.png
%%DATADIR%%/images/effect/grab-strike impact^0.png
%%DATADIR%%/images/effect/grab-strike impact^1.png
%%DATADIR%%/images/effect/grab-strike impact^2.png
%%DATADIR%%/images/effect/grab-strike impact^3.png
%%DATADIR%%/images/effect/grab-strike impact^4.png
%%DATADIR%%/images/effect/graviton flare+.png
%%DATADIR%%/images/effect/graviton flare/graviton flare+0.png
%%DATADIR%%/images/effect/graviton flare/graviton flare+01.png
%%DATADIR%%/images/effect/graviton flare/graviton flare+02.png
%%DATADIR%%/images/effect/graviton flare/graviton flare+03.png
%%DATADIR%%/images/effect/graviton flare/graviton flare+04.png
%%DATADIR%%/images/effect/graviton flare/graviton flare+05.png
%%DATADIR%%/images/effect/graviton flare/graviton flare+06.png
%%DATADIR%%/images/effect/graviton flare/graviton flare+07.png
%%DATADIR%%/images/effect/graviton flare/graviton flare+08.png
%%DATADIR%%/images/effect/graviton flare/graviton flare+09.png
%%DATADIR%%/images/effect/green optical laser glare+0.png
%%DATADIR%%/images/effect/green optical laser glare+1.png
%%DATADIR%%/images/effect/green optical laser glare+2.png
%%DATADIR%%/images/effect/gridfire cloud+0.png
%%DATADIR%%/images/effect/gridfire cloud+1.png
%%DATADIR%%/images/effect/gridfire cloud+2.png
%%DATADIR%%/images/effect/gridfire fire+0.png
%%DATADIR%%/images/effect/gridfire fire+1.png
%%DATADIR%%/images/effect/gridfire fire+2.png
%%DATADIR%%/images/effect/gridfire hit+0.png
%%DATADIR%%/images/effect/gridfire hit+1.png
%%DATADIR%%/images/effect/gridfire hit+2.png
%%DATADIR%%/images/effect/gridfire hit+3.png
%%DATADIR%%/images/effect/gridfire hit+4.png
%%DATADIR%%/images/effect/heaver hyperspace hit^00.png
%%DATADIR%%/images/effect/heaver hyperspace hit^01.png
%%DATADIR%%/images/effect/heaver hyperspace hit^02.png
%%DATADIR%%/images/effect/heaver hyperspace hit^03.png
%%DATADIR%%/images/effect/heaver hyperspace hit^04.png
%%DATADIR%%/images/effect/heaver hyperspace hit^05.png
%%DATADIR%%/images/effect/heaver hyperspace hit^06.png
%%DATADIR%%/images/effect/heaver hyperspace hit^07.png
%%DATADIR%%/images/effect/heaver hyperspace hit^08.png
%%DATADIR%%/images/effect/heaver hyperspace hit^09.png
%%DATADIR%%/images/effect/heaver hyperspace hit^10.png
%%DATADIR%%/images/effect/heaver hyperspace hit^11.png
%%DATADIR%%/images/effect/heaver hyperspace hit^12.png
%%DATADIR%%/images/effect/heaver hyperspace hit^13.png
%%DATADIR%%/images/effect/heaver hyperspace hit^14.png
%%DATADIR%%/images/effect/heaver hyperspace hit^15.png
%%DATADIR%%/images/effect/heaver hyperspace hit^16.png
%%DATADIR%%/images/effect/heaver hyperspace hit^17.png
%%DATADIR%%/images/effect/heaver shard hit^00.png
%%DATADIR%%/images/effect/heaver shard hit^01.png
%%DATADIR%%/images/effect/heaver shard hit^02.png
%%DATADIR%%/images/effect/heaver shard hit^03.png
%%DATADIR%%/images/effect/heaver shard hit^04.png
%%DATADIR%%/images/effect/heaver shard hit^05.png
%%DATADIR%%/images/effect/heaver shard hit^06.png
%%DATADIR%%/images/effect/heaver shard hit^07.png
%%DATADIR%%/images/effect/heaver shard hit^08.png
%%DATADIR%%/images/effect/heaver shard hit^09.png
%%DATADIR%%/images/effect/heaver shard hit^10.png
%%DATADIR%%/images/effect/heaver shard hit^11.png
%%DATADIR%%/images/effect/heaver shard hit^12.png
%%DATADIR%%/images/effect/heavy laser impact+0.png
%%DATADIR%%/images/effect/heavy laser impact+1.png
%%DATADIR%%/images/effect/heavy laser impact+2.png
%%DATADIR%%/images/effect/horizon grappler+0.png
%%DATADIR%%/images/effect/horizon grappler+1.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen large+00.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen large+01.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen large+02.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen large+03.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen large+04.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen large+05.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen large+06.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen large+07.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen large+08.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen large+09.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen large+10.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen medium+00.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen medium+01.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen medium+02.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen medium+03.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen medium+04.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen medium+05.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen medium+06.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen medium+07.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen medium+08.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen medium+09.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen medium+10.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen small+00.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen small+01.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen small+02.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen small+03.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen small+04.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen small+05.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen small+06.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen small+07.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen small+08.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen small+09.png
%%DATADIR%%/images/effect/incipias flare/metallic hydrogen small+10.png
%%DATADIR%%/images/effect/inhibitor impact+0.png
%%DATADIR%%/images/effect/inhibitor impact+1.png
%%DATADIR%%/images/effect/inhibitor impact+2.png
%%DATADIR%%/images/effect/inhibitor impact+3.png
%%DATADIR%%/images/effect/inhibitor impact+4.png
%%DATADIR%%/images/effect/inhibitor impact+5.png
%%DATADIR%%/images/effect/ion explosion^0.png
%%DATADIR%%/images/effect/ion explosion^1.png
%%DATADIR%%/images/effect/ion explosion^2.png
%%DATADIR%%/images/effect/ion explosion^3.png
%%DATADIR%%/images/effect/ion explosion^4.png
%%DATADIR%%/images/effect/ion flare/huge+0.png
%%DATADIR%%/images/effect/ion flare/huge+1.png
%%DATADIR%%/images/effect/ion flare/huge+2.png
%%DATADIR%%/images/effect/ion flare/huge+3.png
%%DATADIR%%/images/effect/ion flare/large+0.png
%%DATADIR%%/images/effect/ion flare/large+1.png
%%DATADIR%%/images/effect/ion flare/large+2.png
%%DATADIR%%/images/effect/ion flare/large+3.png
%%DATADIR%%/images/effect/ion flare/medium+0.png
%%DATADIR%%/images/effect/ion flare/medium+1.png
%%DATADIR%%/images/effect/ion flare/medium+2.png
%%DATADIR%%/images/effect/ion flare/medium+3.png
%%DATADIR%%/images/effect/ion flare/small+0.png
%%DATADIR%%/images/effect/ion flare/small+1.png
%%DATADIR%%/images/effect/ion flare/small+2.png
%%DATADIR%%/images/effect/ion flare/small+3.png
%%DATADIR%%/images/effect/ion flare/tiny+0.png
%%DATADIR%%/images/effect/ion flare/tiny+1.png
%%DATADIR%%/images/effect/ion flare/tiny+2.png
%%DATADIR%%/images/effect/ion flare/tiny+3.png
%%DATADIR%%/images/effect/ion impact^0.png
%%DATADIR%%/images/effect/ion impact^1.png
%%DATADIR%%/images/effect/ion impact^2.png
%%DATADIR%%/images/effect/ion impact^3.png
%%DATADIR%%/images/effect/ion impact^4.png
%%DATADIR%%/images/effect/ion rain impact^0.png
%%DATADIR%%/images/effect/ion rain impact^1.png
%%DATADIR%%/images/effect/ion rain impact^2.png
%%DATADIR%%/images/effect/ion rain impact^3.png
%%DATADIR%%/images/effect/ion rain impact^4.png
%%DATADIR%%/images/effect/ionball ring+00.png
%%DATADIR%%/images/effect/ionball ring+01.png
%%DATADIR%%/images/effect/ionball ring+02.png
%%DATADIR%%/images/effect/ionball ring+03.png
%%DATADIR%%/images/effect/ionball ring+04.png
%%DATADIR%%/images/effect/ionball ring+05.png
%%DATADIR%%/images/effect/ionball ring+06.png
%%DATADIR%%/images/effect/ionball ring+07.png
%%DATADIR%%/images/effect/ionball ring+08.png
%%DATADIR%%/images/effect/ionball ring+09.png
%%DATADIR%%/images/effect/ionball ring+10.png
%%DATADIR%%/images/effect/ionball ring+11.png
%%DATADIR%%/images/effect/ionic afterburner+0.png
%%DATADIR%%/images/effect/ionic afterburner+1.png
%%DATADIR%%/images/effect/ionic afterburner+2.png
%%DATADIR%%/images/effect/ionic afterburner+3.png
%%DATADIR%%/images/effect/ionic afterburner+4.png
%%DATADIR%%/images/effect/ionic afterburner+5.png
%%DATADIR%%/images/effect/ionic impact^0.png
%%DATADIR%%/images/effect/ionic impact^1.png
%%DATADIR%%/images/effect/ionic impact^2.png
%%DATADIR%%/images/effect/ionic impact^3.png
%%DATADIR%%/images/effect/ionic impact^4.png
%%DATADIR%%/images/effect/irfire+0.png
%%DATADIR%%/images/effect/irfire+1.png
%%DATADIR%%/images/effect/irfire+2.png
%%DATADIR%%/images/effect/irfire+3.png
%%DATADIR%%/images/effect/jd detainer+00.png
%%DATADIR%%/images/effect/jd detainer+01.png
%%DATADIR%%/images/effect/jd detainer+02.png
%%DATADIR%%/images/effect/jd detainer+03.png
%%DATADIR%%/images/effect/jd detainer+04.png
%%DATADIR%%/images/effect/jd detainer+05.png
%%DATADIR%%/images/effect/jd detainer+06.png
%%DATADIR%%/images/effect/jd detainer+07.png
%%DATADIR%%/images/effect/jd detainer+08.png
%%DATADIR%%/images/effect/jd detainer+09.png
%%DATADIR%%/images/effect/jd detainer+10.png
%%DATADIR%%/images/effect/jd detainer+11.png
%%DATADIR%%/images/effect/jd detainer+12.png
%%DATADIR%%/images/effect/jd detainer+13.png
%%DATADIR%%/images/effect/jd detainer+14.png
%%DATADIR%%/images/effect/jd detainer+15.png
%%DATADIR%%/images/effect/jd detainer+16.png
%%DATADIR%%/images/effect/jd detainer+17.png
%%DATADIR%%/images/effect/jd detainer+18.png
%%DATADIR%%/images/effect/jd detainer+19.png
%%DATADIR%%/images/effect/jd detainer+20.png
%%DATADIR%%/images/effect/jd detainer+21.png
%%DATADIR%%/images/effect/jd detainer+22.png
%%DATADIR%%/images/effect/jd detainer+23.png
%%DATADIR%%/images/effect/jd detainer+24.png
%%DATADIR%%/images/effect/jd detainer+25.png
%%DATADIR%%/images/effect/jd detainer+26.png
%%DATADIR%%/images/effect/jd detainer+27.png
%%DATADIR%%/images/effect/jd detainer+28.png
%%DATADIR%%/images/effect/jd detainer+29.png
%%DATADIR%%/images/effect/jd detainer+30.png
%%DATADIR%%/images/effect/jd detainer+31.png
%%DATADIR%%/images/effect/jd detainer+32.png
%%DATADIR%%/images/effect/jump drive red^0.png
%%DATADIR%%/images/effect/jump drive red^1.png
%%DATADIR%%/images/effect/jump drive red^2.png
%%DATADIR%%/images/effect/jump drive red^3.png
%%DATADIR%%/images/effect/jump drive red^4.png
%%DATADIR%%/images/effect/jump drive red^5.png
%%DATADIR%%/images/effect/jump drive red^6.png
%%DATADIR%%/images/effect/jump drive red^7.png
%%DATADIR%%/images/effect/jump drive+0.png
%%DATADIR%%/images/effect/jump drive+1.png
%%DATADIR%%/images/effect/ka'het flare/large+0.png
%%DATADIR%%/images/effect/ka'het flare/large+1.png
%%DATADIR%%/images/effect/ka'het flare/large+2.png
%%DATADIR%%/images/effect/ka'het flare/large+3.png
%%DATADIR%%/images/effect/ka'het flare/large+4.png
%%DATADIR%%/images/effect/ka'het flare/large+5.png
%%DATADIR%%/images/effect/ka'het flare/medium+0.png
%%DATADIR%%/images/effect/ka'het flare/medium+1.png
%%DATADIR%%/images/effect/ka'het flare/medium+2.png
%%DATADIR%%/images/effect/ka'het flare/medium+3.png
%%DATADIR%%/images/effect/ka'het flare/medium+4.png
%%DATADIR%%/images/effect/ka'het flare/medium+5.png
%%DATADIR%%/images/effect/ka'het flare/small+0.png
%%DATADIR%%/images/effect/ka'het flare/small+1.png
%%DATADIR%%/images/effect/ka'het flare/small+2.png
%%DATADIR%%/images/effect/ka'het flare/small+3.png
%%DATADIR%%/images/effect/ka'het flare/small+4.png
%%DATADIR%%/images/effect/ka'het flare/small+5.png
%%DATADIR%%/images/effect/korath afterburner+0.png
%%DATADIR%%/images/effect/korath afterburner+1.png
%%DATADIR%%/images/effect/korath afterburner+2.png
%%DATADIR%%/images/effect/korath afterburner+3.png
%%DATADIR%%/images/effect/korath afterburner+4.png
%%DATADIR%%/images/effect/korath afterburner+5.png
%%DATADIR%%/images/effect/korath afterburner+6.png
%%DATADIR%%/images/effect/korath afterburner+7.png
%%DATADIR%%/images/effect/korath afterburner+8.png
%%DATADIR%%/images/effect/korath digger hit+0.png
%%DATADIR%%/images/effect/korath digger hit+1.png
%%DATADIR%%/images/effect/korath digger hit+2.png
%%DATADIR%%/images/effect/korath digger hit+3.png
%%DATADIR%%/images/effect/korath digger hit+4.png
%%DATADIR%%/images/effect/korath flare/huge+0.png
%%DATADIR%%/images/effect/korath flare/huge+1.png
%%DATADIR%%/images/effect/korath flare/huge+2.png
%%DATADIR%%/images/effect/korath flare/huge+3.png
%%DATADIR%%/images/effect/korath flare/huge+4.png
%%DATADIR%%/images/effect/korath flare/large+0.png
%%DATADIR%%/images/effect/korath flare/large+1.png
%%DATADIR%%/images/effect/korath flare/large+2.png
%%DATADIR%%/images/effect/korath flare/large+3.png
%%DATADIR%%/images/effect/korath flare/large+4.png
%%DATADIR%%/images/effect/korath flare/medium+0.png
%%DATADIR%%/images/effect/korath flare/medium+1.png
%%DATADIR%%/images/effect/korath flare/medium+2.png
%%DATADIR%%/images/effect/korath flare/medium+3.png
%%DATADIR%%/images/effect/korath flare/medium+4.png
%%DATADIR%%/images/effect/korath flare/small+0.png
%%DATADIR%%/images/effect/korath flare/small+1.png
%%DATADIR%%/images/effect/korath flare/small+2.png
%%DATADIR%%/images/effect/korath flare/small+3.png
%%DATADIR%%/images/effect/korath flare/small+4.png
%%DATADIR%%/images/effect/korath flare/tiny+0.png
%%DATADIR%%/images/effect/korath flare/tiny+1.png
%%DATADIR%%/images/effect/korath flare/tiny+2.png
%%DATADIR%%/images/effect/korath flare/tiny+3.png
%%DATADIR%%/images/effect/korath flare/tiny+4.png
%%DATADIR%%/images/effect/korath inferno hit+0.png
%%DATADIR%%/images/effect/korath inferno hit+1.png
%%DATADIR%%/images/effect/korath inferno hit+2.png
%%DATADIR%%/images/effect/korath inferno hit+3.png
%%DATADIR%%/images/effect/korath inferno hit+4.png
%%DATADIR%%/images/effect/large anti missile^0.png
%%DATADIR%%/images/effect/large anti missile^1.png
%%DATADIR%%/images/effect/laser impact+0.png
%%DATADIR%%/images/effect/laser impact+1.png
%%DATADIR%%/images/effect/laser impact+2.png
%%DATADIR%%/images/effect/leak big-0.png
%%DATADIR%%/images/effect/leak big-1.png
%%DATADIR%%/images/effect/leak big-2.png
%%DATADIR%%/images/effect/leak big-3.png
%%DATADIR%%/images/effect/leak-0.png
%%DATADIR%%/images/effect/leak-1.png
%%DATADIR%%/images/effect/leak-2.png
%%DATADIR%%/images/effect/leak-3.png
%%DATADIR%%/images/effect/meteor fire^0.png
%%DATADIR%%/images/effect/meteor fire^1.png
%%DATADIR%%/images/effect/meteor fire^2.png
%%DATADIR%%/images/effect/meteor fire^3.png
%%DATADIR%%/images/effect/meteor fire^4.png
%%DATADIR%%/images/effect/meteor fire^5.png
%%DATADIR%%/images/effect/mhd spark+0.png
%%DATADIR%%/images/effect/mhd spark+1.png
%%DATADIR%%/images/effect/mhd spark+2.png
%%DATADIR%%/images/effect/mhd spark+3.png
%%DATADIR%%/images/effect/mhd spark+4.png
%%DATADIR%%/images/effect/mhd spark+5.png
%%DATADIR%%/images/effect/mhd spark+6.png
%%DATADIR%%/images/effect/minelayer split+0.png
%%DATADIR%%/images/effect/minelayer split+1.png
%%DATADIR%%/images/effect/minelayer split+2.png
%%DATADIR%%/images/effect/minelayer split+3.png
%%DATADIR%%/images/effect/missile death^0.png
%%DATADIR%%/images/effect/missile death^1.png
%%DATADIR%%/images/effect/missile death^2.png
%%DATADIR%%/images/effect/missile death^3.png
%%DATADIR%%/images/effect/moonbeam fleck+0.png
%%DATADIR%%/images/effect/moonbeam fleck+1.png
%%DATADIR%%/images/effect/moonbeam impact+0.png
%%DATADIR%%/images/effect/moonbeam impact+1.png
%%DATADIR%%/images/effect/moonbeam impact+2.png
%%DATADIR%%/images/effect/moonbeam impact+3.png
%%DATADIR%%/images/effect/nano spark+0.png
%%DATADIR%%/images/effect/nano spark+1.png
%%DATADIR%%/images/effect/nano spark+2.png
%%DATADIR%%/images/effect/nano spark+3.png
%%DATADIR%%/images/effect/nano spark+4.png
%%DATADIR%%/images/effect/overcharged pulse laser impact^0.png
%%DATADIR%%/images/effect/overcharged pulse laser impact^1.png
%%DATADIR%%/images/effect/overcharged pulse laser impact^2.png
%%DATADIR%%/images/effect/particle impact+0.png
%%DATADIR%%/images/effect/particle impact+1.png
%%DATADIR%%/images/effect/particle impact+2.png
%%DATADIR%%/images/effect/particle impact+3.png
%%DATADIR%%/images/effect/particle impact+4.png
%%DATADIR%%/images/effect/particle impact+5.png
%%DATADIR%%/images/effect/particle impact+6.png
%%DATADIR%%/images/effect/particle impact+7.png
%%DATADIR%%/images/effect/piercer explosion+0.png
%%DATADIR%%/images/effect/piercer explosion+1.png
%%DATADIR%%/images/effect/piercer explosion+2.png
%%DATADIR%%/images/effect/piercer explosion+3.png
%%DATADIR%%/images/effect/piercer explosion+4.png
%%DATADIR%%/images/effect/piercer explosion+5.png
%%DATADIR%%/images/effect/piercer explosion+6.png
%%DATADIR%%/images/effect/piercer explosion+7.png
%%DATADIR%%/images/effect/piercer explosion+8.png
%%DATADIR%%/images/effect/piercer explosion+9.png
%%DATADIR%%/images/effect/piercer fire+0.png
%%DATADIR%%/images/effect/piercer fire+1.png
%%DATADIR%%/images/effect/piercer fire+2.png
%%DATADIR%%/images/effect/piercer fire+3.png
%%DATADIR%%/images/effect/piercer fire+4.png
%%DATADIR%%/images/effect/piercer impact+0.png
%%DATADIR%%/images/effect/piercer impact+1.png
%%DATADIR%%/images/effect/piercer impact+2.png
%%DATADIR%%/images/effect/piercer impact+3.png
%%DATADIR%%/images/effect/piercer impact+4.png
%%DATADIR%%/images/effect/plasma cloud+0.png
%%DATADIR%%/images/effect/plasma cloud+1.png
%%DATADIR%%/images/effect/plasma cloud+2.png
%%DATADIR%%/images/effect/plasma cloud+3.png
%%DATADIR%%/images/effect/plasma cloud+4.png
%%DATADIR%%/images/effect/plasma exhaust+0.png
%%DATADIR%%/images/effect/plasma exhaust+1.png
%%DATADIR%%/images/effect/plasma exhaust+2.png
%%DATADIR%%/images/effect/plasma exhaust+3.png
%%DATADIR%%/images/effect/plasma exhaust+4.png
%%DATADIR%%/images/effect/plasma exhaust+5.png
%%DATADIR%%/images/effect/plasma exhaust+6.png
%%DATADIR%%/images/effect/plasma exhaust+7.png
%%DATADIR%%/images/effect/plasma explosion^0.png
%%DATADIR%%/images/effect/plasma explosion^1.png
%%DATADIR%%/images/effect/plasma explosion^2.png
%%DATADIR%%/images/effect/plasma explosion^3.png
%%DATADIR%%/images/effect/plasma explosion^4.png
%%DATADIR%%/images/effect/plasma explosion^5.png
%%DATADIR%%/images/effect/plasma explosion^6.png
%%DATADIR%%/images/effect/plasma explosion^7.png
%%DATADIR%%/images/effect/plasma fire+0.png
%%DATADIR%%/images/effect/plasma fire+1.png
%%DATADIR%%/images/effect/plasma fire+2.png
%%DATADIR%%/images/effect/plasma fire+3.png
%%DATADIR%%/images/effect/plasma flare/huge+0.png
%%DATADIR%%/images/effect/plasma flare/huge+1.png
%%DATADIR%%/images/effect/plasma flare/huge+2.png
%%DATADIR%%/images/effect/plasma flare/huge+3.png
%%DATADIR%%/images/effect/plasma flare/huge+4.png
%%DATADIR%%/images/effect/plasma flare/large+0.png
%%DATADIR%%/images/effect/plasma flare/large+1.png
%%DATADIR%%/images/effect/plasma flare/large+2.png
%%DATADIR%%/images/effect/plasma flare/large+3.png
%%DATADIR%%/images/effect/plasma flare/large+4.png
%%DATADIR%%/images/effect/plasma flare/medium+0.png
%%DATADIR%%/images/effect/plasma flare/medium+1.png
%%DATADIR%%/images/effect/plasma flare/medium+2.png
%%DATADIR%%/images/effect/plasma flare/medium+3.png
%%DATADIR%%/images/effect/plasma flare/medium+4.png
%%DATADIR%%/images/effect/plasma flare/small+0.png
%%DATADIR%%/images/effect/plasma flare/small+1.png
%%DATADIR%%/images/effect/plasma flare/small+2.png
%%DATADIR%%/images/effect/plasma flare/small+3.png
%%DATADIR%%/images/effect/plasma flare/small+4.png
%%DATADIR%%/images/effect/plasma flare/tiny+0.png
%%DATADIR%%/images/effect/plasma flare/tiny+1.png
%%DATADIR%%/images/effect/plasma flare/tiny+2.png
%%DATADIR%%/images/effect/plasma flare/tiny+3.png
%%DATADIR%%/images/effect/plasma flare/tiny+4.png
%%DATADIR%%/images/effect/plasma impact+0.png
%%DATADIR%%/images/effect/plasma impact+1.png
%%DATADIR%%/images/effect/plasma impact+2.png
%%DATADIR%%/images/effect/plasma impact+3.png
%%DATADIR%%/images/effect/plasma impact+4.png
%%DATADIR%%/images/effect/plasma impact+5.png
%%DATADIR%%/images/effect/plasma impact+6.png
%%DATADIR%%/images/effect/plasma impact+7.png
%%DATADIR%%/images/effect/plasma impact+8.png
%%DATADIR%%/images/effect/plasma impact+9.png
%%DATADIR%%/images/effect/plasma particle.png
%%DATADIR%%/images/effect/point defense die+0.png
%%DATADIR%%/images/effect/point defense die+1.png
%%DATADIR%%/images/effect/point defense die+2.png
%%DATADIR%%/images/effect/point defense die+3.png
%%DATADIR%%/images/effect/point defense die+4.png
%%DATADIR%%/images/effect/point defense die+5.png
%%DATADIR%%/images/effect/point defense fire+0.png
%%DATADIR%%/images/effect/point defense fire+1.png
%%DATADIR%%/images/effect/point defense fire+2.png
%%DATADIR%%/images/effect/point defense hit+0.png
%%DATADIR%%/images/effect/point defense hit+1.png
%%DATADIR%%/images/effect/point defense hit+2.png
%%DATADIR%%/images/effect/proton impact+0.png
%%DATADIR%%/images/effect/proton impact+1.png
%%DATADIR%%/images/effect/proton impact+2.png
%%DATADIR%%/images/effect/proton impact+3.png
%%DATADIR%%/images/effect/proton impact+4.png
%%DATADIR%%/images/effect/proton impact+5.png
%%DATADIR%%/images/effect/proton impact+6.png
%%DATADIR%%/images/effect/proton impact+7.png
%%DATADIR%%/images/effect/puff^0.png
%%DATADIR%%/images/effect/puff^1.png
%%DATADIR%%/images/effect/puff^2.png
%%DATADIR%%/images/effect/puff^3.png
%%DATADIR%%/images/effect/pug flare/huge+0.png
%%DATADIR%%/images/effect/pug flare/huge+1.png
%%DATADIR%%/images/effect/pug flare/huge+2.png
%%DATADIR%%/images/effect/pug flare/huge+3.png
%%DATADIR%%/images/effect/pug flare/huge+4.png
%%DATADIR%%/images/effect/pug flare/large+0.png
%%DATADIR%%/images/effect/pug flare/large+1.png
%%DATADIR%%/images/effect/pug flare/large+2.png
%%DATADIR%%/images/effect/pug flare/large+3.png
%%DATADIR%%/images/effect/pug flare/large+4.png
%%DATADIR%%/images/effect/pug flare/medium+0.png
%%DATADIR%%/images/effect/pug flare/medium+1.png
%%DATADIR%%/images/effect/pug flare/medium+2.png
%%DATADIR%%/images/effect/pug flare/medium+3.png
%%DATADIR%%/images/effect/pug flare/medium+4.png
%%DATADIR%%/images/effect/pug flare/small+0.png
%%DATADIR%%/images/effect/pug flare/small+1.png
%%DATADIR%%/images/effect/pug flare/small+2.png
%%DATADIR%%/images/effect/pug flare/small+3.png
%%DATADIR%%/images/effect/pug flare/small+4.png
%%DATADIR%%/images/effect/pug flare/tiny+0.png
%%DATADIR%%/images/effect/pug flare/tiny+1.png
%%DATADIR%%/images/effect/pug flare/tiny+2.png
%%DATADIR%%/images/effect/pug flare/tiny+3.png
%%DATADIR%%/images/effect/pug flare/tiny+4.png
%%DATADIR%%/images/effect/pulse impact^0.png
%%DATADIR%%/images/effect/pulse impact^1.png
%%DATADIR%%/images/effect/pulse impact^2.png
%%DATADIR%%/images/effect/pulse impact^3.png
%%DATADIR%%/images/effect/pwave impact+0.png
%%DATADIR%%/images/effect/pwave impact+1.png
%%DATADIR%%/images/effect/pwave impact+2.png
%%DATADIR%%/images/effect/pwave impact+3.png
%%DATADIR%%/images/effect/pwaveflare+0.png
%%DATADIR%%/images/effect/pwaveflare+1.png
%%DATADIR%%/images/effect/pwaveflare+2.png
%%DATADIR%%/images/effect/pwaveflare+3.png
%%DATADIR%%/images/effect/quarg anti missile+0.png
%%DATADIR%%/images/effect/quarg anti missile+1.png
%%DATADIR%%/images/effect/railspark^0.png
%%DATADIR%%/images/effect/railspark^1.png
%%DATADIR%%/images/effect/railspark^2.png
%%DATADIR%%/images/effect/ranseur+0.png
%%DATADIR%%/images/effect/ranseur+1.png
%%DATADIR%%/images/effect/ranseur+2.png
%%DATADIR%%/images/effect/ranseur+3.png
%%DATADIR%%/images/effect/ranseur+4.png
%%DATADIR%%/images/effect/ranseur+5.png
%%DATADIR%%/images/effect/ravager impact+0.png
%%DATADIR%%/images/effect/ravager impact+1.png
%%DATADIR%%/images/effect/ravager impact+2.png
%%DATADIR%%/images/effect/remnant afterburner/remnant afterburner^0.png
%%DATADIR%%/images/effect/remnant afterburner/remnant afterburner^1.png
%%DATADIR%%/images/effect/remnant afterburner/remnant afterburner^2.png
%%DATADIR%%/images/effect/remnant flare/large^0.png
%%DATADIR%%/images/effect/remnant flare/large^1.png
%%DATADIR%%/images/effect/remnant flare/large^2.png
%%DATADIR%%/images/effect/remnant flare/medium^0.png
%%DATADIR%%/images/effect/remnant flare/medium^1.png
%%DATADIR%%/images/effect/remnant flare/medium^2.png
%%DATADIR%%/images/effect/remnant flare/small^0.png
%%DATADIR%%/images/effect/remnant flare/small^1.png
%%DATADIR%%/images/effect/remnant flare/small^2.png
%%DATADIR%%/images/effect/remnant leak sparkle-0.png
%%DATADIR%%/images/effect/remnant leak sparkle-1.png
%%DATADIR%%/images/effect/remnant leak sparkle-2.png
%%DATADIR%%/images/effect/remnant leak sparkle-3.png
%%DATADIR%%/images/effect/remnant leak-0.png
%%DATADIR%%/images/effect/remnant leak-1.png
%%DATADIR%%/images/effect/remnant leak-2.png
%%DATADIR%%/images/effect/remnant leak-3.png
%%DATADIR%%/images/effect/repeater impact^0.png
%%DATADIR%%/images/effect/repeater impact^1.png
%%DATADIR%%/images/effect/repeater impact^2.png
%%DATADIR%%/images/effect/repeater impact^3.png
%%DATADIR%%/images/effect/repeater impact^4.png
%%DATADIR%%/images/effect/repulsor impact+0.png
%%DATADIR%%/images/effect/repulsor impact+1.png
%%DATADIR%%/images/effect/repulsor impact+2.png
%%DATADIR%%/images/effect/repulsor impact+3.png
%%DATADIR%%/images/effect/scin flare/large^0.png
%%DATADIR%%/images/effect/scin flare/large^1.png
%%DATADIR%%/images/effect/scin flare/med^0.png
%%DATADIR%%/images/effect/scin flare/med^1.png
%%DATADIR%%/images/effect/scin flare/small^0.png
%%DATADIR%%/images/effect/scin flare/small^1.png
%%DATADIR%%/images/effect/scin flare/tiny^0.png
%%DATADIR%%/images/effect/scin flare/tiny^1.png
%%DATADIR%%/images/effect/seeker impact^0.png
%%DATADIR%%/images/effect/seeker impact^1.png
%%DATADIR%%/images/effect/seeker impact^2.png
%%DATADIR%%/images/effect/seeker impact^3.png
%%DATADIR%%/images/effect/seeker impact^4.png
%%DATADIR%%/images/effect/seeker impact^5.png
%%DATADIR%%/images/effect/sheragiam+0.png
%%DATADIR%%/images/effect/sheragiam+1.png
%%DATADIR%%/images/effect/sheragiam+2.png
%%DATADIR%%/images/effect/shunt-strike-hit-0.png
%%DATADIR%%/images/effect/shunt-strike-hit-1.png
%%DATADIR%%/images/effect/shunt-strike-hit-2.png
%%DATADIR%%/images/effect/shunt-strike-hit-3.png
%%DATADIR%%/images/effect/shunt-strike-hit-4.png
%%DATADIR%%/images/effect/shunt-strike-hit-5.png
%%DATADIR%%/images/effect/shunt-strike-sparkle+0.png
%%DATADIR%%/images/effect/shunt-strike-sparkle+1.png
%%DATADIR%%/images/effect/shunt-strike-sparkle+2.png
%%DATADIR%%/images/effect/shunt-strike-sparkle+3.png
%%DATADIR%%/images/effect/shunt-strike-sparkle+4.png
%%DATADIR%%/images/effect/sidewinder fire^0.png
%%DATADIR%%/images/effect/sidewinder fire^1.png
%%DATADIR%%/images/effect/sidewinder fire^2.png
%%DATADIR%%/images/effect/sidewinder fire^3.png
%%DATADIR%%/images/effect/sidewinder fire^4.png
%%DATADIR%%/images/effect/singularity+00.png
%%DATADIR%%/images/effect/singularity+01.png
%%DATADIR%%/images/effect/singularity+02.png
%%DATADIR%%/images/effect/singularity+03.png
%%DATADIR%%/images/effect/skylance impact+0.png
%%DATADIR%%/images/effect/skylance impact+1.png
%%DATADIR%%/images/effect/slicer impact+0.png
%%DATADIR%%/images/effect/slicer impact+1.png
%%DATADIR%%/images/effect/slicer impact+2.png
%%DATADIR%%/images/effect/slicer impact+3.png
%%DATADIR%%/images/effect/slowing^0.png
%%DATADIR%%/images/effect/slowing^1.png
%%DATADIR%%/images/effect/slowing^2.png
%%DATADIR%%/images/effect/slowing^3.png
%%DATADIR%%/images/effect/slowing^4.png
%%DATADIR%%/images/effect/small anti missile^0.png
%%DATADIR%%/images/effect/small anti missile^1.png
%%DATADIR%%/images/effect/smoke^0.png
%%DATADIR%%/images/effect/smoke^1.png
%%DATADIR%%/images/effect/smoke^2.png
%%DATADIR%%/images/effect/smoke^3.png
%%DATADIR%%/images/effect/smoke^4.png
%%DATADIR%%/images/effect/smoke^5.png
%%DATADIR%%/images/effect/smoke^6.png
%%DATADIR%%/images/effect/smoke^7.png
%%DATADIR%%/images/effect/spark^0.png
%%DATADIR%%/images/effect/spark^1.png
%%DATADIR%%/images/effect/spark^2.png
%%DATADIR%%/images/effect/spark^3.png
%%DATADIR%%/images/effect/spark^4.png
%%DATADIR%%/images/effect/stagnation beam impact+0.png
%%DATADIR%%/images/effect/stagnation beam impact+1.png
%%DATADIR%%/images/effect/stagnation beam impact+2.png
%%DATADIR%%/images/effect/stagnation beam impact+3.png
%%DATADIR%%/images/effect/stagnation beam impact+4.png
%%DATADIR%%/images/effect/stagnation beam impact+5.png
%%DATADIR%%/images/effect/star tail hit+0.png
%%DATADIR%%/images/effect/star tail hit+1.png
%%DATADIR%%/images/effect/star tail hit+10.png
%%DATADIR%%/images/effect/star tail hit+11.png
%%DATADIR%%/images/effect/star tail hit+12.png
%%DATADIR%%/images/effect/star tail hit+13.png
%%DATADIR%%/images/effect/star tail hit+14.png
%%DATADIR%%/images/effect/star tail hit+15.png
%%DATADIR%%/images/effect/star tail hit+16.png
%%DATADIR%%/images/effect/star tail hit+17.png
%%DATADIR%%/images/effect/star tail hit+18.png
%%DATADIR%%/images/effect/star tail hit+19.png
%%DATADIR%%/images/effect/star tail hit+2.png
%%DATADIR%%/images/effect/star tail hit+3.png
%%DATADIR%%/images/effect/star tail hit+4.png
%%DATADIR%%/images/effect/star tail hit+5.png
%%DATADIR%%/images/effect/star tail hit+6.png
%%DATADIR%%/images/effect/star tail hit+7.png
%%DATADIR%%/images/effect/star tail hit+8.png
%%DATADIR%%/images/effect/star tail hit+9.png
%%DATADIR%%/images/effect/star tail live+0.png
%%DATADIR%%/images/effect/star tail live+1.png
%%DATADIR%%/images/effect/star tail live+2.png
%%DATADIR%%/images/effect/star tail live+3.png
%%DATADIR%%/images/effect/star tail live+4.png
%%DATADIR%%/images/effect/star tail live+5.png
%%DATADIR%%/images/effect/star tail live+6.png
%%DATADIR%%/images/effect/star tail live+7.png
%%DATADIR%%/images/effect/star tail live+8.png
%%DATADIR%%/images/effect/static+0.png
%%DATADIR%%/images/effect/static+1.png
%%DATADIR%%/images/effect/static+2.png
%%DATADIR%%/images/effect/static+3.png
%%DATADIR%%/images/effect/static+4.png
%%DATADIR%%/images/effect/static+5.png
%%DATADIR%%/images/effect/static+6.png
%%DATADIR%%/images/effect/subsidurial death/subsidurial death^0.png
%%DATADIR%%/images/effect/subsidurial death/subsidurial death^1.png
%%DATADIR%%/images/effect/subsidurial death/subsidurial death^2.png
%%DATADIR%%/images/effect/subsidurial death/subsidurial death^3.png
%%DATADIR%%/images/effect/subsidurial death/subsidurial death^4.png
%%DATADIR%%/images/effect/subsidurial death/subsidurial death^5.png
%%DATADIR%%/images/effect/successor flare/afterburner/afterburner^0.png
%%DATADIR%%/images/effect/successor flare/afterburner/afterburner^1.png
%%DATADIR%%/images/effect/successor flare/afterburner/afterburner^2.png
%%DATADIR%%/images/effect/successor flare/afterburner/afterburner^3.png
%%DATADIR%%/images/effect/successor flare/afterburner/afterburner^4.png
%%DATADIR%%/images/effect/successor flare/afterburner/afterburner^5.png
%%DATADIR%%/images/effect/successor flare/afterburner/afterburner^6.png
%%DATADIR%%/images/effect/successor flare/afterburner/afterburner^7.png
%%DATADIR%%/images/effect/successor flare/afterburner/afterburner^8.png
%%DATADIR%%/images/effect/successor flare/afterburner/afterburner^9.png
%%DATADIR%%/images/effect/successor flare/large^0.png
%%DATADIR%%/images/effect/successor flare/large^1.png
%%DATADIR%%/images/effect/successor flare/large^2.png
%%DATADIR%%/images/effect/successor flare/large^3.png
%%DATADIR%%/images/effect/successor flare/large^4.png
%%DATADIR%%/images/effect/successor flare/medium^0.png
%%DATADIR%%/images/effect/successor flare/medium^1.png
%%DATADIR%%/images/effect/successor flare/medium^2.png
%%DATADIR%%/images/effect/successor flare/medium^3.png
%%DATADIR%%/images/effect/successor flare/medium^4.png
%%DATADIR%%/images/effect/successor flare/small^0.png
%%DATADIR%%/images/effect/successor flare/small^1.png
%%DATADIR%%/images/effect/successor flare/small^2.png
%%DATADIR%%/images/effect/successor flare/small^3.png
%%DATADIR%%/images/effect/successor flare/small^4.png
%%DATADIR%%/images/effect/successor flare/tiny^0.png
%%DATADIR%%/images/effect/successor flare/tiny^1.png
%%DATADIR%%/images/effect/successor flare/tiny^2.png
%%DATADIR%%/images/effect/successor flare/tiny^3.png
%%DATADIR%%/images/effect/successor flare/tiny^4.png
%%DATADIR%%/images/effect/successor pulse laser impact^0.png
%%DATADIR%%/images/effect/successor pulse laser impact^1.png
%%DATADIR%%/images/effect/successor pulse laser impact^2.png
%%DATADIR%%/images/effect/sunbeam impact+0.png
%%DATADIR%%/images/effect/sunbeam impact+1.png
%%DATADIR%%/images/effect/sunbeam impact+2.png
%%DATADIR%%/images/effect/swarm+0.png
%%DATADIR%%/images/effect/swarm+1.png
%%DATADIR%%/images/effect/swarm+2.png
%%DATADIR%%/images/effect/talcgun+0.png
%%DATADIR%%/images/effect/talcgun+1.png
%%DATADIR%%/images/effect/talcgun+2.png
%%DATADIR%%/images/effect/thrasher impact^0.png
%%DATADIR%%/images/effect/thrasher impact^1.png
%%DATADIR%%/images/effect/thrasher impact^2.png
%%DATADIR%%/images/effect/thrasher impact^3.png
%%DATADIR%%/images/effect/thrasher impact^4.png
%%DATADIR%%/images/effect/thrasher impact^5.png
%%DATADIR%%/images/effect/torpedo fire+0.png
%%DATADIR%%/images/effect/torpedo fire+1.png
%%DATADIR%%/images/effect/torpedo fire+2.png
%%DATADIR%%/images/effect/tracker cloud+0.png
%%DATADIR%%/images/effect/tracker cloud+1.png
%%DATADIR%%/images/effect/tracker cloud+2.png
%%DATADIR%%/images/effect/tracker cloud+3.png
%%DATADIR%%/images/effect/tracker cloud+4.png
%%DATADIR%%/images/effect/tracker cloud+5.png
%%DATADIR%%/images/effect/tracker fire+0.png
%%DATADIR%%/images/effect/tracker fire+1.png
%%DATADIR%%/images/effect/tracker fire+2.png
%%DATADIR%%/images/effect/tracker fire+3.png
%%DATADIR%%/images/effect/tracker fire+4.png
%%DATADIR%%/images/effect/tracker fire+5.png
%%DATADIR%%/images/effect/tracker impact^0.png
%%DATADIR%%/images/effect/tracker impact^1.png
%%DATADIR%%/images/effect/tracker impact^2.png
%%DATADIR%%/images/effect/tracker impact^3.png
%%DATADIR%%/images/effect/tracker impact^4.png
%%DATADIR%%/images/effect/tracker impact^5.png
%%DATADIR%%/images/effect/tractor beam+0.png
%%DATADIR%%/images/effect/tractor beam+1.png
%%DATADIR%%/images/effect/typhoon fire+0.png
%%DATADIR%%/images/effect/typhoon fire+1.png
%%DATADIR%%/images/effect/typhoon fire+2.png
%%DATADIR%%/images/effect/uv excimer laser glare+0.png
%%DATADIR%%/images/effect/uv excimer laser glare+1.png
%%DATADIR%%/images/effect/uv excimer laser glare+2.png
%%DATADIR%%/images/effect/vi flare/large+0.png
%%DATADIR%%/images/effect/vi flare/large+1.png
%%DATADIR%%/images/effect/vi flare/large+2.png
%%DATADIR%%/images/effect/vi flare/medium+0.png
%%DATADIR%%/images/effect/vi flare/medium+1.png
%%DATADIR%%/images/effect/vi flare/medium+2.png
%%DATADIR%%/images/effect/vi flare/small+0.png
%%DATADIR%%/images/effect/vi flare/small+1.png
%%DATADIR%%/images/effect/vi flare/small+2.png
%%DATADIR%%/images/effect/void spark-0.png
%%DATADIR%%/images/effect/void spark-1.png
%%DATADIR%%/images/effect/void spark-2.png
%%DATADIR%%/images/effect/void sprite adult death^0.png
%%DATADIR%%/images/effect/void sprite adult death^1.png
%%DATADIR%%/images/effect/void sprite adult death^2.png
%%DATADIR%%/images/effect/void sprite adult death^3.png
%%DATADIR%%/images/effect/void sprite adult death^4.png
%%DATADIR%%/images/effect/void sprite adult death^5.png
%%DATADIR%%/images/effect/void sprite infant death^0.png
%%DATADIR%%/images/effect/void sprite infant death^1.png
%%DATADIR%%/images/effect/void sprite infant death^2.png
%%DATADIR%%/images/effect/void sprite infant death^3.png
%%DATADIR%%/images/effect/void sprite infant death^4.png
%%DATADIR%%/images/effect/void sprite infant death^5.png
%%DATADIR%%/images/effect/void sprite parts/void sprite parts-00.png
%%DATADIR%%/images/effect/void sprite parts/void sprite parts-01.png
%%DATADIR%%/images/effect/void sprite parts/void sprite parts-02.png
%%DATADIR%%/images/effect/void sprite parts/void sprite parts-03.png
%%DATADIR%%/images/effect/void sprite parts/void sprite parts-04.png
%%DATADIR%%/images/effect/void sprite parts/void sprite parts-05.png
%%DATADIR%%/images/effect/void sprite parts/void sprite parts-06.png
%%DATADIR%%/images/effect/void sprite parts/void sprite parts-07.png
%%DATADIR%%/images/effect/void sprite parts/void sprite parts-08.png
%%DATADIR%%/images/effect/void sprite parts/void sprite parts-09.png
%%DATADIR%%/images/effect/void sprite parts/void sprite parts-10.png
%%DATADIR%%/images/effect/void sprite parts/void sprite parts-11.png
%%DATADIR%%/images/effect/void sprite parts/void sprite parts-12.png
%%DATADIR%%/images/effect/void sprite parts/void sprite parts-13.png
%%DATADIR%%/images/effect/void sprite parts/void sprite parts-14.png
%%DATADIR%%/images/effect/void sprite parts/void sprite parts-15.png
%%DATADIR%%/images/effect/void sprite parts/void sprite parts-16.png
%%DATADIR%%/images/effect/void sprite parts/void sprite parts-17.png
%%DATADIR%%/images/effect/void sprite parts/void sprite parts-18.png
%%DATADIR%%/images/effect/void sprite parts/void sprite parts-19.png
%%DATADIR%%/images/effect/wanderer anti-missile+0.png
%%DATADIR%%/images/effect/wanderer anti-missile+1.png
%%DATADIR%%/images/effect/wanderer anti-missile+2.png
%%DATADIR%%/images/effect/wanderer anti-missile+3.png
%%DATADIR%%/images/effect/wanderer flare/large+0.png
%%DATADIR%%/images/effect/wanderer flare/large+1.png
%%DATADIR%%/images/effect/wanderer flare/large+2.png
%%DATADIR%%/images/effect/wanderer flare/large+3.png
%%DATADIR%%/images/effect/wanderer flare/large+4.png
%%DATADIR%%/images/effect/wanderer flare/medium+0.png
%%DATADIR%%/images/effect/wanderer flare/medium+1.png
%%DATADIR%%/images/effect/wanderer flare/medium+2.png
%%DATADIR%%/images/effect/wanderer flare/medium+3.png
%%DATADIR%%/images/effect/wanderer flare/medium+4.png
%%DATADIR%%/images/effect/wanderer flare/small+0.png
%%DATADIR%%/images/effect/wanderer flare/small+1.png
%%DATADIR%%/images/effect/wanderer flare/small+2.png
%%DATADIR%%/images/effect/wanderer flare/small+3.png
%%DATADIR%%/images/effect/wanderer flare/small+4.png
%%DATADIR%%/images/effect/wanderer flare/tiny+0.png
%%DATADIR%%/images/effect/wanderer flare/tiny+1.png
%%DATADIR%%/images/effect/wanderer flare/tiny+2.png
%%DATADIR%%/images/effect/wanderer flare/tiny+3.png
%%DATADIR%%/images/effect/wanderer flare/tiny+4.png
%%DATADIR%%/images/effect/warder^0.png
%%DATADIR%%/images/effect/warder^1.png
%%DATADIR%%/images/effect/yellow spark^0.png
%%DATADIR%%/images/effect/yellow spark^1.png
%%DATADIR%%/images/effect/yellow spark^2.png
%%DATADIR%%/images/effect/yellow spark^3.png
%%DATADIR%%/images/effect/yellow spark^4.png
%%DATADIR%%/images/effect/zapper impact+0.png
%%DATADIR%%/images/effect/zapper impact+1.png
%%DATADIR%%/images/effect/zapper impact+2.png
%%DATADIR%%/images/effect/zapper impact+3.png
%%DATADIR%%/images/font/ubuntu14r.png
%%DATADIR%%/images/font/ubuntu18r.png
%%DATADIR%%/images/hardpoint/acuit.png
%%DATADIR%%/images/hardpoint/annihilator turret.png
%%DATADIR%%/images/hardpoint/anti-missile hai.png
%%DATADIR%%/images/hardpoint/anti-missile.png
%%DATADIR%%/images/hardpoint/asteroid am circle+0.png
%%DATADIR%%/images/hardpoint/asteroid am circle+1.png
%%DATADIR%%/images/hardpoint/astuit.png
%%DATADIR%%/images/hardpoint/ballistic.png
%%DATADIR%%/images/hardpoint/banisher.png
%%DATADIR%%/images/hardpoint/bimodal turret.png
%%DATADIR%%/images/hardpoint/blaster turret.png
%%DATADIR%%/images/hardpoint/blaze-pike.png
%%DATADIR%%/images/hardpoint/blue optical laser.png
%%DATADIR%%/images/hardpoint/bombardment turret.png
%%DATADIR%%/images/hardpoint/burrower.png
%%DATADIR%%/images/hardpoint/buzzer am.png
%%DATADIR%%/images/hardpoint/choleric.png
%%DATADIR%%/images/hardpoint/digger turret.png
%%DATADIR%%/images/hardpoint/disruptor.png
%%DATADIR%%/images/hardpoint/dual sunbeam turret.png
%%DATADIR%%/images/hardpoint/electron turret.png
%%DATADIR%%/images/hardpoint/factory/microbot factory-00.png
%%DATADIR%%/images/hardpoint/factory/microbot factory-01.png
%%DATADIR%%/images/hardpoint/factory/microbot factory-02.png
%%DATADIR%%/images/hardpoint/factory/microbot factory-03.png
%%DATADIR%%/images/hardpoint/factory/microbot factory-04.png
%%DATADIR%%/images/hardpoint/factory/microbot factory-05.png
%%DATADIR%%/images/hardpoint/factory/microbot factory-06.png
%%DATADIR%%/images/hardpoint/factory/microbot factory-07.png
%%DATADIR%%/images/hardpoint/factory/microbot factory-08.png
%%DATADIR%%/images/hardpoint/factory/microbot factory-09.png
%%DATADIR%%/images/hardpoint/factory/microbot factory-10.png
%%DATADIR%%/images/hardpoint/factory/microbot factory-11.png
%%DATADIR%%/images/hardpoint/factory/microbot factory-12.png
%%DATADIR%%/images/hardpoint/factory/microbot factory-13.png
%%DATADIR%%/images/hardpoint/factory/microbot factory-14.png
%%DATADIR%%/images/hardpoint/firestorm battery.png
%%DATADIR%%/images/hardpoint/gat turret hardpoint.png
%%DATADIR%%/images/hardpoint/grab-strike.png
%%DATADIR%%/images/hardpoint/green optical laser.png
%%DATADIR%%/images/hardpoint/hai ionic turret.png
%%DATADIR%%/images/hardpoint/heavy anti-missile hai.png
%%DATADIR%%/images/hardpoint/heavy anti-missile.png
%%DATADIR%%/images/hardpoint/heavy laser turret.png
%%DATADIR%%/images/hardpoint/heliarch attractor.png
%%DATADIR%%/images/hardpoint/heliarch repulsor.png
%%DATADIR%%/images/hardpoint/horizon grappler.png
%%DATADIR%%/images/hardpoint/inhibitor turret.png
%%DATADIR%%/images/hardpoint/ion hail turret.png
%%DATADIR%%/images/hardpoint/ion torch.png
%%DATADIR%%/images/hardpoint/irate.png
%%DATADIR%%/images/hardpoint/javelin turret.png
%%DATADIR%%/images/hardpoint/korath heaver.png
%%DATADIR%%/images/hardpoint/korath inferno.png
%%DATADIR%%/images/hardpoint/laser turret.png
%%DATADIR%%/images/hardpoint/locust turret.png
%%DATADIR%%/images/hardpoint/medium vls.png
%%DATADIR%%/images/hardpoint/mining laser turret.png
%%DATADIR%%/images/hardpoint/mod blaster turret.png
%%DATADIR%%/images/hardpoint/moonbeam turret.png
%%DATADIR%%/images/hardpoint/nuke.png
%%DATADIR%%/images/hardpoint/overcharged pulse laser turret.png
%%DATADIR%%/images/hardpoint/plasma turret.png
%%DATADIR%%/images/hardpoint/plasmadyne scoop.png
%%DATADIR%%/images/hardpoint/point defense.png
%%DATADIR%%/images/hardpoint/proton turret.png
%%DATADIR%%/images/hardpoint/pug anti-missile.png
%%DATADIR%%/images/hardpoint/pug gridfire turret.png
%%DATADIR%%/images/hardpoint/pug zapper turret.png
%%DATADIR%%/images/hardpoint/pulse turret.png
%%DATADIR%%/images/hardpoint/pwavehp.png
%%DATADIR%%/images/hardpoint/quad blaster turret.png
%%DATADIR%%/images/hardpoint/quarg anti missile.png
%%DATADIR%%/images/hardpoint/quarg ribault.png
%%DATADIR%%/images/hardpoint/quarg skydagger.png
%%DATADIR%%/images/hardpoint/quarg skylance.png
%%DATADIR%%/images/hardpoint/ravager turret.png
%%DATADIR%%/images/hardpoint/repeater turret.png
%%DATADIR%%/images/hardpoint/sheragiam.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-00.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-01.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-02.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-03.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-04.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-05.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-06.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-07.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-08.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-09.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-10.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-11.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-12.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-13.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-14.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-15.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-16.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-17.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-18.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-19.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-20.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-21.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-22.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-23.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-24.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-25.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-26.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-27.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-28.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-29.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-30.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-31.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-32.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-33.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-34.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-35.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-36.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-37.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-38.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-39.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-40.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-41.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-42.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-43.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-44.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-45.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-46.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-47.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-48.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-49.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-50.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-51.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-52.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-53.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-54.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-55.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-56.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-57.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-58.png
%%DATADIR%%/images/hardpoint/shooting star flare/ss-rays-59.png
%%DATADIR%%/images/hardpoint/shunt-strike.png
%%DATADIR%%/images/hardpoint/slicer turret.png
%%DATADIR%%/images/hardpoint/small vls.png
%%DATADIR%%/images/hardpoint/speckle turret.png
%%DATADIR%%/images/hardpoint/stagnation beam.png
%%DATADIR%%/images/hardpoint/successor pulse laser turret.png
%%DATADIR%%/images/hardpoint/sunbeam turret.png
%%DATADIR%%/images/hardpoint/t3 anti missile.png
%%DATADIR%%/images/hardpoint/thrasher turret.png
%%DATADIR%%/images/hardpoint/tiny vls.png
%%DATADIR%%/images/hardpoint/tractor beam.png
%%DATADIR%%/images/hardpoint/ureb turret.png
%%DATADIR%%/images/hardpoint/wanderer anti-missile.png
%%DATADIR%%/images/hardpoint/warder.png
%%DATADIR%%/images/icon/dragonflame.png
%%DATADIR%%/images/icon/emp.png
%%DATADIR%%/images/icon/finisher.png
%%DATADIR%%/images/icon/firelight.png
%%DATADIR%%/images/icon/firestorm torpedo.png
%%DATADIR%%/images/icon/flamethrower.png
%%DATADIR%%/images/icon/gat turret.png
%%DATADIR%%/images/icon/gat.png
%%DATADIR%%/images/icon/hv spike.png
%%DATADIR%%/images/icon/javelin turret.png
%%DATADIR%%/images/icon/javelin.png
%%DATADIR%%/images/icon/korath heaver.png
%%DATADIR%%/images/icon/meteor.png
%%DATADIR%%/images/icon/mhd.png
%%DATADIR%%/images/icon/minelayer.png
%%DATADIR%%/images/icon/nettle.png
%%DATADIR%%/images/icon/nuke.png
%%DATADIR%%/images/icon/orchid.png
%%DATADIR%%/images/icon/piercer.png
%%DATADIR%%/images/icon/rail gun.png
%%DATADIR%%/images/icon/rocket.png
%%DATADIR%%/images/icon/shard.png
%%DATADIR%%/images/icon/sidewinder.png
%%DATADIR%%/images/icon/swarm.png
%%DATADIR%%/images/icon/thunderhead.png
%%DATADIR%%/images/icon/torpedo.png
%%DATADIR%%/images/icon/tracker.png
%%DATADIR%%/images/icon/typhoon.png
%%DATADIR%%/images/label/arachi+.png
%%DATADIR%%/images/label/core+.png
%%DATADIR%%/images/label/deep+.png
%%DATADIR%%/images/label/dirt belt+.png
%%DATADIR%%/images/label/earth+.png
%%DATADIR%%/images/label/gegno+.png
%%DATADIR%%/images/label/graveyard+.png
%%DATADIR%%/images/label/hai+.png
%%DATADIR%%/images/label/incipias+.png
%%DATADIR%%/images/label/kimek+.png
%%DATADIR%%/images/label/korath+.png
%%DATADIR%%/images/label/north+.png
%%DATADIR%%/images/label/outer limits+.png
%%DATADIR%%/images/label/paradise+.png
%%DATADIR%%/images/label/rim+.png
%%DATADIR%%/images/label/saryds+.png
%%DATADIR%%/images/label/south+.png
%%DATADIR%%/images/label/successors+.png
%%DATADIR%%/images/label/tangled shroud+.png
%%DATADIR%%/images/label/twilight+.png
%%DATADIR%%/images/label/umbral+.png
%%DATADIR%%/images/label/wanderers+.png
%%DATADIR%%/images/label/waste+.png
%%DATADIR%%/images/land/aera.png
%%DATADIR%%/images/land/asteroid0.jpg
%%DATADIR%%/images/land/asteroid1.jpg
%%DATADIR%%/images/land/badlands0.jpg
%%DATADIR%%/images/land/badlands1.jpg
%%DATADIR%%/images/land/badlands10.jpg
%%DATADIR%%/images/land/badlands11.jpg
%%DATADIR%%/images/land/badlands12.jpg
%%DATADIR%%/images/land/badlands13.jpg
%%DATADIR%%/images/land/badlands2.jpg
%%DATADIR%%/images/land/badlands3.jpg
%%DATADIR%%/images/land/badlands4.jpg
%%DATADIR%%/images/land/badlands5.jpg
%%DATADIR%%/images/land/badlands6.jpg
%%DATADIR%%/images/land/badlands7.jpg
%%DATADIR%%/images/land/badlands8.jpg
%%DATADIR%%/images/land/badlands9-harro.jpg
%%DATADIR%%/images/land/beach0.jpg
%%DATADIR%%/images/land/beach1.jpg
%%DATADIR%%/images/land/beach10-sfiera.jpg
%%DATADIR%%/images/land/beach11-harro.jpg
%%DATADIR%%/images/land/beach12-harro.jpg
%%DATADIR%%/images/land/beach13.jpg
%%DATADIR%%/images/land/beach14.jpg
%%DATADIR%%/images/land/beach15.jpg
%%DATADIR%%/images/land/beach18.jpg
%%DATADIR%%/images/land/beach2.jpg
%%DATADIR%%/images/land/beach3.jpg
%%DATADIR%%/images/land/beach4.jpg
%%DATADIR%%/images/land/beach5.jpg
%%DATADIR%%/images/land/beach6.jpg
%%DATADIR%%/images/land/beach7-sfiera.jpg
%%DATADIR%%/images/land/beach8-sfiera.jpg
%%DATADIR%%/images/land/beach9-sfiera.jpg
%%DATADIR%%/images/land/bwerner0.jpg
%%DATADIR%%/images/land/bwerner1.jpg
%%DATADIR%%/images/land/bwerner2.jpg
%%DATADIR%%/images/land/bwerner3.jpg
%%DATADIR%%/images/land/bwerner4.jpg
%%DATADIR%%/images/land/bwerner5.jpg
%%DATADIR%%/images/land/bwerner6.jpg
%%DATADIR%%/images/land/bwerner7.jpg
%%DATADIR%%/images/land/bwerner8.jpg
%%DATADIR%%/images/land/canyon0.jpg
%%DATADIR%%/images/land/canyon01.jpg
%%DATADIR%%/images/land/canyon02.jpg
%%DATADIR%%/images/land/canyon03.jpg
%%DATADIR%%/images/land/canyon04.jpg
%%DATADIR%%/images/land/canyon05.jpg
%%DATADIR%%/images/land/canyon1.jpg
%%DATADIR%%/images/land/canyon10-harro.jpg
%%DATADIR%%/images/land/canyon11.jpg
%%DATADIR%%/images/land/canyon12.jpg
%%DATADIR%%/images/land/canyon13.jpg
%%DATADIR%%/images/land/canyon14.jpg
%%DATADIR%%/images/land/canyon15.jpg
%%DATADIR%%/images/land/canyon16.jpg
%%DATADIR%%/images/land/canyon18.jpg
%%DATADIR%%/images/land/canyon2.jpg
%%DATADIR%%/images/land/canyon3.jpg
%%DATADIR%%/images/land/canyon4.jpg
%%DATADIR%%/images/land/canyon5.jpg
%%DATADIR%%/images/land/canyon6.jpg
%%DATADIR%%/images/land/canyon7.jpg
%%DATADIR%%/images/land/canyon8.jpg
%%DATADIR%%/images/land/canyon9.jpg
%%DATADIR%%/images/land/city0.jpg
%%DATADIR%%/images/land/city1.jpg
%%DATADIR%%/images/land/city10.jpg
%%DATADIR%%/images/land/city11.jpg
%%DATADIR%%/images/land/city13-sfiera.jpg
%%DATADIR%%/images/land/city14-sfiera.jpg
%%DATADIR%%/images/land/city15-sfiera.jpg
%%DATADIR%%/images/land/city16-sfiera.jpg
%%DATADIR%%/images/land/city17-sfiera.jpg
%%DATADIR%%/images/land/city18-iridium.jpg
%%DATADIR%%/images/land/city19.jpg
%%DATADIR%%/images/land/city2.jpg
%%DATADIR%%/images/land/city20.jpg
%%DATADIR%%/images/land/city21.jpg
%%DATADIR%%/images/land/city22.jpg
%%DATADIR%%/images/land/city23.jpg
%%DATADIR%%/images/land/city24.jpg
%%DATADIR%%/images/land/city25.jpg
%%DATADIR%%/images/land/city26.JPG
%%DATADIR%%/images/land/city27.JPG
%%DATADIR%%/images/land/city28.JPG
%%DATADIR%%/images/land/city3.jpg
%%DATADIR%%/images/land/city4.jpg
%%DATADIR%%/images/land/city5.jpg
%%DATADIR%%/images/land/city6.jpg
%%DATADIR%%/images/land/city7.jpg
%%DATADIR%%/images/land/city8.jpg
%%DATADIR%%/images/land/city9.jpg
%%DATADIR%%/images/land/clouds10.JPG
%%DATADIR%%/images/land/clouds11.jpg
%%DATADIR%%/images/land/clouds14.jpg
%%DATADIR%%/images/land/clouds15.jpg
%%DATADIR%%/images/land/clouds9.jpeg
%%DATADIR%%/images/land/clouds_00.jpg
%%DATADIR%%/images/land/clouds_01.jpg
%%DATADIR%%/images/land/clouds_02.jpg
%%DATADIR%%/images/land/clouds_03.jpg
%%DATADIR%%/images/land/clouds_04.jpg
%%DATADIR%%/images/land/clouds_05.jpg
%%DATADIR%%/images/land/clouds_06.jpg
%%DATADIR%%/images/land/clouds_07.jpg
%%DATADIR%%/images/land/clouds_08.jpg
%%DATADIR%%/images/land/desert0.jpg
%%DATADIR%%/images/land/desert1.jpg
%%DATADIR%%/images/land/desert10-harro.jpg
%%DATADIR%%/images/land/desert11.jpg
%%DATADIR%%/images/land/desert12.jpg
%%DATADIR%%/images/land/desert13.jpg
%%DATADIR%%/images/land/desert14.jpg
%%DATADIR%%/images/land/desert15.jpg
%%DATADIR%%/images/land/desert19.jpg
%%DATADIR%%/images/land/desert2.jpg
%%DATADIR%%/images/land/desert3.jpg
%%DATADIR%%/images/land/desert4.jpg
%%DATADIR%%/images/land/desert5.jpg
%%DATADIR%%/images/land/desert6.jpg
%%DATADIR%%/images/land/desert7.jpg
%%DATADIR%%/images/land/desert8-sfiera.jpg
%%DATADIR%%/images/land/desert9-sfiera.jpg
%%DATADIR%%/images/land/dmottl0.jpg
%%DATADIR%%/images/land/dmottl1.jpg
%%DATADIR%%/images/land/dmottl2.jpg
%%DATADIR%%/images/land/dmottl3.jpg
%%DATADIR%%/images/land/dmottl4.jpg
%%DATADIR%%/images/land/dmottl5.jpg
%%DATADIR%%/images/land/dokimi.jpg
%%DATADIR%%/images/land/dune0.jpg
%%DATADIR%%/images/land/dune1.jpg
%%DATADIR%%/images/land/dune2.jpg
%%DATADIR%%/images/land/dune3.jpg
%%DATADIR%%/images/land/dune4.jpg
%%DATADIR%%/images/land/dune5.jpg
%%DATADIR%%/images/land/dune6-harro.jpg
%%DATADIR%%/images/land/earthrise.jpg
%%DATADIR%%/images/land/enceladus_1.jpg
%%DATADIR%%/images/land/enceladus_2.jpg
%%DATADIR%%/images/land/enceladus_3.jpg
%%DATADIR%%/images/land/enceladus_4.jpg
%%DATADIR%%/images/land/fields0.jpg
%%DATADIR%%/images/land/fields1.jpg
%%DATADIR%%/images/land/fields10-sfiera.jpg
%%DATADIR%%/images/land/fields11-sfiera.jpg
%%DATADIR%%/images/land/fields12-sfiera.jpg
%%DATADIR%%/images/land/fields13-sfiera.jpg
%%DATADIR%%/images/land/fields13.jpg
%%DATADIR%%/images/land/fields14.jpg
%%DATADIR%%/images/land/fields15.jpg
%%DATADIR%%/images/land/fields16.jpg
%%DATADIR%%/images/land/fields17.jpg
%%DATADIR%%/images/land/fields18.jpg
%%DATADIR%%/images/land/fields19.jpg
%%DATADIR%%/images/land/fields2.jpg
%%DATADIR%%/images/land/fields20.jpg
%%DATADIR%%/images/land/fields21.jpg
%%DATADIR%%/images/land/fields22.jpg
%%DATADIR%%/images/land/fields23.jpg
%%DATADIR%%/images/land/fields24.jpg
%%DATADIR%%/images/land/fields25.jpg
%%DATADIR%%/images/land/fields26.jpg
%%DATADIR%%/images/land/fields27.jpg
%%DATADIR%%/images/land/fields28.jpg
%%DATADIR%%/images/land/fields29.jpg
%%DATADIR%%/images/land/fields3.jpg
%%DATADIR%%/images/land/fields4.jpg
%%DATADIR%%/images/land/fields5.jpg
%%DATADIR%%/images/land/fields6.jpg
%%DATADIR%%/images/land/fields7.jpg
%%DATADIR%%/images/land/fields8.jpg
%%DATADIR%%/images/land/fields9.jpg
%%DATADIR%%/images/land/fog0.jpg
%%DATADIR%%/images/land/fog1.jpg
%%DATADIR%%/images/land/fog10.jpg
%%DATADIR%%/images/land/fog11.jpg
%%DATADIR%%/images/land/fog12.png
%%DATADIR%%/images/land/fog15.jpg
%%DATADIR%%/images/land/fog2.jpg
%%DATADIR%%/images/land/fog3.jpg
%%DATADIR%%/images/land/fog4.jpg
%%DATADIR%%/images/land/fog5.jpg
%%DATADIR%%/images/land/fog6.jpg
%%DATADIR%%/images/land/fog7.jpg
%%DATADIR%%/images/land/fog8.jpg
%%DATADIR%%/images/land/fog9.jpg
%%DATADIR%%/images/land/forest0.jpg
%%DATADIR%%/images/land/forest1.jpg
%%DATADIR%%/images/land/forest10.jpg
%%DATADIR%%/images/land/forest11.JPG
%%DATADIR%%/images/land/forest12.JPG
%%DATADIR%%/images/land/forest13.jpg
%%DATADIR%%/images/land/forest14.jpg
%%DATADIR%%/images/land/forest15.jpg
%%DATADIR%%/images/land/forest2.jpg
%%DATADIR%%/images/land/forest3.jpg
%%DATADIR%%/images/land/forest4.jpg
%%DATADIR%%/images/land/forest5.jpg
%%DATADIR%%/images/land/forest6.jpg
%%DATADIR%%/images/land/forest7.jpg
%%DATADIR%%/images/land/forest8.jpg
%%DATADIR%%/images/land/forest9.jpg
%%DATADIR%%/images/land/garden1.jpg
%%DATADIR%%/images/land/gliese.png
%%DATADIR%%/images/land/haze0.jpg
%%DATADIR%%/images/land/haze1.jpg
%%DATADIR%%/images/land/hills0.jpg
%%DATADIR%%/images/land/hills1.jpg
%%DATADIR%%/images/land/hills10.jpg
%%DATADIR%%/images/land/hills11.jpg
%%DATADIR%%/images/land/hills13.jpg
%%DATADIR%%/images/land/hills2.jpg
%%DATADIR%%/images/land/hills3.jpg
%%DATADIR%%/images/land/hills4.jpg
%%DATADIR%%/images/land/hills5-sfiera.jpg
%%DATADIR%%/images/land/hills6-sfiera.jpg
%%DATADIR%%/images/land/hills7-harro.jpg
%%DATADIR%%/images/land/hills8.jpg
%%DATADIR%%/images/land/humo.png
%%DATADIR%%/images/land/igna.png
%%DATADIR%%/images/land/industrial0-iridium.jpg
%%DATADIR%%/images/land/lava0.jpg
%%DATADIR%%/images/land/lava1.jpg
%%DATADIR%%/images/land/lava10.jpg
%%DATADIR%%/images/land/lava11.jpg
%%DATADIR%%/images/land/lava12.jpg
%%DATADIR%%/images/land/lava13.jpg
%%DATADIR%%/images/land/lava14.png
%%DATADIR%%/images/land/lava15.jpg
%%DATADIR%%/images/land/lava2.jpg
%%DATADIR%%/images/land/lava3.jpg
%%DATADIR%%/images/land/lava4.jpg
%%DATADIR%%/images/land/lava5.jpg
%%DATADIR%%/images/land/lava6.jpg
%%DATADIR%%/images/land/lava7-sfiera.jpg
%%DATADIR%%/images/land/lava8.jpg
%%DATADIR%%/images/land/lava9.png
%%DATADIR%%/images/land/loc0.jpg
%%DATADIR%%/images/land/loc1.jpg
%%DATADIR%%/images/land/loc2.jpg
%%DATADIR%%/images/land/loc3.jpg
%%DATADIR%%/images/land/mars0.jpg
%%DATADIR%%/images/land/mars1.jpg
%%DATADIR%%/images/land/mars2.jpg
%%DATADIR%%/images/land/mars3.jpg
%%DATADIR%%/images/land/mars4.jpg
%%DATADIR%%/images/land/mercury1.jpg
%%DATADIR%%/images/land/methuselah.png
%%DATADIR%%/images/land/mfield0.jpg
%%DATADIR%%/images/land/mfield1.jpg
%%DATADIR%%/images/land/mfield2.jpg
%%DATADIR%%/images/land/mfield3.jpg
%%DATADIR%%/images/land/mfield4.jpg
%%DATADIR%%/images/land/mfield5.jpg
%%DATADIR%%/images/land/moon0.jpg
%%DATADIR%%/images/land/moon1.jpg
%%DATADIR%%/images/land/mountain0.jpg
%%DATADIR%%/images/land/mountain1.jpg
%%DATADIR%%/images/land/mountain10-sfiera.jpg
%%DATADIR%%/images/land/mountain11-sfiera.jpg
%%DATADIR%%/images/land/mountain12-sfiera.jpg
%%DATADIR%%/images/land/mountain13-sfiera.jpg
%%DATADIR%%/images/land/mountain14-sfiera.jpg
%%DATADIR%%/images/land/mountain15-sfiera.jpg
%%DATADIR%%/images/land/mountain16-striker.jpg
%%DATADIR%%/images/land/mountain17-harro.jpg
%%DATADIR%%/images/land/mountain18-harro.jpg
%%DATADIR%%/images/land/mountain19-harro.jpg
%%DATADIR%%/images/land/mountain2.jpg
%%DATADIR%%/images/land/mountain20-harro.jpg
%%DATADIR%%/images/land/mountain21-harro.jpg
%%DATADIR%%/images/land/mountain22-spfld.jpg
%%DATADIR%%/images/land/mountain23-spfld.jpg
%%DATADIR%%/images/land/mountain24-spfld.jpg
%%DATADIR%%/images/land/mountain25-spfld.jpg
%%DATADIR%%/images/land/mountain26.jpg
%%DATADIR%%/images/land/mountain27.jpg
%%DATADIR%%/images/land/mountain28.jpg
%%DATADIR%%/images/land/mountain3.jpg
%%DATADIR%%/images/land/mountain33.jpg
%%DATADIR%%/images/land/mountain38.png
%%DATADIR%%/images/land/mountain4.jpg
%%DATADIR%%/images/land/mountain41.jpg
%%DATADIR%%/images/land/mountain45.jpg
%%DATADIR%%/images/land/mountain5.jpg
%%DATADIR%%/images/land/mountain6.jpg
%%DATADIR%%/images/land/mountain7.jpg
%%DATADIR%%/images/land/mountain8.jpg
%%DATADIR%%/images/land/mountain9.jpg
%%DATADIR%%/images/land/myrabella0.jpg
%%DATADIR%%/images/land/myrabella1.jpg
%%DATADIR%%/images/land/myrabella2.jpg
%%DATADIR%%/images/land/myrabella3.jpg
%%DATADIR%%/images/land/myrabella4.jpg
%%DATADIR%%/images/land/myrabella5.jpg
%%DATADIR%%/images/land/myrabella6.jpg
%%DATADIR%%/images/land/myrabella7.jpg
%%DATADIR%%/images/land/myrabella8.jpg
%%DATADIR%%/images/land/nasa0.jpg
%%DATADIR%%/images/land/nasa1.jpg
%%DATADIR%%/images/land/nasa10.jpg
%%DATADIR%%/images/land/nasa11.jpg
%%DATADIR%%/images/land/nasa12.jpg
%%DATADIR%%/images/land/nasa13.jpg
%%DATADIR%%/images/land/nasa14.jpg
%%DATADIR%%/images/land/nasa15.jpg
%%DATADIR%%/images/land/nasa16.jpg
%%DATADIR%%/images/land/nasa17.jpg
%%DATADIR%%/images/land/nasa18.jpg
%%DATADIR%%/images/land/nasa19.jpg
%%DATADIR%%/images/land/nasa2.jpg
%%DATADIR%%/images/land/nasa20.jpg
%%DATADIR%%/images/land/nasa21.jpg
%%DATADIR%%/images/land/nasa22.jpg
%%DATADIR%%/images/land/nasa23.jpg
%%DATADIR%%/images/land/nasa24.jpg
%%DATADIR%%/images/land/nasa25.jpg
%%DATADIR%%/images/land/nasa26.jpg
%%DATADIR%%/images/land/nasa27.jpg
%%DATADIR%%/images/land/nasa28.jpg
%%DATADIR%%/images/land/nasa29.png
%%DATADIR%%/images/land/nasa3.jpg
%%DATADIR%%/images/land/nasa30.png
%%DATADIR%%/images/land/nasa31.jpg
%%DATADIR%%/images/land/nasa32.jpg
%%DATADIR%%/images/land/nasa33.jpg
%%DATADIR%%/images/land/nasa34.jpg
%%DATADIR%%/images/land/nasa35.jpg
%%DATADIR%%/images/land/nasa36.jpg
%%DATADIR%%/images/land/nasa37.jpg
%%DATADIR%%/images/land/nasa38.jpg
%%DATADIR%%/images/land/nasa39.jpg
%%DATADIR%%/images/land/nasa4.jpg
%%DATADIR%%/images/land/nasa40.jpg
%%DATADIR%%/images/land/nasa41.jpg
%%DATADIR%%/images/land/nasa5.jpg
%%DATADIR%%/images/land/nasa6.jpg
%%DATADIR%%/images/land/nasa7.jpg
%%DATADIR%%/images/land/nasa8.jpg
%%DATADIR%%/images/land/nasa9.jpg
%%DATADIR%%/images/land/occupas.png
%%DATADIR%%/images/land/path1.JPG
%%DATADIR%%/images/land/path2.JPG
%%DATADIR%%/images/land/path3.jpg
%%DATADIR%%/images/land/path4.JPG
%%DATADIR%%/images/land/peripheria.jpg
%%DATADIR%%/images/land/redias.png
%%DATADIR%%/images/land/sea0.jpg
%%DATADIR%%/images/land/sea1.jpg
%%DATADIR%%/images/land/sea10-sfiera.jpg
%%DATADIR%%/images/land/sea11-sfiera.jpg
%%DATADIR%%/images/land/sea12-sfiera.jpg
%%DATADIR%%/images/land/sea13-sfiera.jpg
%%DATADIR%%/images/land/sea14-sfiera.jpg
%%DATADIR%%/images/land/sea15-harro.jpg
%%DATADIR%%/images/land/sea16-harro.jpg
%%DATADIR%%/images/land/sea17-harro.jpg
%%DATADIR%%/images/land/sea18.jpg
%%DATADIR%%/images/land/sea19.jpg
%%DATADIR%%/images/land/sea2.jpg
%%DATADIR%%/images/land/sea20.jpg
%%DATADIR%%/images/land/sea21.jpg
%%DATADIR%%/images/land/sea22.jpg
%%DATADIR%%/images/land/sea23.jpg
%%DATADIR%%/images/land/sea24.jpg
%%DATADIR%%/images/land/sea3.jpg
%%DATADIR%%/images/land/sea4.jpg
%%DATADIR%%/images/land/sea5.jpg
%%DATADIR%%/images/land/sea6.jpg
%%DATADIR%%/images/land/sea7.jpg
%%DATADIR%%/images/land/sea8.jpg
%%DATADIR%%/images/land/sea9.jpg
%%DATADIR%%/images/land/sivael0.jpg
%%DATADIR%%/images/land/sivael1.jpg
%%DATADIR%%/images/land/sivael2.jpg
%%DATADIR%%/images/land/sivael3.jpg
%%DATADIR%%/images/land/sivael4.jpg
%%DATADIR%%/images/land/sivael5.jpg
%%DATADIR%%/images/land/sivael6.jpg
%%DATADIR%%/images/land/sivael7.jpg
%%DATADIR%%/images/land/sivael8.jpg
%%DATADIR%%/images/land/sivael9.jpg
%%DATADIR%%/images/land/sky0.jpg
%%DATADIR%%/images/land/sky1.jpg
%%DATADIR%%/images/land/sky10.jpg
%%DATADIR%%/images/land/sky11.jpg
%%DATADIR%%/images/land/sky12.jpg
%%DATADIR%%/images/land/sky13.jpg
%%DATADIR%%/images/land/sky14.jpg
%%DATADIR%%/images/land/sky2.jpg
%%DATADIR%%/images/land/sky3.jpg
%%DATADIR%%/images/land/sky4.jpg
%%DATADIR%%/images/land/sky5.jpg
%%DATADIR%%/images/land/sky6.jpg
%%DATADIR%%/images/land/sky7.jpg
%%DATADIR%%/images/land/sky8.jpg
%%DATADIR%%/images/land/sky9.jpg
%%DATADIR%%/images/land/snow0.jpg
%%DATADIR%%/images/land/snow1.jpg
%%DATADIR%%/images/land/snow10-sfiera.jpg
%%DATADIR%%/images/land/snow10.jpg
%%DATADIR%%/images/land/snow11-sfiera.jpg
%%DATADIR%%/images/land/snow12.jpg
%%DATADIR%%/images/land/snow13.jpg
%%DATADIR%%/images/land/snow14.jpg
%%DATADIR%%/images/land/snow15.jpg
%%DATADIR%%/images/land/snow16.jpg
%%DATADIR%%/images/land/snow17.jpg
%%DATADIR%%/images/land/snow18.jpg
%%DATADIR%%/images/land/snow19.jpg
%%DATADIR%%/images/land/snow2.jpg
%%DATADIR%%/images/land/snow20.jpg
%%DATADIR%%/images/land/snow21.jpg
%%DATADIR%%/images/land/snow22.jpg
%%DATADIR%%/images/land/snow23.jpg
%%DATADIR%%/images/land/snow24.png
%%DATADIR%%/images/land/snow25.png
%%DATADIR%%/images/land/snow26.jpg
%%DATADIR%%/images/land/snow27.jpg
%%DATADIR%%/images/land/snow28.jpg
%%DATADIR%%/images/land/snow29.jpg
%%DATADIR%%/images/land/snow3.jpg
%%DATADIR%%/images/land/snow30.jpg
%%DATADIR%%/images/land/snow33.jpg
%%DATADIR%%/images/land/snow36.jpg
%%DATADIR%%/images/land/snow37.jpg
%%DATADIR%%/images/land/snow38.jpg
%%DATADIR%%/images/land/snow39.jpg
%%DATADIR%%/images/land/snow4.jpg
%%DATADIR%%/images/land/snow5.jpg
%%DATADIR%%/images/land/snow6.jpg
%%DATADIR%%/images/land/snow7.jpg
%%DATADIR%%/images/land/snow8.jpg
%%DATADIR%%/images/land/snow9.jpg
%%DATADIR%%/images/land/space0.jpg
%%DATADIR%%/images/land/space1.jpg
%%DATADIR%%/images/land/space2.jpg
%%DATADIR%%/images/land/space3.jpg
%%DATADIR%%/images/land/space4.jpg
%%DATADIR%%/images/land/space5.jpg
%%DATADIR%%/images/land/space6.jpg
%%DATADIR%%/images/land/space7.jpg
%%DATADIR%%/images/land/station0.jpg
%%DATADIR%%/images/land/station1.jpg
%%DATADIR%%/images/land/station10.jpg
%%DATADIR%%/images/land/station11.jpg
%%DATADIR%%/images/land/station12.jpg
%%DATADIR%%/images/land/station13.jpg
%%DATADIR%%/images/land/station14.jpg
%%DATADIR%%/images/land/station15.jpg
%%DATADIR%%/images/land/station16.jpg
%%DATADIR%%/images/land/station17.jpg
%%DATADIR%%/images/land/station18.jpg
%%DATADIR%%/images/land/station19.jpg
%%DATADIR%%/images/land/station2.jpg
%%DATADIR%%/images/land/station20.jpg
%%DATADIR%%/images/land/station21.jpg
%%DATADIR%%/images/land/station22.jpg
%%DATADIR%%/images/land/station23.jpg
%%DATADIR%%/images/land/station24.jpg
%%DATADIR%%/images/land/station25.jpg
%%DATADIR%%/images/land/station26.jpg
%%DATADIR%%/images/land/station27.jpg
%%DATADIR%%/images/land/station28.jpg
%%DATADIR%%/images/land/station29.jpg
%%DATADIR%%/images/land/station3.jpg
%%DATADIR%%/images/land/station30.jpg
%%DATADIR%%/images/land/station31.jpg
%%DATADIR%%/images/land/station32.jpg
%%DATADIR%%/images/land/station33.jpg
%%DATADIR%%/images/land/station34.jpg
%%DATADIR%%/images/land/station35.jpg
%%DATADIR%%/images/land/station36.jpg
%%DATADIR%%/images/land/station37.jpg
%%DATADIR%%/images/land/station38.jpg
%%DATADIR%%/images/land/station39.jpg
%%DATADIR%%/images/land/station4.jpg
%%DATADIR%%/images/land/station40.jpg
%%DATADIR%%/images/land/station41.jpg
%%DATADIR%%/images/land/station42.jpg
%%DATADIR%%/images/land/station43.jpg
%%DATADIR%%/images/land/station44.jpg
%%DATADIR%%/images/land/station45.jpg
%%DATADIR%%/images/land/station46.jpg
%%DATADIR%%/images/land/station47.jpg
%%DATADIR%%/images/land/station48.jpg
%%DATADIR%%/images/land/station49.jpg
%%DATADIR%%/images/land/station5.jpg
%%DATADIR%%/images/land/station50.jpg
%%DATADIR%%/images/land/station53.jpg
%%DATADIR%%/images/land/station54.jpg
%%DATADIR%%/images/land/station55.jpg
%%DATADIR%%/images/land/station56.jpg
%%DATADIR%%/images/land/station57.jpg
%%DATADIR%%/images/land/station59.jpg
%%DATADIR%%/images/land/station6.jpg
%%DATADIR%%/images/land/station60.jpg
%%DATADIR%%/images/land/station7.jpg
%%DATADIR%%/images/land/station8.jpg
%%DATADIR%%/images/land/station9.jpg
%%DATADIR%%/images/land/treser.png
%%DATADIR%%/images/land/turra.png
%%DATADIR%%/images/land/valley0.jpg
%%DATADIR%%/images/land/valley1.jpg
%%DATADIR%%/images/land/valley10-sfiera.jpg
%%DATADIR%%/images/land/valley11-harro.jpg
%%DATADIR%%/images/land/valley12-harro.jpg
%%DATADIR%%/images/land/valley13-harro.jpg
%%DATADIR%%/images/land/valley14-harro.jpg
%%DATADIR%%/images/land/valley15-harro.jpg
%%DATADIR%%/images/land/valley2.jpg
%%DATADIR%%/images/land/valley3.jpg
%%DATADIR%%/images/land/valley4.jpg
%%DATADIR%%/images/land/valley5.jpg
%%DATADIR%%/images/land/valley6.jpg
%%DATADIR%%/images/land/valley7.jpg
%%DATADIR%%/images/land/valley8.jpg
%%DATADIR%%/images/land/valley9.jpg
%%DATADIR%%/images/land/vulpa.png
%%DATADIR%%/images/land/water0.jpg
%%DATADIR%%/images/land/water1.jpg
%%DATADIR%%/images/land/water10-harro.jpg
%%DATADIR%%/images/land/water11-harro.jpg
%%DATADIR%%/images/land/water12.jpg
%%DATADIR%%/images/land/water13.jpg
%%DATADIR%%/images/land/water14.jpg
%%DATADIR%%/images/land/water15.jpg
%%DATADIR%%/images/land/water16.jpg
%%DATADIR%%/images/land/water17.jpg
%%DATADIR%%/images/land/water18.jpg
%%DATADIR%%/images/land/water19.jpg
%%DATADIR%%/images/land/water2.jpg
%%DATADIR%%/images/land/water20.jpg
%%DATADIR%%/images/land/water21.jpg
%%DATADIR%%/images/land/water22.jpg
%%DATADIR%%/images/land/water23.jpg
%%DATADIR%%/images/land/water24.jpg
%%DATADIR%%/images/land/water25.jpg
%%DATADIR%%/images/land/water28.jpg
%%DATADIR%%/images/land/water3.jpg
%%DATADIR%%/images/land/water30.jpg
%%DATADIR%%/images/land/water31.jpg
%%DATADIR%%/images/land/water32.jpg
%%DATADIR%%/images/land/water4.jpg
%%DATADIR%%/images/land/water5.jpg
%%DATADIR%%/images/land/water6.jpg
%%DATADIR%%/images/land/water7.jpg
%%DATADIR%%/images/land/water8.jpg
%%DATADIR%%/images/land/water9.jpg
%%DATADIR%%/images/map/a-dwarf-star+.png
%%DATADIR%%/images/map/a-giant-star+.png
%%DATADIR%%/images/map/a-large-star+.png
%%DATADIR%%/images/map/a-small-star+.png
%%DATADIR%%/images/map/a-star+.png
%%DATADIR%%/images/map/a-supergiant-star+.png
%%DATADIR%%/images/map/b-dwarf-star+.png
%%DATADIR%%/images/map/b-giant-star+.png
%%DATADIR%%/images/map/b-large-star+.png
%%DATADIR%%/images/map/b-small-star+.png
%%DATADIR%%/images/map/b-star+.png
%%DATADIR%%/images/map/b-supergiant-star+.png
%%DATADIR%%/images/map/big black hole+.png
%%DATADIR%%/images/map/black hole 3+.png
%%DATADIR%%/images/map/black hole 4+.png
%%DATADIR%%/images/map/black hole 5+.png
%%DATADIR%%/images/map/black hole 6+.png
%%DATADIR%%/images/map/black hole corona+.png
%%DATADIR%%/images/map/black hole star+.png
%%DATADIR%%/images/map/black-hole-star+.png
%%DATADIR%%/images/map/black-hole-still+.png
%%DATADIR%%/images/map/brown-dwarf-star+.png
%%DATADIR%%/images/map/carbon-star+.png
%%DATADIR%%/images/map/coal-black-hole-star+.png
%%DATADIR%%/images/map/f-dwarf-star+.png
%%DATADIR%%/images/map/f-giant-star+.png
%%DATADIR%%/images/map/f-large-star+.png
%%DATADIR%%/images/map/f-old-star+.png
%%DATADIR%%/images/map/f-small-star+.png
%%DATADIR%%/images/map/f-star+.png
%%DATADIR%%/images/map/f-supergiant-star+.png
%%DATADIR%%/images/map/g-dwarf-star+.png
%%DATADIR%%/images/map/g-giant-star+.png
%%DATADIR%%/images/map/g-large-star+.png
%%DATADIR%%/images/map/g-old-star+.png
%%DATADIR%%/images/map/g-small-star+.png
%%DATADIR%%/images/map/g-star+.png
%%DATADIR%%/images/map/g-supergiant-star+.png
%%DATADIR%%/images/map/giant-star+.png
%%DATADIR%%/images/map/k-dwarf-star+.png
%%DATADIR%%/images/map/k-giant-star+.png
%%DATADIR%%/images/map/k-large-star+.png
%%DATADIR%%/images/map/k-old-star+.png
%%DATADIR%%/images/map/k-small-star+.png
%%DATADIR%%/images/map/k-star+.png
%%DATADIR%%/images/map/k-supergiant-star+.png
%%DATADIR%%/images/map/m-dwarf-star+.png
%%DATADIR%%/images/map/m-giant-star+.png
%%DATADIR%%/images/map/m-large-star+.png
%%DATADIR%%/images/map/m-small-star+.png
%%DATADIR%%/images/map/m-star+.png
%%DATADIR%%/images/map/m-supergiant-star+.png
%%DATADIR%%/images/map/magnetar-star+.png
%%DATADIR%%/images/map/neutron-star+.png
%%DATADIR%%/images/map/nova-old-star+.png
%%DATADIR%%/images/map/nova-small-star+.png
%%DATADIR%%/images/map/nova-star+.png
%%DATADIR%%/images/map/o-dwarf-star+.png
%%DATADIR%%/images/map/o-giant-star+.png
%%DATADIR%%/images/map/o-large-star+.png
%%DATADIR%%/images/map/o-small-star+.png
%%DATADIR%%/images/map/o-star+.png
%%DATADIR%%/images/map/o-supergiant-star+.png
%%DATADIR%%/images/map/patir-star+.png
%%DATADIR%%/images/map/small-black-hole-star+.png
%%DATADIR%%/images/map/small-neutron-star+.png
%%DATADIR%%/images/map/twilight-black-hole-star+.png
%%DATADIR%%/images/map/unexplored-star+.png
%%DATADIR%%/images/map/wr-star+.png
%%DATADIR%%/images/outfit/acuit.png
%%DATADIR%%/images/outfit/acumen.png
%%DATADIR%%/images/outfit/aeon cell.png
%%DATADIR%%/images/outfit/afterburner.png
%%DATADIR%%/images/outfit/ameliorate cell.png
%%DATADIR%%/images/outfit/android.png
%%DATADIR%%/images/outfit/anomalous mass.png
%%DATADIR%%/images/outfit/anomalous shield restorer.png
%%DATADIR%%/images/outfit/anti-materiel gun.png
%%DATADIR%%/images/outfit/anti-missile hai.png
%%DATADIR%%/images/outfit/anti-missile.png
%%DATADIR%%/images/outfit/antimatter power cell.png
%%DATADIR%%/images/outfit/arc fusion torch.png
%%DATADIR%%/images/outfit/asteroid scanner.png
%%DATADIR%%/images/outfit/asteroid weapon 1.png
%%DATADIR%%/images/outfit/asteroid weapon 2.png
%%DATADIR%%/images/outfit/asteroid weapon 3.png
%%DATADIR%%/images/outfit/asteroid weapon 4.png
%%DATADIR%%/images/outfit/asteroid weapon 5.png
%%DATADIR%%/images/outfit/asteroid weapon 6.png
%%DATADIR%%/images/outfit/asteroid weapon 7.png
%%DATADIR%%/images/outfit/asteroid weapon 8.png
%%DATADIR%%/images/outfit/astuit.png
%%DATADIR%%/images/outfit/auxiliary license.png
%%DATADIR%%/images/outfit/ballistic cannon.png
%%DATADIR%%/images/outfit/ballistic turret.png
%%DATADIR%%/images/outfit/banisher.png
%%DATADIR%%/images/outfit/battlezone battery.png
%%DATADIR%%/images/outfit/beam antimatter drive.png
%%DATADIR%%/images/outfit/beyond the hyperdrive.png
%%DATADIR%%/images/outfit/bimodal coilgun turret.png
%%DATADIR%%/images/outfit/bimodal coilgun.png
%%DATADIR%%/images/outfit/blaster turret.png
%%DATADIR%%/images/outfit/blaster.png
%%DATADIR%%/images/outfit/blaze-pike.png
%%DATADIR%%/images/outfit/blue optical laser.png
%%DATADIR%%/images/outfit/blue screwdriver.png
%%DATADIR%%/images/outfit/blue sun.png
%%DATADIR%%/images/outfit/bombardment cannon.png
%%DATADIR%%/images/outfit/bombardment turret.png
%%DATADIR%%/images/outfit/brawl cell.png
%%DATADIR%%/images/outfit/breeder.png
%%DATADIR%%/images/outfit/brig.png
%%DATADIR%%/images/outfit/bright cloud.png
%%DATADIR%%/images/outfit/bullet storage.png
%%DATADIR%%/images/outfit/bullet.png
%%DATADIR%%/images/outfit/bunk room.png
%%DATADIR%%/images/outfit/burrower.png
%%DATADIR%%/images/outfit/buzzer.png
%%DATADIR%%/images/outfit/caldera afterburner.png
%%DATADIR%%/images/outfit/campaign core.png
%%DATADIR%%/images/outfit/cargo expansion.png
%%DATADIR%%/images/outfit/cargo scanner.png
%%DATADIR%%/images/outfit/catalytic ramscoop.png
%%DATADIR%%/images/outfit/chiisana rift steering.png
%%DATADIR%%/images/outfit/chiisana rift thruster.png
%%DATADIR%%/images/outfit/choleric cannon.png
%%DATADIR%%/images/outfit/choleric turret.png
%%DATADIR%%/images/outfit/city-ship license.png
%%DATADIR%%/images/outfit/cloud piercer.png
%%DATADIR%%/images/outfit/coalition license.png
%%DATADIR%%/images/outfit/collar.png
%%DATADIR%%/images/outfit/command center.png
%%DATADIR%%/images/outfit/concealment lamina.png
%%DATADIR%%/images/outfit/concentrating solar array.png
%%DATADIR%%/images/outfit/concentrating solar cell.png
%%DATADIR%%/images/outfit/control transceiver.png
%%DATADIR%%/images/outfit/cooling ducts hai.png
%%DATADIR%%/images/outfit/cooling ducts.png
%%DATADIR%%/images/outfit/cooling module.png
%%DATADIR%%/images/outfit/core.png
%%DATADIR%%/images/outfit/crusade battery.png
%%DATADIR%%/images/outfit/cryogenic deuterium tank.png
%%DATADIR%%/images/outfit/crystal capacitor.png
%%DATADIR%%/images/outfit/crystal pendant.png
%%DATADIR%%/images/outfit/dark reactor.png
%%DATADIR%%/images/outfit/dark storm.png
%%DATADIR%%/images/outfit/decoy plating.png
%%DATADIR%%/images/outfit/detainer.png
%%DATADIR%%/images/outfit/deuterium slush tank.png
%%DATADIR%%/images/outfit/diffuse deflector.png
%%DATADIR%%/images/outfit/disruptor.png
%%DATADIR%%/images/outfit/double plasma core.png
%%DATADIR%%/images/outfit/drag cannon.png
%%DATADIR%%/images/outfit/dragonflame.png
%%DATADIR%%/images/outfit/dual sunbeam turret.png
%%DATADIR%%/images/outfit/dwarf core hai.png
%%DATADIR%%/images/outfit/dwarf core.png
%%DATADIR%%/images/outfit/electron beam.png
%%DATADIR%%/images/outfit/electron turret.png
%%DATADIR%%/images/outfit/electroweak reactor.png
%%DATADIR%%/images/outfit/embattery.png
%%DATADIR%%/images/outfit/ember tear.png
%%DATADIR%%/images/outfit/emergency ramscoop.png
%%DATADIR%%/images/outfit/emp rack.png
%%DATADIR%%/images/outfit/emp torpedo bay.png
%%DATADIR%%/images/outfit/emp torpedo.png
%%DATADIR%%/images/outfit/enforcer confrontation gear.png
%%DATADIR%%/images/outfit/enforcer riot staff.png
%%DATADIR%%/images/outfit/epoch cell.png
%%DATADIR%%/images/outfit/excavator.png
%%DATADIR%%/images/outfit/expeller.png
%%DATADIR%%/images/outfit/external launch rail.png
%%DATADIR%%/images/outfit/external launch tube.png
%%DATADIR%%/images/outfit/finisher maegrolain.png
%%DATADIR%%/images/outfit/finisher pod.png
%%DATADIR%%/images/outfit/finisher storage.png
%%DATADIR%%/images/outfit/finisher.png
%%DATADIR%%/images/outfit/fire-lance.png
%%DATADIR%%/images/outfit/firelight bank.png
%%DATADIR%%/images/outfit/firelight rack.png
%%DATADIR%%/images/outfit/firelight.png
%%DATADIR%%/images/outfit/firestorm battery.png
%%DATADIR%%/images/outfit/firestorm torpedo rack.png
%%DATADIR%%/images/outfit/firestorm torpedo.png
%%DATADIR%%/images/outfit/fission hai.png
%%DATADIR%%/images/outfit/fission.png
%%DATADIR%%/images/outfit/fissiondrive.png
%%DATADIR%%/images/outfit/flamethrower.png
%%DATADIR%%/images/outfit/fragmentation grenades.png
%%DATADIR%%/images/outfit/fuel cell hai.png
%%DATADIR%%/images/outfit/fuel module.png
%%DATADIR%%/images/outfit/fuel pod.png
%%DATADIR%%/images/outfit/fuel sail.png
%%DATADIR%%/images/outfit/fusion cannon.png
%%DATADIR%%/images/outfit/fusion hai.png
%%DATADIR%%/images/outfit/fusion.png
%%DATADIR%%/images/outfit/fusiondrive.png
%%DATADIR%%/images/outfit/gas class shield.png
%%DATADIR%%/images/outfit/gat turret.png
%%DATADIR%%/images/outfit/gat.png
%%DATADIR%%/images/outfit/grab-strike.png
%%DATADIR%%/images/outfit/green optical laser.png
%%DATADIR%%/images/outfit/guardian turret.png
%%DATADIR%%/images/outfit/guile pulse laser.png
%%DATADIR%%/images/outfit/hai boulder.png
%%DATADIR%%/images/outfit/hai geode.png
%%DATADIR%%/images/outfit/hai ionic blaster.png
%%DATADIR%%/images/outfit/hai ionic turret.png
%%DATADIR%%/images/outfit/hai jammer overclocked.png
%%DATADIR%%/images/outfit/hai jammer.png
%%DATADIR%%/images/outfit/hai pebble core.png
%%DATADIR%%/images/outfit/hai rifle.png
%%DATADIR%%/images/outfit/hai tracker pod.png
%%DATADIR%%/images/outfit/hai tracker storage.png
%%DATADIR%%/images/outfit/hai tracker.png
%%DATADIR%%/images/outfit/hai williwaw.png
%%DATADIR%%/images/outfit/harvested aluminum.png
%%DATADIR%%/images/outfit/harvested copper.png
%%DATADIR%%/images/outfit/harvested gold.png
%%DATADIR%%/images/outfit/harvested iron.png
%%DATADIR%%/images/outfit/harvested lead.png
%%DATADIR%%/images/outfit/harvested neodymium.png
%%DATADIR%%/images/outfit/harvested platinum.png
%%DATADIR%%/images/outfit/harvested silicon.png
%%DATADIR%%/images/outfit/harvested silver.png
%%DATADIR%%/images/outfit/harvested titanium.png
%%DATADIR%%/images/outfit/harvested tungsten.png
%%DATADIR%%/images/outfit/harvested uranium.png
%%DATADIR%%/images/outfit/harvested yottrite.png
%%DATADIR%%/images/outfit/heatsink partition.png
%%DATADIR%%/images/outfit/heavy anti-missile hai.png
%%DATADIR%%/images/outfit/heavy anti-missile.png
%%DATADIR%%/images/outfit/heavy blaster.png
%%DATADIR%%/images/outfit/heavy laser turret.png
%%DATADIR%%/images/outfit/heavy laser.png
%%DATADIR%%/images/outfit/heliarch attractor.png
%%DATADIR%%/images/outfit/heliarch license.png
%%DATADIR%%/images/outfit/heliarch repulsor.png
%%DATADIR%%/images/outfit/hion.png
%%DATADIR%%/images/outfit/holovid zone.png
%%DATADIR%%/images/outfit/horizon grappler.png
%%DATADIR%%/images/outfit/huge atomic steering hai.png
%%DATADIR%%/images/outfit/huge atomic steering.png
%%DATADIR%%/images/outfit/huge atomic thruster hai.png
%%DATADIR%%/images/outfit/huge atomic thruster.png
%%DATADIR%%/images/outfit/huge battery hai.png
%%DATADIR%%/images/outfit/huge battery.png
%%DATADIR%%/images/outfit/huge fuel cell.png
%%DATADIR%%/images/outfit/huge ion steering.png
%%DATADIR%%/images/outfit/huge ion thruster.png
%%DATADIR%%/images/outfit/huge korath afterburner.png
%%DATADIR%%/images/outfit/huge korath reverser.png
%%DATADIR%%/images/outfit/huge korath steering.png
%%DATADIR%%/images/outfit/huge korath thruster.png
%%DATADIR%%/images/outfit/huge plasma steering.png
%%DATADIR%%/images/outfit/huge plasma thruster.png
%%DATADIR%%/images/outfit/huge shield.png
%%DATADIR%%/images/outfit/hv spike rack.png
%%DATADIR%%/images/outfit/hv spike.png
%%DATADIR%%/images/outfit/hydra pod.png
%%DATADIR%%/images/outfit/hydra.png
%%DATADIR%%/images/outfit/hyperdrive.png
%%DATADIR%%/images/outfit/inductive extractor.png
%%DATADIR%%/images/outfit/inhibitor cannon.png
%%DATADIR%%/images/outfit/inhibitor turret.png
%%DATADIR%%/images/outfit/integral wood.png
%%DATADIR%%/images/outfit/interference plating.png
%%DATADIR%%/images/outfit/ion cannon.png
%%DATADIR%%/images/outfit/ion hail turret.png
%%DATADIR%%/images/outfit/ion rain gun.png
%%DATADIR%%/images/outfit/ion torch.png
%%DATADIR%%/images/outfit/ionic afterburner.png
%%DATADIR%%/images/outfit/irate cannon.png
%%DATADIR%%/images/outfit/irate carronade.png
%%DATADIR%%/images/outfit/irate turret.png
%%DATADIR%%/images/outfit/jamfruit pod.png
%%DATADIR%%/images/outfit/javelin mini pod.png
%%DATADIR%%/images/outfit/javelin pod.png
%%DATADIR%%/images/outfit/javelin storage.png
%%DATADIR%%/images/outfit/javelin turret.png
%%DATADIR%%/images/outfit/javelin.png
%%DATADIR%%/images/outfit/jump drive (broken).png
%%DATADIR%%/images/outfit/jump drive.png
%%DATADIR%%/images/outfit/ka'het annihilator turret.png
%%DATADIR%%/images/outfit/ka'het annihilator.png
%%DATADIR%%/images/outfit/ka'het compact engine.png
%%DATADIR%%/images/outfit/ka'het emp deployer.png
%%DATADIR%%/images/outfit/ka'het grand restorer.png
%%DATADIR%%/images/outfit/ka'het maeri engine.png
%%DATADIR%%/images/outfit/ka'het mhd deployer.png
%%DATADIR%%/images/outfit/ka'het mhd generator.png
%%DATADIR%%/images/outfit/ka'het nullifier.png
%%DATADIR%%/images/outfit/ka'het primary cooling.png
%%DATADIR%%/images/outfit/ka'het ravager beam.png
%%DATADIR%%/images/outfit/ka'het ravager turret.png
%%DATADIR%%/images/outfit/ka'het reserve accumulator.png
%%DATADIR%%/images/outfit/ka'het shield restorer.png
%%DATADIR%%/images/outfit/ka'het support cooling.png
%%DATADIR%%/images/outfit/ka'het sustainer engine.png
%%DATADIR%%/images/outfit/ka'het taser.png
%%DATADIR%%/images/outfit/ka'het telis engine.png
%%DATADIR%%/images/outfit/ka'het vareti engine.png
%%DATADIR%%/images/outfit/keystone.png
%%DATADIR%%/images/outfit/korath bow drive.png
%%DATADIR%%/images/outfit/korath digger turret.png
%%DATADIR%%/images/outfit/korath digger.png
%%DATADIR%%/images/outfit/korath fuel processor.png
%%DATADIR%%/images/outfit/korath heaver.png
%%DATADIR%%/images/outfit/korath inferno.png
%%DATADIR%%/images/outfit/korath mine storage.png
%%DATADIR%%/images/outfit/korath mine.png
%%DATADIR%%/images/outfit/korath minelayer.png
%%DATADIR%%/images/outfit/korath piercer storage.png
%%DATADIR%%/images/outfit/korath rifle.png
%%DATADIR%%/images/outfit/lantern fission core.png
%%DATADIR%%/images/outfit/large atomic steering hai.png
%%DATADIR%%/images/outfit/large atomic steering.png
%%DATADIR%%/images/outfit/large atomic thruster hai.png
%%DATADIR%%/images/outfit/large atomic thruster.png
%%DATADIR%%/images/outfit/large battery hai.png
%%DATADIR%%/images/outfit/large battery module.png
%%DATADIR%%/images/outfit/large battery.png
%%DATADIR%%/images/outfit/large betavoltaic.png
%%DATADIR%%/images/outfit/large biochemical.png
%%DATADIR%%/images/outfit/large cogeneration module.png
%%DATADIR%%/images/outfit/large collector module.png
%%DATADIR%%/images/outfit/large efreti steering.png
%%DATADIR%%/images/outfit/large efreti thruster.png
%%DATADIR%%/images/outfit/large fuel cell.png
%%DATADIR%%/images/outfit/large heat shunt.png
%%DATADIR%%/images/outfit/large ion steering.png
%%DATADIR%%/images/outfit/large ion thruster.png
%%DATADIR%%/images/outfit/large korath afterburner.png
%%DATADIR%%/images/outfit/large korath generator.png
%%DATADIR%%/images/outfit/large korath reverser.png
%%DATADIR%%/images/outfit/large korath steering.png
%%DATADIR%%/images/outfit/large korath thruster.png
%%DATADIR%%/images/outfit/large nanite fabricator.png
%%DATADIR%%/images/outfit/large plasma engines scin.png
%%DATADIR%%/images/outfit/large plasma steering.png
%%DATADIR%%/images/outfit/large plasma thruster.png
%%DATADIR%%/images/outfit/large quarg steering.png
%%DATADIR%%/images/outfit/large quarg thruster.png
%%DATADIR%%/images/outfit/large radar jammer.png
%%DATADIR%%/images/outfit/large radiant steering.png
%%DATADIR%%/images/outfit/large radiant thruster.png
%%DATADIR%%/images/outfit/large reactor module.png
%%DATADIR%%/images/outfit/large regenerator hai.png
%%DATADIR%%/images/outfit/large regenerator.png
%%DATADIR%%/images/outfit/large remnant steering.png
%%DATADIR%%/images/outfit/large remnant thruster.png
%%DATADIR%%/images/outfit/large repair module.png
%%DATADIR%%/images/outfit/large reverse module.png
%%DATADIR%%/images/outfit/large shield module.png
%%DATADIR%%/images/outfit/large shield relay.png
%%DATADIR%%/images/outfit/large shield.png
%%DATADIR%%/images/outfit/large steering module.png
%%DATADIR%%/images/outfit/large successor battery.png
%%DATADIR%%/images/outfit/large successor reactor.png
%%DATADIR%%/images/outfit/large successor reverse.png
%%DATADIR%%/images/outfit/large successor shield.png
%%DATADIR%%/images/outfit/large successor steering.png
%%DATADIR%%/images/outfit/large successor thruster.png
%%DATADIR%%/images/outfit/large systems core.png
%%DATADIR%%/images/outfit/large thrust module.png
%%DATADIR%%/images/outfit/large torch steering vi.png
%%DATADIR%%/images/outfit/large torch thruster vi.png
%%DATADIR%%/images/outfit/laser rifle.png
%%DATADIR%%/images/outfit/laser turret.png
%%DATADIR%%/images/outfit/laser.png
%%DATADIR%%/images/outfit/lasher pistol.png
%%DATADIR%%/images/outfit/license.png
%%DATADIR%%/images/outfit/liquid class shield.png
%%DATADIR%%/images/outfit/liquid helium.png
%%DATADIR%%/images/outfit/liquid nitrogen.png
%%DATADIR%%/images/outfit/liquid sodium.png
%%DATADIR%%/images/outfit/locust blaster.png
%%DATADIR%%/images/outfit/locust turret.png
%%DATADIR%%/images/outfit/luxury accommodations.png
%%DATADIR%%/images/outfit/magnetic scoop.png
%%DATADIR%%/images/outfit/magnetoplasma drive.png
%%DATADIR%%/images/outfit/mandible cannon.png
%%DATADIR%%/images/outfit/map.png
%%DATADIR%%/images/outfit/mcs extractor.png
%%DATADIR%%/images/outfit/medium atomic reverse hai.png
%%DATADIR%%/images/outfit/medium atomic steering hai.png
%%DATADIR%%/images/outfit/medium atomic steering.png
%%DATADIR%%/images/outfit/medium atomic thruster hai.png
%%DATADIR%%/images/outfit/medium atomic thruster.png
%%DATADIR%%/images/outfit/medium battery hai.png
%%DATADIR%%/images/outfit/medium battery.png
%%DATADIR%%/images/outfit/medium betavoltaic.png
%%DATADIR%%/images/outfit/medium efreti steering.png
%%DATADIR%%/images/outfit/medium efreti thruster.png
%%DATADIR%%/images/outfit/medium fuel cell.png
%%DATADIR%%/images/outfit/medium ion steering.png
%%DATADIR%%/images/outfit/medium ion thruster.png
%%DATADIR%%/images/outfit/medium korath afterburner.png
%%DATADIR%%/images/outfit/medium korath generator.png
%%DATADIR%%/images/outfit/medium korath reverser.png
%%DATADIR%%/images/outfit/medium korath steering.png
%%DATADIR%%/images/outfit/medium korath thruster.png
%%DATADIR%%/images/outfit/medium plasma steering scin.png
%%DATADIR%%/images/outfit/medium plasma steering.png
%%DATADIR%%/images/outfit/medium plasma thruster scin.png
%%DATADIR%%/images/outfit/medium plasma thruster.png
%%DATADIR%%/images/outfit/medium quarg steering.png
%%DATADIR%%/images/outfit/medium quarg thruster.png
%%DATADIR%%/images/outfit/medium radiant steering.png
%%DATADIR%%/images/outfit/medium radiant thruster.png
%%DATADIR%%/images/outfit/medium remnant steering.png
%%DATADIR%%/images/outfit/medium remnant thruster.png
%%DATADIR%%/images/outfit/medium shield.png
%%DATADIR%%/images/outfit/medium successor reactor.png
%%DATADIR%%/images/outfit/medium successor reverse.png
%%DATADIR%%/images/outfit/medium successor shield.png
%%DATADIR%%/images/outfit/medium successor steering.png
%%DATADIR%%/images/outfit/medium successor thruster.png
%%DATADIR%%/images/outfit/medium systems core.png
%%DATADIR%%/images/outfit/medium torch steering vi.png
%%DATADIR%%/images/outfit/medium torch thruster vi.png
%%DATADIR%%/images/outfit/medium vls.png
%%DATADIR%%/images/outfit/metallic hydrogen cell.png
%%DATADIR%%/images/outfit/meteor launcher.png
%%DATADIR%%/images/outfit/meteor pod.png
%%DATADIR%%/images/outfit/meteor storage.png
%%DATADIR%%/images/outfit/meteor.png
%%DATADIR%%/images/outfit/mh blue-class steering.png
%%DATADIR%%/images/outfit/mh blue-class thruster.png
%%DATADIR%%/images/outfit/mh green-class steering.png
%%DATADIR%%/images/outfit/mh green-class thruster.png
%%DATADIR%%/images/outfit/mh red-class steering.png
%%DATADIR%%/images/outfit/mh red-class thruster.png
%%DATADIR%%/images/outfit/microbot defense station.png
%%DATADIR%%/images/outfit/militia license.png
%%DATADIR%%/images/outfit/millennium cell.png
%%DATADIR%%/images/outfit/mining laser turret.png
%%DATADIR%%/images/outfit/mining laser.png
%%DATADIR%%/images/outfit/mod blaster turret.png
%%DATADIR%%/images/outfit/mod blaster.png
%%DATADIR%%/images/outfit/moonbeam turret.png
%%DATADIR%%/images/outfit/moonbeam.png
%%DATADIR%%/images/outfit/mouthparts.png
%%DATADIR%%/images/outfit/mug.png
%%DATADIR%%/images/outfit/multispectral scanner.png
%%DATADIR%%/images/outfit/nami rift steering.png
%%DATADIR%%/images/outfit/nami rift thruster.png
%%DATADIR%%/images/outfit/nanite enhancer.png
%%DATADIR%%/images/outfit/nanite limiter.png
%%DATADIR%%/images/outfit/navy carrier license.png
%%DATADIR%%/images/outfit/navy cruiser license.png
%%DATADIR%%/images/outfit/navy license.png
%%DATADIR%%/images/outfit/nerve gas.png
%%DATADIR%%/images/outfit/nettle kkv.png
%%DATADIR%%/images/outfit/nettle magazine.png
%%DATADIR%%/images/outfit/nucleolysis beam.png
%%DATADIR%%/images/outfit/nuke.png
%%DATADIR%%/images/outfit/ookii rift steering.png
%%DATADIR%%/images/outfit/ookii rift thruster.png
%%DATADIR%%/images/outfit/ophrys stockpile.png
%%DATADIR%%/images/outfit/ophrys torpedo.png
%%DATADIR%%/images/outfit/optical laser rifle.png
%%DATADIR%%/images/outfit/optical lasing generator.png
%%DATADIR%%/images/outfit/orchid magazine.png
%%DATADIR%%/images/outfit/orchid missile.png
%%DATADIR%%/images/outfit/outfit expansion.png
%%DATADIR%%/images/outfit/outfit scanner.png
%%DATADIR%%/images/outfit/outskirts gauger.png
%%DATADIR%%/images/outfit/overcharged betavoltaic.png
%%DATADIR%%/images/outfit/overcharged pulse laser turret.png
%%DATADIR%%/images/outfit/overcharged pulse laser.png
%%DATADIR%%/images/outfit/overcharged shield module.png
%%DATADIR%%/images/outfit/overclocked repair module.png
%%DATADIR%%/images/outfit/particle cannon.png
%%DATADIR%%/images/outfit/phantom pallet.png
%%DATADIR%%/images/outfit/photoelectric lamina.png
%%DATADIR%%/images/outfit/piercer launcher.png
%%DATADIR%%/images/outfit/piercer.png
%%DATADIR%%/images/outfit/plasma cannon.png
%%DATADIR%%/images/outfit/plasma core.png
%%DATADIR%%/images/outfit/plasma discharger.png
%%DATADIR%%/images/outfit/plasma grenades.png
%%DATADIR%%/images/outfit/plasma repeater.png
%%DATADIR%%/images/outfit/plasma turret.png
%%DATADIR%%/images/outfit/plasmadyne scoop.png
%%DATADIR%%/images/outfit/plasmasickle.png
%%DATADIR%%/images/outfit/point defense.png
%%DATADIR%%/images/outfit/pollen particle.png
%%DATADIR%%/images/outfit/proton gun.png
%%DATADIR%%/images/outfit/proton turret.png
%%DATADIR%%/images/outfit/pug akfar steering.png
%%DATADIR%%/images/outfit/pug akfar thruster.png
%%DATADIR%%/images/outfit/pug anti-missile.png
%%DATADIR%%/images/outfit/pug biodefenses.png
%%DATADIR%%/images/outfit/pug cormet steering.png
%%DATADIR%%/images/outfit/pug cormet thruster.png
%%DATADIR%%/images/outfit/pug gridfire turret.png
%%DATADIR%%/images/outfit/pug lohmar steering.png
%%DATADIR%%/images/outfit/pug lohmar thruster.png
%%DATADIR%%/images/outfit/pug seeker.png
%%DATADIR%%/images/outfit/pug staff.png
%%DATADIR%%/images/outfit/pug zapper turret.png
%%DATADIR%%/images/outfit/pug zapper.png
%%DATADIR%%/images/outfit/pulse cannon.png
%%DATADIR%%/images/outfit/pulse turret.png
%%DATADIR%%/images/outfit/pwave turret.png
%%DATADIR%%/images/outfit/quad blaster turret.png
%%DATADIR%%/images/outfit/quarg aegis shield generator.png
%%DATADIR%%/images/outfit/quarg ancile shield generator.png
%%DATADIR%%/images/outfit/quarg antimatter core.png
%%DATADIR%%/images/outfit/quarg aspis shield generator.png
%%DATADIR%%/images/outfit/quarg central repair hub.png
%%DATADIR%%/images/outfit/quarg countermeasures.png
%%DATADIR%%/images/outfit/quarg culverin.png
%%DATADIR%%/images/outfit/quarg peripheral repair hub.png
%%DATADIR%%/images/outfit/quarg quantum battery.png
%%DATADIR%%/images/outfit/quarg quasar core.png
%%DATADIR%%/images/outfit/quarg ranseur.png
%%DATADIR%%/images/outfit/quarg ribault.png
%%DATADIR%%/images/outfit/quarg singularity core.png
%%DATADIR%%/images/outfit/quarg skydagger.png
%%DATADIR%%/images/outfit/quarg skylance.png
%%DATADIR%%/images/outfit/quarg stratospear.png
%%DATADIR%%/images/outfit/quark reactor.png
%%DATADIR%%/images/outfit/radiative lamina.png
%%DATADIR%%/images/outfit/railgun h2h.png
%%DATADIR%%/images/outfit/railgun.png
%%DATADIR%%/images/outfit/railslug rack.png
%%DATADIR%%/images/outfit/railslug.png
%%DATADIR%%/images/outfit/ramscoop.png
%%DATADIR%%/images/outfit/rcs large.png
%%DATADIR%%/images/outfit/rcs medium.png
%%DATADIR%%/images/outfit/rcs small.png
%%DATADIR%%/images/outfit/reactor limiter.png
%%DATADIR%%/images/outfit/reactor overclocker.png
%%DATADIR%%/images/outfit/reasoning node.png
%%DATADIR%%/images/outfit/red screwdriver.png
%%DATADIR%%/images/outfit/red sun.png
%%DATADIR%%/images/outfit/refueling module.png
%%DATADIR%%/images/outfit/remass injector.png
%%DATADIR%%/images/outfit/remnant afterburner.png
%%DATADIR%%/images/outfit/remnant capital license.png
%%DATADIR%%/images/outfit/remnant license.png
%%DATADIR%%/images/outfit/remnant rifle.png
%%DATADIR%%/images/outfit/repeater turret.png
%%DATADIR%%/images/outfit/repeater.png
%%DATADIR%%/images/outfit/research laboratory.png
%%DATADIR%%/images/outfit/reverse thruster ion.png
%%DATADIR%%/images/outfit/reverse thruster plasma.png
%%DATADIR%%/images/outfit/reverse thruster.png
%%DATADIR%%/images/outfit/rock 0.png
%%DATADIR%%/images/outfit/rock 1.png
%%DATADIR%%/images/outfit/rock 2.png
%%DATADIR%%/images/outfit/rock 3.png
%%DATADIR%%/images/outfit/rock 4.png
%%DATADIR%%/images/outfit/rocket launcher.png
%%DATADIR%%/images/outfit/rocket pod.png
%%DATADIR%%/images/outfit/rocket storage.png
%%DATADIR%%/images/outfit/rocket.png
%%DATADIR%%/images/outfit/salvage scanner.png
%%DATADIR%%/images/outfit/savagery pike.png
%%DATADIR%%/images/outfit/scan module.png
%%DATADIR%%/images/outfit/scram drive.png
%%DATADIR%%/images/outfit/scrambler turret.png
%%DATADIR%%/images/outfit/scrap cell.png
%%DATADIR%%/images/outfit/security station.png
%%DATADIR%%/images/outfit/shard.png
%%DATADIR%%/images/outfit/sheragi ews.png
%%DATADIR%%/images/outfit/sheragiam.png
%%DATADIR%%/images/outfit/sheragicooling.png
%%DATADIR%%/images/outfit/shield booster.png
%%DATADIR%%/images/outfit/shield cortex interface.png
%%DATADIR%%/images/outfit/shield limiter.png
%%DATADIR%%/images/outfit/shield refactor module.png
%%DATADIR%%/images/outfit/shunt-strike.png
%%DATADIR%%/images/outfit/sidewinder launcher.png
%%DATADIR%%/images/outfit/sidewinder pod.png
%%DATADIR%%/images/outfit/sidewinder storage.png
%%DATADIR%%/images/outfit/sidewinder.png
%%DATADIR%%/images/outfit/sjeja kinetic lance.png
%%DATADIR%%/images/outfit/skadetear.png
%%DATADIR%%/images/outfit/skirmish battery.png
%%DATADIR%%/images/outfit/slicer turret.png
%%DATADIR%%/images/outfit/slicer.png
%%DATADIR%%/images/outfit/small atomic reverse hai.png
%%DATADIR%%/images/outfit/small atomic steering hai.png
%%DATADIR%%/images/outfit/small atomic steering.png
%%DATADIR%%/images/outfit/small atomic thruster hai.png
%%DATADIR%%/images/outfit/small atomic thruster.png
%%DATADIR%%/images/outfit/small battery hai.png
%%DATADIR%%/images/outfit/small battery module.png
%%DATADIR%%/images/outfit/small battery.png
%%DATADIR%%/images/outfit/small betavoltaic.png
%%DATADIR%%/images/outfit/small biochemical.png
%%DATADIR%%/images/outfit/small bunk room.png
%%DATADIR%%/images/outfit/small cogeneration module.png
%%DATADIR%%/images/outfit/small collector module.png
%%DATADIR%%/images/outfit/small efreti steering.png
%%DATADIR%%/images/outfit/small efreti thruster.png
%%DATADIR%%/images/outfit/small embattery.png
%%DATADIR%%/images/outfit/small fuel cell.png
%%DATADIR%%/images/outfit/small heat shunt.png
%%DATADIR%%/images/outfit/small ion steering.png
%%DATADIR%%/images/outfit/small ion thruster.png
%%DATADIR%%/images/outfit/small korath afterburner.png
%%DATADIR%%/images/outfit/small korath generator.png
%%DATADIR%%/images/outfit/small korath reverser.png
%%DATADIR%%/images/outfit/small korath steering.png
%%DATADIR%%/images/outfit/small korath thruster.png
%%DATADIR%%/images/outfit/small nanite fabricator.png
%%DATADIR%%/images/outfit/small nucleovoltaic.png
%%DATADIR%%/images/outfit/small photovoltaic.png
%%DATADIR%%/images/outfit/small plasma steering scin.png
%%DATADIR%%/images/outfit/small plasma steering.png
%%DATADIR%%/images/outfit/small plasma thruster scin.png
%%DATADIR%%/images/outfit/small plasma thruster.png
%%DATADIR%%/images/outfit/small quarg steering.png
%%DATADIR%%/images/outfit/small quarg thruster.png
%%DATADIR%%/images/outfit/small radar jammer.png
%%DATADIR%%/images/outfit/small radiant steering.png
%%DATADIR%%/images/outfit/small radiant thruster.png
%%DATADIR%%/images/outfit/small radiothermal.png
%%DATADIR%%/images/outfit/small reactor module.png
%%DATADIR%%/images/outfit/small recovery module.png
%%DATADIR%%/images/outfit/small regenerator hai.png
%%DATADIR%%/images/outfit/small regenerator.png
%%DATADIR%%/images/outfit/small remnant steering.png
%%DATADIR%%/images/outfit/small remnant thruster.png
%%DATADIR%%/images/outfit/small repair module.png
%%DATADIR%%/images/outfit/small reverse module.png
%%DATADIR%%/images/outfit/small sheragi cooling.png
%%DATADIR%%/images/outfit/small shield module.png
%%DATADIR%%/images/outfit/small shield relay.png
%%DATADIR%%/images/outfit/small shield.png
%%DATADIR%%/images/outfit/small steering module.png
%%DATADIR%%/images/outfit/small successor battery.png
%%DATADIR%%/images/outfit/small successor reactor.png
%%DATADIR%%/images/outfit/small successor reverse.png
%%DATADIR%%/images/outfit/small successor shield.png
%%DATADIR%%/images/outfit/small successor steering.png
%%DATADIR%%/images/outfit/small successor thruster.png
%%DATADIR%%/images/outfit/small systems core.png
%%DATADIR%%/images/outfit/small thermionic.png
%%DATADIR%%/images/outfit/small thrust module.png
%%DATADIR%%/images/outfit/small torch steering vi.png
%%DATADIR%%/images/outfit/small torch thruster vi.png
%%DATADIR%%/images/outfit/small vls.png
%%DATADIR%%/images/outfit/solar battery.png
%%DATADIR%%/images/outfit/solar cell.png
%%DATADIR%%/images/outfit/spark fusion torch.png
%%DATADIR%%/images/outfit/speck magazine.png
%%DATADIR%%/images/outfit/speck round.png
%%DATADIR%%/images/outfit/speckle coilgun.png
%%DATADIR%%/images/outfit/speckle turret.png
%%DATADIR%%/images/outfit/spectrometer array.png
%%DATADIR%%/images/outfit/specular deflector.png
%%DATADIR%%/images/outfit/stack core.png
%%DATADIR%%/images/outfit/stagnation beam.png
%%DATADIR%%/images/outfit/star tail cell storage.png
%%DATADIR%%/images/outfit/star tail cell.png
%%DATADIR%%/images/outfit/star tail launcher.png
%%DATADIR%%/images/outfit/subarashii rift steering.png
%%DATADIR%%/images/outfit/subarashii rift thruster.png
%%DATADIR%%/images/outfit/successor armor heavy.png
%%DATADIR%%/images/outfit/successor armor keystone.png
%%DATADIR%%/images/outfit/successor armor light.png
%%DATADIR%%/images/outfit/successor armor regen.png
%%DATADIR%%/images/outfit/successor cooling.png
%%DATADIR%%/images/outfit/successor engines tiny.png
%%DATADIR%%/images/outfit/successor license.png
%%DATADIR%%/images/outfit/successor pulse laser turret.png
%%DATADIR%%/images/outfit/successor pulse laser.png
%%DATADIR%%/images/outfit/sunbeam turret.png
%%DATADIR%%/images/outfit/sunbeam.png
%%DATADIR%%/images/outfit/supercapacitor.png
%%DATADIR%%/images/outfit/surtrblood.png
%%DATADIR%%/images/outfit/surveillance pod.png
%%DATADIR%%/images/outfit/swarm missile.png
%%DATADIR%%/images/outfit/swarm pod.png
%%DATADIR%%/images/outfit/swarm storage.png
%%DATADIR%%/images/outfit/swatter.png
%%DATADIR%%/images/outfit/sword.png
%%DATADIR%%/images/outfit/t3 anti missile.png
%%DATADIR%%/images/outfit/tactical scanner.png
%%DATADIR%%/images/outfit/teciimach bay.png
%%DATADIR%%/images/outfit/teciimach pod.png
%%DATADIR%%/images/outfit/telescopic antimissile.png
%%DATADIR%%/images/outfit/thermoelectric cooler.png
%%DATADIR%%/images/outfit/thorax cannon.png
%%DATADIR%%/images/outfit/thrasher cannon.png
%%DATADIR%%/images/outfit/thrasher turret.png
%%DATADIR%%/images/outfit/thunderhead launcher.png
%%DATADIR%%/images/outfit/thunderhead storage.png
%%DATADIR%%/images/outfit/thunderhead.png
%%DATADIR%%/images/outfit/tiny atomic engines hai.png
%%DATADIR%%/images/outfit/tiny atomic reverse hai.png
%%DATADIR%%/images/outfit/tiny atomic steering hai.png
%%DATADIR%%/images/outfit/tiny atomic steering.png
%%DATADIR%%/images/outfit/tiny atomic thruster hai.png
%%DATADIR%%/images/outfit/tiny atomic thruster.png
%%DATADIR%%/images/outfit/tiny battery hai.png
%%DATADIR%%/images/outfit/tiny battery.png
%%DATADIR%%/images/outfit/tiny efreti steering.png
%%DATADIR%%/images/outfit/tiny efreti thruster.png
%%DATADIR%%/images/outfit/tiny fuel cell.png
%%DATADIR%%/images/outfit/tiny ion engines.png
%%DATADIR%%/images/outfit/tiny ion steering.png
%%DATADIR%%/images/outfit/tiny ion thruster.png
%%DATADIR%%/images/outfit/tiny korath afterburner.png
%%DATADIR%%/images/outfit/tiny korath engine.png
%%DATADIR%%/images/outfit/tiny korath reverser.png
%%DATADIR%%/images/outfit/tiny korath steering.png
%%DATADIR%%/images/outfit/tiny korath thruster.png
%%DATADIR%%/images/outfit/tiny photovoltaic.png
%%DATADIR%%/images/outfit/tiny plasma engines scin.png
%%DATADIR%%/images/outfit/tiny plasma steering.png
%%DATADIR%%/images/outfit/tiny plasma thruster.png
%%DATADIR%%/images/outfit/tiny radiant steering.png
%%DATADIR%%/images/outfit/tiny radiant thruster.png
%%DATADIR%%/images/outfit/tiny remnant engine.png
%%DATADIR%%/images/outfit/tiny shield.png
%%DATADIR%%/images/outfit/tiny successor shield.png
%%DATADIR%%/images/outfit/tiny systems core.png
%%DATADIR%%/images/outfit/tiny vls.png
%%DATADIR%%/images/outfit/torpedo launcher.png
%%DATADIR%%/images/outfit/torpedo storage.png
%%DATADIR%%/images/outfit/torpedo.png
%%DATADIR%%/images/outfit/torpedopod.png
%%DATADIR%%/images/outfit/tractor beam.png
%%DATADIR%%/images/outfit/trefoil board.png
%%DATADIR%%/images/outfit/triple plasma core.png
%%DATADIR%%/images/outfit/tripulse shredder.png
%%DATADIR%%/images/outfit/tuur scanning suite.png
%%DATADIR%%/images/outfit/twin blaster.png
%%DATADIR%%/images/outfit/twin mod blaster.png
%%DATADIR%%/images/outfit/typhoon launcher.png
%%DATADIR%%/images/outfit/typhoon storage.png
%%DATADIR%%/images/outfit/typhoon.png
%%DATADIR%%/images/outfit/typhoonpod.png
%%DATADIR%%/images/outfit/ultracapacitor bank.png
%%DATADIR%%/images/outfit/ultracapacitor cell.png
%%DATADIR%%/images/outfit/unknown.png
%%DATADIR%%/images/outfit/ureb turret.png
%%DATADIR%%/images/outfit/value detector.png
%%DATADIR%%/images/outfit/vapor nuclear rocket.png
%%DATADIR%%/images/outfit/veldt combat scanner.png
%%DATADIR%%/images/outfit/void rifle.png
%%DATADIR%%/images/outfit/void sprite parts.png
%%DATADIR%%/images/outfit/voidfish.png
%%DATADIR%%/images/outfit/wanderer anti-missile.png
%%DATADIR%%/images/outfit/wanderer heat sink.png
%%DATADIR%%/images/outfit/wanderer license.png
%%DATADIR%%/images/outfit/wanderer military license.png
%%DATADIR%%/images/outfit/wanderer outfits license.png
%%DATADIR%%/images/outfit/wanderer ramscoop.png
%%DATADIR%%/images/outfit/warder.png
%%DATADIR%%/images/outfit/warforge battery.png
%%DATADIR%%/images/outfit/warzone core.png
%%DATADIR%%/images/outfit/water cooling.png
%%DATADIR%%/images/outfit/white sun.png
%%DATADIR%%/images/outfit/yellow sun.png
%%DATADIR%%/images/outfit/zap fusion torch.png
%%DATADIR%%/images/planet/aera.png
%%DATADIR%%/images/planet/alvorada.png
%%DATADIR%%/images/planet/asteroid base.png
%%DATADIR%%/images/planet/asteroid magic.png
%%DATADIR%%/images/planet/asura.png
%%DATADIR%%/images/planet/aviskir.png
%%DATADIR%%/images/planet/beryl/beryl-00.png
%%DATADIR%%/images/planet/beryl/beryl-01.png
%%DATADIR%%/images/planet/beryl/beryl-02.png
%%DATADIR%%/images/planet/beryl/beryl-03.png
%%DATADIR%%/images/planet/beryl/beryl-04.png
%%DATADIR%%/images/planet/beryl/beryl-05.png
%%DATADIR%%/images/planet/beryl/beryl-06.png
%%DATADIR%%/images/planet/beryl/beryl-07.png
%%DATADIR%%/images/planet/beryl/beryl-08.png
%%DATADIR%%/images/planet/beryl/beryl-09.png
%%DATADIR%%/images/planet/beryl/beryl-10.png
%%DATADIR%%/images/planet/beryl/beryl-11.png
%%DATADIR%%/images/planet/beryl/beryl-12.png
%%DATADIR%%/images/planet/browndwarf-l-rogue.png
%%DATADIR%%/images/planet/browndwarf-l.png
%%DATADIR%%/images/planet/browndwarf-t-rogue.png
%%DATADIR%%/images/planet/browndwarf-t.png
%%DATADIR%%/images/planet/browndwarf-y-rogue.png
%%DATADIR%%/images/planet/browndwarf-y.png
%%DATADIR%%/images/planet/callisto-b.png
%%DATADIR%%/images/planet/callisto.png
%%DATADIR%%/images/planet/cloud0-b.png
%%DATADIR%%/images/planet/cloud0.png
%%DATADIR%%/images/planet/cloud1-b.png
%%DATADIR%%/images/planet/cloud1.png
%%DATADIR%%/images/planet/cloud2-b.png
%%DATADIR%%/images/planet/cloud2.png
%%DATADIR%%/images/planet/cloud3-b.png
%%DATADIR%%/images/planet/cloud3.png
%%DATADIR%%/images/planet/cloud4-b.png
%%DATADIR%%/images/planet/cloud4.png
%%DATADIR%%/images/planet/cloud5-b.png
%%DATADIR%%/images/planet/cloud5.png
%%DATADIR%%/images/planet/cloud6-b.png
%%DATADIR%%/images/planet/cloud6.png
%%DATADIR%%/images/planet/cloud7-b.png
%%DATADIR%%/images/planet/cloud7.png
%%DATADIR%%/images/planet/cloud8-b.png
%%DATADIR%%/images/planet/cloud8.png
%%DATADIR%%/images/planet/debris0.png
%%DATADIR%%/images/planet/debris1.png
%%DATADIR%%/images/planet/desert0-b.png
%%DATADIR%%/images/planet/desert0.png
%%DATADIR%%/images/planet/desert1-b.png
%%DATADIR%%/images/planet/desert1.png
%%DATADIR%%/images/planet/desert10-b.png
%%DATADIR%%/images/planet/desert10.png
%%DATADIR%%/images/planet/desert11.png
%%DATADIR%%/images/planet/desert12.png
%%DATADIR%%/images/planet/desert13.png
%%DATADIR%%/images/planet/desert2-b.png
%%DATADIR%%/images/planet/desert2.png
%%DATADIR%%/images/planet/desert3-b.png
%%DATADIR%%/images/planet/desert3.png
%%DATADIR%%/images/planet/desert4-b.png
%%DATADIR%%/images/planet/desert4.png
%%DATADIR%%/images/planet/desert5-b.png
%%DATADIR%%/images/planet/desert5.png
%%DATADIR%%/images/planet/desert6-b.png
%%DATADIR%%/images/planet/desert6.png
%%DATADIR%%/images/planet/desert7-b.png
%%DATADIR%%/images/planet/desert7.png
%%DATADIR%%/images/planet/desert8-b.png
%%DATADIR%%/images/planet/desert8.png
%%DATADIR%%/images/planet/desert9-b.png
%%DATADIR%%/images/planet/desert9.png
%%DATADIR%%/images/planet/dust0-b.png
%%DATADIR%%/images/planet/dust0.png
%%DATADIR%%/images/planet/dust1-b.png
%%DATADIR%%/images/planet/dust1.png
%%DATADIR%%/images/planet/dust2-b.png
%%DATADIR%%/images/planet/dust2.png
%%DATADIR%%/images/planet/dust3-b.png
%%DATADIR%%/images/planet/dust3.png
%%DATADIR%%/images/planet/dust4-b.png
%%DATADIR%%/images/planet/dust4.png
%%DATADIR%%/images/planet/dust5-b.png
%%DATADIR%%/images/planet/dust5.png
%%DATADIR%%/images/planet/dust6-b.png
%%DATADIR%%/images/planet/dust6.png
%%DATADIR%%/images/planet/dust7-b.png
%%DATADIR%%/images/planet/dust7.png
%%DATADIR%%/images/planet/dust8.png
%%DATADIR%%/images/planet/dust9.png
%%DATADIR%%/images/planet/dyson1.png
%%DATADIR%%/images/planet/dyson2.png
%%DATADIR%%/images/planet/dyson3.png
%%DATADIR%%/images/planet/earth-b.png
%%DATADIR%%/images/planet/earth.png
%%DATADIR%%/images/planet/europa-b.png
%%DATADIR%%/images/planet/europa.png
%%DATADIR%%/images/planet/fog0-b.png
%%DATADIR%%/images/planet/fog0.png
%%DATADIR%%/images/planet/forest0-b.png
%%DATADIR%%/images/planet/forest0.png
%%DATADIR%%/images/planet/forest1-b.png
%%DATADIR%%/images/planet/forest1.png
%%DATADIR%%/images/planet/forest10.png
%%DATADIR%%/images/planet/forest11.png
%%DATADIR%%/images/planet/forest12.png
%%DATADIR%%/images/planet/forest2-b.png
%%DATADIR%%/images/planet/forest2.png
%%DATADIR%%/images/planet/forest3-b.png
%%DATADIR%%/images/planet/forest3.png
%%DATADIR%%/images/planet/forest4-b.png
%%DATADIR%%/images/planet/forest4.png
%%DATADIR%%/images/planet/forest5-b.png
%%DATADIR%%/images/planet/forest5.png
%%DATADIR%%/images/planet/forest6-b.png
%%DATADIR%%/images/planet/forest6.png
%%DATADIR%%/images/planet/forest7.png
%%DATADIR%%/images/planet/forest8.png
%%DATADIR%%/images/planet/forest9.png
%%DATADIR%%/images/planet/ganymede-b.png
%%DATADIR%%/images/planet/ganymede.png
%%DATADIR%%/images/planet/gas0-b.png
%%DATADIR%%/images/planet/gas0-hot.png
%%DATADIR%%/images/planet/gas0.png
%%DATADIR%%/images/planet/gas1-b.png
%%DATADIR%%/images/planet/gas1-hot.png
%%DATADIR%%/images/planet/gas1.png
%%DATADIR%%/images/planet/gas10-b.png
%%DATADIR%%/images/planet/gas10-hot.png
%%DATADIR%%/images/planet/gas10.png
%%DATADIR%%/images/planet/gas11-b.png
%%DATADIR%%/images/planet/gas11.png
%%DATADIR%%/images/planet/gas12-b.png
%%DATADIR%%/images/planet/gas12.png
%%DATADIR%%/images/planet/gas13-b.png
%%DATADIR%%/images/planet/gas13.png
%%DATADIR%%/images/planet/gas14-b.png
%%DATADIR%%/images/planet/gas14.png
%%DATADIR%%/images/planet/gas15-b.png
%%DATADIR%%/images/planet/gas15.png
%%DATADIR%%/images/planet/gas16-b.png
%%DATADIR%%/images/planet/gas16.png
%%DATADIR%%/images/planet/gas17-b.png
%%DATADIR%%/images/planet/gas17.png
%%DATADIR%%/images/planet/gas2-b.png
%%DATADIR%%/images/planet/gas2-hot.png
%%DATADIR%%/images/planet/gas2.png
%%DATADIR%%/images/planet/gas3-b.png
%%DATADIR%%/images/planet/gas3-c.png
%%DATADIR%%/images/planet/gas3-hot.png
%%DATADIR%%/images/planet/gas3.png
%%DATADIR%%/images/planet/gas4-b.png
%%DATADIR%%/images/planet/gas4-hot.png
%%DATADIR%%/images/planet/gas4.png
%%DATADIR%%/images/planet/gas5-b.png
%%DATADIR%%/images/planet/gas5-hot.png
%%DATADIR%%/images/planet/gas5.png
%%DATADIR%%/images/planet/gas6-b.png
%%DATADIR%%/images/planet/gas6-hot.png
%%DATADIR%%/images/planet/gas6.png
%%DATADIR%%/images/planet/gas7-b.png
%%DATADIR%%/images/planet/gas7-hot.png
%%DATADIR%%/images/planet/gas7-r.png
%%DATADIR%%/images/planet/gas7.png
%%DATADIR%%/images/planet/gas8-b.png
%%DATADIR%%/images/planet/gas8-hot.png
%%DATADIR%%/images/planet/gas8.png
%%DATADIR%%/images/planet/gas9-b.png
%%DATADIR%%/images/planet/gas9-hot.png
%%DATADIR%%/images/planet/gas9.png
%%DATADIR%%/images/planet/gateway-active-0.png
%%DATADIR%%/images/planet/gateway-active-1.png
%%DATADIR%%/images/planet/gateway-frozen.png
%%DATADIR%%/images/planet/gateway-inactive.png
%%DATADIR%%/images/planet/gliese.png
%%DATADIR%%/images/planet/ice0-b.png
%%DATADIR%%/images/planet/ice0.png
%%DATADIR%%/images/planet/ice1-b.png
%%DATADIR%%/images/planet/ice1.png
%%DATADIR%%/images/planet/ice10.png
%%DATADIR%%/images/planet/ice11.png
%%DATADIR%%/images/planet/ice12.png
%%DATADIR%%/images/planet/ice2-b.png
%%DATADIR%%/images/planet/ice2.png
%%DATADIR%%/images/planet/ice3-b.png
%%DATADIR%%/images/planet/ice3.png
%%DATADIR%%/images/planet/ice4-b.png
%%DATADIR%%/images/planet/ice4.png
%%DATADIR%%/images/planet/ice5-b.png
%%DATADIR%%/images/planet/ice5.png
%%DATADIR%%/images/planet/ice6-b.png
%%DATADIR%%/images/planet/ice6.png
%%DATADIR%%/images/planet/ice7-b.png
%%DATADIR%%/images/planet/ice7.png
%%DATADIR%%/images/planet/ice8-b.png
%%DATADIR%%/images/planet/ice8.png
%%DATADIR%%/images/planet/ice9.png
%%DATADIR%%/images/planet/io-b.png
%%DATADIR%%/images/planet/io.png
%%DATADIR%%/images/planet/jupiter-b.png
%%DATADIR%%/images/planet/jupiter.png
%%DATADIR%%/images/planet/lava0-b.png
%%DATADIR%%/images/planet/lava0.png
%%DATADIR%%/images/planet/lava1-b.png
%%DATADIR%%/images/planet/lava1.png
%%DATADIR%%/images/planet/lava2-b.png
%%DATADIR%%/images/planet/lava2.png
%%DATADIR%%/images/planet/lava3-b.png
%%DATADIR%%/images/planet/lava3.png
%%DATADIR%%/images/planet/lava4-b.png
%%DATADIR%%/images/planet/lava4.png
%%DATADIR%%/images/planet/lava5-b.png
%%DATADIR%%/images/planet/lava5.png
%%DATADIR%%/images/planet/lava6-b.png
%%DATADIR%%/images/planet/lava6.png
%%DATADIR%%/images/planet/lava7-b.png
%%DATADIR%%/images/planet/lava7.png
%%DATADIR%%/images/planet/luna-b.png
%%DATADIR%%/images/planet/luna.png
%%DATADIR%%/images/planet/mars-b.png
%%DATADIR%%/images/planet/mars.png
%%DATADIR%%/images/planet/mendez.png
%%DATADIR%%/images/planet/mercury-b.png
%%DATADIR%%/images/planet/mercury.png
%%DATADIR%%/images/planet/miranda-b.png
%%DATADIR%%/images/planet/miranda.png
%%DATADIR%%/images/planet/nebula1.png
%%DATADIR%%/images/planet/neptune-b.png
%%DATADIR%%/images/planet/neptune.png
%%DATADIR%%/images/planet/oberon-b.png
%%DATADIR%%/images/planet/oberon.png
%%DATADIR%%/images/planet/ocean0-b.png
%%DATADIR%%/images/planet/ocean0.png
%%DATADIR%%/images/planet/ocean1-b.png
%%DATADIR%%/images/planet/ocean1.png
%%DATADIR%%/images/planet/ocean10.png
%%DATADIR%%/images/planet/ocean2-b.png
%%DATADIR%%/images/planet/ocean2.png
%%DATADIR%%/images/planet/ocean3-b.png
%%DATADIR%%/images/planet/ocean3.png
%%DATADIR%%/images/planet/ocean4-b.png
%%DATADIR%%/images/planet/ocean4.png
%%DATADIR%%/images/planet/ocean5-b.png
%%DATADIR%%/images/planet/ocean5.png
%%DATADIR%%/images/planet/ocean6-b.png
%%DATADIR%%/images/planet/ocean6.png
%%DATADIR%%/images/planet/ocean7-b.png
%%DATADIR%%/images/planet/ocean7.png
%%DATADIR%%/images/planet/ocean8-b.png
%%DATADIR%%/images/planet/ocean8.png
%%DATADIR%%/images/planet/ocean9-b.png
%%DATADIR%%/images/planet/ocean9.png
%%DATADIR%%/images/planet/panels1.png
%%DATADIR%%/images/planet/panels2.png
%%DATADIR%%/images/planet/panels3.png
%%DATADIR%%/images/planet/panels4.png
%%DATADIR%%/images/planet/panels5.png
%%DATADIR%%/images/planet/penrose machine.png
%%DATADIR%%/images/planet/pontes.png
%%DATADIR%%/images/planet/redias.png
%%DATADIR%%/images/planet/rhea-b.png
%%DATADIR%%/images/planet/rhea.png
%%DATADIR%%/images/planet/ringworld broken debris small.png
%%DATADIR%%/images/planet/ringworld broken debris.png
%%DATADIR%%/images/planet/ringworld broken left.png
%%DATADIR%%/images/planet/ringworld broken right.png
%%DATADIR%%/images/planet/ringworld left.png
%%DATADIR%%/images/planet/ringworld right.png
%%DATADIR%%/images/planet/ringworld.png
%%DATADIR%%/images/planet/rock0-b.png
%%DATADIR%%/images/planet/rock0.png
%%DATADIR%%/images/planet/rock1-b.png
%%DATADIR%%/images/planet/rock1.png
%%DATADIR%%/images/planet/rock10-b.png
%%DATADIR%%/images/planet/rock10.png
%%DATADIR%%/images/planet/rock11-b.png
%%DATADIR%%/images/planet/rock11.png
%%DATADIR%%/images/planet/rock12-b.png
%%DATADIR%%/images/planet/rock12.png
%%DATADIR%%/images/planet/rock13-b.png
%%DATADIR%%/images/planet/rock13.png
%%DATADIR%%/images/planet/rock14-b.png
%%DATADIR%%/images/planet/rock14.png
%%DATADIR%%/images/planet/rock15-b.png
%%DATADIR%%/images/planet/rock15.png
%%DATADIR%%/images/planet/rock16-b.png
%%DATADIR%%/images/planet/rock16.png
%%DATADIR%%/images/planet/rock17-b.png
%%DATADIR%%/images/planet/rock17.png
%%DATADIR%%/images/planet/rock18-b.png
%%DATADIR%%/images/planet/rock18.png
%%DATADIR%%/images/planet/rock19-b.png
%%DATADIR%%/images/planet/rock19.png
%%DATADIR%%/images/planet/rock2-b.png
%%DATADIR%%/images/planet/rock2.png
%%DATADIR%%/images/planet/rock20.png
%%DATADIR%%/images/planet/rock21.png
%%DATADIR%%/images/planet/rock3-b.png
%%DATADIR%%/images/planet/rock3.png
%%DATADIR%%/images/planet/rock4-b.png
%%DATADIR%%/images/planet/rock4.png
%%DATADIR%%/images/planet/rock5-b.png
%%DATADIR%%/images/planet/rock5.png
%%DATADIR%%/images/planet/rock6-b.png
%%DATADIR%%/images/planet/rock6.png
%%DATADIR%%/images/planet/rock7-b.png
%%DATADIR%%/images/planet/rock7.png
%%DATADIR%%/images/planet/rock8-b.png
%%DATADIR%%/images/planet/rock8.png
%%DATADIR%%/images/planet/rock9-b.png
%%DATADIR%%/images/planet/rock9.png
%%DATADIR%%/images/planet/saturn.png
%%DATADIR%%/images/planet/sheragi_postverta.png
%%DATADIR%%/images/planet/sheragi_postverta_2.png
%%DATADIR%%/images/planet/station successor 1.png
%%DATADIR%%/images/planet/station successor 2.png
%%DATADIR%%/images/planet/station successor 3.png
%%DATADIR%%/images/planet/station successor 4.png
%%DATADIR%%/images/planet/station-accelerator-broken.png
%%DATADIR%%/images/planet/station-accelerator.png
%%DATADIR%%/images/planet/station-asteroid-a0.png
%%DATADIR%%/images/planet/station-asteroid-a1.png
%%DATADIR%%/images/planet/station-asteroid-a2.png
%%DATADIR%%/images/planet/station-asteroid-a3.png
%%DATADIR%%/images/planet/station-bunrodea.png
%%DATADIR%%/images/planet/station-chanai.png
%%DATADIR%%/images/planet/station-cylinder-a0-broken.png
%%DATADIR%%/images/planet/station-cylinder-a0-incomplete.png
%%DATADIR%%/images/planet/station-cylinder-a0.png
%%DATADIR%%/images/planet/station-depot-a0.png
%%DATADIR%%/images/planet/station-depot-a1.png
%%DATADIR%%/images/planet/station-depot-a2.png
%%DATADIR%%/images/planet/station-disk.png
%%DATADIR%%/images/planet/station-outpost-a0.png
%%DATADIR%%/images/planet/station-outpost-a1.png
%%DATADIR%%/images/planet/station-outpost-a2.png
%%DATADIR%%/images/planet/station-outpost-a3.png
%%DATADIR%%/images/planet/station-platform-a0.png
%%DATADIR%%/images/planet/station-platform-a1.png
%%DATADIR%%/images/planet/station-platform-a2.png
%%DATADIR%%/images/planet/station-platform-a3.png
%%DATADIR%%/images/planet/station-platform-a4.png
%%DATADIR%%/images/planet/station-reflector-a0.png
%%DATADIR%%/images/planet/station-reflector-a1.png
%%DATADIR%%/images/planet/station-reflector-a2.png
%%DATADIR%%/images/planet/station-shipyard-a0.png
%%DATADIR%%/images/planet/station-shipyard-a1.png
%%DATADIR%%/images/planet/station-shipyard-a2.png
%%DATADIR%%/images/planet/station-solar-a0-broken.png
%%DATADIR%%/images/planet/station-solar-a0.png
%%DATADIR%%/images/planet/station-solar-a1-broken.png
%%DATADIR%%/images/planet/station-solar-a1.png
%%DATADIR%%/images/planet/station-solar-a2.png
%%DATADIR%%/images/planet/station-solar-a3.png
%%DATADIR%%/images/planet/station-solar-a4.png
%%DATADIR%%/images/planet/station-telescope-a0.png
%%DATADIR%%/images/planet/station-telescope-a1.png
%%DATADIR%%/images/planet/station-weapon-a0.png
%%DATADIR%%/images/planet/station-weapon-a1.png
%%DATADIR%%/images/planet/station-weapon-a2.png
%%DATADIR%%/images/planet/station-weapon-a3.png
%%DATADIR%%/images/planet/station0.png
%%DATADIR%%/images/planet/station0b.png
%%DATADIR%%/images/planet/station1.png
%%DATADIR%%/images/planet/station10.png
%%DATADIR%%/images/planet/station11.png
%%DATADIR%%/images/planet/station12.png
%%DATADIR%%/images/planet/station13.png
%%DATADIR%%/images/planet/station14.png
%%DATADIR%%/images/planet/station15.png
%%DATADIR%%/images/planet/station16.png
%%DATADIR%%/images/planet/station17.png
%%DATADIR%%/images/planet/station18.png
%%DATADIR%%/images/planet/station19.png
%%DATADIR%%/images/planet/station1b.png
%%DATADIR%%/images/planet/station1c.png
%%DATADIR%%/images/planet/station1k.png
%%DATADIR%%/images/planet/station1kd.png
%%DATADIR%%/images/planet/station2.png
%%DATADIR%%/images/planet/station2b.png
%%DATADIR%%/images/planet/station2c.png
%%DATADIR%%/images/planet/station2k.png
%%DATADIR%%/images/planet/station2kd.png
%%DATADIR%%/images/planet/station3.png
%%DATADIR%%/images/planet/station3b.png
%%DATADIR%%/images/planet/station3bd.png
%%DATADIR%%/images/planet/station3c.png
%%DATADIR%%/images/planet/station3k.png
%%DATADIR%%/images/planet/station3kd.png
%%DATADIR%%/images/planet/station4.png
%%DATADIR%%/images/planet/station4b.png
%%DATADIR%%/images/planet/station4bd.png
%%DATADIR%%/images/planet/station4c.png
%%DATADIR%%/images/planet/station5.png
%%DATADIR%%/images/planet/station5c.png
%%DATADIR%%/images/planet/station6.png
%%DATADIR%%/images/planet/station6c.png
%%DATADIR%%/images/planet/station7.png
%%DATADIR%%/images/planet/station7c.png
%%DATADIR%%/images/planet/station7cb.png
%%DATADIR%%/images/planet/station8.png
%%DATADIR%%/images/planet/station9.png
%%DATADIR%%/images/planet/stationh-ancient0.png
%%DATADIR%%/images/planet/stationh-ancient1.png
%%DATADIR%%/images/planet/stationh-ancient2.png
%%DATADIR%%/images/planet/tethys-b.png
%%DATADIR%%/images/planet/tethys.png
%%DATADIR%%/images/planet/titan-b.png
%%DATADIR%%/images/planet/titan.png
%%DATADIR%%/images/planet/treser.png
%%DATADIR%%/images/planet/tschyss.png
%%DATADIR%%/images/planet/uranus-b.png
%%DATADIR%%/images/planet/uranus.png
%%DATADIR%%/images/planet/vajra/vajra-00.png
%%DATADIR%%/images/planet/vajra/vajra-01.png
%%DATADIR%%/images/planet/vajra/vajra-02.png
%%DATADIR%%/images/planet/vajra/vajra-03.png
%%DATADIR%%/images/planet/vajra/vajra-04.png
%%DATADIR%%/images/planet/vajra/vajra-05.png
%%DATADIR%%/images/planet/vajra/vajra-06.png
%%DATADIR%%/images/planet/vajra/vajra-07.png
%%DATADIR%%/images/planet/vajra/vajra-08.png
%%DATADIR%%/images/planet/vajra/vajra-09.png
%%DATADIR%%/images/planet/vajra/vajra-10.png
%%DATADIR%%/images/planet/vajra/vajra-11.png
%%DATADIR%%/images/planet/vajra/vajra-12.png
%%DATADIR%%/images/planet/vajra/vajra-13.png
%%DATADIR%%/images/planet/vajra/vajra-14.png
%%DATADIR%%/images/planet/vajra/vajra-15.png
%%DATADIR%%/images/planet/vajra/vajra-16.png
%%DATADIR%%/images/planet/vajra/vajra-17.png
%%DATADIR%%/images/planet/vajra/vajra-18.png
%%DATADIR%%/images/planet/vajra/vajra-19.png
%%DATADIR%%/images/planet/vajra/vajra-20.png
%%DATADIR%%/images/planet/vajra/vajra-21.png
%%DATADIR%%/images/planet/vajra/vajra-22.png
%%DATADIR%%/images/planet/vajra/vajra-23.png
%%DATADIR%%/images/planet/vajra/vajra-24.png
%%DATADIR%%/images/planet/vajra/vajra-25.png
%%DATADIR%%/images/planet/vajra/vajra-26.png
%%DATADIR%%/images/planet/vajra/vajra-27.png
%%DATADIR%%/images/planet/vajra/vajra-28.png
%%DATADIR%%/images/planet/vajra/vajra-29.png
%%DATADIR%%/images/planet/vajra/vajra-30.png
%%DATADIR%%/images/planet/vajra/vajra-31.png
%%DATADIR%%/images/planet/vajra/vajra-32.png
%%DATADIR%%/images/planet/vajra/vajra-33.png
%%DATADIR%%/images/planet/vajra/vajra-34.png
%%DATADIR%%/images/planet/vajra/vajra-35.png
%%DATADIR%%/images/planet/vajra/vajra-36.png
%%DATADIR%%/images/planet/vajra/vajra-37.png
%%DATADIR%%/images/planet/vajra/vajra-38.png
%%DATADIR%%/images/planet/vajra/vajra-39.png
%%DATADIR%%/images/planet/vajra/vajra-40.png
%%DATADIR%%/images/planet/vajra/vajra-41.png
%%DATADIR%%/images/planet/vajra/vajra-42.png
%%DATADIR%%/images/planet/vajra/vajra-43.png
%%DATADIR%%/images/planet/vajra/vajra-44.png
%%DATADIR%%/images/planet/vajra/vajra-45.png
%%DATADIR%%/images/planet/vajra/vajra-46.png
%%DATADIR%%/images/planet/vajra/vajra-47.png
%%DATADIR%%/images/planet/vajra/vajra-48.png
%%DATADIR%%/images/planet/vajra/vajra-49.png
%%DATADIR%%/images/planet/venus-b.png
%%DATADIR%%/images/planet/venus.png
%%DATADIR%%/images/planet/vesvi.png
%%DATADIR%%/images/planet/vulpa.png
%%DATADIR%%/images/planet/water0-b.png
%%DATADIR%%/images/planet/water0.png
%%DATADIR%%/images/planet/water1-b.png
%%DATADIR%%/images/planet/water1.png
%%DATADIR%%/images/planet/wisp.png
%%DATADIR%%/images/planet/wormhole-blue.png
%%DATADIR%%/images/planet/wormhole-red.png
%%DATADIR%%/images/planet/wormhole.png
%%DATADIR%%/images/planet/yniu eiu.png
%%DATADIR%%/images/planet/yniu ena.png
%%DATADIR%%/images/planet/zenith cold.png
%%DATADIR%%/images/planet/zenith hot.png
%%DATADIR%%/images/projectile/2x electron+0.png
%%DATADIR%%/images/projectile/2x electron+1.png
%%DATADIR%%/images/projectile/2x electron+2.png
%%DATADIR%%/images/projectile/2x heavy laser+0.png
%%DATADIR%%/images/projectile/2x heavy laser+1.png
%%DATADIR%%/images/projectile/2x laser+0.png
%%DATADIR%%/images/projectile/2x laser+1.png
%%DATADIR%%/images/projectile/2x tinyflare+0.png
%%DATADIR%%/images/projectile/2x tinyflare+1.png
%%DATADIR%%/images/projectile/2x tinyflare+2.png
%%DATADIR%%/images/projectile/aberrant spike-00.png
%%DATADIR%%/images/projectile/aberrant spike-01.png
%%DATADIR%%/images/projectile/aberrant spike-02.png
%%DATADIR%%/images/projectile/aberrant spike-03.png
%%DATADIR%%/images/projectile/aberrant spike-04.png
%%DATADIR%%/images/projectile/aberrant spike-05.png
%%DATADIR%%/images/projectile/aberrant spike-06.png
%%DATADIR%%/images/projectile/aberrant spike-07.png
%%DATADIR%%/images/projectile/aberrant spike-08.png
%%DATADIR%%/images/projectile/aberrant spike-09.png
%%DATADIR%%/images/projectile/aberrant spike-10.png
%%DATADIR%%/images/projectile/aberrant spike-11.png
%%DATADIR%%/images/projectile/aberrant spike-12.png
%%DATADIR%%/images/projectile/acuit^0.png
%%DATADIR%%/images/projectile/acuit^1.png
%%DATADIR%%/images/projectile/acuit^2.png
%%DATADIR%%/images/projectile/acuit^3.png
%%DATADIR%%/images/projectile/acuit^4.png
%%DATADIR%%/images/projectile/annihilator+0.png
%%DATADIR%%/images/projectile/annihilator+1.png
%%DATADIR%%/images/projectile/annihilator+2.png
%%DATADIR%%/images/projectile/asteroid laser+.png
%%DATADIR%%/images/projectile/asteroid missile+0.png
%%DATADIR%%/images/projectile/asteroid missile+1.png
%%DATADIR%%/images/projectile/asteroid missile+2.png
%%DATADIR%%/images/projectile/asteroid twin projectile+0.png
%%DATADIR%%/images/projectile/asteroid twin projectile+1.png
%%DATADIR%%/images/projectile/asteroid twin projectile+2.png
%%DATADIR%%/images/projectile/asteroid weapon circle+0.png
%%DATADIR%%/images/projectile/asteroid weapon circle+1.png
%%DATADIR%%/images/projectile/asteroid weapon circle+2.png
%%DATADIR%%/images/projectile/asteroid weapon circle+3.png
%%DATADIR%%/images/projectile/asteroid weapon circle+4.png
%%DATADIR%%/images/projectile/asteroid weapon live+.png
%%DATADIR%%/images/projectile/asteroid weapon swarm+0.png
%%DATADIR%%/images/projectile/asteroid weapon swarm+1.png
%%DATADIR%%/images/projectile/astuit+.png
%%DATADIR%%/images/projectile/attractor+0.png
%%DATADIR%%/images/projectile/attractor+1.png
%%DATADIR%%/images/projectile/attractor+2.png
%%DATADIR%%/images/projectile/ballistic.png
%%DATADIR%%/images/projectile/banisher^0.png
%%DATADIR%%/images/projectile/banisher^1.png
%%DATADIR%%/images/projectile/banisher^2.png
%%DATADIR%%/images/projectile/bimodal switch+0.png
%%DATADIR%%/images/projectile/bimodal switch+1.png
%%DATADIR%%/images/projectile/bimodal switch+2.png
%%DATADIR%%/images/projectile/bimodal switch+3.png
%%DATADIR%%/images/projectile/bimodal+0.png
%%DATADIR%%/images/projectile/bimodal+1.png
%%DATADIR%%/images/projectile/bimodal+2.png
%%DATADIR%%/images/projectile/bimodal+3.png
%%DATADIR%%/images/projectile/blaster+.png
%%DATADIR%%/images/projectile/blaze-pike+0.png
%%DATADIR%%/images/projectile/blaze-pike+1.png
%%DATADIR%%/images/projectile/blaze-pike+2.png
%%DATADIR%%/images/projectile/blaze-pike+3.png
%%DATADIR%%/images/projectile/blaze-pike+4.png
%%DATADIR%%/images/projectile/blue optical laser+0.png
%%DATADIR%%/images/projectile/blue optical laser+1.png
%%DATADIR%%/images/projectile/blue optical laser+2.png
%%DATADIR%%/images/projectile/bombardment^0.png
%%DATADIR%%/images/projectile/bombardment^1.png
%%DATADIR%%/images/projectile/bombardment^2.png
%%DATADIR%%/images/projectile/bombardment^3.png
%%DATADIR%%/images/projectile/bombardment^4.png
%%DATADIR%%/images/projectile/bombardment^5.png
%%DATADIR%%/images/projectile/bombardment^6.png
%%DATADIR%%/images/projectile/bombardment^7.png
%%DATADIR%%/images/projectile/bombardment^8.png
%%DATADIR%%/images/projectile/bullet-0.png
%%DATADIR%%/images/projectile/bullet-1.png
%%DATADIR%%/images/projectile/choleric.png
%%DATADIR%%/images/projectile/culverin+0.png
%%DATADIR%%/images/projectile/culverin+1.png
%%DATADIR%%/images/projectile/culverin+2.png
%%DATADIR%%/images/projectile/culverin+3.png
%%DATADIR%%/images/projectile/detainer+0.png
%%DATADIR%%/images/projectile/detainer+1.png
%%DATADIR%%/images/projectile/detainer+2.png
%%DATADIR%%/images/projectile/digger thin+0.png
%%DATADIR%%/images/projectile/digger thin+1.png
%%DATADIR%%/images/projectile/digger thin+2.png
%%DATADIR%%/images/projectile/digger thin+3.png
%%DATADIR%%/images/projectile/digger+0.png
%%DATADIR%%/images/projectile/digger+1.png
%%DATADIR%%/images/projectile/digger+2.png
%%DATADIR%%/images/projectile/digger+3.png
%%DATADIR%%/images/projectile/disruptor+0.png
%%DATADIR%%/images/projectile/disruptor+1.png
%%DATADIR%%/images/projectile/disruptor+2.png
%%DATADIR%%/images/projectile/disruptor+3.png
%%DATADIR%%/images/projectile/disruptor+4.png
%%DATADIR%%/images/projectile/disruptor+5.png
%%DATADIR%%/images/projectile/drag cannon+0.png
%%DATADIR%%/images/projectile/drag cannon+1.png
%%DATADIR%%/images/projectile/drag cannon+2.png
%%DATADIR%%/images/projectile/drag cannon+3.png
%%DATADIR%%/images/projectile/drak bolt+0.png
%%DATADIR%%/images/projectile/drak bolt+1.png
%%DATADIR%%/images/projectile/drak bolt+2.png
%%DATADIR%%/images/projectile/drak bolt+3.png
%%DATADIR%%/images/projectile/drak bolt+4.png
%%DATADIR%%/images/projectile/electron+0.png
%%DATADIR%%/images/projectile/electron+1.png
%%DATADIR%%/images/projectile/electron+2.png
%%DATADIR%%/images/projectile/ember tear/ember tear^0.png
%%DATADIR%%/images/projectile/ember tear/ember tear^1.png
%%DATADIR%%/images/projectile/ember tear/ember tear^2.png
%%DATADIR%%/images/projectile/ember tear/ember tear^3.png
%%DATADIR%%/images/projectile/emp torpedo-0.png
%%DATADIR%%/images/projectile/emp torpedo-1.png
%%DATADIR%%/images/projectile/emp torpedo-2.png
%%DATADIR%%/images/projectile/emp torpedo-3.png
%%DATADIR%%/images/projectile/expeller^0.png
%%DATADIR%%/images/projectile/expeller^1.png
%%DATADIR%%/images/projectile/expeller^2.png
%%DATADIR%%/images/projectile/finisher activating-0.png
%%DATADIR%%/images/projectile/finisher activating-1.png
%%DATADIR%%/images/projectile/finisher-0.png
%%DATADIR%%/images/projectile/finisher-1.png
%%DATADIR%%/images/projectile/finisher-2.png
%%DATADIR%%/images/projectile/finisher-3.png
%%DATADIR%%/images/projectile/fire-lance+0.png
%%DATADIR%%/images/projectile/fire-lance+1.png
%%DATADIR%%/images/projectile/fire-lance+2.png
%%DATADIR%%/images/projectile/fire-lance+3.png
%%DATADIR%%/images/projectile/fire-lance+4.png
%%DATADIR%%/images/projectile/firelight active^0.png
%%DATADIR%%/images/projectile/firelight active^1.png
%%DATADIR%%/images/projectile/firelight active^2.png
%%DATADIR%%/images/projectile/firelight.png
%%DATADIR%%/images/projectile/firestorm torpedo^0.png
%%DATADIR%%/images/projectile/firestorm torpedo^1.png
%%DATADIR%%/images/projectile/firestorm torpedo^2.png
%%DATADIR%%/images/projectile/firestorm torpedo^3.png
%%DATADIR%%/images/projectile/flamethrower+0.png
%%DATADIR%%/images/projectile/flamethrower+1.png
%%DATADIR%%/images/projectile/flamethrower+2.png
%%DATADIR%%/images/projectile/flamethrower+3.png
%%DATADIR%%/images/projectile/fleck+0.png
%%DATADIR%%/images/projectile/fleck+1.png
%%DATADIR%%/images/projectile/fleck+2.png
%%DATADIR%%/images/projectile/fleck+3.png
%%DATADIR%%/images/projectile/fleck+4.png
%%DATADIR%%/images/projectile/fleck+5.png
%%DATADIR%%/images/projectile/fusion gun bolt.png
%%DATADIR%%/images/projectile/grab-strike^00.png
%%DATADIR%%/images/projectile/grab-strike^01.png
%%DATADIR%%/images/projectile/grab-strike^02.png
%%DATADIR%%/images/projectile/grab-strike^03.png
%%DATADIR%%/images/projectile/grab-strike^04.png
%%DATADIR%%/images/projectile/grab-strike^05.png
%%DATADIR%%/images/projectile/grab-strike^06.png
%%DATADIR%%/images/projectile/grab-strike^07.png
%%DATADIR%%/images/projectile/grab-strike^08.png
%%DATADIR%%/images/projectile/grab-strike^09.png
%%DATADIR%%/images/projectile/grab-strike^10.png
%%DATADIR%%/images/projectile/guile pulse laser+0.png
%%DATADIR%%/images/projectile/guile pulse laser+1.png
%%DATADIR%%/images/projectile/heaver hyperspace^0.png
%%DATADIR%%/images/projectile/heaver hyperspace^1.png
%%DATADIR%%/images/projectile/heaver hyperspace^2.png
%%DATADIR%%/images/projectile/heaver hyperspace^3.png
%%DATADIR%%/images/projectile/heaver hyperspace^4.png
%%DATADIR%%/images/projectile/heaver hyperspace^5.png
%%DATADIR%%/images/projectile/heaver shard^0.png
%%DATADIR%%/images/projectile/heaver shard^1.png
%%DATADIR%%/images/projectile/heaver shard^2.png
%%DATADIR%%/images/projectile/heaver shard^3.png
%%DATADIR%%/images/projectile/heaver shard^4.png
%%DATADIR%%/images/projectile/heaver shard^5.png
%%DATADIR%%/images/projectile/heavy blaster.png
%%DATADIR%%/images/projectile/heavy laser+0.png
%%DATADIR%%/images/projectile/heavy laser+1.png
%%DATADIR%%/images/projectile/hion+.png
%%DATADIR%%/images/projectile/hionfrag+0.png
%%DATADIR%%/images/projectile/hionfrag+1.png
%%DATADIR%%/images/projectile/hionfrag+2.png
%%DATADIR%%/images/projectile/inhibitor+0.png
%%DATADIR%%/images/projectile/inhibitor+1.png
%%DATADIR%%/images/projectile/inhibitor+2.png
%%DATADIR%%/images/projectile/inhibitor+3.png
%%DATADIR%%/images/projectile/inhibitor+4.png
%%DATADIR%%/images/projectile/ion bolt^0.png
%%DATADIR%%/images/projectile/ion bolt^1.png
%%DATADIR%%/images/projectile/ion bolt^2.png
%%DATADIR%%/images/projectile/ion bolt^3.png
%%DATADIR%%/images/projectile/ion rain^0.png
%%DATADIR%%/images/projectile/ion rain^1.png
%%DATADIR%%/images/projectile/ion rain^2.png
%%DATADIR%%/images/projectile/ion rain^3.png
%%DATADIR%%/images/projectile/ionball+0.png
%%DATADIR%%/images/projectile/ionball+1.png
%%DATADIR%%/images/projectile/ionball+2.png
%%DATADIR%%/images/projectile/ionic blast^0.png
%%DATADIR%%/images/projectile/ionic blast^1.png
%%DATADIR%%/images/projectile/ionic blast^2.png
%%DATADIR%%/images/projectile/ionic turret+0.png
%%DATADIR%%/images/projectile/ionic turret+1.png
%%DATADIR%%/images/projectile/ionic turret+2.png
%%DATADIR%%/images/projectile/ionic turret+3.png
%%DATADIR%%/images/projectile/ionic turret+4.png
%%DATADIR%%/images/projectile/ionic turret+5.png
%%DATADIR%%/images/projectile/ionic turret+6.png
%%DATADIR%%/images/projectile/irate.png
%%DATADIR%%/images/projectile/javelin.png
%%DATADIR%%/images/projectile/korath inferno+0.png
%%DATADIR%%/images/projectile/korath inferno+1.png
%%DATADIR%%/images/projectile/korath inferno+2.png
%%DATADIR%%/images/projectile/korath inferno+3.png
%%DATADIR%%/images/projectile/korath inferno+4.png
%%DATADIR%%/images/projectile/korath mine-0.png
%%DATADIR%%/images/projectile/korath mine-1.png
%%DATADIR%%/images/projectile/korath minelayer-0.png
%%DATADIR%%/images/projectile/korath minelayer-1.png
%%DATADIR%%/images/projectile/laser+0.png
%%DATADIR%%/images/projectile/laser+1.png
%%DATADIR%%/images/projectile/lightning+0.png
%%DATADIR%%/images/projectile/lightning+1.png
%%DATADIR%%/images/projectile/lightning+2.png
%%DATADIR%%/images/projectile/lightning+3.png
%%DATADIR%%/images/projectile/lightning+4.png
%%DATADIR%%/images/projectile/lightning+5.png
%%DATADIR%%/images/projectile/lightning+6.png
%%DATADIR%%/images/projectile/locust blaster.png
%%DATADIR%%/images/projectile/mandible cannon^0.png
%%DATADIR%%/images/projectile/mandible cannon^1.png
%%DATADIR%%/images/projectile/mandible cannon^2.png
%%DATADIR%%/images/projectile/mandible cannon^3.png
%%DATADIR%%/images/projectile/mandible cannon^4.png
%%DATADIR%%/images/projectile/meteor-0.png
%%DATADIR%%/images/projectile/meteor-1.png
%%DATADIR%%/images/projectile/mhd+0.png
%%DATADIR%%/images/projectile/mhd+1.png
%%DATADIR%%/images/projectile/mining laser+0.png
%%DATADIR%%/images/projectile/mining laser+1.png
%%DATADIR%%/images/projectile/missile-0.png
%%DATADIR%%/images/projectile/missile-1.png
%%DATADIR%%/images/projectile/mod blaster+.png
%%DATADIR%%/images/projectile/moonbeam+0.png
%%DATADIR%%/images/projectile/moonbeam+1.png
%%DATADIR%%/images/projectile/moonbeam+2.png
%%DATADIR%%/images/projectile/nettle.png
%%DATADIR%%/images/projectile/neutron bolt.png
%%DATADIR%%/images/projectile/nucleolysis+0.png
%%DATADIR%%/images/projectile/nucleolysis+1.png
%%DATADIR%%/images/projectile/nucleolysis+2.png
%%DATADIR%%/images/projectile/orchid boost stage.png
%%DATADIR%%/images/projectile/orchid boost-0.png
%%DATADIR%%/images/projectile/orchid boost-1.png
%%DATADIR%%/images/projectile/orchid boost-2.png
%%DATADIR%%/images/projectile/orchid boost-3.png
%%DATADIR%%/images/projectile/orchid boost-4.png
%%DATADIR%%/images/projectile/orchid boost-5.png
%%DATADIR%%/images/projectile/orchid coast.png
%%DATADIR%%/images/projectile/orchid divert stage.png
%%DATADIR%%/images/projectile/orchid divert-0.png
%%DATADIR%%/images/projectile/orchid divert-1.png
%%DATADIR%%/images/projectile/orchid divert-2.png
%%DATADIR%%/images/projectile/orchid divert-3.png
%%DATADIR%%/images/projectile/orchid divert-4.png
%%DATADIR%%/images/projectile/orchid divert-5.png
%%DATADIR%%/images/projectile/orchid inactive.png
%%DATADIR%%/images/projectile/orchid terminal.png
%%DATADIR%%/images/projectile/particle beam+.png
%%DATADIR%%/images/projectile/piercer-0.png
%%DATADIR%%/images/projectile/piercer-1.png
%%DATADIR%%/images/projectile/piercer-2.png
%%DATADIR%%/images/projectile/plasma discharge+.png
%%DATADIR%%/images/projectile/plasma^0.png
%%DATADIR%%/images/projectile/plasma^1.png
%%DATADIR%%/images/projectile/plasma^2.png
%%DATADIR%%/images/projectile/plasma^3.png
%%DATADIR%%/images/projectile/plasma^4.png
%%DATADIR%%/images/projectile/plasma^5.png
%%DATADIR%%/images/projectile/plasma^6.png
%%DATADIR%%/images/projectile/plasma^7.png
%%DATADIR%%/images/projectile/proton fragment+0.png
%%DATADIR%%/images/projectile/proton fragment+1.png
%%DATADIR%%/images/projectile/proton+.png
%%DATADIR%%/images/projectile/pulse^.png
%%DATADIR%%/images/projectile/pwavecannon+.png
%%DATADIR%%/images/projectile/rail slug.png
%%DATADIR%%/images/projectile/rainbow^0.png
%%DATADIR%%/images/projectile/rainbow^1.png
%%DATADIR%%/images/projectile/rainbow^2.png
%%DATADIR%%/images/projectile/rainbow^3.png
%%DATADIR%%/images/projectile/rainbow^4.png
%%DATADIR%%/images/projectile/rainbow^5.png
%%DATADIR%%/images/projectile/ravager beam+0.png
%%DATADIR%%/images/projectile/ravager beam+1.png
%%DATADIR%%/images/projectile/repeater+0.png
%%DATADIR%%/images/projectile/repeater+1.png
%%DATADIR%%/images/projectile/repeater+2.png
%%DATADIR%%/images/projectile/repeater+3.png
%%DATADIR%%/images/projectile/repulsor+0.png
%%DATADIR%%/images/projectile/repulsor+1.png
%%DATADIR%%/images/projectile/repulsor+2.png
%%DATADIR%%/images/projectile/ribault=0.png
%%DATADIR%%/images/projectile/ribault=1.png
%%DATADIR%%/images/projectile/ribault=2.png
%%DATADIR%%/images/projectile/rocket-0.png
%%DATADIR%%/images/projectile/rocket-1.png
%%DATADIR%%/images/projectile/seeker^0.png
%%DATADIR%%/images/projectile/seeker^1.png
%%DATADIR%%/images/projectile/seeker^2.png
%%DATADIR%%/images/projectile/seeker^3.png
%%DATADIR%%/images/projectile/seeker^4.png
%%DATADIR%%/images/projectile/seeker^5.png
%%DATADIR%%/images/projectile/seeker^6.png
%%DATADIR%%/images/projectile/seeker^7.png
%%DATADIR%%/images/projectile/shardactive-0.png
%%DATADIR%%/images/projectile/shardactive-1.png
%%DATADIR%%/images/projectile/shardactive-2.png
%%DATADIR%%/images/projectile/shardactive-3.png
%%DATADIR%%/images/projectile/shardinactive.png
%%DATADIR%%/images/projectile/shunt-strike-0.png
%%DATADIR%%/images/projectile/shunt-strike-1.png
%%DATADIR%%/images/projectile/shunt-strike-2.png
%%DATADIR%%/images/projectile/shunt-strike-3.png
%%DATADIR%%/images/projectile/shunt-strike-4.png
%%DATADIR%%/images/projectile/shunt-strike-5.png
%%DATADIR%%/images/projectile/sidewinder-0.png
%%DATADIR%%/images/projectile/sidewinder-1.png
%%DATADIR%%/images/projectile/sjeja kinetic lance+0.png
%%DATADIR%%/images/projectile/skydagger+.png
%%DATADIR%%/images/projectile/skylance+.png
%%DATADIR%%/images/projectile/slicer+0.png
%%DATADIR%%/images/projectile/slicer+1.png
%%DATADIR%%/images/projectile/slipstream projector/slipstream+00.png
%%DATADIR%%/images/projectile/slipstream projector/slipstream+01.png
%%DATADIR%%/images/projectile/slipstream projector/slipstream+02.png
%%DATADIR%%/images/projectile/slipstream projector/slipstream+03.png
%%DATADIR%%/images/projectile/slipstream projector/slipstream+04.png
%%DATADIR%%/images/projectile/slipstream projector/slipstream+05.png
%%DATADIR%%/images/projectile/slipstream projector/slipstream+06.png
%%DATADIR%%/images/projectile/slipstream projector/slipstream+07.png
%%DATADIR%%/images/projectile/slipstream projector/slipstream+08.png
%%DATADIR%%/images/projectile/slipstream projector/slipstream+09.png
%%DATADIR%%/images/projectile/slipstream projector/slipstream+10.png
%%DATADIR%%/images/projectile/slipstream projector/slipstream+11.png
%%DATADIR%%/images/projectile/slipstream projector/slipstream+12.png
%%DATADIR%%/images/projectile/slipstream projector/slipstream+13.png
%%DATADIR%%/images/projectile/slipstream projector/slipstream+14.png
%%DATADIR%%/images/projectile/slipstream projector/slipstream+15.png
%%DATADIR%%/images/projectile/speck+00.png
%%DATADIR%%/images/projectile/speck+01.png
%%DATADIR%%/images/projectile/speck+02.png
%%DATADIR%%/images/projectile/speck+03.png
%%DATADIR%%/images/projectile/speck+04.png
%%DATADIR%%/images/projectile/speck+05.png
%%DATADIR%%/images/projectile/speck+06.png
%%DATADIR%%/images/projectile/speck+07.png
%%DATADIR%%/images/projectile/speck+08.png
%%DATADIR%%/images/projectile/speck+09.png
%%DATADIR%%/images/projectile/speck+10.png
%%DATADIR%%/images/projectile/speck+11.png
%%DATADIR%%/images/projectile/speck+12.png
%%DATADIR%%/images/projectile/stagnation beam+0.png
%%DATADIR%%/images/projectile/stagnation beam+1.png
%%DATADIR%%/images/projectile/stagnation beam+2.png
%%DATADIR%%/images/projectile/stagnation beam+3.png
%%DATADIR%%/images/projectile/stagnation beam+4.png
%%DATADIR%%/images/projectile/stagnation beam+5.png
%%DATADIR%%/images/projectile/star tail upload+0.png
%%DATADIR%%/images/projectile/star tail upload+1.png
%%DATADIR%%/images/projectile/star tail upload+2.png
%%DATADIR%%/images/projectile/star tail upload+3.png
%%DATADIR%%/images/projectile/star tail upload+4.png
%%DATADIR%%/images/projectile/star tail upload+5.png
%%DATADIR%%/images/projectile/star tail upload+6.png
%%DATADIR%%/images/projectile/star tail upload+7.png
%%DATADIR%%/images/projectile/star tail upload+8.png
%%DATADIR%%/images/projectile/star tail+0.png
%%DATADIR%%/images/projectile/star tail+1.png
%%DATADIR%%/images/projectile/star tail+2.png
%%DATADIR%%/images/projectile/star tail+3.png
%%DATADIR%%/images/projectile/strange ray+0.png
%%DATADIR%%/images/projectile/strange ray+1.png
%%DATADIR%%/images/projectile/strange ray+10.png
%%DATADIR%%/images/projectile/strange ray+11.png
%%DATADIR%%/images/projectile/strange ray+2.png
%%DATADIR%%/images/projectile/strange ray+3.png
%%DATADIR%%/images/projectile/strange ray+4.png
%%DATADIR%%/images/projectile/strange ray+5.png
%%DATADIR%%/images/projectile/strange ray+6.png
%%DATADIR%%/images/projectile/strange ray+7.png
%%DATADIR%%/images/projectile/strange ray+8.png
%%DATADIR%%/images/projectile/strange ray+9.png
%%DATADIR%%/images/projectile/successor pulse laser+0.png
%%DATADIR%%/images/projectile/successor pulse laser+1.png
%%DATADIR%%/images/projectile/successor pulse laser+2.png
%%DATADIR%%/images/projectile/successor pulse laser+3.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+00.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+01.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+02.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+03.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+04.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+05.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+06.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+07.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+08.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+09.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+10.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+11.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+12.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+13.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+14.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+15.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+16.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+17.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+18.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+19.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+20.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+21.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+22.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+23.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+24.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+25.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+26.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+27.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+28.png
%%DATADIR%%/images/projectile/sunbeam/2x sunbeam+29.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+00.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+01.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+02.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+03.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+04.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+05.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+06.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+07.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+08.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+09.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+10.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+11.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+12.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+13.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+14.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+15.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+16.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+17.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+18.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+19.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+20.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+21.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+22.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+23.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+24.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+25.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+26.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+27.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+28.png
%%DATADIR%%/images/projectile/sunbeam/sunbeam+29.png
%%DATADIR%%/images/projectile/thorax cannon^0.png
%%DATADIR%%/images/projectile/thorax cannon^1.png
%%DATADIR%%/images/projectile/thorax cannon^2.png
%%DATADIR%%/images/projectile/thorax cannon^3.png
%%DATADIR%%/images/projectile/thorax cannon^4.png
%%DATADIR%%/images/projectile/thrasher^0.png
%%DATADIR%%/images/projectile/thrasher^1.png
%%DATADIR%%/images/projectile/thrasher^2.png
%%DATADIR%%/images/projectile/thrasher^3.png
%%DATADIR%%/images/projectile/thrasher^4.png
%%DATADIR%%/images/projectile/thrasher^5.png
%%DATADIR%%/images/projectile/thrasher^6.png
%%DATADIR%%/images/projectile/thrasher^7.png
%%DATADIR%%/images/projectile/thrasher^8.png
%%DATADIR%%/images/projectile/thrasher^9.png
%%DATADIR%%/images/projectile/thunderhead fragment-0.png
%%DATADIR%%/images/projectile/thunderhead fragment-1.png
%%DATADIR%%/images/projectile/thunderhead-0.png
%%DATADIR%%/images/projectile/thunderhead-1.png
%%DATADIR%%/images/projectile/tinyflare+0.png
%%DATADIR%%/images/projectile/tinyflare+1.png
%%DATADIR%%/images/projectile/tinyflare+2.png
%%DATADIR%%/images/projectile/torch+0.png
%%DATADIR%%/images/projectile/torch+1.png
%%DATADIR%%/images/projectile/torch+2.png
%%DATADIR%%/images/projectile/torch+3.png
%%DATADIR%%/images/projectile/torch+4.png
%%DATADIR%%/images/projectile/torch+5.png
%%DATADIR%%/images/projectile/torch+6.png
%%DATADIR%%/images/projectile/torpedo^0.png
%%DATADIR%%/images/projectile/torpedo^1.png
%%DATADIR%%/images/projectile/torpedo^2.png
%%DATADIR%%/images/projectile/torpedo^3.png
%%DATADIR%%/images/projectile/tracker-0.png
%%DATADIR%%/images/projectile/tracker-1.png
%%DATADIR%%/images/projectile/tracker-2.png
%%DATADIR%%/images/projectile/tracker-3.png
%%DATADIR%%/images/projectile/typhoon^0.png
%%DATADIR%%/images/projectile/typhoon^1.png
%%DATADIR%%/images/projectile/typhoon^2.png
%%DATADIR%%/images/projectile/typhoon^3.png
%%DATADIR%%/images/scene/Seasunset.jpg
%%DATADIR%%/images/scene/army0.jpg
%%DATADIR%%/images/scene/asteroid scene.jpg
%%DATADIR%%/images/scene/buildings.jpg
%%DATADIR%%/images/scene/busystreet.jpg
%%DATADIR%%/images/scene/cave scene.png
%%DATADIR%%/images/scene/citydark.jpg
%%DATADIR%%/images/scene/councilofahr1.png
%%DATADIR%%/images/scene/councilofahr2.png
%%DATADIR%%/images/scene/dokimi range.png
%%DATADIR%%/images/scene/earth.jpg
%%DATADIR%%/images/scene/emeraldswordderelict.png
%%DATADIR%%/images/scene/emerging ladybug.png
%%DATADIR%%/images/scene/engine.jpg
%%DATADIR%%/images/scene/engine2.jpg
%%DATADIR%%/images/scene/eso0.jpg
%%DATADIR%%/images/scene/flivver crash.png
%%DATADIR%%/images/scene/geoscan.jpg
%%DATADIR%%/images/scene/greenwater.jpg
%%DATADIR%%/images/scene/hai shipyard.jpg
%%DATADIR%%/images/scene/hai start.jpg
%%DATADIR%%/images/scene/hroar.jpg
%%DATADIR%%/images/scene/icepicture.jpg
%%DATADIR%%/images/scene/iceplains.jpg
%%DATADIR%%/images/scene/iceplains2.jpg
%%DATADIR%%/images/scene/icy opening.jpg
%%DATADIR%%/images/scene/incipias message.png
%%DATADIR%%/images/scene/lab scene.png
%%DATADIR%%/images/scene/lab scene2.png
%%DATADIR%%/images/scene/lobby.jpg
%%DATADIR%%/images/scene/loc0.jpg
%%DATADIR%%/images/scene/loc1.jpg
%%DATADIR%%/images/scene/loc2.jpg
%%DATADIR%%/images/scene/loc3.jpg
%%DATADIR%%/images/scene/loc4.jpg
%%DATADIR%%/images/scene/loc5.jpg
%%DATADIR%%/images/scene/loc6.jpg
%%DATADIR%%/images/scene/loc7.jpg
%%DATADIR%%/images/scene/loc8.jpg
%%DATADIR%%/images/scene/loc9.jpg
%%DATADIR%%/images/scene/lonelyrock.jpg
%%DATADIR%%/images/scene/mainsail.jpg
%%DATADIR%%/images/scene/midgard.jpg
%%DATADIR%%/images/scene/new boston.jpg
%%DATADIR%%/images/scene/penguinscene.jpg
%%DATADIR%%/images/scene/plasma scene.png
%%DATADIR%%/images/scene/ranger baker.png
%%DATADIR%%/images/scene/reception.jpg
%%DATADIR%%/images/scene/redrocks.jpg
%%DATADIR%%/images/scene/remnant remote spaceport.png
%%DATADIR%%/images/scene/remnant station.jpg
%%DATADIR%%/images/scene/ringworld debris.jpg
%%DATADIR%%/images/scene/rulei.png
%%DATADIR%%/images/scene/sagittarius a.png
%%DATADIR%%/images/scene/seascape.jpg
%%DATADIR%%/images/scene/seasidecliffs.jpg
%%DATADIR%%/images/scene/smeer.jpg
%%DATADIR%%/images/scene/snowfield.jpg
%%DATADIR%%/images/scene/snowplain.jpg
%%DATADIR%%/images/scene/snowvillage.jpg
%%DATADIR%%/images/scene/ssil vida alert hologram.png
%%DATADIR%%/images/scene/station4b firing.jpg
%%DATADIR%%/images/scene/sunset.jpg
%%DATADIR%%/images/scene/tempest.jpg
%%DATADIR%%/images/scene/tower.jpg
%%DATADIR%%/images/scene/train.jpg
%%DATADIR%%/images/scene/trefoil.png
%%DATADIR%%/images/ship/-nra-ret.png
%%DATADIR%%/images/ship/aaulqra.png
%%DATADIR%%/images/ship/aberrant chomper.png
%%DATADIR%%/images/ship/aberrant dancer.png
%%DATADIR%%/images/ship/aberrant hugger.png
%%DATADIR%%/images/ship/aberrant icebreaker.png
%%DATADIR%%/images/ship/aberrant junior.png
%%DATADIR%%/images/ship/aberrant latte.png
%%DATADIR%%/images/ship/aberrant longfellow.png
%%DATADIR%%/images/ship/aberrant mole.png
%%DATADIR%%/images/ship/aberrant pike.png
%%DATADIR%%/images/ship/aberrant pileup.png
%%DATADIR%%/images/ship/aberrant trip.png
%%DATADIR%%/images/ship/aberrant triplet.png
%%DATADIR%%/images/ship/aberrant whiskers.png
%%DATADIR%%/images/ship/aerie.png
%%DATADIR%%/images/ship/albatross.png
%%DATADIR%%/images/ship/arach courier.png
%%DATADIR%%/images/ship/arach freighter.png
%%DATADIR%%/images/ship/arach hulk.png
%%DATADIR%%/images/ship/arach spindle.png
%%DATADIR%%/images/ship/arach transport.png
%%DATADIR%%/images/ship/ararebo.png
%%DATADIR%%/images/ship/arch-carrack.png
%%DATADIR%%/images/ship/archon b-0.png
%%DATADIR%%/images/ship/archon b-1.png
%%DATADIR%%/images/ship/archon c-0.png
%%DATADIR%%/images/ship/archon c-1.png
%%DATADIR%%/images/ship/archon-0.png
%%DATADIR%%/images/ship/archon-1.png
%%DATADIR%%/images/ship/argosy.png
%%DATADIR%%/images/ship/arrow.png
%%DATADIR%%/images/ship/asteroid adult 2.png
%%DATADIR%%/images/ship/asteroid adult 3.png
%%DATADIR%%/images/ship/asteroid adult 4.png
%%DATADIR%%/images/ship/asteroid adult 5.png
%%DATADIR%%/images/ship/asteroid adult.png
%%DATADIR%%/images/ship/asteroid medium.png
%%DATADIR%%/images/ship/asteroid young 2.png
%%DATADIR%%/images/ship/asteroid young 3.png
%%DATADIR%%/images/ship/asteroid young 4.png
%%DATADIR%%/images/ship/asteroid young.png
%%DATADIR%%/images/ship/astral cetacean/astral-00.png
%%DATADIR%%/images/ship/astral cetacean/astral-01.png
%%DATADIR%%/images/ship/astral cetacean/astral-02.png
%%DATADIR%%/images/ship/astral cetacean/astral-03.png
%%DATADIR%%/images/ship/astral cetacean/astral-04.png
%%DATADIR%%/images/ship/astral cetacean/astral-05.png
%%DATADIR%%/images/ship/astral cetacean/astral-06.png
%%DATADIR%%/images/ship/astral cetacean/astral-07.png
%%DATADIR%%/images/ship/astral cetacean/astral-08.png
%%DATADIR%%/images/ship/astral cetacean/astral-09.png
%%DATADIR%%/images/ship/astral cetacean/astral-10.png
%%DATADIR%%/images/ship/astral cetacean/astral-11.png
%%DATADIR%%/images/ship/astral cetacean/astral-12.png
%%DATADIR%%/images/ship/astral cetacean/astral-13.png
%%DATADIR%%/images/ship/astral cetacean/astral-14.png
%%DATADIR%%/images/ship/astral cetacean/astral-15.png
%%DATADIR%%/images/ship/astral cetacean/astral-16.png
%%DATADIR%%/images/ship/astral cetacean/astral-17.png
%%DATADIR%%/images/ship/astral cetacean/astral-18.png
%%DATADIR%%/images/ship/astral cetacean/astral-19.png
%%DATADIR%%/images/ship/astral cetacean/astral-20.png
%%DATADIR%%/images/ship/astral cetacean/astral-21.png
%%DATADIR%%/images/ship/astral cetacean/astral-22.png
%%DATADIR%%/images/ship/astral cetacean/astral-23.png
%%DATADIR%%/images/ship/astral cetacean/astral-24.png
%%DATADIR%%/images/ship/astral cetacean/astral-25.png
%%DATADIR%%/images/ship/astral cetacean/astral-26.png
%%DATADIR%%/images/ship/astral cetacean/astral-27.png
%%DATADIR%%/images/ship/astral cetacean/astral-28.png
%%DATADIR%%/images/ship/astral cetacean/astral-29.png
%%DATADIR%%/images/ship/astral cetacean/astral-30.png
%%DATADIR%%/images/ship/astral cetacean/astral-31.png
%%DATADIR%%/images/ship/astral cetacean/astral-32.png
%%DATADIR%%/images/ship/astral cetacean/astral-33.png
%%DATADIR%%/images/ship/astral cetacean/astral-34.png
%%DATADIR%%/images/ship/astral cetacean/astral-35.png
%%DATADIR%%/images/ship/astral cetacean/astral-36.png
%%DATADIR%%/images/ship/astral cetacean/astral-37.png
%%DATADIR%%/images/ship/astral cetacean/astral-38.png
%%DATADIR%%/images/ship/astral cetacean/astral-39.png
%%DATADIR%%/images/ship/astral cetacean/astral-40.png
%%DATADIR%%/images/ship/astral cetacean/astral-41.png
%%DATADIR%%/images/ship/astral cetacean/astral-42.png
%%DATADIR%%/images/ship/astral cetacean/astral-43.png
%%DATADIR%%/images/ship/astral cetacean/astral-44.png
%%DATADIR%%/images/ship/astral cetacean/astral-45.png
%%DATADIR%%/images/ship/astral cetacean/astral-46.png
%%DATADIR%%/images/ship/astral cetacean/astral-47.png
%%DATADIR%%/images/ship/astral cetacean/astral-48.png
%%DATADIR%%/images/ship/astral cetacean/astral-49.png
%%DATADIR%%/images/ship/astral cetacean/astral-50.png
%%DATADIR%%/images/ship/astral cetacean/astral-51.png
%%DATADIR%%/images/ship/astral cetacean/astral-52.png
%%DATADIR%%/images/ship/astral cetacean/astral-53.png
%%DATADIR%%/images/ship/astral cetacean/astral-54.png
%%DATADIR%%/images/ship/astral cetacean/astral-55.png
%%DATADIR%%/images/ship/astral cetacean/astral-56.png
%%DATADIR%%/images/ship/astral cetacean/astral-57.png
%%DATADIR%%/images/ship/astral cetacean/astral-58.png
%%DATADIR%%/images/ship/astral cetacean/astral-59.png
%%DATADIR%%/images/ship/autumn leaf.png
%%DATADIR%%/images/ship/auxiliaryc.png
%%DATADIR%%/images/ship/auxiliaryh.png
%%DATADIR%%/images/ship/auxiliaryt.png
%%DATADIR%%/images/ship/avgi akoustiki.png
%%DATADIR%%/images/ship/avgi atenuatia.png
%%DATADIR%%/images/ship/avgi atenuatia@sw.png
%%DATADIR%%/images/ship/avgi avlaki.png
%%DATADIR%%/images/ship/avgi avlaki@sw.png
%%DATADIR%%/images/ship/avgi diaspersi.png
%%DATADIR%%/images/ship/avgi diaspersi@sw.png
%%DATADIR%%/images/ship/avgi difraktos.png
%%DATADIR%%/images/ship/avgi difraktos@sw.png
%%DATADIR%%/images/ship/avgi entasi.png
%%DATADIR%%/images/ship/avgi entasi@sw.png
%%DATADIR%%/images/ship/avgi frequentia.png
%%DATADIR%%/images/ship/avgi frequentia@sw.png
%%DATADIR%%/images/ship/avgi harmonikos.png
%%DATADIR%%/images/ship/avgi harmonikos@sw.png
%%DATADIR%%/images/ship/avgi interferos.png
%%DATADIR%%/images/ship/avgi interferos@sw.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-00.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-01.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-02.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-03.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-04.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-05.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-06.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-07.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-08.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-09.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-10.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-11.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-12.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-13.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-14.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-15.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-16.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-17.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-18.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-19.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-20.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-21.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-22.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-23.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-24.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-25.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-26.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-27.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-28.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi-29.png
%%DATADIR%%/images/ship/avgi koryfi/koryfi@sw.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-00.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-01.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-02.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-03.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-04.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-05.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-06.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-07.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-08.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-09.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-10.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-11.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-12.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-13.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-14.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-15.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-16.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-17.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-18.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-19.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-20.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-21.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-22.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-23.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-24.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-25.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-26.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-27.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-28.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-29.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-30.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-31.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-32.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-33.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-34.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-35.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-36.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-37.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-38.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-39.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-40.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-41.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-42.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-43.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos-44.png
%%DATADIR%%/images/ship/avgi melodikos/melodikos@sw.png
%%DATADIR%%/images/ship/avgi optikon.png
%%DATADIR%%/images/ship/avgi phononos.png
%%DATADIR%%/images/ship/avgi photikon.png
%%DATADIR%%/images/ship/avgi polari.png
%%DATADIR%%/images/ship/avgi polari@sw.png
%%DATADIR%%/images/ship/avgi prismaios.png
%%DATADIR%%/images/ship/avgi prismaios@sw.png
%%DATADIR%%/images/ship/avgi refraktos.png
%%DATADIR%%/images/ship/avgi refraktos@sw.png
%%DATADIR%%/images/ship/avgi sonikis.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-00.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-01.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-02.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-03.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-04.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-05.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-06.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-07.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-08.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-09.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-10.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-11.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-12.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-13.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-14.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-15.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-16.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-17.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-18.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-19.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-20.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-21.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-22.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-23.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-24.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-25.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-26.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-27.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-28.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-29.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia-30.png
%%DATADIR%%/images/ship/avgi tachytia/tachytia@sw.png
%%DATADIR%%/images/ship/avgi tremoros.png
%%DATADIR%%/images/ship/avgi undsyni.png
%%DATADIR%%/images/ship/avgi undsyni@sw.png
%%DATADIR%%/images/ship/avgi undulon.png
%%DATADIR%%/images/ship/avgi vibratia.png
%%DATADIR%%/images/ship/ayym/ayym-00.png
%%DATADIR%%/images/ship/ayym/ayym-01.png
%%DATADIR%%/images/ship/ayym/ayym-02.png
%%DATADIR%%/images/ship/ayym/ayym-03.png
%%DATADIR%%/images/ship/ayym/ayym-04.png
%%DATADIR%%/images/ship/ayym/ayym-05.png
%%DATADIR%%/images/ship/ayym/ayym-06.png
%%DATADIR%%/images/ship/ayym/ayym-07.png
%%DATADIR%%/images/ship/ayym/ayym-08.png
%%DATADIR%%/images/ship/ayym/ayym-09.png
%%DATADIR%%/images/ship/ayym/ayym-10.png
%%DATADIR%%/images/ship/ayym/ayym-11.png
%%DATADIR%%/images/ship/ayym/ayym-12.png
%%DATADIR%%/images/ship/ayym/ayym-13.png
%%DATADIR%%/images/ship/ayym/ayym-14.png
%%DATADIR%%/images/ship/ayym/ayym-15.png
%%DATADIR%%/images/ship/ayym/ayym-16.png
%%DATADIR%%/images/ship/ayym/ayym-17.png
%%DATADIR%%/images/ship/ayym/ayym-18.png
%%DATADIR%%/images/ship/ayym/ayym-19.png
%%DATADIR%%/images/ship/bactrian.png
%%DATADIR%%/images/ship/barb.png
%%DATADIR%%/images/ship/barbp.png
%%DATADIR%%/images/ship/bastion.png
%%DATADIR%%/images/ship/battleship.png
%%DATADIR%%/images/ship/behemoth.png
%%DATADIR%%/images/ship/berserker.png
%%DATADIR%%/images/ship/blackbird.png
%%DATADIR%%/images/ship/blackdiamond.png
%%DATADIR%%/images/ship/bluejacket.png
%%DATADIR%%/images/ship/bounder.png
%%DATADIR%%/images/ship/boxwing.png
%%DATADIR%%/images/ship/builder satellite.png
%%DATADIR%%/images/ship/bulk freighter.png
%%DATADIR%%/images/ship/carrier.png
%%DATADIR%%/images/ship/charm-shallop.png
%%DATADIR%%/images/ship/chaser.png
%%DATADIR%%/images/ship/chigiriki.png
%%DATADIR%%/images/ship/cirrus.png
%%DATADIR%%/images/ship/clipper.png
%%DATADIR%%/images/ship/combat drone.png
%%DATADIR%%/images/ship/container transport.png
%%DATADIR%%/images/ship/cool breeze.png
%%DATADIR%%/images/ship/corvette.png
%%DATADIR%%/images/ship/cruiser.png
%%DATADIR%%/images/ship/dagger.png
%%DATADIR%%/images/ship/deep river 0.png
%%DATADIR%%/images/ship/deep river 1.png
%%DATADIR%%/images/ship/deep river 2.png
%%DATADIR%%/images/ship/deep river 3.png
%%DATADIR%%/images/ship/deep river 4.png
%%DATADIR%%/images/ship/deep river.png
%%DATADIR%%/images/ship/derecho.png
%%DATADIR%%/images/ship/dreadnought.png
%%DATADIR%%/images/ship/dredger.png
%%DATADIR%%/images/ship/dropship.png
%%DATADIR%%/images/ship/earth shaper.png
%%DATADIR%%/images/ship/echo-galleon.png
%%DATADIR%%/images/ship/ejniisde.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-00.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-01.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-02.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-03.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-04.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-05.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-06.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-07.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-08.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-09.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-10.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-11.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-12.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-13.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-14.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-15.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-16.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-17.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-18.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-19.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-20.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-21.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-22.png
%%DATADIR%%/images/ship/ember waste node/ember waste node-23.png
%%DATADIR%%/images/ship/embershade/embershade-0.png
%%DATADIR%%/images/ship/embershade/embershade-1.png
%%DATADIR%%/images/ship/embershade/embershade-2.png
%%DATADIR%%/images/ship/embershade/embershade-3.png
%%DATADIR%%/images/ship/embershade/embershade-4.png
%%DATADIR%%/images/ship/embersylph/embersylph-00.png
%%DATADIR%%/images/ship/embersylph/embersylph-01.png
%%DATADIR%%/images/ship/embersylph/embersylph-02.png
%%DATADIR%%/images/ship/embersylph/embersylph-03.png
%%DATADIR%%/images/ship/embersylph/embersylph-04.png
%%DATADIR%%/images/ship/embersylph/embersylph-05.png
%%DATADIR%%/images/ship/embersylph/embersylph-06.png
%%DATADIR%%/images/ship/embersylph/embersylph-07.png
%%DATADIR%%/images/ship/embersylph/embersylph-08.png
%%DATADIR%%/images/ship/embersylph/embersylph-09.png
%%DATADIR%%/images/ship/embersylph/embersylph-10.png
%%DATADIR%%/images/ship/embersylph/embersylph-11.png
%%DATADIR%%/images/ship/embersylph/embersylph-12.png
%%DATADIR%%/images/ship/embersylph/embersylph-13.png
%%DATADIR%%/images/ship/embersylph/embersylph-14.png
%%DATADIR%%/images/ship/embersylph/embersylph-15.png
%%DATADIR%%/images/ship/embersylph/embersylph-16.png
%%DATADIR%%/images/ship/embersylph/embersylph-17.png
%%DATADIR%%/images/ship/embersylph/embersylph-18.png
%%DATADIR%%/images/ship/embersylph/embersylph-19.png
%%DATADIR%%/images/ship/embersylph/embersylph-20.png
%%DATADIR%%/images/ship/embersylph/embersylph-21.png
%%DATADIR%%/images/ship/embersylph/embersylph-22.png
%%DATADIR%%/images/ship/embersylph/embersylph-23.png
%%DATADIR%%/images/ship/embersylph/embersylph-24.png
%%DATADIR%%/images/ship/embersylph/embersylph-25.png
%%DATADIR%%/images/ship/embersylph/embersylph-26.png
%%DATADIR%%/images/ship/embersylph/embersylph-27.png
%%DATADIR%%/images/ship/embersylph/embersylph-28.png
%%DATADIR%%/images/ship/embersylph/embersylph-29.png
%%DATADIR%%/images/ship/embersylph/embersylph-30.png
%%DATADIR%%/images/ship/embersylph/embersylph-31.png
%%DATADIR%%/images/ship/embersylph/embersylph-32.png
%%DATADIR%%/images/ship/embersylph/embersylph-33.png
%%DATADIR%%/images/ship/embersylph/embersylph-34.png
%%DATADIR%%/images/ship/embersylph/embersylph-35.png
%%DATADIR%%/images/ship/embersylph/embersylph-36.png
%%DATADIR%%/images/ship/embersylph/embersylph-37.png
%%DATADIR%%/images/ship/embersylph/embersylph-38.png
%%DATADIR%%/images/ship/embersylph/embersylph-39.png
%%DATADIR%%/images/ship/embersylph/embersylph-40.png
%%DATADIR%%/images/ship/embersylph/embersylph-41.png
%%DATADIR%%/images/ship/embersylph/embersylph-42.png
%%DATADIR%%/images/ship/embersylph/embersylph-43.png
%%DATADIR%%/images/ship/embersylph/embersylph-44.png
%%DATADIR%%/images/ship/embersylph/embersylph-45.png
%%DATADIR%%/images/ship/embersylph/embersylph-46.png
%%DATADIR%%/images/ship/embersylph/embersylph-47.png
%%DATADIR%%/images/ship/embersylph/embersylph-48.png
%%DATADIR%%/images/ship/embersylph/embersylph-49.png
%%DATADIR%%/images/ship/embersylph/embersylph-50.png
%%DATADIR%%/images/ship/embersylph/embersylph-51.png
%%DATADIR%%/images/ship/embersylph/embersylph-52.png
%%DATADIR%%/images/ship/embersylph/embersylph-53.png
%%DATADIR%%/images/ship/embersylph/embersylph-54.png
%%DATADIR%%/images/ship/embersylph/embersylph-55.png
%%DATADIR%%/images/ship/embersylph/embersylph-56.png
%%DATADIR%%/images/ship/embersylph/embersylph-57.png
%%DATADIR%%/images/ship/embersylph/embersylph-58.png
%%DATADIR%%/images/ship/embersylph/embersylph-59.png
%%DATADIR%%/images/ship/emeraldsword.png
%%DATADIR%%/images/ship/enforcer.png
%%DATADIR%%/images/ship/escape shuttle.png
%%DATADIR%%/images/ship/faes'mar.png
%%DATADIR%%/images/ship/falcon.png
%%DATADIR%%/images/ship/far lek 14.png
%%DATADIR%%/images/ship/far osk 27.png
%%DATADIR%%/images/ship/fetri'sei.png
%%DATADIR%%/images/ship/finch.png
%%DATADIR%%/images/ship/firebird.png
%%DATADIR%%/images/ship/flivver.png
%%DATADIR%%/images/ship/flycatcher.png
%%DATADIR%%/images/ship/freighter.png
%%DATADIR%%/images/ship/frigate.png
%%DATADIR%%/images/ship/fury.png
%%DATADIR%%/images/ship/gascraft.png
%%DATADIR%%/images/ship/gegno augen.png
%%DATADIR%%/images/ship/gegno coesite.png
%%DATADIR%%/images/ship/gegno conglomerate.png
%%DATADIR%%/images/ship/gegno corundum.png
%%DATADIR%%/images/ship/gegno diorite.png
%%DATADIR%%/images/ship/gegno dolomite.png
%%DATADIR%%/images/ship/gegno dunite.png
%%DATADIR%%/images/ship/gegno eclogite.png
%%DATADIR%%/images/ship/gegno epidote.png
%%DATADIR%%/images/ship/gegno feldspar.png
%%DATADIR%%/images/ship/gegno felsic.png
%%DATADIR%%/images/ship/gegno gneiss.png
%%DATADIR%%/images/ship/gegno granofel.png
%%DATADIR%%/images/ship/gegno granulite.png
%%DATADIR%%/images/ship/gegno gypsum.png
%%DATADIR%%/images/ship/gegno halite.png
%%DATADIR%%/images/ship/gegno hornfel a.png
%%DATADIR%%/images/ship/gegno hornfel b.png
%%DATADIR%%/images/ship/gegno hornfel c.png
%%DATADIR%%/images/ship/gegno hornfel d.png
%%DATADIR%%/images/ship/gegno kyanite.png
%%DATADIR%%/images/ship/gegno mica.png
%%DATADIR%%/images/ship/gegno protolith.png
%%DATADIR%%/images/ship/gegno rhyolite.png
%%DATADIR%%/images/ship/gegno schist a.png
%%DATADIR%%/images/ship/gegno schist b.png
%%DATADIR%%/images/ship/gegno schist c.png
%%DATADIR%%/images/ship/gegno shale.png
%%DATADIR%%/images/ship/gegno slate.png
%%DATADIR%%/images/ship/gegno tridymite.png
%%DATADIR%%/images/ship/gero.png
%%DATADIR%%/images/ship/gull.png
%%DATADIR%%/images/ship/gunboat.png
%%DATADIR%%/images/ship/hai anomalocaris.png
%%DATADIR%%/images/ship/hai aphid.png
%%DATADIR%%/images/ship/hai centipede.png
%%DATADIR%%/images/ship/hai cicada.png
%%DATADIR%%/images/ship/hai emperor beetle.png
%%DATADIR%%/images/ship/hai flea.png
%%DATADIR%%/images/ship/hai geocoris.png
%%DATADIR%%/images/ship/hai grasshopper.png
%%DATADIR%%/images/ship/hai ladybug.png
%%DATADIR%%/images/ship/hai lightning bug.png
%%DATADIR%%/images/ship/hai pond strider.png
%%DATADIR%%/images/ship/hai scarab.png
%%DATADIR%%/images/ship/hai sea scorpion.png
%%DATADIR%%/images/ship/hai shield beetle.png
%%DATADIR%%/images/ship/hai solifuge.png
%%DATADIR%%/images/ship/hai violin spider.png
%%DATADIR%%/images/ship/hai water bug.png
%%DATADIR%%/images/ship/hailstone.png
%%DATADIR%%/images/ship/hallucination-0.png
%%DATADIR%%/images/ship/hallucination-1.png
%%DATADIR%%/images/ship/hauler i.png
%%DATADIR%%/images/ship/hauler ii.png
%%DATADIR%%/images/ship/hauler iii.png
%%DATADIR%%/images/ship/hauler vi.png
%%DATADIR%%/images/ship/hawk.png
%%DATADIR%%/images/ship/headhunter.png
%%DATADIR%%/images/ship/heavy gust.png
%%DATADIR%%/images/ship/heavy shuttle.png
%%DATADIR%%/images/ship/heliarch breacher.png
%%DATADIR%%/images/ship/heliarch hunter.png
%%DATADIR%%/images/ship/heliarch interdictor.png
%%DATADIR%%/images/ship/heliarch judicator.png
%%DATADIR%%/images/ship/heliarch neutralizer.png
%%DATADIR%%/images/ship/heliarch punisher.png
%%DATADIR%%/images/ship/heliarch pursuer.png
%%DATADIR%%/images/ship/heliarch rover.png
%%DATADIR%%/images/ship/heliarch stalker.png
%%DATADIR%%/images/ship/heron.png
%%DATADIR%%/images/ship/hogshead.png
%%DATADIR%%/images/ship/hurricane.png
%%DATADIR%%/images/ship/ibis.png
%%DATADIR%%/images/ship/ikatila-ej.png
%%DATADIR%%/images/ship/jackal.png
%%DATADIR%%/images/ship/jje/jje-0.png
%%DATADIR%%/images/ship/jje/jje-1.png
%%DATADIR%%/images/ship/jje/jje-2.png
%%DATADIR%%/images/ship/jje/jje-3.png
%%DATADIR%%/images/ship/jje/jje-4.png
%%DATADIR%%/images/ship/jje/jje-5.png
%%DATADIR%%/images/ship/jje/jje-6.png
%%DATADIR%%/images/ship/jje/jje-7.png
%%DATADIR%%/images/ship/jje/jje-8.png
%%DATADIR%%/images/ship/jje/jje-9.png
%%DATADIR%%/images/ship/kaiken.png
%%DATADIR%%/images/ship/kama.png
%%DATADIR%%/images/ship/kar ik vot 349.png
%%DATADIR%%/images/ship/kas-ik tek 7.png
%%DATADIR%%/images/ship/kaskhorade.png
%%DATADIR%%/images/ship/kestrel.png
%%DATADIR%%/images/ship/kestrelc.png
%%DATADIR%%/images/ship/kestrele.png
%%DATADIR%%/images/ship/kestreloriginal.png
%%DATADIR%%/images/ship/kestrels.png
%%DATADIR%%/images/ship/kestrelw.png
%%DATADIR%%/images/ship/kimek briar.png
%%DATADIR%%/images/ship/kimek spire.png
%%DATADIR%%/images/ship/kimek thistle.png
%%DATADIR%%/images/ship/kimek thorn.png
%%DATADIR%%/images/ship/korsmanath a-awoj.png
%%DATADIR%%/images/ship/kunai.png
%%DATADIR%%/images/ship/kvelqde-khora.png
%%DATADIR%%/images/ship/kvelqde.png
%%DATADIR%%/images/ship/lampyrid.png
%%DATADIR%%/images/ship/lance.png
%%DATADIR%%/images/ship/leviathan.png
%%DATADIR%%/images/ship/localworldship.png
%%DATADIR%%/images/ship/maeri'het.png
%%DATADIR%%/images/ship/manta.png
%%DATADIR%%/images/ship/marrowe.png
%%DATADIR%%/images/ship/marrows.png
%%DATADIR%%/images/ship/marroww.png
%%DATADIR%%/images/ship/mbactriane.png
%%DATADIR%%/images/ship/mboundere.png
%%DATADIR%%/images/ship/mbounders.png
%%DATADIR%%/images/ship/mbounderw.png
%%DATADIR%%/images/ship/merganser.png
%%DATADIR%%/images/ship/met par tek 53.png
%%DATADIR%%/images/ship/mfalcone.png
%%DATADIR%%/images/ship/mfalcons.png
%%DATADIR%%/images/ship/mfalconw.png
%%DATADIR%%/images/ship/mfirebirde.png
%%DATADIR%%/images/ship/mfirebirds.png
%%DATADIR%%/images/ship/mfirebirdw.png
%%DATADIR%%/images/ship/mfury.png
%%DATADIR%%/images/ship/mining drone.png
%%DATADIR%%/images/ship/mleviathane.png
%%DATADIR%%/images/ship/mleviathans.png
%%DATADIR%%/images/ship/mleviathanw.png
%%DATADIR%%/images/ship/mmantae.png
%%DATADIR%%/images/ship/mmantas.png
%%DATADIR%%/images/ship/mmantaw.png
%%DATADIR%%/images/ship/model 128.png
%%DATADIR%%/images/ship/model 16.png
%%DATADIR%%/images/ship/model 256.png
%%DATADIR%%/images/ship/model 32.png
%%DATADIR%%/images/ship/model 512.png
%%DATADIR%%/images/ship/model 64.png
%%DATADIR%%/images/ship/model 8.png
%%DATADIR%%/images/ship/modified argosy.png
%%DATADIR%%/images/ship/modified boxwing.png
%%DATADIR%%/images/ship/modified carrier.png
%%DATADIR%%/images/ship/modified dromedary ghost.png
%%DATADIR%%/images/ship/modified dromedary specter.png
%%DATADIR%%/images/ship/modified dromedary wreck.png
%%DATADIR%%/images/ship/modified dromedary.png
%%DATADIR%%/images/ship/modified ladybug.png
%%DATADIR%%/images/ship/monitor.png
%%DATADIR%%/images/ship/mosprey.png
%%DATADIR%%/images/ship/mquicksilvere.png
%%DATADIR%%/images/ship/mquicksilvers.png
%%DATADIR%%/images/ship/mquicksilverw.png
%%DATADIR%%/images/ship/mravene.png
%%DATADIR%%/images/ship/mravens.png
%%DATADIR%%/images/ship/mravenw.png
%%DATADIR%%/images/ship/msplintere.png
%%DATADIR%%/images/ship/msplinters.png
%%DATADIR%%/images/ship/msplinterw.png
%%DATADIR%%/images/ship/mule.png
%%DATADIR%%/images/ship/myaede.png
%%DATADIR%%/images/ship/nest.png
%%DATADIR%%/images/ship/nimbus.png
%%DATADIR%%/images/ship/nnaatej.png
%%DATADIR%%/images/ship/nnesaarau.png
%%DATADIR%%/images/ship/ojde.png
%%DATADIR%%/images/ship/osprey.png
%%DATADIR%%/images/ship/pelican.png
%%DATADIR%%/images/ship/penguin/penguin-00.png
%%DATADIR%%/images/ship/penguin/penguin-01.png
%%DATADIR%%/images/ship/penguin/penguin-02.png
%%DATADIR%%/images/ship/penguin/penguin-03.png
%%DATADIR%%/images/ship/penguin/penguin-04.png
%%DATADIR%%/images/ship/penguin/penguin-05.png
%%DATADIR%%/images/ship/penguin/penguin-06.png
%%DATADIR%%/images/ship/penguin/penguin-07.png
%%DATADIR%%/images/ship/penguin/penguin-08.png
%%DATADIR%%/images/ship/penguin/penguin-09.png
%%DATADIR%%/images/ship/penguin/penguin-10.png
%%DATADIR%%/images/ship/penguin/penguin-11.png
%%DATADIR%%/images/ship/penguin/penguin-12.png
%%DATADIR%%/images/ship/penguin/penguin-13.png
%%DATADIR%%/images/ship/penguin/penguin-14.png
%%DATADIR%%/images/ship/peregrine/peregrine-00.png
%%DATADIR%%/images/ship/peregrine/peregrine-01.png
%%DATADIR%%/images/ship/peregrine/peregrine-02.png
%%DATADIR%%/images/ship/peregrine/peregrine-03.png
%%DATADIR%%/images/ship/peregrine/peregrine-04.png
%%DATADIR%%/images/ship/peregrine/peregrine-05.png
%%DATADIR%%/images/ship/peregrine/peregrine-06.png
%%DATADIR%%/images/ship/peregrine/peregrine-07.png
%%DATADIR%%/images/ship/peregrine/peregrine-08.png
%%DATADIR%%/images/ship/peregrine/peregrine-09.png
%%DATADIR%%/images/ship/peregrine/peregrine-10.png
%%DATADIR%%/images/ship/petrel.png
%%DATADIR%%/images/ship/pirate bulwark.png
%%DATADIR%%/images/ship/pirate cutthroat.png
%%DATADIR%%/images/ship/pirate mammoth.png
%%DATADIR%%/images/ship/pirate nighthawk.png
%%DATADIR%%/images/ship/pirate scrapper.png
%%DATADIR%%/images/ship/pirate valkyrie.png
%%DATADIR%%/images/ship/pointedstick vanguard.png
%%DATADIR%%/images/ship/pollen.png
%%DATADIR%%/images/ship/protector.png
%%DATADIR%%/images/ship/puffin.png
%%DATADIR%%/images/ship/pug arfecta.png
%%DATADIR%%/images/ship/pug enfolta.png
%%DATADIR%%/images/ship/pug maboro.png
%%DATADIR%%/images/ship/pug zibruka.png
%%DATADIR%%/images/ship/quarg drake.png
%%DATADIR%%/images/ship/quarg guivre.png
%%DATADIR%%/images/ship/quarg hydra.png
%%DATADIR%%/images/ship/quarg lindwyrm.png
%%DATADIR%%/images/ship/quarg wardragon.png
%%DATADIR%%/images/ship/quarg wyvern.png
%%DATADIR%%/images/ship/quicksilver.png
%%DATADIR%%/images/ship/racing flivver.png
%%DATADIR%%/images/ship/rai-alorej.png
%%DATADIR%%/images/ship/raider.png
%%DATADIR%%/images/ship/rainmaker.png
%%DATADIR%%/images/ship/raven.png
%%DATADIR%%/images/ship/remnant satellite.png
%%DATADIR%%/images/ship/riptide.png
%%DATADIR%%/images/ship/roost.png
%%DATADIR%%/images/ship/saber.png
%%DATADIR%%/images/ship/saryd runabout.png
%%DATADIR%%/images/ship/saryd sojourner.png
%%DATADIR%%/images/ship/saryd traveler.png
%%DATADIR%%/images/ship/saryd visitor.png
%%DATADIR%%/images/ship/sasumata.png
%%DATADIR%%/images/ship/science drone.png
%%DATADIR%%/images/ship/scout.png
%%DATADIR%%/images/ship/seiitej.png
%%DATADIR%%/images/ship/selii'mar.png
%%DATADIR%%/images/ship/shooting star/shooting star-00.png
%%DATADIR%%/images/ship/shooting star/shooting star-01.png
%%DATADIR%%/images/ship/shooting star/shooting star-02.png
%%DATADIR%%/images/ship/shooting star/shooting star-03.png
%%DATADIR%%/images/ship/shooting star/shooting star-04.png
%%DATADIR%%/images/ship/shooting star/shooting star-05.png
%%DATADIR%%/images/ship/shooting star/shooting star-06.png
%%DATADIR%%/images/ship/shooting star/shooting star-07.png
%%DATADIR%%/images/ship/shooting star/shooting star-08.png
%%DATADIR%%/images/ship/shooting star/shooting star-09.png
%%DATADIR%%/images/ship/shooting star/shooting star-10.png
%%DATADIR%%/images/ship/shooting star/shooting star-11.png
%%DATADIR%%/images/ship/shooting star/shooting star-12.png
%%DATADIR%%/images/ship/shooting star/shooting star-13.png
%%DATADIR%%/images/ship/shooting star/shooting star-14.png
%%DATADIR%%/images/ship/shooting star/shooting star-15.png
%%DATADIR%%/images/ship/shooting star/shooting star-16.png
%%DATADIR%%/images/ship/shooting star/shooting star-17.png
%%DATADIR%%/images/ship/shooting star/shooting star-18.png
%%DATADIR%%/images/ship/shooting star/shooting star-19.png
%%DATADIR%%/images/ship/shooting star/shooting star-20.png
%%DATADIR%%/images/ship/shooting star/shooting star-21.png
%%DATADIR%%/images/ship/shooting star/shooting star-22.png
%%DATADIR%%/images/ship/shooting star/shooting star-23.png
%%DATADIR%%/images/ship/shooting star/shooting star-24.png
%%DATADIR%%/images/ship/shooting star/shooting star-25.png
%%DATADIR%%/images/ship/shooting star/shooting star-26.png
%%DATADIR%%/images/ship/shooting star/shooting star-27.png
%%DATADIR%%/images/ship/shooting star/shooting star-28.png
%%DATADIR%%/images/ship/shooting star/shooting star-29.png
%%DATADIR%%/images/ship/shooting star/shooting star-30.png
%%DATADIR%%/images/ship/shooting star/shooting star-31.png
%%DATADIR%%/images/ship/shooting star/shooting star-32.png
%%DATADIR%%/images/ship/shooting star/shooting star-33.png
%%DATADIR%%/images/ship/shooting star/shooting star-34.png
%%DATADIR%%/images/ship/shooting star/shooting star-35.png
%%DATADIR%%/images/ship/shooting star/shooting star-36.png
%%DATADIR%%/images/ship/shooting star/shooting star-37.png
%%DATADIR%%/images/ship/shooting star/shooting star-38.png
%%DATADIR%%/images/ship/shooting star/shooting star-39.png
%%DATADIR%%/images/ship/shooting star/shooting star-40.png
%%DATADIR%%/images/ship/shooting star/shooting star-41.png
%%DATADIR%%/images/ship/shooting star/shooting star-42.png
%%DATADIR%%/images/ship/shooting star/shooting star-43.png
%%DATADIR%%/images/ship/shooting star/shooting star-44.png
%%DATADIR%%/images/ship/shooting star/shooting star-45.png
%%DATADIR%%/images/ship/shooting star/shooting star-46.png
%%DATADIR%%/images/ship/shooting star/shooting star-47.png
%%DATADIR%%/images/ship/shooting star/shooting star-48.png
%%DATADIR%%/images/ship/shooting star/shooting star-49.png
%%DATADIR%%/images/ship/shooting star/shooting star-50.png
%%DATADIR%%/images/ship/shooting star/shooting star-51.png
%%DATADIR%%/images/ship/shooting star/shooting star-52.png
%%DATADIR%%/images/ship/shooting star/shooting star-53.png
%%DATADIR%%/images/ship/shooting star/shooting star-54.png
%%DATADIR%%/images/ship/shooting star/shooting star-55.png
%%DATADIR%%/images/ship/shooting star/shooting star-56.png
%%DATADIR%%/images/ship/shooting star/shooting star-57.png
%%DATADIR%%/images/ship/shooting star/shooting star-58.png
%%DATADIR%%/images/ship/shooting star/shooting star-59.png
%%DATADIR%%/images/ship/shuttle=0.png
%%DATADIR%%/images/ship/shuttle=1.png
%%DATADIR%%/images/ship/shuttle=2.png
%%DATADIR%%/images/ship/silent harvester.png
%%DATADIR%%/images/ship/skein.png
%%DATADIR%%/images/ship/skylark.png
%%DATADIR%%/images/ship/smew.png
%%DATADIR%%/images/ship/sparrow.png
%%DATADIR%%/images/ship/splinter.png
%%DATADIR%%/images/ship/squall.png
%%DATADIR%%/images/ship/star barge.png
%%DATADIR%%/images/ship/star queen.png
%%DATADIR%%/images/ship/starling.png
%%DATADIR%%/images/ship/stolsaqra.png
%%DATADIR%%/images/ship/stratus.png
%%DATADIR%%/images/ship/strong wind.png
%%DATADIR%%/images/ship/subsidurial.png
%%DATADIR%%/images/ship/summer leaf.png
%%DATADIR%%/images/ship/sunder.png
%%DATADIR%%/images/ship/surveillance drone.png
%%DATADIR%%/images/ship/swan/swan-00.png
%%DATADIR%%/images/ship/swan/swan-01.png
%%DATADIR%%/images/ship/swan/swan-02.png
%%DATADIR%%/images/ship/swan/swan-03.png
%%DATADIR%%/images/ship/swan/swan-04.png
%%DATADIR%%/images/ship/swan/swan-05.png
%%DATADIR%%/images/ship/swan/swan-06.png
%%DATADIR%%/images/ship/swan/swan-07.png
%%DATADIR%%/images/ship/swan/swan-08.png
%%DATADIR%%/images/ship/swan/swan-09.png
%%DATADIR%%/images/ship/swan/swan-10.png
%%DATADIR%%/images/ship/swan/swan-11.png
%%DATADIR%%/images/ship/swan/swan-12.png
%%DATADIR%%/images/ship/swan/swan-13.png
%%DATADIR%%/images/ship/swan/swan-14.png
%%DATADIR%%/images/ship/tanto.png
%%DATADIR%%/images/ship/tek far 109.png
%%DATADIR%%/images/ship/tek far 71 lek.png
%%DATADIR%%/images/ship/tek far 78 osk.png
%%DATADIR%%/images/ship/tekkan.png
%%DATADIR%%/images/ship/telis'het.png
%%DATADIR%%/images/ship/tempest.png
%%DATADIR%%/images/ship/tern.png
%%DATADIR%%/images/ship/tubfalet.png
%%DATADIR%%/images/ship/vanguard.png
%%DATADIR%%/images/ship/vareti'het.png
%%DATADIR%%/images/ship/venta.png
%%DATADIR%%/images/ship/veusade.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-00.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-01.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-02.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-03.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-04.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-05.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-06.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-07.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-08.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-09.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-10.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-11.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-12.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-13.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-14.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-15.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-16.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-17.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-18.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-19.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-20.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-21.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-22.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-23.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-24.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-25.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-26.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-27.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-28.png
%%DATADIR%%/images/ship/void sprite/void sprite adult-29.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-00.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-01.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-02.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-03.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-04.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-05.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-06.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-07.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-08.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-09.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-10.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-11.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-12.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-13.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-14.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-15.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-16.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-17.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-18.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-19.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-20.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-21.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-22.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-23.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-24.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-25.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-26.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-27.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-28.png
%%DATADIR%%/images/ship/void sprite/void sprite infant-29.png
%%DATADIR%%/images/ship/vujlet.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-00.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-01.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-02.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-03.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-04.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-05.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-06.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-07.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-08.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-09.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-10.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-11.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-12.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-13.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-14.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-15.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-16.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-17.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-18.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-19.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-20.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-21.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-22.png
%%DATADIR%%/images/ship/vyrmeid/boomerang-23.png
%%DATADIR%%/images/ship/vyrmeid/plankton-00.png
%%DATADIR%%/images/ship/vyrmeid/plankton-01.png
%%DATADIR%%/images/ship/vyrmeid/plankton-02.png
%%DATADIR%%/images/ship/vyrmeid/plankton-03.png
%%DATADIR%%/images/ship/vyrmeid/plankton-04.png
%%DATADIR%%/images/ship/vyrmeid/plankton-05.png
%%DATADIR%%/images/ship/vyrmeid/plankton-06.png
%%DATADIR%%/images/ship/vyrmeid/plankton-07.png
%%DATADIR%%/images/ship/vyrmeid/plankton-08.png
%%DATADIR%%/images/ship/vyrmeid/plankton-09.png
%%DATADIR%%/images/ship/vyrmeid/plankton-10.png
%%DATADIR%%/images/ship/vyrmeid/plankton-11.png
%%DATADIR%%/images/ship/vyrmeid/plankton-12.png
%%DATADIR%%/images/ship/vyrmeid/plankton-13.png
%%DATADIR%%/images/ship/vyrmeid/plankton-14.png
%%DATADIR%%/images/ship/vyrmeid/plankton-15.png
%%DATADIR%%/images/ship/vyrmeid/plankton-16.png
%%DATADIR%%/images/ship/vyrmeid/squid-00.png
%%DATADIR%%/images/ship/vyrmeid/squid-01.png
%%DATADIR%%/images/ship/vyrmeid/squid-02.png
%%DATADIR%%/images/ship/vyrmeid/squid-03.png
%%DATADIR%%/images/ship/vyrmeid/squid-04.png
%%DATADIR%%/images/ship/vyrmeid/squid-05.png
%%DATADIR%%/images/ship/vyrmeid/squid-06.png
%%DATADIR%%/images/ship/vyrmeid/squid-07.png
%%DATADIR%%/images/ship/vyrmeid/squid-08.png
%%DATADIR%%/images/ship/vyrmeid/squid-09.png
%%DATADIR%%/images/ship/vyrmeid/squid-10.png
%%DATADIR%%/images/ship/vyrmeid/squid-11.png
%%DATADIR%%/images/ship/vyrmeid/squid-12.png
%%DATADIR%%/images/ship/vyrmeid/squid-13.png
%%DATADIR%%/images/ship/vyrmeid/squid-14.png
%%DATADIR%%/images/ship/vyrmeid/squid-15.png
%%DATADIR%%/images/ship/vyrmeid/squid-16.png
%%DATADIR%%/images/ship/vyrmeid/squid-17.png
%%DATADIR%%/images/ship/vyrmeid/squid-18.png
%%DATADIR%%/images/ship/vyrmeid/squid-19.png
%%DATADIR%%/images/ship/vyrmeid/squid-20.png
%%DATADIR%%/images/ship/vyrmeid/squid-21.png
%%DATADIR%%/images/ship/vyrmeid/squid-22.png
%%DATADIR%%/images/ship/vyrmeid/squid-23.png
%%DATADIR%%/images/ship/vyrmeid/squid-24.png
%%DATADIR%%/images/ship/vyrmeid/squid-25.png
%%DATADIR%%/images/ship/vyrmeid/squid-26.png
%%DATADIR%%/images/ship/vyrmeid/squid-27.png
%%DATADIR%%/images/ship/vyrmeid/squid-28.png
%%DATADIR%%/images/ship/vyrmeid/squid-29.png
%%DATADIR%%/images/ship/vyrmeid/squid-30.png
%%DATADIR%%/images/ship/vyuir/vyuir-0.png
%%DATADIR%%/images/ship/vyuir/vyuir-1.png
%%DATADIR%%/images/ship/vyuir/vyuir-2.png
%%DATADIR%%/images/ship/vyuir/vyuir-3.png
%%DATADIR%%/images/ship/vyuir/vyuir-4.png
%%DATADIR%%/images/ship/vyuir/vyuir-5.png
%%DATADIR%%/images/ship/vyuir/vyuir-6.png
%%DATADIR%%/images/ship/vyuir/vyuir-7.png
%%DATADIR%%/images/ship/vyuir/vyuir-8.png
%%DATADIR%%/images/ship/vyuir/vyuir-9.png
%%DATADIR%%/images/ship/wardragon.png
%%DATADIR%%/images/ship/wasp.png
%%DATADIR%%/images/ship/waverider.png
%%DATADIR%%/images/ship/windjammer.png
%%DATADIR%%/images/ship/winter gale.png
%%DATADIR%%/images/ship/world-ship a.png
%%DATADIR%%/images/ship/world-ship b.png
%%DATADIR%%/images/ship/world-ship c.png
%%DATADIR%%/images/ship/world-ship d.png
%%DATADIR%%/images/ship/world-ship e.png
%%DATADIR%%/images/ship/world-ship f.png
%%DATADIR%%/images/star/a-dwarf.png
%%DATADIR%%/images/star/a-eater.png
%%DATADIR%%/images/star/a-giant.png
%%DATADIR%%/images/star/a-supergiant.png
%%DATADIR%%/images/star/a0.png
%%DATADIR%%/images/star/a3.png
%%DATADIR%%/images/star/a5.png
%%DATADIR%%/images/star/a8.png
%%DATADIR%%/images/star/b-dwarf.png
%%DATADIR%%/images/star/b-giant.png
%%DATADIR%%/images/star/b-supergiant.png
%%DATADIR%%/images/star/b0.png
%%DATADIR%%/images/star/b3.png
%%DATADIR%%/images/star/b5.png
%%DATADIR%%/images/star/b8.png
%%DATADIR%%/images/star/big black hole core.png
%%DATADIR%%/images/star/big black hole+.jpg
%%DATADIR%%/images/star/black hole 3 core.png
%%DATADIR%%/images/star/black hole 3+.jpg
%%DATADIR%%/images/star/black hole 4 core.png
%%DATADIR%%/images/star/black hole 4+.jpg
%%DATADIR%%/images/star/black hole 5 core.png
%%DATADIR%%/images/star/black hole 5+.jpg
%%DATADIR%%/images/star/black hole 6 core.png
%%DATADIR%%/images/star/black hole 6+.jpg
%%DATADIR%%/images/star/black hole corona core.png
%%DATADIR%%/images/star/black hole corona+.jpg
%%DATADIR%%/images/star/black hole star core.png
%%DATADIR%%/images/star/black hole star+.jpg
%%DATADIR%%/images/star/black-hole+.jpg
%%DATADIR%%/images/star/black-hole-core.png
%%DATADIR%%/images/star/black-hole-still+.jpg
%%DATADIR%%/images/star/black-hole-still-core.png
%%DATADIR%%/images/star/carbon+.jpg
%%DATADIR%%/images/star/carbon-core.png
%%DATADIR%%/images/star/coal-black-hole+.png
%%DATADIR%%/images/star/f-dwarf.png
%%DATADIR%%/images/star/f-giant.png
%%DATADIR%%/images/star/f-supergiant.png
%%DATADIR%%/images/star/f0.png
%%DATADIR%%/images/star/f3.png
%%DATADIR%%/images/star/f5-old.png
%%DATADIR%%/images/star/f5.png
%%DATADIR%%/images/star/f8.png
%%DATADIR%%/images/star/g-dwarf.png
%%DATADIR%%/images/star/g-giant.png
%%DATADIR%%/images/star/g-supergiant.png
%%DATADIR%%/images/star/g0-old.png
%%DATADIR%%/images/star/g0.png
%%DATADIR%%/images/star/g3.png
%%DATADIR%%/images/star/g5-old.png
%%DATADIR%%/images/star/g5.png
%%DATADIR%%/images/star/g8.png
%%DATADIR%%/images/star/giant.png
%%DATADIR%%/images/star/k-dwarf.png
%%DATADIR%%/images/star/k-giant.png
%%DATADIR%%/images/star/k-supergiant.png
%%DATADIR%%/images/star/k0-old.png
%%DATADIR%%/images/star/k0.png
%%DATADIR%%/images/star/k3.png
%%DATADIR%%/images/star/k5-old.png
%%DATADIR%%/images/star/k5.png
%%DATADIR%%/images/star/k8.png
%%DATADIR%%/images/star/l-dwarf.png
%%DATADIR%%/images/star/m-dwarf.png
%%DATADIR%%/images/star/m-giant.png
%%DATADIR%%/images/star/m-supergiant.png
%%DATADIR%%/images/star/m0.png
%%DATADIR%%/images/star/m3.png
%%DATADIR%%/images/star/m4.png
%%DATADIR%%/images/star/m5.png
%%DATADIR%%/images/star/m8.png
%%DATADIR%%/images/star/magnetar+0.jpg
%%DATADIR%%/images/star/magnetar+1.jpg
%%DATADIR%%/images/star/magnetar+2.jpg
%%DATADIR%%/images/star/magnetar+3.jpg
%%DATADIR%%/images/star/magnetar+4.jpg
%%DATADIR%%/images/star/magnetar+5.jpg
%%DATADIR%%/images/star/neutron+.jpg
%%DATADIR%%/images/star/neutron-core.png
%%DATADIR%%/images/star/neutron-small+.png
%%DATADIR%%/images/star/neutron-small-core.png
%%DATADIR%%/images/star/nova+.jpg
%%DATADIR%%/images/star/nova-core.png
%%DATADIR%%/images/star/nova-old+.jpg
%%DATADIR%%/images/star/nova-old-core.png
%%DATADIR%%/images/star/nova-small.png
%%DATADIR%%/images/star/o-dwarf.png
%%DATADIR%%/images/star/o-giant.png
%%DATADIR%%/images/star/o-supergiant.png
%%DATADIR%%/images/star/o0.png
%%DATADIR%%/images/star/o3.png
%%DATADIR%%/images/star/o5.png
%%DATADIR%%/images/star/o8.png
%%DATADIR%%/images/star/patir core.png
%%DATADIR%%/images/star/patir+.jpg
%%DATADIR%%/images/star/proto-planetary-disk+.jpg
%%DATADIR%%/images/star/protostar-orange.png
%%DATADIR%%/images/star/protostar-yellow.png
%%DATADIR%%/images/star/small-black-hole+.png
%%DATADIR%%/images/star/smoke ring+0.jpg
%%DATADIR%%/images/star/smoke ring+1.jpg
%%DATADIR%%/images/star/smoke ring+2.jpg
%%DATADIR%%/images/star/twilight-black-hole+.jpg
%%DATADIR%%/images/star/void-scar.png
%%DATADIR%%/images/star/wr+.jpg
%%DATADIR%%/images/thumbnail/-nra-ret.png
%%DATADIR%%/images/thumbnail/aaulqra.png
%%DATADIR%%/images/thumbnail/aberrant chomper.png
%%DATADIR%%/images/thumbnail/aberrant dancer.png
%%DATADIR%%/images/thumbnail/aberrant hugger.png
%%DATADIR%%/images/thumbnail/aberrant icebreaker.png
%%DATADIR%%/images/thumbnail/aberrant junior.png
%%DATADIR%%/images/thumbnail/aberrant latte.png
%%DATADIR%%/images/thumbnail/aberrant longfellow.png
%%DATADIR%%/images/thumbnail/aberrant mole.png
%%DATADIR%%/images/thumbnail/aberrant pike.png
%%DATADIR%%/images/thumbnail/aberrant pileup.png
%%DATADIR%%/images/thumbnail/aberrant trip.png
%%DATADIR%%/images/thumbnail/aberrant triplet.png
%%DATADIR%%/images/thumbnail/aberrant whiskers.png
%%DATADIR%%/images/thumbnail/aerie.png
%%DATADIR%%/images/thumbnail/albatross.png
%%DATADIR%%/images/thumbnail/arach courier.png
%%DATADIR%%/images/thumbnail/arach freighter.png
%%DATADIR%%/images/thumbnail/arach hulk.png
%%DATADIR%%/images/thumbnail/arach spindle.png
%%DATADIR%%/images/thumbnail/arach transport.png
%%DATADIR%%/images/thumbnail/ararebo.png
%%DATADIR%%/images/thumbnail/arch-carrack.png
%%DATADIR%%/images/thumbnail/archon.png
%%DATADIR%%/images/thumbnail/argosy.png
%%DATADIR%%/images/thumbnail/arrow.png
%%DATADIR%%/images/thumbnail/autumn leaf.png
%%DATADIR%%/images/thumbnail/auxiliaryc.png
%%DATADIR%%/images/thumbnail/auxiliaryh.png
%%DATADIR%%/images/thumbnail/auxiliaryt.png
%%DATADIR%%/images/thumbnail/avgi akoustiki.png
%%DATADIR%%/images/thumbnail/avgi atenuatia.png
%%DATADIR%%/images/thumbnail/avgi avlaki.png
%%DATADIR%%/images/thumbnail/avgi avlaki@sw.png
%%DATADIR%%/images/thumbnail/avgi diaspersi.png
%%DATADIR%%/images/thumbnail/avgi difraktos.png
%%DATADIR%%/images/thumbnail/avgi entasi.png
%%DATADIR%%/images/thumbnail/avgi entasi@sw.png
%%DATADIR%%/images/thumbnail/avgi frequentia.png
%%DATADIR%%/images/thumbnail/avgi harmonikos.png
%%DATADIR%%/images/thumbnail/avgi harmonikos@sw.png
%%DATADIR%%/images/thumbnail/avgi interferos.png
%%DATADIR%%/images/thumbnail/avgi koryfi.png
%%DATADIR%%/images/thumbnail/avgi koryfi@sw.png
%%DATADIR%%/images/thumbnail/avgi melodikos.png
%%DATADIR%%/images/thumbnail/avgi melodikos@sw.png
%%DATADIR%%/images/thumbnail/avgi optikon.png
%%DATADIR%%/images/thumbnail/avgi phononos.png
%%DATADIR%%/images/thumbnail/avgi photikon.png
%%DATADIR%%/images/thumbnail/avgi polari.png
%%DATADIR%%/images/thumbnail/avgi prismaios.png
%%DATADIR%%/images/thumbnail/avgi refraktos.png
%%DATADIR%%/images/thumbnail/avgi sonikis.png
%%DATADIR%%/images/thumbnail/avgi tachytia.png
%%DATADIR%%/images/thumbnail/avgi tremoros.png
%%DATADIR%%/images/thumbnail/avgi undsyni.png
%%DATADIR%%/images/thumbnail/avgi undulon.png
%%DATADIR%%/images/thumbnail/avgi vibratia.png
%%DATADIR%%/images/thumbnail/bactrian.png
%%DATADIR%%/images/thumbnail/barb.png
%%DATADIR%%/images/thumbnail/barbp.png
%%DATADIR%%/images/thumbnail/bastion.png
%%DATADIR%%/images/thumbnail/battleship.png
%%DATADIR%%/images/thumbnail/behemoth.png
%%DATADIR%%/images/thumbnail/berserker.png
%%DATADIR%%/images/thumbnail/blackbird.png
%%DATADIR%%/images/thumbnail/blackdiamond.png
%%DATADIR%%/images/thumbnail/bounder.png
%%DATADIR%%/images/thumbnail/boxwing.png
%%DATADIR%%/images/thumbnail/bulk freighter.png
%%DATADIR%%/images/thumbnail/carrier.png
%%DATADIR%%/images/thumbnail/charm-shallop.png
%%DATADIR%%/images/thumbnail/chaser.png
%%DATADIR%%/images/thumbnail/chigiriki.png
%%DATADIR%%/images/thumbnail/cirrus.png
%%DATADIR%%/images/thumbnail/clipper.png
%%DATADIR%%/images/thumbnail/combat drone.png
%%DATADIR%%/images/thumbnail/container transport.png
%%DATADIR%%/images/thumbnail/cool breeze.png
%%DATADIR%%/images/thumbnail/corvette.png
%%DATADIR%%/images/thumbnail/cruiser.png
%%DATADIR%%/images/thumbnail/dagger.png
%%DATADIR%%/images/thumbnail/deep river.png
%%DATADIR%%/images/thumbnail/derecho.png
%%DATADIR%%/images/thumbnail/dreadnought.png
%%DATADIR%%/images/thumbnail/dredger.png
%%DATADIR%%/images/thumbnail/dropship.png
%%DATADIR%%/images/thumbnail/earth shaper.png
%%DATADIR%%/images/thumbnail/echo-galleon.png
%%DATADIR%%/images/thumbnail/ejniisde.png
%%DATADIR%%/images/thumbnail/ember waste node.png
%%DATADIR%%/images/thumbnail/emeraldsword.png
%%DATADIR%%/images/thumbnail/enforcer.png
%%DATADIR%%/images/thumbnail/faes'mar.png
%%DATADIR%%/images/thumbnail/falcon.png
%%DATADIR%%/images/thumbnail/far lek 14.png
%%DATADIR%%/images/thumbnail/far osk 27.png
%%DATADIR%%/images/thumbnail/fetri'sei.png
%%DATADIR%%/images/thumbnail/finch.png
%%DATADIR%%/images/thumbnail/firebird.png
%%DATADIR%%/images/thumbnail/flivver.png
%%DATADIR%%/images/thumbnail/flycatcher.png
%%DATADIR%%/images/thumbnail/freighter.png
%%DATADIR%%/images/thumbnail/frigate.png
%%DATADIR%%/images/thumbnail/fury.png
%%DATADIR%%/images/thumbnail/gascraft.png
%%DATADIR%%/images/thumbnail/gegno augen.png
%%DATADIR%%/images/thumbnail/gegno coesite.png
%%DATADIR%%/images/thumbnail/gegno conglomerate.png
%%DATADIR%%/images/thumbnail/gegno corundum.png
%%DATADIR%%/images/thumbnail/gegno diorite.png
%%DATADIR%%/images/thumbnail/gegno dolomite.png
%%DATADIR%%/images/thumbnail/gegno dunite.png
%%DATADIR%%/images/thumbnail/gegno eclogite.png
%%DATADIR%%/images/thumbnail/gegno epidote.png
%%DATADIR%%/images/thumbnail/gegno feldspar.png
%%DATADIR%%/images/thumbnail/gegno felsic.png
%%DATADIR%%/images/thumbnail/gegno gneiss.png
%%DATADIR%%/images/thumbnail/gegno granofel.png
%%DATADIR%%/images/thumbnail/gegno granulite.png
%%DATADIR%%/images/thumbnail/gegno gypsum.png
%%DATADIR%%/images/thumbnail/gegno halite.png
%%DATADIR%%/images/thumbnail/gegno hornfel a.png
%%DATADIR%%/images/thumbnail/gegno hornfel b.png
%%DATADIR%%/images/thumbnail/gegno hornfel c.png
%%DATADIR%%/images/thumbnail/gegno hornfel d.png
%%DATADIR%%/images/thumbnail/gegno kyanite.png
%%DATADIR%%/images/thumbnail/gegno mica.png
%%DATADIR%%/images/thumbnail/gegno protolith.png
%%DATADIR%%/images/thumbnail/gegno rhyolite.png
%%DATADIR%%/images/thumbnail/gegno schist a.png
%%DATADIR%%/images/thumbnail/gegno schist b.png
%%DATADIR%%/images/thumbnail/gegno schist c.png
%%DATADIR%%/images/thumbnail/gegno shale.png
%%DATADIR%%/images/thumbnail/gegno slate.png
%%DATADIR%%/images/thumbnail/gegno tridymite.png
%%DATADIR%%/images/thumbnail/gero.png
%%DATADIR%%/images/thumbnail/gull.png
%%DATADIR%%/images/thumbnail/gunboat.png
%%DATADIR%%/images/thumbnail/hai anomalocaris.png
%%DATADIR%%/images/thumbnail/hai aphid.png
%%DATADIR%%/images/thumbnail/hai centipede.png
%%DATADIR%%/images/thumbnail/hai cicada.png
%%DATADIR%%/images/thumbnail/hai emperor beetle.png
%%DATADIR%%/images/thumbnail/hai flea.png
%%DATADIR%%/images/thumbnail/hai geocoris.png
%%DATADIR%%/images/thumbnail/hai grasshopper.png
%%DATADIR%%/images/thumbnail/hai ladybug.png
%%DATADIR%%/images/thumbnail/hai lightning bug.png
%%DATADIR%%/images/thumbnail/hai pond strider.png
%%DATADIR%%/images/thumbnail/hai scarab.png
%%DATADIR%%/images/thumbnail/hai sea scorpion.png
%%DATADIR%%/images/thumbnail/hai shield beetle.png
%%DATADIR%%/images/thumbnail/hai solifuge.png
%%DATADIR%%/images/thumbnail/hai violin spider.png
%%DATADIR%%/images/thumbnail/hai water bug.png
%%DATADIR%%/images/thumbnail/hailstone.png
%%DATADIR%%/images/thumbnail/hauler i.png
%%DATADIR%%/images/thumbnail/hauler ii.png
%%DATADIR%%/images/thumbnail/hauler iii.png
%%DATADIR%%/images/thumbnail/hauler vi.png
%%DATADIR%%/images/thumbnail/hawk.png
%%DATADIR%%/images/thumbnail/headhunter.png
%%DATADIR%%/images/thumbnail/heavy gust.png
%%DATADIR%%/images/thumbnail/heavy shuttle.png
%%DATADIR%%/images/thumbnail/heliarch breacher.png
%%DATADIR%%/images/thumbnail/heliarch hunter.png
%%DATADIR%%/images/thumbnail/heliarch interdictor.png
%%DATADIR%%/images/thumbnail/heliarch judicator.png
%%DATADIR%%/images/thumbnail/heliarch neutralizer.png
%%DATADIR%%/images/thumbnail/heliarch punisher.png
%%DATADIR%%/images/thumbnail/heliarch pursuer.png
%%DATADIR%%/images/thumbnail/heliarch rover.png
%%DATADIR%%/images/thumbnail/heliarch stalker.png
%%DATADIR%%/images/thumbnail/hogshead.png
%%DATADIR%%/images/thumbnail/hurricane.png
%%DATADIR%%/images/thumbnail/ibis.png
%%DATADIR%%/images/thumbnail/ikatila-ej.png
%%DATADIR%%/images/thumbnail/jackal.png
%%DATADIR%%/images/thumbnail/kaiken.png
%%DATADIR%%/images/thumbnail/kama.png
%%DATADIR%%/images/thumbnail/kar ik vot 349.png
%%DATADIR%%/images/thumbnail/kas-ik tek 7.png
%%DATADIR%%/images/thumbnail/kaskhorade.png
%%DATADIR%%/images/thumbnail/kestrel.png
%%DATADIR%%/images/thumbnail/kestrelc.png
%%DATADIR%%/images/thumbnail/kestrele.png
%%DATADIR%%/images/thumbnail/kestreloriginal.png
%%DATADIR%%/images/thumbnail/kestrels.png
%%DATADIR%%/images/thumbnail/kestrelw.png
%%DATADIR%%/images/thumbnail/kimek briar.png
%%DATADIR%%/images/thumbnail/kimek spire.png
%%DATADIR%%/images/thumbnail/kimek thistle.png
%%DATADIR%%/images/thumbnail/kimek thorn.png
%%DATADIR%%/images/thumbnail/korsmanath a-awoj.png
%%DATADIR%%/images/thumbnail/kunai.png
%%DATADIR%%/images/thumbnail/kvelqde-khora.png
%%DATADIR%%/images/thumbnail/kvelqde.png
%%DATADIR%%/images/thumbnail/lampyrid.png
%%DATADIR%%/images/thumbnail/lance.png
%%DATADIR%%/images/thumbnail/leviathan.png
%%DATADIR%%/images/thumbnail/maeri'het.png
%%DATADIR%%/images/thumbnail/manta.png
%%DATADIR%%/images/thumbnail/marrowe.png
%%DATADIR%%/images/thumbnail/marrows.png
%%DATADIR%%/images/thumbnail/marroww.png
%%DATADIR%%/images/thumbnail/mboundere.png
%%DATADIR%%/images/thumbnail/mbounders.png
%%DATADIR%%/images/thumbnail/mbounderw.png
%%DATADIR%%/images/thumbnail/merganser.png
%%DATADIR%%/images/thumbnail/met par tek 53.png
%%DATADIR%%/images/thumbnail/mfalcone.png
%%DATADIR%%/images/thumbnail/mfalcons.png
%%DATADIR%%/images/thumbnail/mfalconw.png
%%DATADIR%%/images/thumbnail/mfirebirde.png
%%DATADIR%%/images/thumbnail/mfirebirds.png
%%DATADIR%%/images/thumbnail/mfirebirdw.png
%%DATADIR%%/images/thumbnail/mfury.png
%%DATADIR%%/images/thumbnail/mining drone.png
%%DATADIR%%/images/thumbnail/mleviathane.png
%%DATADIR%%/images/thumbnail/mleviathans.png
%%DATADIR%%/images/thumbnail/mleviathanw.png
%%DATADIR%%/images/thumbnail/mmantae.png
%%DATADIR%%/images/thumbnail/mmantas.png
%%DATADIR%%/images/thumbnail/mmantaw.png
%%DATADIR%%/images/thumbnail/model 128.png
%%DATADIR%%/images/thumbnail/model 16.png
%%DATADIR%%/images/thumbnail/model 256.png
%%DATADIR%%/images/thumbnail/model 32.png
%%DATADIR%%/images/thumbnail/model 512.png
%%DATADIR%%/images/thumbnail/model 64.png
%%DATADIR%%/images/thumbnail/model 8.png
%%DATADIR%%/images/thumbnail/modified argosy.png
%%DATADIR%%/images/thumbnail/modified boxwing.png
%%DATADIR%%/images/thumbnail/modified carrier.png
%%DATADIR%%/images/thumbnail/modified dromedary wreck.png
%%DATADIR%%/images/thumbnail/modified dromedary.png
%%DATADIR%%/images/thumbnail/monitor.png
%%DATADIR%%/images/thumbnail/mquicksilvere.png
%%DATADIR%%/images/thumbnail/mquicksilvers.png
%%DATADIR%%/images/thumbnail/mquicksilverw.png
%%DATADIR%%/images/thumbnail/mravene.png
%%DATADIR%%/images/thumbnail/mravens.png
%%DATADIR%%/images/thumbnail/mravenw.png
%%DATADIR%%/images/thumbnail/msplintere.png
%%DATADIR%%/images/thumbnail/msplinters.png
%%DATADIR%%/images/thumbnail/msplinterw.png
%%DATADIR%%/images/thumbnail/mule.png
%%DATADIR%%/images/thumbnail/myaede.png
%%DATADIR%%/images/thumbnail/nest.png
%%DATADIR%%/images/thumbnail/nimbus.png
%%DATADIR%%/images/thumbnail/nnaatej.png
%%DATADIR%%/images/thumbnail/nnesaarau.png
%%DATADIR%%/images/thumbnail/ojde.png
%%DATADIR%%/images/thumbnail/osprey.png
%%DATADIR%%/images/thumbnail/pelican.png
%%DATADIR%%/images/thumbnail/penguin.png
%%DATADIR%%/images/thumbnail/peregrine.png
%%DATADIR%%/images/thumbnail/petrel.png
%%DATADIR%%/images/thumbnail/pirate bulwark.png
%%DATADIR%%/images/thumbnail/pirate cutthroat.png
%%DATADIR%%/images/thumbnail/pirate mammoth.png
%%DATADIR%%/images/thumbnail/pirate nighthawk.png
%%DATADIR%%/images/thumbnail/pirate scrapper.png
%%DATADIR%%/images/thumbnail/pirate valkyrie.png
%%DATADIR%%/images/thumbnail/protector.png
%%DATADIR%%/images/thumbnail/puffin.png
%%DATADIR%%/images/thumbnail/pug arfecta.png
%%DATADIR%%/images/thumbnail/pug enfolta.png
%%DATADIR%%/images/thumbnail/pug maboro.png
%%DATADIR%%/images/thumbnail/pug zibruka.png
%%DATADIR%%/images/thumbnail/quarg drake.png
%%DATADIR%%/images/thumbnail/quarg guivre.png
%%DATADIR%%/images/thumbnail/quarg hydra.png
%%DATADIR%%/images/thumbnail/quarg lindwyrm.png
%%DATADIR%%/images/thumbnail/quarg wardragon.png
%%DATADIR%%/images/thumbnail/quarg wyvern.png
%%DATADIR%%/images/thumbnail/quicksilver.png
%%DATADIR%%/images/thumbnail/racing flivver.png
%%DATADIR%%/images/thumbnail/rai-alorej.png
%%DATADIR%%/images/thumbnail/raider.png
%%DATADIR%%/images/thumbnail/rainmaker.png
%%DATADIR%%/images/thumbnail/raven.png
%%DATADIR%%/images/thumbnail/riptide.png
%%DATADIR%%/images/thumbnail/roost.png
%%DATADIR%%/images/thumbnail/saber.png
%%DATADIR%%/images/thumbnail/saryd runabout.png
%%DATADIR%%/images/thumbnail/saryd sojourner.png
%%DATADIR%%/images/thumbnail/saryd traveler.png
%%DATADIR%%/images/thumbnail/saryd visitor.png
%%DATADIR%%/images/thumbnail/sasumata.png
%%DATADIR%%/images/thumbnail/scout.png
%%DATADIR%%/images/thumbnail/seiitej.png
%%DATADIR%%/images/thumbnail/selii'mar.png
%%DATADIR%%/images/thumbnail/shuttle.png
%%DATADIR%%/images/thumbnail/skein.png
%%DATADIR%%/images/thumbnail/skylark.png
%%DATADIR%%/images/thumbnail/smew.png
%%DATADIR%%/images/thumbnail/sparrow.png
%%DATADIR%%/images/thumbnail/splinter.png
%%DATADIR%%/images/thumbnail/squall.png
%%DATADIR%%/images/thumbnail/star barge.png
%%DATADIR%%/images/thumbnail/star queen.png
%%DATADIR%%/images/thumbnail/starling.png
%%DATADIR%%/images/thumbnail/stolsaqra.png
%%DATADIR%%/images/thumbnail/stratus.png
%%DATADIR%%/images/thumbnail/strong wind.png
%%DATADIR%%/images/thumbnail/subsidurial.png
%%DATADIR%%/images/thumbnail/summer leaf.png
%%DATADIR%%/images/thumbnail/sunder.png
%%DATADIR%%/images/thumbnail/surveillance drone.png
%%DATADIR%%/images/thumbnail/swan.png
%%DATADIR%%/images/thumbnail/tanto.png
%%DATADIR%%/images/thumbnail/tek far 109.png
%%DATADIR%%/images/thumbnail/tek far 71 lek.png
%%DATADIR%%/images/thumbnail/tek far 78 osk.png
%%DATADIR%%/images/thumbnail/tekkan.png
%%DATADIR%%/images/thumbnail/telis'het.png
%%DATADIR%%/images/thumbnail/tempest.png
%%DATADIR%%/images/thumbnail/tern.png
%%DATADIR%%/images/thumbnail/tubfalet.png
%%DATADIR%%/images/thumbnail/vanguard.png
%%DATADIR%%/images/thumbnail/vareti'het.png
%%DATADIR%%/images/thumbnail/venta.png
%%DATADIR%%/images/thumbnail/veusade.png
%%DATADIR%%/images/thumbnail/void sprite adult.png
%%DATADIR%%/images/thumbnail/void sprite infant.png
%%DATADIR%%/images/thumbnail/vujlet.png
%%DATADIR%%/images/thumbnail/vyuir.png
%%DATADIR%%/images/thumbnail/wardragon.png
%%DATADIR%%/images/thumbnail/wasp.png
%%DATADIR%%/images/thumbnail/winter gale.png
%%DATADIR%%/images/thumbnail/world-ship a.png
%%DATADIR%%/images/thumbnail/world-ship b.png
%%DATADIR%%/images/thumbnail/world-ship c.png
%%DATADIR%%/images/thumbnail/world-ship d.png
%%DATADIR%%/images/thumbnail/world-ship e.png
%%DATADIR%%/images/thumbnail/world-ship f.png
%%DATADIR%%/images/ui/ammo selected@1x.png
%%DATADIR%%/images/ui/ammo unselected@1x.png
%%DATADIR%%/images/ui/audio low@1x.png
%%DATADIR%%/images/ui/audio max@1x.png
%%DATADIR%%/images/ui/audio medium@1x.png
%%DATADIR%%/images/ui/audio none@1x.png
%%DATADIR%%/images/ui/boarding dialog@1x.png
%%DATADIR%%/images/ui/bottom edge@1x.png
%%DATADIR%%/images/ui/bottom edges@1x.png
%%DATADIR%%/images/ui/checked+@1x.png
%%DATADIR%%/images/ui/collapsed@1x.png
%%DATADIR%%/images/ui/description panel@1x.png
%%DATADIR%%/images/ui/dialog bottom wide@1x.png
%%DATADIR%%/images/ui/dialog bottom@1x.png
%%DATADIR%%/images/ui/dialog cancel@1x.png
%%DATADIR%%/images/ui/dialog middle wide@1x.png
%%DATADIR%%/images/ui/dialog middle@1x.png
%%DATADIR%%/images/ui/dialog top wide@1x.png
%%DATADIR%%/images/ui/dialog top@1x.png
%%DATADIR%%/images/ui/error@1x.png
%%DATADIR%%/images/ui/expanded@1x.png
%%DATADIR%%/images/ui/faction left@1x.png
%%DATADIR%%/images/ui/faction right@1x.png
%%DATADIR%%/images/ui/fast forward@1x.png
%%DATADIR%%/images/ui/find selected@1x.png
%%DATADIR%%/images/ui/find unselected@1x.png
%%DATADIR%%/images/ui/five info buttons@1x.png
%%DATADIR%%/images/ui/hail panel@1x.png
%%DATADIR%%/images/ui/icon selected@1x.png
%%DATADIR%%/images/ui/icon unselected@1x.png
%%DATADIR%%/images/ui/info panel@1x.png
%%DATADIR%%/images/ui/left edge@1x.png
%%DATADIR%%/images/ui/map system@1x.png
%%DATADIR%%/images/ui/map trade@1x.png
%%DATADIR%%/images/ui/message log key@1x.png
%%DATADIR%%/images/ui/milky way.jpg
%%DATADIR%%/images/ui/mission empty@1x.png
%%DATADIR%%/images/ui/mission key@1x.png
%%DATADIR%%/images/ui/mission@1x.png
%%DATADIR%%/images/ui/navigation@1x.png
%%DATADIR%%/images/ui/news@1x.png
%%DATADIR%%/images/ui/orbits and key@1x.png
%%DATADIR%%/images/ui/outfitter key@1x.png
%%DATADIR%%/images/ui/outfitter selected+@1x.png
%%DATADIR%%/images/ui/outfitter unselected+@1x.png
%%DATADIR%%/images/ui/patir cluster.jpg
%%DATADIR%%/images/ui/paused@1x.png
%%DATADIR%%/images/ui/planet dialog button@1x.png
%%DATADIR%%/images/ui/planet dialog@1x.png
%%DATADIR%%/images/ui/player tab@1x.png
%%DATADIR%%/images/ui/pleiades.jpg
%%DATADIR%%/images/ui/radar@1x.png
%%DATADIR%%/images/ui/red alert grayed@1x.png
%%DATADIR%%/images/ui/red alert@1x.png
%%DATADIR%%/images/ui/right edge@1x.png
%%DATADIR%%/images/ui/sales key@1x.png
%%DATADIR%%/images/ui/selected system@1x.png
%%DATADIR%%/images/ui/settings audio bar@1x.png
%%DATADIR%%/images/ui/settings base panel@1x.png
%%DATADIR%%/images/ui/settings five buttons@1x.png
%%DATADIR%%/images/ui/settings four buttons@1x.png
%%DATADIR%%/images/ui/settings keys box@1x.png
%%DATADIR%%/images/ui/settings three buttons@1x.png
%%DATADIR%%/images/ui/settings two buttons@1x.png
%%DATADIR%%/images/ui/ship tab@1x.png
%%DATADIR%%/images/ui/shipyard selected+@1x.png
%%DATADIR%%/images/ui/shipyard unselected+@1x.png
%%DATADIR%%/images/ui/sort abc@1x.png
%%DATADIR%%/images/ui/sort ascending@1x.png
%%DATADIR%%/images/ui/sort convenient@1x.png
%%DATADIR%%/images/ui/sort descending@1x.png
%%DATADIR%%/images/ui/sort pay@1x.png
%%DATADIR%%/images/ui/sort rush include@1x.png
%%DATADIR%%/images/ui/sort rush separate@1x.png
%%DATADIR%%/images/ui/sort speed@1x.png
%%DATADIR%%/images/ui/sort unacceptable include@1x.png
%%DATADIR%%/images/ui/sort unacceptable separate@1x.png
%%DATADIR%%/images/ui/status@1x.png
%%DATADIR%%/images/ui/tactical/acceleration@1x.png
%%DATADIR%%/images/ui/tactical/crew@1x.png
%%DATADIR%%/images/ui/tactical/energy@1x.png
%%DATADIR%%/images/ui/tactical/fuel@1x.png
%%DATADIR%%/images/ui/tactical/gun range@1x.png
%%DATADIR%%/images/ui/tactical/range@1x.png
%%DATADIR%%/images/ui/tactical/thermal@1x.png
%%DATADIR%%/images/ui/tactical/turn@1x.png
%%DATADIR%%/images/ui/tactical/turret range@1x.png
%%DATADIR%%/images/ui/tactical/velocity@1x.png
%%DATADIR%%/images/ui/target@1x.png
%%DATADIR%%/images/ui/three info buttons@1x.png
%%DATADIR%%/images/ui/thumb box@1x.png
%%DATADIR%%/images/ui/thumb boxes@1x.png
%%DATADIR%%/images/ui/unchecked+@1x.png
%%DATADIR%%/images/ui/very wide button@1x.png
%%DATADIR%%/images/ui/warning@1x.png
%%DATADIR%%/images/ui/wide button@1x.png
%%DATADIR%%/images/ui/zoom@1x.png
%%DATADIR%%/keys.txt
%%DATADIR%%/shaders/batch.frag
%%DATADIR%%/shaders/batch.vert
%%DATADIR%%/shaders/fill.frag
%%DATADIR%%/shaders/fill.vert
%%DATADIR%%/shaders/fog.frag
%%DATADIR%%/shaders/fog.vert
%%DATADIR%%/shaders/font.frag
%%DATADIR%%/shaders/font.vert
%%DATADIR%%/shaders/line.frag
%%DATADIR%%/shaders/line.vert
%%DATADIR%%/shaders/outline.frag
%%DATADIR%%/shaders/outline.vert
%%DATADIR%%/shaders/pointer.frag
%%DATADIR%%/shaders/pointer.vert
%%DATADIR%%/shaders/renderBuffer.frag
%%DATADIR%%/shaders/renderBuffer.vert
%%DATADIR%%/shaders/ring.frag
%%DATADIR%%/shaders/ring.vert
%%DATADIR%%/shaders/sprite.frag
%%DATADIR%%/shaders/sprite.vert
%%DATADIR%%/shaders/starfield.frag
%%DATADIR%%/shaders/starfield.vert
%%DATADIR%%/sounds/acuit.wav
%%DATADIR%%/sounds/afterburner~.wav
%%DATADIR%%/sounds/alarm.wav
%%DATADIR%%/sounds/ambient/machinery.mp3
%%DATADIR%%/sounds/ambient/rulei planet.mp3
%%DATADIR%%/sounds/ambient/rulei space.mp3
%%DATADIR%%/sounds/anti-missile.wav
%%DATADIR%%/sounds/archonteleport.wav
%%DATADIR%%/sounds/archonteleport@3x.wav
%%DATADIR%%/sounds/asteroid crunch large.wav
%%DATADIR%%/sounds/asteroid crunch large@3x.wav
%%DATADIR%%/sounds/asteroid crunch medium.wav
%%DATADIR%%/sounds/asteroid crunch medium@3x.wav
%%DATADIR%%/sounds/asteroid crunch small.wav
%%DATADIR%%/sounds/asteroid crunch small@3x.wav
%%DATADIR%%/sounds/astral attack~.wav
%%DATADIR%%/sounds/astral cetacean~.wav
%%DATADIR%%/sounds/astuit.wav
%%DATADIR%%/sounds/atomic huge~.wav
%%DATADIR%%/sounds/atomic large~.wav
%%DATADIR%%/sounds/atomic medium~.wav
%%DATADIR%%/sounds/atomic small~.wav
%%DATADIR%%/sounds/atomic tiny~.wav
%%DATADIR%%/sounds/avgi launch external.wav
%%DATADIR%%/sounds/avgi launch internal.wav
%%DATADIR%%/sounds/ayym~.wav
%%DATADIR%%/sounds/ballistic.wav
%%DATADIR%%/sounds/banisher~.wav
%%DATADIR%%/sounds/bimodal.wav
%%DATADIR%%/sounds/blaster.wav
%%DATADIR%%/sounds/blaze-pike~.wav
%%DATADIR%%/sounds/bludgeon impact.wav
%%DATADIR%%/sounds/bombardment.wav
%%DATADIR%%/sounds/bounce.wav
%%DATADIR%%/sounds/buzzer am.wav
%%DATADIR%%/sounds/choleric.wav
%%DATADIR%%/sounds/clink.wav
%%DATADIR%%/sounds/coalition launch.wav
%%DATADIR%%/sounds/composer~.wav
%%DATADIR%%/sounds/crunch.wav
%%DATADIR%%/sounds/culverin.wav
%%DATADIR%%/sounds/detainer.wav
%%DATADIR%%/sounds/disruptor~.wav
%%DATADIR%%/sounds/drag cannon.wav
%%DATADIR%%/sounds/dragonflame.wav
%%DATADIR%%/sounds/dragonflame@3x.wav
%%DATADIR%%/sounds/drill~.wav
%%DATADIR%%/sounds/electron beam~.wav
%%DATADIR%%/sounds/ember tear hit~.wav
%%DATADIR%%/sounds/ember tear~.wav
%%DATADIR%%/sounds/excavator~.wav
%%DATADIR%%/sounds/explosion ayym.wav
%%DATADIR%%/sounds/explosion ayym@3x.wav
%%DATADIR%%/sounds/explosion huge.wav
%%DATADIR%%/sounds/explosion huge@3x.wav
%%DATADIR%%/sounds/explosion jje.wav
%%DATADIR%%/sounds/explosion jje@3x.wav
%%DATADIR%%/sounds/explosion large.wav
%%DATADIR%%/sounds/explosion large@3x.wav
%%DATADIR%%/sounds/explosion medium.wav
%%DATADIR%%/sounds/explosion medium@3x.wav
%%DATADIR%%/sounds/explosion nuke.wav
%%DATADIR%%/sounds/explosion nuke@3x.wav
%%DATADIR%%/sounds/explosion small.wav
%%DATADIR%%/sounds/explosion small@3x.wav
%%DATADIR%%/sounds/explosion tiny.wav
%%DATADIR%%/sounds/explosion tiny@3x.wav
%%DATADIR%%/sounds/fate fire.wav
%%DATADIR%%/sounds/final explosion large.wav
%%DATADIR%%/sounds/final explosion large@3x.wav
%%DATADIR%%/sounds/final explosion medium.wav
%%DATADIR%%/sounds/final explosion medium@3x.wav
%%DATADIR%%/sounds/final explosion small.wav
%%DATADIR%%/sounds/final explosion small@3x.wav
%%DATADIR%%/sounds/finisher.wav
%%DATADIR%%/sounds/finisher@3x.wav
%%DATADIR%%/sounds/fire-lance~.wav
%%DATADIR%%/sounds/firelight hit.wav
%%DATADIR%%/sounds/firelight.wav
%%DATADIR%%/sounds/firestorm hit.wav
%%DATADIR%%/sounds/firestorm hit@3x.wav
%%DATADIR%%/sounds/firestorm.wav
%%DATADIR%%/sounds/flamethrower~.wav
%%DATADIR%%/sounds/fusion blast.wav
%%DATADIR%%/sounds/fusion torch~.wav
%%DATADIR%%/sounds/gatling.wav
%%DATADIR%%/sounds/grab-strike.wav
%%DATADIR%%/sounds/gravity well~.wav
%%DATADIR%%/sounds/gridfire~.wav
%%DATADIR%%/sounds/guile pulse~.wav
%%DATADIR%%/sounds/hai launch.wav
%%DATADIR%%/sounds/heaver hyperspace hit.wav
%%DATADIR%%/sounds/heaver shard hit.wav
%%DATADIR%%/sounds/heaver.wav
%%DATADIR%%/sounds/heavy anti-missile.wav
%%DATADIR%%/sounds/heavy blaster.wav
%%DATADIR%%/sounds/heavy laser~.wav
%%DATADIR%%/sounds/heavy rocket hit.wav
%%DATADIR%%/sounds/heavy rocket hit@3x.wav
%%DATADIR%%/sounds/heliarch attractor~.wav
%%DATADIR%%/sounds/heliarch repulsor~.wav
%%DATADIR%%/sounds/hion~.wav
%%DATADIR%%/sounds/human launch external.wav
%%DATADIR%%/sounds/human launch.wav
%%DATADIR%%/sounds/human launch@3x.wav
%%DATADIR%%/sounds/hyperdrive in.wav
%%DATADIR%%/sounds/hyperdrive in@3x.wav
%%DATADIR%%/sounds/hyperdrive out.wav
%%DATADIR%%/sounds/hyperdrive out@3x.wav
%%DATADIR%%/sounds/hyperdrive.wav
%%DATADIR%%/sounds/hyperdrive@3x.wav
%%DATADIR%%/sounds/impulse engine~.wav
%%DATADIR%%/sounds/incip plasma large~.wav
%%DATADIR%%/sounds/incip plasma med~.wav
%%DATADIR%%/sounds/incip plasma small~.wav
%%DATADIR%%/sounds/inhibitor.wav
%%DATADIR%%/sounds/ion huge~.wav
%%DATADIR%%/sounds/ion impact.wav
%%DATADIR%%/sounds/ion large~.wav
%%DATADIR%%/sounds/ion medium~.wav
%%DATADIR%%/sounds/ion rain.wav
%%DATADIR%%/sounds/ion small~.wav
%%DATADIR%%/sounds/ion tiny~.wav
%%DATADIR%%/sounds/ion torch large~.wav
%%DATADIR%%/sounds/ion torch medium~.wav
%%DATADIR%%/sounds/ion torch small~.wav
%%DATADIR%%/sounds/ion torch~.wav
%%DATADIR%%/sounds/ion.wav
%%DATADIR%%/sounds/ionball.wav
%%DATADIR%%/sounds/ionic afterburner~.wav
%%DATADIR%%/sounds/ionic blast.wav
%%DATADIR%%/sounds/irate.wav
%%DATADIR%%/sounds/javelin.wav
%%DATADIR%%/sounds/jje~.wav
%%DATADIR%%/sounds/jump drive.wav
%%DATADIR%%/sounds/jump drive@3x.wav
%%DATADIR%%/sounds/jump in.wav
%%DATADIR%%/sounds/jump in@3x.wav
%%DATADIR%%/sounds/jump out.wav
%%DATADIR%%/sounds/jump out@3x.wav
%%DATADIR%%/sounds/korath afterburner~.wav
%%DATADIR%%/sounds/korath digger~.wav
%%DATADIR%%/sounds/korath inferno~.wav
%%DATADIR%%/sounds/korath launch external.wav
%%DATADIR%%/sounds/korath launch.wav
%%DATADIR%%/sounds/korath launch@3x.wav
%%DATADIR%%/sounds/landing.wav
%%DATADIR%%/sounds/laser~.wav
%%DATADIR%%/sounds/locust blaster.wav
%%DATADIR%%/sounds/magic am.wav
%%DATADIR%%/sounds/magic weapon.wav
%%DATADIR%%/sounds/mandible cannon.wav
%%DATADIR%%/sounds/meteor.wav
%%DATADIR%%/sounds/mine deploy.wav
%%DATADIR%%/sounds/minelayer.wav
%%DATADIR%%/sounds/mining laser~.wav
%%DATADIR%%/sounds/missile hit.wav
%%DATADIR%%/sounds/missile hit@3x.wav
%%DATADIR%%/sounds/mod blaster.wav
%%DATADIR%%/sounds/moonbeam~.wav
%%DATADIR%%/sounds/neutron bolt.wav
%%DATADIR%%/sounds/nucleolysis~.wav
%%DATADIR%%/sounds/nuke alarm.wav
%%DATADIR%%/sounds/nuke.wav
%%DATADIR%%/sounds/nuke@3x.wav
%%DATADIR%%/sounds/optical laser~.wav
%%DATADIR%%/sounds/organ drive in.wav
%%DATADIR%%/sounds/organ drive in@3x.wav
%%DATADIR%%/sounds/organ drive out.wav
%%DATADIR%%/sounds/organ drive out@3x.wav
%%DATADIR%%/sounds/organ drive.wav
%%DATADIR%%/sounds/organ drive@3x.wav
%%DATADIR%%/sounds/overcharged pulse laser~.wav
%%DATADIR%%/sounds/particle.wav
%%DATADIR%%/sounds/piercer.wav
%%DATADIR%%/sounds/plankton bite.wav
%%DATADIR%%/sounds/plasma discharger.wav
%%DATADIR%%/sounds/plasma huge~.wav
%%DATADIR%%/sounds/plasma large~.wav
%%DATADIR%%/sounds/plasma medium~.wav
%%DATADIR%%/sounds/plasma small~.wav
%%DATADIR%%/sounds/plasma tiny~.wav
%%DATADIR%%/sounds/plasma.wav
%%DATADIR%%/sounds/point defense.wav
%%DATADIR%%/sounds/proton.wav
%%DATADIR%%/sounds/pug anti-missile.wav
%%DATADIR%%/sounds/pulse.wav
%%DATADIR%%/sounds/pwave.wav
%%DATADIR%%/sounds/quarg anti-missile.wav
%%DATADIR%%/sounds/ranseur.wav
%%DATADIR%%/sounds/remnant afterburner~.wav
%%DATADIR%%/sounds/remnant launch external.wav
%%DATADIR%%/sounds/remnant launch external@3x.wav
%%DATADIR%%/sounds/remnant launch.wav
%%DATADIR%%/sounds/remnant launch@3x.wav
%%DATADIR%%/sounds/repeater.wav
%%DATADIR%%/sounds/ribault.wav
%%DATADIR%%/sounds/rocket.wav
%%DATADIR%%/sounds/rocket@3x.wav
%%DATADIR%%/sounds/scan~.wav
%%DATADIR%%/sounds/scin launch.wav
%%DATADIR%%/sounds/scplasma large~.wav
%%DATADIR%%/sounds/scplasma medium~.wav
%%DATADIR%%/sounds/scplasma small~.wav
%%DATADIR%%/sounds/scplasma tiny~.wav
%%DATADIR%%/sounds/seeker.wav
%%DATADIR%%/sounds/sheragi launch.wav
%%DATADIR%%/sounds/shunt-strike.wav
%%DATADIR%%/sounds/sidewinder.wav
%%DATADIR%%/sounds/sjeja lance.wav
%%DATADIR%%/sounds/skydagger~.wav
%%DATADIR%%/sounds/skylance~.wav
%%DATADIR%%/sounds/slicer~.wav
%%DATADIR%%/sounds/slipstream projector~.wav
%%DATADIR%%/sounds/speckle.wav
%%DATADIR%%/sounds/stagnation beam~.wav
%%DATADIR%%/sounds/star tail.wav
%%DATADIR%%/sounds/star tail@3x.wav
%%DATADIR%%/sounds/successor afterburner large~.wav
%%DATADIR%%/sounds/successor afterburner medium~.wav
%%DATADIR%%/sounds/successor afterburner small~.wav
%%DATADIR%%/sounds/successor afterburner tiny~.wav
%%DATADIR%%/sounds/successor pulse laser~.wav
%%DATADIR%%/sounds/sunbeam~.wav
%%DATADIR%%/sounds/swarm missile.wav
%%DATADIR%%/sounds/takeoff.wav
%%DATADIR%%/sounds/takeoff@3x.wav
%%DATADIR%%/sounds/thorax cannon.wav
%%DATADIR%%/sounds/thorax cannon@3x.wav
%%DATADIR%%/sounds/thrasher.wav
%%DATADIR%%/sounds/thunderhead.wav
%%DATADIR%%/sounds/torpedo hit.wav
%%DATADIR%%/sounds/torpedo hit@3x.wav
%%DATADIR%%/sounds/torpedo.wav
%%DATADIR%%/sounds/torpedo@3x.wav
%%DATADIR%%/sounds/tracker.wav
%%DATADIR%%/sounds/tractor beam~.wav
%%DATADIR%%/sounds/typhoon.wav
%%DATADIR%%/sounds/typhoon@3x.wav
%%DATADIR%%/sounds/ui/buzz soft.wav
%%DATADIR%%/sounds/ui/click soft.wav
%%DATADIR%%/sounds/ui/click.wav
%%DATADIR%%/sounds/ui/fail.wav
%%DATADIR%%/sounds/ui/target.wav
%%DATADIR%%/sounds/warder.wav
%%DATADIR%%/sounds/zapper~.wav
share/icons/hicolor/128x128/apps/endless-sky.png
share/icons/hicolor/16x16/apps/endless-sky.png
share/icons/hicolor/22x22/apps/endless-sky.png
share/icons/hicolor/24x24/apps/endless-sky.png
share/icons/hicolor/256x256/apps/endless-sky.png
share/icons/hicolor/32x32/apps/endless-sky.png
share/icons/hicolor/48x48/apps/endless-sky.png
share/icons/hicolor/512x512/apps/endless-sky.png
share/man/man6/endless-sky.6.gz
share/metainfo/io.github.endless_sky.endless_sky.appdata.xml

Since everything except my gitrepo for this work is setup, I can test to see if my saved game can progress or if it crashes right after leaving the planet as it has every time I attempt recently.  Starting the game worked perfectly well that I can determine and when I leave the port to travel there is no crash.  I don't know what the issue truly is, whether there are files missing in the official install or if it is code improvements.  I don't recall in the past having those difficulties, but with my "bleeding edge" upstream commit those problems are now gone.

It turns out that the version in official ports is the first of two recent unstable releases which makes perfect sense now that I had encountered troubles.  My guess is that I unknowingly updated Endless Sky and this caused me to use the unstable release.  I am fine with tracking upstream commits and this means I will always have the most recent bug fixes, new bugs, and updates.  I am kind of excited to see what is different in the game now, though I have no plan to start fresh unless I must.

Contrary to how it seemed by the title of this blog post, I am adopting endless-sky within my collection of -dev ports which follow the most recent upstream commits.  I do for myself, the official port maintainer is not me, my work is essentially seperate and follows a different philosophy.

Some details with regard to my endless-sky-dev unofficial port: the post-build command in the Makefile I don't entirely understand, but the patches in the files directory are quite elaborate and necessary, they might be useful for other things I attempt to port, especially the CMakeList.txt patch.  I intend to make sure that all of the options cmake might offer are exposed if applicable or useful.  What my unofficial port includes may be reduced since I am primarily concerned about amd64 which is what I use and can dogfood.  I may take time to better understand how the pkg-plist became so empty for the version in our ports tree.  Now I can go play Endless Sky and see how much I can succeed before I need to revert to a saved game due to becoming trapped or destroyed.

Frequently viewed this week