diff --git a/.docker/default.conf b/.docker/default.conf
new file mode 100644
index 00000000..9d3a7b22
--- /dev/null
+++ b/.docker/default.conf
@@ -0,0 +1,21 @@
+server {
+ listen 80;
+ listen [::]:80;
+ server_name localhost;
+
+ location / {
+ root /usr/share/nginx/html;
+ index index.html;
+ add_header Content-Security-Policy "default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; font-src data: 'self'";
+ add_header X-XSS-Protection "1; mode=block";
+ add_header X-Frame-Options "DENY";
+ add_header X-Content-Type-Options nosniff;
+ add_header Referrer-Policy "strict-origin";
+ }
+
+ error_page 500 502 503 504 /50x.html;
+ location = /50x.html {
+ root /usr/share/nginx/html;
+ }
+
+}
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
index b027f814..f01a2390 100644
--- a/.github/FUNDING.yml
+++ b/.github/FUNDING.yml
@@ -1,3 +1,3 @@
# These are supported funding model platforms
-
+github: Azgaar
patreon: Azgaar
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
new file mode 100644
index 00000000..d4407a32
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -0,0 +1,33 @@
+---
+name: Bug report
+about: Report a problem
+title: ''
+labels: pending review
+assignees: Azgaar
+
+---
+
+
+**Describe the bug**
+
+
+**Steps to reproduce**
+
+1. Click on ...
+2. Type ...
+3. See the ...
+
+**Expected behavior**
+
+
+**.map file**
+
+
+**Screenshots**
+
+
+**System**
+
+ - Version: ...
+ - Browser: ...
+ - OS: ...
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
new file mode 100644
index 00000000..29ab55e2
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/feature_request.md
@@ -0,0 +1,19 @@
+---
+name: Feature request
+about: Suggest an idea
+title: ''
+labels: pending review
+assignees: Azgaar
+
+---
+
+<-- BEFORE CREATING PLEASE CHECK THE TO-DO LIST-->
+<-- https://trello.com/b/7x832DG4/fantasy-map-generator ->>
+**Problem**
+<-- Is your feature request related to a problem? Please describe. Ex.: I'm always frustrated when ... -->
+
+**Solution**
+<-- A clear and concise description of what you want to happen and ideas on how it can be implemented. Screenshots are welcomed -->
+
+**Alternatives**
+<-- A clear and concise description of any alternative solutions or features you've considered -->
diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md
new file mode 100644
index 00000000..698d23ae
--- /dev/null
+++ b/.github/copilot-instructions.md
@@ -0,0 +1,89 @@
+# Fantasy Map Generator
+
+Azgaar's Fantasy Map Generator is a client-side JavaScript web application for creating fantasy maps. It generates detailed fantasy worlds with countries, cities, rivers, biomes, and cultural elements.
+
+Always reference these instructions first and fallback to search or bash commands only when you encounter unexpected information that does not match the info here.
+
+## Working Effectively
+
+- **CRITICAL**: This is a static web application - NO build process needed. No npm install, no compilation, no bundling.
+- Run the application using HTTP server (required - cannot run with file:// protocol):
+ - `python3 -m http.server 8000` - takes 2-3 seconds to start
+- Access at: `http://localhost:8000`
+
+## Validation
+
+- Always manually validate any changes by:
+ 1. Starting the HTTP server (NEVER CANCEL - wait for full startup)
+ 2. Navigate to the application in browser
+ 3. Click the "►" button to open the menu and generate a new map
+ 4. **CRITICAL VALIDATION**: Verify the map generates with countries, cities, roads, and geographic features
+ 5. Test UI interaction: click "Layers" button, verify layer controls work
+ 6. Test regeneration: click "New Map!" button, verify new map generates correctly
+- **Known Issues**: Google Analytics and font loading errors are normal (blocked external resources)
+
+## Repository Structure
+
+### Core Files
+
+- `index.html` - Main application entry point
+- `main.js` - Core application logic
+- `versioning.js` - Version management and update handling
+
+### Key Directories
+
+- `modules/` - core functionality modules:
+ - `modules/ui/` - UI components (editors, tools, style management)
+ - `modules/dynamic/` - runtime modules (export, installation)
+ - `modules/renderers/` - drawing and rendering logic
+- `utils/` - utility libraries (math, arrays, strings, etc.)
+- `styles/` - visual style presets (JSON files)
+- `libs/` - Third-party libraries (D3.js, TinyMCE, etc.)
+- `images/` - backgrounds, UI elements
+- `charges/` - heraldic symbols and coat of arms elements
+- `config/` - Heightmap templates and configurations
+- `heightmaps/` - Terrain generation data
+
+## Common Tasks
+
+### Making Code Changes
+
+1. Edit JavaScript files directly (no compilation needed)
+2. Refresh browser to see changes immediately
+3. **ALWAYS test map generation** after making changes
+4. Update version in `versioning.js` for all changes
+5. Update file hashes in `index.html` for changed files (format: `file.js?v=1.108.1`)
+
+### Debugging Map Generation
+
+- Open browser developer tools console
+- Look for timing logs, e.g. "TOTAL: ~0.76s"
+- Map generation logs show each step (heightmap, rivers, states, etc.)
+- Error messages will indicate specific generation failures
+
+### Testing Different Map Types
+
+- Use "New Map!" button for quick regeneration
+- Access "Layers" menu to change map visualization
+- Available presets: Political, Cultural, Religions, Biomes, Heightmap, Physical, Military
+
+## Troubleshooting
+
+### Application Won't Load
+
+- Ensure using HTTP server (not file://)
+- Check console for JavaScript errors
+- Verify all files are present in repository
+
+### Map Generation Fails
+
+- Check browser console for error messages
+- Look for specific module failures in generation logs
+- Try refreshing page and generating new map
+
+### Performance Issues
+
+- Map generation should complete in ~1 second for standard configurations
+- If slower, check browser console for errors
+
+Remember: This is a sophisticated client-side application that generates complete fantasy worlds with political systems, geography, cultures, and detailed cartographic elements. Always validate that your changes preserve the core map generation functionality.
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md
new file mode 100644
index 00000000..acedeb18
--- /dev/null
+++ b/.github/pull_request_template.md
@@ -0,0 +1,23 @@
+# Description
+
+
+
+# Type of change
+
+
+
+- [ ] Bug fix
+- [ ] New feature
+- [ ] Refactoring / style
+- [ ] Documentation update / chore
+- [ ] Other (please describe)
+
+# Versioning
+
+
+
+- [ ] Version is updated
+- [ ] Changed files hash is updated
diff --git a/.gitignore b/.gitignore
index 1104b06f..b0a273f0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,5 @@
-run_php_server.bat
-.vscode
\ No newline at end of file
+.vscode
+.idea
+/node_modules
+/dist
+/coverage
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
new file mode 100644
index 00000000..23cfdd81
--- /dev/null
+++ b/CODE_OF_CONDUCT.md
@@ -0,0 +1,108 @@
+# Contributor Code of Conduct
+
+We as members, contributors, and leaders agree to make participation in our
+community a harassment-free experience for everyone, regardless of age, body
+size, visible or invisible disability, ethnicity, sex characteristics, gender
+identity and expression, level of experience, education, socio-economic status,
+nationality, personal appearance, race, religion, or sexual identity
+and orientation.
+
+## Our Standards
+
+Examples of behavior that contributes to a positive environment for our
+community include:
+
+* Demonstrating empathy and kindness toward other people
+* Being respectful of differing opinions, viewpoints, and experiences
+* Giving and gracefully accepting constructive feedback
+* Accepting responsibility and apologizing to those affected by our mistakes,
+ and learning from the experience
+* Focusing on what is best not just for us as individuals, but for the
+ overall community
+
+Examples of unacceptable behavior include:
+
+* Vocal support of agressive behaviour, agressive communities or countries
+* The use of sexualized language or imagery, and sexual attention or
+ advances of any kind
+* Trolling, insulting or derogatory comments, and personal or political attacks
+* Public or private harassment
+* Publishing others' private information, such as a physical or email
+ address, without their explicit permission
+* Other conduct which could reasonably be considered inappropriate in a
+ professional setting
+
+## Enforcement Responsibilities
+
+Community leaders are responsible for clarifying and enforcing our standards of
+acceptable behavior and will take appropriate and fair corrective action in
+response to any behavior that they deem inappropriate, threatening, offensive,
+or harmful.
+
+Community leaders have the right and responsibility to remove, edit, or reject
+comments, commits, code, wiki edits, issues, and other contributions that are
+not aligned to this Code of Conduct, and will communicate reasons for moderation
+decisions when appropriate.
+
+## Scope
+
+This Code of Conduct applies within all community spaces, and also applies when
+an individual is officially representing the community in public spaces.
+Examples of representing our community include using an official e-mail address,
+posting via an official social media account, or acting as an appointed
+representative at an online or offline event.
+
+## Enforcement
+
+Instances of abusive, harassing, or otherwise unacceptable behavior may be
+reported to the community leaders responsible for enforcement at
+azgaar.fmg@yandex.com.
+All complaints will be reviewed and investigated promptly and fairly.
+
+All community leaders are obligated to respect the privacy and security of the
+reporter of any incident.
+
+## Enforcement Guidelines
+
+Community leaders will follow these Community Impact Guidelines in determining
+the consequences for any action they deem in violation of this Code of Conduct:
+
+### 1. Warning
+
+**Community Impact**: A violation through a single incident or series
+of actions.
+
+**Consequence**: A warning with consequences for continued behavior. No
+interaction with the people involved, including unsolicited interaction with
+those enforcing the Code of Conduct, for a specified period of time. This
+includes avoiding interactions in community spaces as well as external channels
+like social media. Violating these terms may lead to a temporary or
+permanent ban.
+
+### 2. Temporary Ban
+
+**Community Impact**: A serious violation of community standards, including
+sustained inappropriate behavior.
+
+**Consequence**: A temporary ban from any sort of interaction or public
+communication with the community for a specified period of time. No public or
+private interaction with the people involved, including unsolicited interaction
+with those enforcing the Code of Conduct, is allowed during this period.
+Violating these terms may lead to a permanent ban.
+
+### 3. Permanent Ban
+
+**Community Impact**: Demonstrating a pattern of violation of community
+standards, including sustained inappropriate behavior, harassment of an
+individual, or aggression toward or disparagement of classes of individuals.
+
+**Consequence**: A permanent ban from any sort of public interaction within
+the community.
+
+## Attribution
+
+This Code of Conduct is based on [Contributor Covenant](https://www.contributor-covenant.org/version/2/0/code_of_conduct.html),
+version 2.0.
+
+Community Impact Guidelines were inspired by [Mozilla's code of conduct
+enforcement ladder](https://github.com/mozilla/diversity).
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 00000000..fbf5a425
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,7 @@
+FROM nginx:stable-alpine
+
+# Copy the contents of the repo to the container
+COPY . /usr/share/nginx/html
+
+# Move the customized nginx config file to the nginx folder
+RUN mv /usr/share/nginx/html/.docker/default.conf /etc/nginx/conf.d/default.conf
diff --git a/LICENSE b/LICENSE
index 24402ab6..4b0e677e 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
MIT License
-Copyright 2018-2020 Max Ganiev (Azgaar), azgaar.fmg@yandex.by
+Copyright 2017-2024 Max Haniyeu (Azgaar), azgaar.fmg@yandex.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -14,6 +14,7 @@ copies or substantial portions of the Software.
You can produce, without restrictions, any derivative works from the original
software and even reap commercial benefits from the sale of the secondary product.
+The derivates include created maps, map images, screenshots, videos, and other materials.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
@@ -21,4 +22,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
\ No newline at end of file
+SOFTWARE.
diff --git a/README.md b/README.md
index 3161d67c..3ab245b2 100644
--- a/README.md
+++ b/README.md
@@ -1,29 +1,29 @@
# Fantasy Map Generator
-Azgaar's _Fantasy Map Generator_ is a free client-side web application generating interactive and highly customizable svg maps based on voronoi diagram.
+Azgaar's _Fantasy Map Generator_ is a free web application that helps fantasy writers, game masters, and cartographers create and edit fantasy maps.
-Project is under development, the current version is available on [Github Pages](https://azgaar.github.io/Fantasy-Map-Generator).
+Link: [azgaar.github.io/Fantasy-Map-Generator](https://azgaar.github.io/Fantasy-Map-Generator).
-Refer to the [project wiki](https://github.com/Azgaar/Fantasy-Map-Generator/wiki) for a guidance. Some details are covered in my old blog [_Fantasy Maps for fun and glory_](https://azgaar.wordpress.com), you may also keep an eye on my [Trello devboard](https://trello.com/b/7x832DG4/fantasy-map-generator).
+Refer to the [project wiki](https://github.com/Azgaar/Fantasy-Map-Generator/wiki) for guidance. The current progress is tracked in [Trello](https://trello.com/b/7x832DG4/fantasy-map-generator). Some details are covered in my old blog [_Fantasy Maps for fun and glory_](https://azgaar.wordpress.com).
-[](https://i.redd.it/8bf81ir2cy631.png)
+[](https://github.com/Azgaar/Fantasy-Map-Generator/assets/26469650/11a42446-4bd5-4526-9cb1-3ef97c868992)
-[](https://cdn.discordapp.com/attachments/515359185664344071/593888810782162964/The_Wichin_Island_sepia.png)
+[](https://github.com/Azgaar/Fantasy-Map-Generator/assets/26469650/e751a9e5-7986-4638-b8a9-362395ef7583)
-[](https://cdn.discordapp.com/attachments/515359096925454350/593891237984206848/The_Wichin_Island_-_diplomacy.png)
+[](https://github.com/Azgaar/Fantasy-Map-Generator/assets/26469650/b0d0efde-a0d1-4e80-8818-ea3dd83c2323)
-Join our [Reddit community](https://www.reddit.com/r/FantasyMapGenerator) and [Discord server](https://discordapp.com/invite/X7E84HU) to share the created maps, discuss the Generator, suggest ideas and get a most recent updates. You may also contact me directly via [email](mailto:azgaar.fmg@yandex.by). For bug reports please use the project [issues page](https://github.com/Azgaar/Fantasy-Map-Generator/issues) or Discord "Bugs" channel. If you are facing performance issues, please read [the tips](https://github.com/Azgaar/Fantasy-Map-Generator/wiki/Tips#performance-tips).
+Join our [Discord server](https://discordapp.com/invite/X7E84HU) and [Reddit community](https://www.reddit.com/r/FantasyMapGenerator) to share your creations, discuss the Generator, suggest ideas and get the most recent updates.
-Electron desktop application is available in [releases](https://github.com/Azgaar/Fantasy-Map-Generator/releases). Download archive for your architecture, unzip and run.
+Contact me via [email](mailto:azgaar.fmg@yandex.com) if you have non-public suggestions. For bug reports please use [GitHub issues](https://github.com/Azgaar/Fantasy-Map-Generator/issues) or _#fmg-bugs_ channel on Discord. If you are facing performance issues, please read [the tips](https://github.com/Azgaar/Fantasy-Map-Generator/wiki/Tips#performance-tips).
-Pull requests are welcomed. The Tool codebase is messy and requires re-design, but I will appreciate if you start with minor changes.
+Pull requests are highly welcomed. The codebase is messy and requires re-design. I will appreciate if you start with minor changes. Check out the [data model](https://github.com/Azgaar/Fantasy-Map-Generator/wiki/Data-model) before contributing.
You can support the project on [Patreon](https://www.patreon.com/azgaar).
_Inspiration:_
-* Martin O'Leary's [_Generating fantasy maps_](https://mewo2.com/notes/terrain)
+- Martin O'Leary's [_Generating fantasy maps_](https://mewo2.com/notes/terrain)
-* Amit Patel's [_Polygonal Map Generation for Games_](http://www-cs-students.stanford.edu/~amitp/game-programming/polygon-map-generation)
+- Amit Patel's [_Polygonal Map Generation for Games_](http://www-cs-students.stanford.edu/~amitp/game-programming/polygon-map-generation)
-* Scott Turner's [_Here Dragons Abound_](https://heredragonsabound.blogspot.com)
+- Scott Turner's [_Here Dragons Abound_](https://heredragonsabound.blogspot.com)
diff --git a/Readme.txt b/Readme.txt
deleted file mode 100644
index 6760d7eb..00000000
--- a/Readme.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-Azgaar's Fantasy Map Generator
-This is an open-source software available under MIT license
-https://github.com/Azgaar/Fantasy-Map-Generator
-
-To run the tool unzip ALL files and open index.html in browser
\ No newline at end of file
diff --git a/charges/agnusDei.svg b/charges/agnusDei.svg
new file mode 100644
index 00000000..60ea9d87
--- /dev/null
+++ b/charges/agnusDei.svg
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/anchor.svg b/charges/anchor.svg
index c05b085f..59678314 100644
--- a/charges/anchor.svg
+++ b/charges/anchor.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/angel.svg b/charges/angel.svg
new file mode 100644
index 00000000..e6f3ba3e
--- /dev/null
+++ b/charges/angel.svg
@@ -0,0 +1,227 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/annulet.svg b/charges/annulet.svg
index 2677e045..b3dad13d 100644
--- a/charges/annulet.svg
+++ b/charges/annulet.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/anvil.svg b/charges/anvil.svg
new file mode 100644
index 00000000..2b6b0868
--- /dev/null
+++ b/charges/anvil.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/charges/apple.svg b/charges/apple.svg
new file mode 100644
index 00000000..6679428d
--- /dev/null
+++ b/charges/apple.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/charges/arbalest.svg b/charges/arbalest.svg
new file mode 100644
index 00000000..38adac50
--- /dev/null
+++ b/charges/arbalest.svg
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/arbalest2.svg b/charges/arbalest2.svg
new file mode 100644
index 00000000..be9b1a6a
--- /dev/null
+++ b/charges/arbalest2.svg
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/archer.svg b/charges/archer.svg
new file mode 100644
index 00000000..00891c1b
--- /dev/null
+++ b/charges/archer.svg
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/armEmbowedHoldingSabre.svg b/charges/armEmbowedHoldingSabre.svg
new file mode 100644
index 00000000..2fbae9f6
--- /dev/null
+++ b/charges/armEmbowedHoldingSabre.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/armEmbowedVambraced.svg b/charges/armEmbowedVambraced.svg
new file mode 100644
index 00000000..ac1422b5
--- /dev/null
+++ b/charges/armEmbowedVambraced.svg
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/armEmbowedVambracedHoldingSword.svg b/charges/armEmbowedVambracedHoldingSword.svg
new file mode 100644
index 00000000..d00d8bab
--- /dev/null
+++ b/charges/armEmbowedVambracedHoldingSword.svg
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/armillarySphere.svg b/charges/armillarySphere.svg
index 60a1cc65..45d09b8d 100644
--- a/charges/armillarySphere.svg
+++ b/charges/armillarySphere.svg
@@ -1,18 +1 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
\ No newline at end of file
diff --git a/charges/arrow.svg b/charges/arrow.svg
index c9e8f852..2135169f 100644
--- a/charges/arrow.svg
+++ b/charges/arrow.svg
@@ -1,9 +1,10 @@
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/charges/arrowsSheaf.svg b/charges/arrowsSheaf.svg
index 41880647..4b879e10 100644
--- a/charges/arrowsSheaf.svg
+++ b/charges/arrowsSheaf.svg
@@ -1,24 +1,27 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
-
+
+
+
+
+
+
-
+
diff --git a/charges/attire.svg b/charges/attire.svg
new file mode 100644
index 00000000..99427a60
--- /dev/null
+++ b/charges/attire.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/axe.svg b/charges/axe.svg
new file mode 100644
index 00000000..e1608145
--- /dev/null
+++ b/charges/axe.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/badgerStatant.svg b/charges/badgerStatant.svg
new file mode 100644
index 00000000..29cd5f39
--- /dev/null
+++ b/charges/badgerStatant.svg
@@ -0,0 +1,62 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/banner.svg b/charges/banner.svg
new file mode 100644
index 00000000..8ca47b97
--- /dev/null
+++ b/charges/banner.svg
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/basilisk.svg b/charges/basilisk.svg
new file mode 100644
index 00000000..b2755dff
--- /dev/null
+++ b/charges/basilisk.svg
@@ -0,0 +1,220 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/bearPassant.svg b/charges/bearPassant.svg
index 9fe44e31..847ea7bd 100644
--- a/charges/bearPassant.svg
+++ b/charges/bearPassant.svg
@@ -1,22 +1,23 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/bearRampant.svg b/charges/bearRampant.svg
index f320d194..418d6fb3 100644
--- a/charges/bearRampant.svg
+++ b/charges/bearRampant.svg
@@ -1,23 +1,23 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/bee.svg b/charges/bee.svg
new file mode 100644
index 00000000..7f3a0069
--- /dev/null
+++ b/charges/bee.svg
@@ -0,0 +1,116 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/bell.svg b/charges/bell.svg
index 73124adb..307b6493 100644
--- a/charges/bell.svg
+++ b/charges/bell.svg
@@ -1,18 +1,18 @@
-
+
-
+
+
-
-
+
diff --git a/charges/billet.svg b/charges/billet.svg
index 6398df51..9482f5a7 100644
--- a/charges/billet.svg
+++ b/charges/billet.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/boarHeadErased.svg b/charges/boarHeadErased.svg
new file mode 100644
index 00000000..08348586
--- /dev/null
+++ b/charges/boarHeadErased.svg
@@ -0,0 +1,44 @@
+
+
+
+
diff --git a/charges/boarRampant.svg b/charges/boarRampant.svg
index fced611a..436fb439 100644
--- a/charges/boarRampant.svg
+++ b/charges/boarRampant.svg
@@ -1,9 +1,12 @@
-
+
-
-
-
+
+
+
+
+
+
diff --git a/charges/boat.svg b/charges/boat.svg
index 02070e6e..b50f6194 100644
--- a/charges/boat.svg
+++ b/charges/boat.svg
@@ -1,7 +1,7 @@
-
+
-
+
diff --git a/charges/boat2.svg b/charges/boat2.svg
new file mode 100644
index 00000000..f3e37a5b
--- /dev/null
+++ b/charges/boat2.svg
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/bone.svg b/charges/bone.svg
new file mode 100644
index 00000000..27a9e410
--- /dev/null
+++ b/charges/bone.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/charges/bookClosed.svg b/charges/bookClosed.svg
new file mode 100644
index 00000000..0cd74341
--- /dev/null
+++ b/charges/bookClosed.svg
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/bookClosed2.svg b/charges/bookClosed2.svg
new file mode 100644
index 00000000..bf8d2519
--- /dev/null
+++ b/charges/bookClosed2.svg
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/bookOpen.svg b/charges/bookOpen.svg
new file mode 100644
index 00000000..62f1c6fc
--- /dev/null
+++ b/charges/bookOpen.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/bow.svg b/charges/bow.svg
index c0033517..b1f2c8ec 100644
--- a/charges/bow.svg
+++ b/charges/bow.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/bowWithArrow.svg b/charges/bowWithArrow.svg
index ad95d94d..12d7f9ff 100644
--- a/charges/bowWithArrow.svg
+++ b/charges/bowWithArrow.svg
@@ -1,14 +1,15 @@
-
+
-
-
+
+
-
-
-
-
-
+
+
+
+
+
+
diff --git a/charges/bowWithThreeArrows.svg b/charges/bowWithThreeArrows.svg
new file mode 100644
index 00000000..0efc30f2
--- /dev/null
+++ b/charges/bowWithThreeArrows.svg
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/bridge.svg b/charges/bridge.svg
new file mode 100644
index 00000000..f5ce588e
--- /dev/null
+++ b/charges/bridge.svg
@@ -0,0 +1,92 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/bridge2.svg b/charges/bridge2.svg
new file mode 100644
index 00000000..6d3dfab5
--- /dev/null
+++ b/charges/bridge2.svg
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/bucket.svg b/charges/bucket.svg
new file mode 100644
index 00000000..56c7e83c
--- /dev/null
+++ b/charges/bucket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/charges/buckle.svg b/charges/buckle.svg
index e558bfaa..b83ba97d 100644
--- a/charges/buckle.svg
+++ b/charges/buckle.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/bugleHorn.svg b/charges/bugleHorn.svg
index b006a69f..a7985ca6 100644
--- a/charges/bugleHorn.svg
+++ b/charges/bugleHorn.svg
@@ -1,7 +1,7 @@
-
+
-
+
@@ -9,9 +9,10 @@
-
-
-
-
+
+
+
+
+
diff --git a/charges/bugleHorn2.svg b/charges/bugleHorn2.svg
new file mode 100644
index 00000000..cf5bcaa7
--- /dev/null
+++ b/charges/bugleHorn2.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/bullHeadCaboshed.svg b/charges/bullHeadCaboshed.svg
index 88ae177e..d3ddeccc 100644
--- a/charges/bullHeadCaboshed.svg
+++ b/charges/bullHeadCaboshed.svg
@@ -1,7 +1,7 @@
-
+
-
+
diff --git a/charges/bullPassant.svg b/charges/bullPassant.svg
index c73a9795..0314b64e 100644
--- a/charges/bullPassant.svg
+++ b/charges/bullPassant.svg
@@ -1,19 +1,21 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
+
diff --git a/charges/butterfly.svg b/charges/butterfly.svg
new file mode 100644
index 00000000..2c301fcf
--- /dev/null
+++ b/charges/butterfly.svg
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/camel.svg b/charges/camel.svg
new file mode 100644
index 00000000..e2dd8bb9
--- /dev/null
+++ b/charges/camel.svg
@@ -0,0 +1,125 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/cancer.svg b/charges/cancer.svg
index 49a2c83b..a8bf102c 100644
--- a/charges/cancer.svg
+++ b/charges/cancer.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/cannon.svg b/charges/cannon.svg
new file mode 100644
index 00000000..05e88b25
--- /dev/null
+++ b/charges/cannon.svg
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/caravel.svg b/charges/caravel.svg
new file mode 100644
index 00000000..9eb57671
--- /dev/null
+++ b/charges/caravel.svg
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/carreau.svg b/charges/carreau.svg
index 24f687c0..bfeeb049 100644
--- a/charges/carreau.svg
+++ b/charges/carreau.svg
@@ -1,6 +1,6 @@
-
-
+
+
diff --git a/charges/castle.svg b/charges/castle.svg
index 0a2168e6..43a2fa38 100644
--- a/charges/castle.svg
+++ b/charges/castle.svg
@@ -1,24 +1,24 @@
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/charges/castle2.svg b/charges/castle2.svg
new file mode 100644
index 00000000..5f12a8aa
--- /dev/null
+++ b/charges/castle2.svg
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/catPassantGuardant.svg b/charges/catPassantGuardant.svg
new file mode 100644
index 00000000..b49dc820
--- /dev/null
+++ b/charges/catPassantGuardant.svg
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/cavalier.svg b/charges/cavalier.svg
index 9e7207a7..7bfad7ac 100644
--- a/charges/cavalier.svg
+++ b/charges/cavalier.svg
@@ -1,8 +1,75 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/centaur.svg b/charges/centaur.svg
new file mode 100644
index 00000000..f4ddeb22
--- /dev/null
+++ b/charges/centaur.svg
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/chain.svg b/charges/chain.svg
new file mode 100644
index 00000000..cfe4a3bb
--- /dev/null
+++ b/charges/chain.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/chalice.svg b/charges/chalice.svg
index daf10466..0f4f95f6 100644
--- a/charges/chalice.svg
+++ b/charges/chalice.svg
@@ -1,10 +1,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/cinquefoil.svg b/charges/cinquefoil.svg
index 1dfea574..49db293e 100644
--- a/charges/cinquefoil.svg
+++ b/charges/cinquefoil.svg
@@ -1,14 +1,15 @@
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/cock.svg b/charges/cock.svg
index cfd58106..4b100034 100644
--- a/charges/cock.svg
+++ b/charges/cock.svg
@@ -1,22 +1,24 @@
-
+
-
-
+
+
+
-
+
+
-
-
+
+
-
-
+
+
diff --git a/charges/column.svg b/charges/column.svg
new file mode 100644
index 00000000..38d8b2a0
--- /dev/null
+++ b/charges/column.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/comet.svg b/charges/comet.svg
new file mode 100644
index 00000000..096ddb67
--- /dev/null
+++ b/charges/comet.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/charges/compassRose.svg b/charges/compassRose.svg
index 8a6a8139..dec495cc 100644
--- a/charges/compassRose.svg
+++ b/charges/compassRose.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/cossack.svg b/charges/cossack.svg
new file mode 100644
index 00000000..f5cf75ed
--- /dev/null
+++ b/charges/cossack.svg
@@ -0,0 +1,201 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/cowHorns.svg b/charges/cowHorns.svg
index 6564982a..74378210 100644
--- a/charges/cowHorns.svg
+++ b/charges/cowHorns.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/cowStatant.svg b/charges/cowStatant.svg
new file mode 100644
index 00000000..66b46823
--- /dev/null
+++ b/charges/cowStatant.svg
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/crescent.svg b/charges/crescent.svg
index f6f1f921..9181995b 100644
--- a/charges/crescent.svg
+++ b/charges/crescent.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/crocodile.svg b/charges/crocodile.svg
new file mode 100644
index 00000000..442e456d
--- /dev/null
+++ b/charges/crocodile.svg
@@ -0,0 +1,66 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/crosier.svg b/charges/crosier.svg
index 1149b3ef..631ef998 100644
--- a/charges/crosier.svg
+++ b/charges/crosier.svg
@@ -1,16 +1 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
\ No newline at end of file
diff --git a/charges/crossAnkh.svg b/charges/crossAnkh.svg
new file mode 100644
index 00000000..6bbac70e
--- /dev/null
+++ b/charges/crossAnkh.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/charges/crossArrowed.svg b/charges/crossArrowed.svg
index a3844430..ff4b6c02 100644
--- a/charges/crossArrowed.svg
+++ b/charges/crossArrowed.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/crossAvellane.svg b/charges/crossAvellane.svg
index 387a7072..303e7f72 100644
--- a/charges/crossAvellane.svg
+++ b/charges/crossAvellane.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/crossBiparted.svg b/charges/crossBiparted.svg
new file mode 100644
index 00000000..0e6ac5f8
--- /dev/null
+++ b/charges/crossBiparted.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/charges/crossBottony.svg b/charges/crossBottony.svg
index 345d7d82..2d246b29 100644
--- a/charges/crossBottony.svg
+++ b/charges/crossBottony.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/crossBurgundy.svg b/charges/crossBurgundy.svg
new file mode 100644
index 00000000..cb681714
--- /dev/null
+++ b/charges/crossBurgundy.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/charges/crossCalvary.svg b/charges/crossCalvary.svg
new file mode 100644
index 00000000..dd0447b5
--- /dev/null
+++ b/charges/crossCalvary.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/charges/crossCarolingian.svg b/charges/crossCarolingian.svg
new file mode 100644
index 00000000..761464a7
--- /dev/null
+++ b/charges/crossCarolingian.svg
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/crossCeltic.svg b/charges/crossCeltic.svg
index e47c2834..6abe10fe 100644
--- a/charges/crossCeltic.svg
+++ b/charges/crossCeltic.svg
@@ -1,6 +1,6 @@
-
+
-
+
diff --git a/charges/crossCeltic2.svg b/charges/crossCeltic2.svg
new file mode 100644
index 00000000..84628911
--- /dev/null
+++ b/charges/crossCeltic2.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/charges/crossCercelee.svg b/charges/crossCercelee.svg
index bc5771da..2b8bff16 100644
--- a/charges/crossCercelee.svg
+++ b/charges/crossCercelee.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/crossClechy.svg b/charges/crossClechy.svg
index 51a143e4..c246534e 100644
--- a/charges/crossClechy.svg
+++ b/charges/crossClechy.svg
@@ -1,6 +1,6 @@
-
+
-
+
diff --git a/charges/crossDouble.svg b/charges/crossDouble.svg
new file mode 100644
index 00000000..1a0e4bc8
--- /dev/null
+++ b/charges/crossDouble.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/charges/crossErminee.svg b/charges/crossErminee.svg
index c9190575..1def3830 100644
--- a/charges/crossErminee.svg
+++ b/charges/crossErminee.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/crossFitchy.svg b/charges/crossFitchy.svg
index 87e9265c..954b8e70 100644
--- a/charges/crossFitchy.svg
+++ b/charges/crossFitchy.svg
@@ -1,6 +1,6 @@
-
+
-
+
diff --git a/charges/crossFleury.svg b/charges/crossFleury.svg
index 86d6b9ed..d617a15d 100644
--- a/charges/crossFleury.svg
+++ b/charges/crossFleury.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/crossFormee.svg b/charges/crossFormee.svg
new file mode 100644
index 00000000..efef99d4
--- /dev/null
+++ b/charges/crossFormee.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/charges/crossFormee2.svg b/charges/crossFormee2.svg
new file mode 100644
index 00000000..2309e494
--- /dev/null
+++ b/charges/crossFormee2.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/charges/crossFourchy.svg b/charges/crossFourchy.svg
index 6a19f8e5..9308a143 100644
--- a/charges/crossFourchy.svg
+++ b/charges/crossFourchy.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/crossGamma.svg b/charges/crossGamma.svg
index 7610c995..d2da6490 100644
--- a/charges/crossGamma.svg
+++ b/charges/crossGamma.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/crossHummetty.svg b/charges/crossHummetty.svg
index 5a7388fc..e2676ab2 100644
--- a/charges/crossHummetty.svg
+++ b/charges/crossHummetty.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/crossJerusalem.svg b/charges/crossJerusalem.svg
new file mode 100644
index 00000000..54ba95dc
--- /dev/null
+++ b/charges/crossJerusalem.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/charges/crossLatin.svg b/charges/crossLatin.svg
new file mode 100644
index 00000000..16f60138
--- /dev/null
+++ b/charges/crossLatin.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/charges/crossMaltese.svg b/charges/crossMaltese.svg
index f704ccb4..5718dacf 100644
--- a/charges/crossMaltese.svg
+++ b/charges/crossMaltese.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/crossMoline.svg b/charges/crossMoline.svg
index 4df553ef..97f3b918 100644
--- a/charges/crossMoline.svg
+++ b/charges/crossMoline.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/crossOccitan.svg b/charges/crossOccitan.svg
index 60f102d7..15fe7587 100644
--- a/charges/crossOccitan.svg
+++ b/charges/crossOccitan.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/crossOrthodox.svg b/charges/crossOrthodox.svg
new file mode 100644
index 00000000..9519f84d
--- /dev/null
+++ b/charges/crossOrthodox.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/charges/crossPatonce.svg b/charges/crossPatonce.svg
index 3fda2f9c..aaaec339 100644
--- a/charges/crossPatonce.svg
+++ b/charges/crossPatonce.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/crossPatriarchal.svg b/charges/crossPatriarchal.svg
new file mode 100644
index 00000000..12338bc2
--- /dev/null
+++ b/charges/crossPatriarchal.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/charges/crossPattee.svg b/charges/crossPattee.svg
index d4c3da87..1c3bf761 100644
--- a/charges/crossPattee.svg
+++ b/charges/crossPattee.svg
@@ -1,6 +1,6 @@
-
+
-
+
diff --git a/charges/crossPatteeAlisee.svg b/charges/crossPatteeAlisee.svg
new file mode 100644
index 00000000..801e7113
--- /dev/null
+++ b/charges/crossPatteeAlisee.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/charges/crossPommy.svg b/charges/crossPommy.svg
index dbf85e7b..da002347 100644
--- a/charges/crossPommy.svg
+++ b/charges/crossPommy.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/crossPotent.svg b/charges/crossPotent.svg
index c8aa500f..cc3bb92f 100644
--- a/charges/crossPotent.svg
+++ b/charges/crossPotent.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/crossSaltire.svg b/charges/crossSaltire.svg
index dd5d8f4b..8798ba45 100644
--- a/charges/crossSaltire.svg
+++ b/charges/crossSaltire.svg
@@ -1,6 +1,6 @@
-
+
-
+
diff --git a/charges/crossSantiago.svg b/charges/crossSantiago.svg
new file mode 100644
index 00000000..7e510a90
--- /dev/null
+++ b/charges/crossSantiago.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/charges/crossTau.svg b/charges/crossTau.svg
index 4927e0a7..0789faf5 100644
--- a/charges/crossTau.svg
+++ b/charges/crossTau.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/crossTemplar.svg b/charges/crossTemplar.svg
new file mode 100644
index 00000000..9c33613c
--- /dev/null
+++ b/charges/crossTemplar.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/charges/crossTriquetra.svg b/charges/crossTriquetra.svg
new file mode 100644
index 00000000..024225c1
--- /dev/null
+++ b/charges/crossTriquetra.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/charges/crossVoided.svg b/charges/crossVoided.svg
index 71287ee4..0fa95bd7 100644
--- a/charges/crossVoided.svg
+++ b/charges/crossVoided.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/crossedBones.svg b/charges/crossedBones.svg
new file mode 100644
index 00000000..3b06442f
--- /dev/null
+++ b/charges/crossedBones.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/charges/crosslet.svg b/charges/crosslet.svg
index e359ce28..645b68a3 100644
--- a/charges/crosslet.svg
+++ b/charges/crosslet.svg
@@ -1,6 +1 @@
-
-
-
-
-
-
+
\ No newline at end of file
diff --git a/charges/crown.svg b/charges/crown.svg
index 3a7629c8..00dbbacf 100644
--- a/charges/crown.svg
+++ b/charges/crown.svg
@@ -1,5 +1,5 @@
-
+
@@ -7,8 +7,8 @@
-
+
-
+
diff --git a/charges/crown2.svg b/charges/crown2.svg
new file mode 100644
index 00000000..f06a106e
--- /dev/null
+++ b/charges/crown2.svg
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/deerHeadCaboshed.svg b/charges/deerHeadCaboshed.svg
index a4f702f5..aca87f99 100644
--- a/charges/deerHeadCaboshed.svg
+++ b/charges/deerHeadCaboshed.svg
@@ -1,10 +1,10 @@
-
+
-
+
diff --git a/charges/delf.svg b/charges/delf.svg
index fc4c57c9..227bd04f 100644
--- a/charges/delf.svg
+++ b/charges/delf.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/dolphin.svg b/charges/dolphin.svg
index afb48d23..be5b00bd 100644
--- a/charges/dolphin.svg
+++ b/charges/dolphin.svg
@@ -1,14 +1,14 @@
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
@@ -21,40 +21,40 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/donkeyHeadCaboshed.svg b/charges/donkeyHeadCaboshed.svg
new file mode 100644
index 00000000..da5aee0a
--- /dev/null
+++ b/charges/donkeyHeadCaboshed.svg
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/dove.svg b/charges/dove.svg
new file mode 100644
index 00000000..7406a6ec
--- /dev/null
+++ b/charges/dove.svg
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/doveDisplayed.svg b/charges/doveDisplayed.svg
new file mode 100644
index 00000000..35bd14d6
--- /dev/null
+++ b/charges/doveDisplayed.svg
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/dragonPassant.svg b/charges/dragonPassant.svg
index 36986715..b8fbc58e 100644
--- a/charges/dragonPassant.svg
+++ b/charges/dragonPassant.svg
@@ -1,30 +1,38 @@
-
+
-
+
-
-
+
+
+
+
-
-
-
+
+
+
+
+
-
-
+
+
+
+
+
-
-
+
+
+
-
+
diff --git a/charges/dragonRampant.svg b/charges/dragonRampant.svg
index d2b2ee68..6ff64c2a 100644
--- a/charges/dragonRampant.svg
+++ b/charges/dragonRampant.svg
@@ -1,54 +1,61 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/dragonfly.svg b/charges/dragonfly.svg
new file mode 100644
index 00000000..c8b501ca
--- /dev/null
+++ b/charges/dragonfly.svg
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/drakkar.svg b/charges/drakkar.svg
new file mode 100644
index 00000000..f36c3c4d
--- /dev/null
+++ b/charges/drakkar.svg
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/drawingCompass.svg b/charges/drawingCompass.svg
new file mode 100644
index 00000000..65a252d3
--- /dev/null
+++ b/charges/drawingCompass.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/drum.svg b/charges/drum.svg
new file mode 100644
index 00000000..bd8fd638
--- /dev/null
+++ b/charges/drum.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/duck.svg b/charges/duck.svg
new file mode 100644
index 00000000..940c3e4d
--- /dev/null
+++ b/charges/duck.svg
@@ -0,0 +1,85 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/eagle.svg b/charges/eagle.svg
index 963a289c..c52fd495 100644
--- a/charges/eagle.svg
+++ b/charges/eagle.svg
@@ -1,87 +1,91 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
diff --git a/charges/eagleTwoHeards.svg b/charges/eagleTwoHeads.svg
similarity index 71%
rename from charges/eagleTwoHeards.svg
rename to charges/eagleTwoHeads.svg
index 079f539c..cc8ac124 100644
--- a/charges/eagleTwoHeards.svg
+++ b/charges/eagleTwoHeads.svg
@@ -1,11 +1,12 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
@@ -17,86 +18,86 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/earOfWheat.svg b/charges/earOfWheat.svg
new file mode 100644
index 00000000..a1b3072c
--- /dev/null
+++ b/charges/earOfWheat.svg
@@ -0,0 +1,99 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/elephant.svg b/charges/elephant.svg
index d5af22ed..fed4c13f 100644
--- a/charges/elephant.svg
+++ b/charges/elephant.svg
@@ -1,11 +1,11 @@
-
+
-
+
diff --git a/charges/elephantHeadErased.svg b/charges/elephantHeadErased.svg
new file mode 100644
index 00000000..f521413b
--- /dev/null
+++ b/charges/elephantHeadErased.svg
@@ -0,0 +1,22 @@
+
+
+
+
diff --git a/charges/escallop.svg b/charges/escallop.svg
index 6d912bfd..4fda9dda 100644
--- a/charges/escallop.svg
+++ b/charges/escallop.svg
@@ -1,18 +1,19 @@
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/estoile.svg b/charges/estoile.svg
index af35f897..6966ccbc 100644
--- a/charges/estoile.svg
+++ b/charges/estoile.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/falchion.svg b/charges/falchion.svg
new file mode 100644
index 00000000..ccb71d3d
--- /dev/null
+++ b/charges/falchion.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/falcon.svg b/charges/falcon.svg
new file mode 100644
index 00000000..5e4cebd5
--- /dev/null
+++ b/charges/falcon.svg
@@ -0,0 +1,223 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/fan.svg b/charges/fan.svg
new file mode 100644
index 00000000..d7504ac6
--- /dev/null
+++ b/charges/fan.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/fasces.svg b/charges/fasces.svg
new file mode 100644
index 00000000..71e27285
--- /dev/null
+++ b/charges/fasces.svg
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/feather.svg b/charges/feather.svg
new file mode 100644
index 00000000..0be55bf5
--- /dev/null
+++ b/charges/feather.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/charges/flamberge.svg b/charges/flamberge.svg
new file mode 100644
index 00000000..ab9d2277
--- /dev/null
+++ b/charges/flamberge.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/flangedMace.svg b/charges/flangedMace.svg
new file mode 100644
index 00000000..901d942f
--- /dev/null
+++ b/charges/flangedMace.svg
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/fleurDeLis.svg b/charges/fleurDeLis.svg
index 2902d3ac..2583e48f 100644
--- a/charges/fleurDeLis.svg
+++ b/charges/fleurDeLis.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/fly.svg b/charges/fly.svg
new file mode 100644
index 00000000..9c880f72
--- /dev/null
+++ b/charges/fly.svg
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/foot.svg b/charges/foot.svg
new file mode 100644
index 00000000..22963e5b
--- /dev/null
+++ b/charges/foot.svg
@@ -0,0 +1,14 @@
+
+
+
+
diff --git a/charges/fountain.svg b/charges/fountain.svg
index 2ef97e3b..1ed8ac67 100644
--- a/charges/fountain.svg
+++ b/charges/fountain.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/frog.svg b/charges/frog.svg
new file mode 100644
index 00000000..392d3d05
--- /dev/null
+++ b/charges/frog.svg
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/fusil.svg b/charges/fusil.svg
index 8da86e7c..eac10ed4 100644
--- a/charges/fusil.svg
+++ b/charges/fusil.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/garb.svg b/charges/garb.svg
index 07fb901e..fbefacd8 100644
--- a/charges/garb.svg
+++ b/charges/garb.svg
@@ -1,149 +1,150 @@
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/charges/gauntlet.svg b/charges/gauntlet.svg
new file mode 100644
index 00000000..f00a03eb
--- /dev/null
+++ b/charges/gauntlet.svg
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/gear.svg b/charges/gear.svg
new file mode 100644
index 00000000..2d128dfb
--- /dev/null
+++ b/charges/gear.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/charges/goat.svg b/charges/goat.svg
index c323cb0f..721c3f15 100644
--- a/charges/goat.svg
+++ b/charges/goat.svg
@@ -1,13 +1,14 @@
-
+
-
+
-
+
-
+
+
diff --git a/charges/goutte.svg b/charges/goutte.svg
index a836f7b4..40f23183 100644
--- a/charges/goutte.svg
+++ b/charges/goutte.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/grapeBunch.svg b/charges/grapeBunch.svg
new file mode 100644
index 00000000..38d4693f
--- /dev/null
+++ b/charges/grapeBunch.svg
@@ -0,0 +1,73 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/grapeBunch2.svg b/charges/grapeBunch2.svg
new file mode 100644
index 00000000..0af7b6a6
--- /dev/null
+++ b/charges/grapeBunch2.svg
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/grenade.svg b/charges/grenade.svg
new file mode 100644
index 00000000..07436784
--- /dev/null
+++ b/charges/grenade.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/greyhoundCourant.svg b/charges/greyhoundCourant.svg
index 3dc41b55..916d70cf 100644
--- a/charges/greyhoundCourant.svg
+++ b/charges/greyhoundCourant.svg
@@ -1,27 +1 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
\ No newline at end of file
diff --git a/charges/greyhoundRampant.svg b/charges/greyhoundRampant.svg
new file mode 100644
index 00000000..cf607df5
--- /dev/null
+++ b/charges/greyhoundRampant.svg
@@ -0,0 +1,89 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/greyhoundSejant.svg b/charges/greyhoundSejant.svg
new file mode 100644
index 00000000..09efa81c
--- /dev/null
+++ b/charges/greyhoundSejant.svg
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/griffinPassant.svg b/charges/griffinPassant.svg
index 025c2654..871b3591 100644
--- a/charges/griffinPassant.svg
+++ b/charges/griffinPassant.svg
@@ -1,54 +1,56 @@
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/griffinRampant.svg b/charges/griffinRampant.svg
index 40d8c9f0..da2cfebe 100644
--- a/charges/griffinRampant.svg
+++ b/charges/griffinRampant.svg
@@ -1,23 +1,23 @@
-
+
-
-
+
+
-
+
-
+
-
-
+
+
-
+
-
-
+
+
@@ -29,87 +29,87 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/hand.svg b/charges/hand.svg
index f23ca361..91c279ae 100644
--- a/charges/hand.svg
+++ b/charges/hand.svg
@@ -1,12 +1,12 @@
-
+
-
-
-
-
-
+
+
+
+
+
diff --git a/charges/harp.svg b/charges/harp.svg
index 7832707b..91e5ee08 100644
--- a/charges/harp.svg
+++ b/charges/harp.svg
@@ -1,28 +1 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
\ No newline at end of file
diff --git a/charges/hatchet.svg b/charges/hatchet.svg
index a543a5f7..37052556 100644
--- a/charges/hatchet.svg
+++ b/charges/hatchet.svg
@@ -1,8 +1,8 @@
-
+
-
-
+
+
diff --git a/charges/head.svg b/charges/head.svg
index 5c49b6f8..08e36060 100644
--- a/charges/head.svg
+++ b/charges/head.svg
@@ -1,16 +1 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
\ No newline at end of file
diff --git a/charges/headWreathed.svg b/charges/headWreathed.svg
index d3dab379..b6dafc64 100644
--- a/charges/headWreathed.svg
+++ b/charges/headWreathed.svg
@@ -1,12 +1,12 @@
-
+
-
+
-
-
+
+
diff --git a/charges/heart.svg b/charges/heart.svg
index 01ce307b..56d0940c 100644
--- a/charges/heart.svg
+++ b/charges/heart.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/hedgehog.svg b/charges/hedgehog.svg
new file mode 100644
index 00000000..c7a84caa
--- /dev/null
+++ b/charges/hedgehog.svg
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/helmet.svg b/charges/helmet.svg
new file mode 100644
index 00000000..9099c7c3
--- /dev/null
+++ b/charges/helmet.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/helmetCorinthian.svg b/charges/helmetCorinthian.svg
new file mode 100644
index 00000000..3ccd9cdd
--- /dev/null
+++ b/charges/helmetCorinthian.svg
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/helmetGreat.svg b/charges/helmetGreat.svg
new file mode 100644
index 00000000..b7a7bf49
--- /dev/null
+++ b/charges/helmetGreat.svg
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/helmetZischagge.svg b/charges/helmetZischagge.svg
new file mode 100644
index 00000000..8985d197
--- /dev/null
+++ b/charges/helmetZischagge.svg
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/heron.svg b/charges/heron.svg
index 8a4ecca3..4893b082 100644
--- a/charges/heron.svg
+++ b/charges/heron.svg
@@ -1,25 +1,28 @@
-
+
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/charges/hindStatant.svg b/charges/hindStatant.svg
new file mode 100644
index 00000000..3f9cc429
--- /dev/null
+++ b/charges/hindStatant.svg
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/hook.svg b/charges/hook.svg
new file mode 100644
index 00000000..d5679f64
--- /dev/null
+++ b/charges/hook.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/charges/horseHeadCouped.svg b/charges/horseHeadCouped.svg
new file mode 100644
index 00000000..8c455c23
--- /dev/null
+++ b/charges/horseHeadCouped.svg
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/horsePassant.svg b/charges/horsePassant.svg
new file mode 100644
index 00000000..b2361b84
--- /dev/null
+++ b/charges/horsePassant.svg
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/horseRampant.svg b/charges/horseRampant.svg
index 55b46119..be7fee6c 100644
--- a/charges/horseRampant.svg
+++ b/charges/horseRampant.svg
@@ -1,25 +1,26 @@
-
+
-
+
-
+
+
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/horseSalient.svg b/charges/horseSalient.svg
index 2b487240..21b5db48 100644
--- a/charges/horseSalient.svg
+++ b/charges/horseSalient.svg
@@ -1,23 +1 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
\ No newline at end of file
diff --git a/charges/horseshoe.svg b/charges/horseshoe.svg
index 542acae1..3bd51f7a 100644
--- a/charges/horseshoe.svg
+++ b/charges/horseshoe.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/hourglass.svg b/charges/hourglass.svg
new file mode 100644
index 00000000..87e7930b
--- /dev/null
+++ b/charges/hourglass.svg
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/key.svg b/charges/key.svg
index 90f135e0..6fb883ea 100644
--- a/charges/key.svg
+++ b/charges/key.svg
@@ -1,16 +1,16 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/ladder.svg b/charges/ladder.svg
new file mode 100644
index 00000000..fc72f130
--- /dev/null
+++ b/charges/ladder.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/ladder2.svg b/charges/ladder2.svg
new file mode 100644
index 00000000..5596e045
--- /dev/null
+++ b/charges/ladder2.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/ladybird.svg b/charges/ladybird.svg
new file mode 100644
index 00000000..3cc1587e
--- /dev/null
+++ b/charges/ladybird.svg
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/lamb.svg b/charges/lamb.svg
index 8854a232..1d574b53 100644
--- a/charges/lamb.svg
+++ b/charges/lamb.svg
@@ -1,7 +1,7 @@
-
+
-
+
@@ -9,10 +9,10 @@
-
-
-
-
+
+
+
+
diff --git a/charges/lambPassantReguardant.svg b/charges/lambPassantReguardant.svg
new file mode 100644
index 00000000..90884eb7
--- /dev/null
+++ b/charges/lambPassantReguardant.svg
@@ -0,0 +1,118 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/lanceHead.svg b/charges/lanceHead.svg
new file mode 100644
index 00000000..255492db
--- /dev/null
+++ b/charges/lanceHead.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/charges/lanceWithBanner.svg b/charges/lanceWithBanner.svg
new file mode 100644
index 00000000..556e5ade
--- /dev/null
+++ b/charges/lanceWithBanner.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/charges/laurelWreath.svg b/charges/laurelWreath.svg
new file mode 100644
index 00000000..989e00c4
--- /dev/null
+++ b/charges/laurelWreath.svg
@@ -0,0 +1,263 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/laurelWreath2.svg b/charges/laurelWreath2.svg
new file mode 100644
index 00000000..6dfb373e
--- /dev/null
+++ b/charges/laurelWreath2.svg
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/lighthouse.svg b/charges/lighthouse.svg
new file mode 100644
index 00000000..b66938f5
--- /dev/null
+++ b/charges/lighthouse.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/lionHeadCaboshed.svg b/charges/lionHeadCaboshed.svg
new file mode 100644
index 00000000..63022fc0
--- /dev/null
+++ b/charges/lionHeadCaboshed.svg
@@ -0,0 +1,107 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/lionHeadErased.svg b/charges/lionHeadErased.svg
new file mode 100644
index 00000000..7ed39c67
--- /dev/null
+++ b/charges/lionHeadErased.svg
@@ -0,0 +1,28 @@
+
+
+
+
diff --git a/charges/lionPassant.svg b/charges/lionPassant.svg
index 6ff03aea..7dd6b396 100644
--- a/charges/lionPassant.svg
+++ b/charges/lionPassant.svg
@@ -1,32 +1,32 @@
-
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
+
@@ -34,148 +34,150 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/lionPassantGuardant.svg b/charges/lionPassantGuardant.svg
new file mode 100644
index 00000000..584e8835
--- /dev/null
+++ b/charges/lionPassantGuardant.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/charges/lionRampant.svg b/charges/lionRampant.svg
index 552d2647..8aab2b09 100644
--- a/charges/lionRampant.svg
+++ b/charges/lionRampant.svg
@@ -1,21 +1 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
\ No newline at end of file
diff --git a/charges/lionSejant.svg b/charges/lionSejant.svg
new file mode 100644
index 00000000..23ca98db
--- /dev/null
+++ b/charges/lionSejant.svg
@@ -0,0 +1,125 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/lizard.svg b/charges/lizard.svg
new file mode 100644
index 00000000..dc8dbf9d
--- /dev/null
+++ b/charges/lizard.svg
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/lochaberAxe.svg b/charges/lochaberAxe.svg
index 4f724811..cf09c61e 100644
--- a/charges/lochaberAxe.svg
+++ b/charges/lochaberAxe.svg
@@ -1,9 +1,9 @@
-
+
-
-
+
+
diff --git a/charges/log.svg b/charges/log.svg
index 9f8a01bc..387fad44 100644
--- a/charges/log.svg
+++ b/charges/log.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/lozenge.svg b/charges/lozenge.svg
index cfa6f506..4cfb22c9 100644
--- a/charges/lozenge.svg
+++ b/charges/lozenge.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/lozengeFaceted.svg b/charges/lozengeFaceted.svg
index 23462185..63a575e3 100644
--- a/charges/lozengeFaceted.svg
+++ b/charges/lozengeFaceted.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/lozengePloye.svg b/charges/lozengePloye.svg
index 9ff50ea2..0187c681 100644
--- a/charges/lozengePloye.svg
+++ b/charges/lozengePloye.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/lute.svg b/charges/lute.svg
index 3e6c70d5..c88cc397 100644
--- a/charges/lute.svg
+++ b/charges/lute.svg
@@ -1,15 +1 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
\ No newline at end of file
diff --git a/charges/lymphad.svg b/charges/lymphad.svg
index 86186299..457f10d7 100644
--- a/charges/lymphad.svg
+++ b/charges/lymphad.svg
@@ -1,75 +1,77 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/charges/lyre.svg b/charges/lyre.svg
new file mode 100644
index 00000000..d89b8550
--- /dev/null
+++ b/charges/lyre.svg
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/mace.svg b/charges/mace.svg
new file mode 100644
index 00000000..a3f0e074
--- /dev/null
+++ b/charges/mace.svg
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/maces.svg b/charges/maces.svg
new file mode 100644
index 00000000..93988b80
--- /dev/null
+++ b/charges/maces.svg
@@ -0,0 +1,65 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/mallet.svg b/charges/mallet.svg
index b6d9fb24..ecb418f9 100644
--- a/charges/mallet.svg
+++ b/charges/mallet.svg
@@ -1,8 +1,10 @@
-
+
-
-
+
+
+
+
diff --git a/charges/mantle.svg b/charges/mantle.svg
new file mode 100644
index 00000000..5493c30b
--- /dev/null
+++ b/charges/mantle.svg
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/mapleLeaf.svg b/charges/mapleLeaf.svg
new file mode 100644
index 00000000..93e63767
--- /dev/null
+++ b/charges/mapleLeaf.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/martenCourant.svg b/charges/martenCourant.svg
new file mode 100644
index 00000000..1760d038
--- /dev/null
+++ b/charges/martenCourant.svg
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/mascle.svg b/charges/mascle.svg
index c274a6ad..b867e47a 100644
--- a/charges/mascle.svg
+++ b/charges/mascle.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/mastiffStatant.svg b/charges/mastiffStatant.svg
new file mode 100644
index 00000000..14feb266
--- /dev/null
+++ b/charges/mastiffStatant.svg
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/millstone.svg b/charges/millstone.svg
new file mode 100644
index 00000000..f8d523ca
--- /dev/null
+++ b/charges/millstone.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/mitre.svg b/charges/mitre.svg
new file mode 100644
index 00000000..1a20e002
--- /dev/null
+++ b/charges/mitre.svg
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/monk.svg b/charges/monk.svg
new file mode 100644
index 00000000..8ede0359
--- /dev/null
+++ b/charges/monk.svg
@@ -0,0 +1,139 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/moonInCrescent.svg b/charges/moonInCrescent.svg
new file mode 100644
index 00000000..27fdb512
--- /dev/null
+++ b/charges/moonInCrescent.svg
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/mullet.svg b/charges/mullet.svg
index 8aa647fd..2658e971 100644
--- a/charges/mullet.svg
+++ b/charges/mullet.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/mullet10.svg b/charges/mullet10.svg
index b34684f5..60ed608a 100644
--- a/charges/mullet10.svg
+++ b/charges/mullet10.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/mullet4.svg b/charges/mullet4.svg
index ea581ebf..37242f99 100644
--- a/charges/mullet4.svg
+++ b/charges/mullet4.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/mullet6.svg b/charges/mullet6.svg
index 8821b639..1a1972aa 100644
--- a/charges/mullet6.svg
+++ b/charges/mullet6.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/mullet6Faceted.svg b/charges/mullet6Faceted.svg
index bf5f4a08..1ca0c335 100644
--- a/charges/mullet6Faceted.svg
+++ b/charges/mullet6Faceted.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/mullet6Pierced.svg b/charges/mullet6Pierced.svg
index a58b68e4..96d6f279 100644
--- a/charges/mullet6Pierced.svg
+++ b/charges/mullet6Pierced.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/mullet7.svg b/charges/mullet7.svg
index 000038ab..53321978 100644
--- a/charges/mullet7.svg
+++ b/charges/mullet7.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/mullet8.svg b/charges/mullet8.svg
index 7e1a40af..0239a883 100644
--- a/charges/mullet8.svg
+++ b/charges/mullet8.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/mulletFaceted.svg b/charges/mulletFaceted.svg
index 83f7a993..a43fe26e 100644
--- a/charges/mulletFaceted.svg
+++ b/charges/mulletFaceted.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/mulletPierced.svg b/charges/mulletPierced.svg
index 88f706b9..b469bf0c 100644
--- a/charges/mulletPierced.svg
+++ b/charges/mulletPierced.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/oak.svg b/charges/oak.svg
new file mode 100644
index 00000000..b01da9b4
--- /dev/null
+++ b/charges/oak.svg
@@ -0,0 +1,347 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/orb.svg b/charges/orb.svg
index 4bf6e9c3..2d7354f5 100644
--- a/charges/orb.svg
+++ b/charges/orb.svg
@@ -1,22 +1,25 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/ouroboros.svg b/charges/ouroboros.svg
new file mode 100644
index 00000000..f0f39146
--- /dev/null
+++ b/charges/ouroboros.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/charges/owl.svg b/charges/owl.svg
new file mode 100644
index 00000000..015a7f81
--- /dev/null
+++ b/charges/owl.svg
@@ -0,0 +1,139 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/owlDisplayed.svg b/charges/owlDisplayed.svg
new file mode 100644
index 00000000..353fe5e7
--- /dev/null
+++ b/charges/owlDisplayed.svg
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/palace.svg b/charges/palace.svg
new file mode 100644
index 00000000..9e03dd4b
--- /dev/null
+++ b/charges/palace.svg
@@ -0,0 +1,170 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/palmTree.svg b/charges/palmTree.svg
new file mode 100644
index 00000000..590d14a3
--- /dev/null
+++ b/charges/palmTree.svg
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/parrot.svg b/charges/parrot.svg
index 1e65ce33..92d7dd10 100644
--- a/charges/parrot.svg
+++ b/charges/parrot.svg
@@ -1,13 +1,14 @@
-
+
-
-
-
+
+
+
+
-
-
+
+
diff --git a/charges/peacock.svg b/charges/peacock.svg
new file mode 100644
index 00000000..064831f4
--- /dev/null
+++ b/charges/peacock.svg
@@ -0,0 +1,167 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/peacockInPride.svg b/charges/peacockInPride.svg
new file mode 100644
index 00000000..b8b4f8c7
--- /dev/null
+++ b/charges/peacockInPride.svg
@@ -0,0 +1,216 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/pear.svg b/charges/pear.svg
new file mode 100644
index 00000000..d421e208
--- /dev/null
+++ b/charges/pear.svg
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/pegasus.svg b/charges/pegasus.svg
index 543b1a1e..5335022d 100644
--- a/charges/pegasus.svg
+++ b/charges/pegasus.svg
@@ -1,11 +1,12 @@
-
+
-
-
-
+
+
+
-
+
+
@@ -15,28 +16,28 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/pike.svg b/charges/pike.svg
index 3bd9ed53..812002b7 100644
--- a/charges/pike.svg
+++ b/charges/pike.svg
@@ -1,13 +1,13 @@
-
+
-
-
+
+
-
+
-
+
diff --git a/charges/pillar.svg b/charges/pillar.svg
new file mode 100644
index 00000000..d9aa943f
--- /dev/null
+++ b/charges/pillar.svg
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/pincers.svg b/charges/pincers.svg
new file mode 100644
index 00000000..2e91f728
--- /dev/null
+++ b/charges/pincers.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/charges/pineCone.svg b/charges/pineCone.svg
new file mode 100644
index 00000000..c326f2a2
--- /dev/null
+++ b/charges/pineCone.svg
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/pineTree.svg b/charges/pineTree.svg
new file mode 100644
index 00000000..2abebe11
--- /dev/null
+++ b/charges/pineTree.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/pique.svg b/charges/pique.svg
index c1e2e4d6..06c5836e 100644
--- a/charges/pique.svg
+++ b/charges/pique.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/plaice.svg b/charges/plaice.svg
new file mode 100644
index 00000000..8325d1ca
--- /dev/null
+++ b/charges/plaice.svg
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/plough.svg b/charges/plough.svg
new file mode 100644
index 00000000..7c1f42fc
--- /dev/null
+++ b/charges/plough.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/ploughshare.svg b/charges/ploughshare.svg
new file mode 100644
index 00000000..45928f03
--- /dev/null
+++ b/charges/ploughshare.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/charges/porcupine.svg b/charges/porcupine.svg
new file mode 100644
index 00000000..bdc53081
--- /dev/null
+++ b/charges/porcupine.svg
@@ -0,0 +1,137 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/portcullis.svg b/charges/portcullis.svg
new file mode 100644
index 00000000..de154326
--- /dev/null
+++ b/charges/portcullis.svg
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/pot.svg b/charges/pot.svg
index 96e39d04..64cc0ff6 100644
--- a/charges/pot.svg
+++ b/charges/pot.svg
@@ -1,10 +1,10 @@
-
+
-
+
diff --git a/charges/quatrefoil.svg b/charges/quatrefoil.svg
new file mode 100644
index 00000000..ff33f762
--- /dev/null
+++ b/charges/quatrefoil.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/rabbitSejant.svg b/charges/rabbitSejant.svg
new file mode 100644
index 00000000..c61e0a9b
--- /dev/null
+++ b/charges/rabbitSejant.svg
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/raft.svg b/charges/raft.svg
new file mode 100644
index 00000000..d5b728b4
--- /dev/null
+++ b/charges/raft.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/rake.svg b/charges/rake.svg
index 03220f06..6feed725 100644
--- a/charges/rake.svg
+++ b/charges/rake.svg
@@ -1,26 +1,26 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/ramHeadErased.svg b/charges/ramHeadErased.svg
new file mode 100644
index 00000000..c971f7b4
--- /dev/null
+++ b/charges/ramHeadErased.svg
@@ -0,0 +1,75 @@
+
+
+
+
diff --git a/charges/ramPassant.svg b/charges/ramPassant.svg
new file mode 100644
index 00000000..421e416c
--- /dev/null
+++ b/charges/ramPassant.svg
@@ -0,0 +1,80 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/ramsHorn.svg b/charges/ramsHorn.svg
new file mode 100644
index 00000000..26585cc9
--- /dev/null
+++ b/charges/ramsHorn.svg
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/rapier.svg b/charges/rapier.svg
new file mode 100644
index 00000000..fed83920
--- /dev/null
+++ b/charges/rapier.svg
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/ratRampant.svg b/charges/ratRampant.svg
new file mode 100644
index 00000000..13c6746a
--- /dev/null
+++ b/charges/ratRampant.svg
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/raven.svg b/charges/raven.svg
index 3d1ae0a5..6e3c4eca 100644
--- a/charges/raven.svg
+++ b/charges/raven.svg
@@ -1,23 +1,24 @@
-
+
-
-
+
+
+
-
-
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/charges/rhinoceros.svg b/charges/rhinoceros.svg
new file mode 100644
index 00000000..1d43c4f4
--- /dev/null
+++ b/charges/rhinoceros.svg
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/ribbon1.svg b/charges/ribbon1.svg
new file mode 100644
index 00000000..03bf3515
--- /dev/null
+++ b/charges/ribbon1.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/ribbon2.svg b/charges/ribbon2.svg
new file mode 100644
index 00000000..0f15bb04
--- /dev/null
+++ b/charges/ribbon2.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/charges/ribbon3.svg b/charges/ribbon3.svg
new file mode 100644
index 00000000..dd168991
--- /dev/null
+++ b/charges/ribbon3.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/ribbon4.svg b/charges/ribbon4.svg
new file mode 100644
index 00000000..bab35959
--- /dev/null
+++ b/charges/ribbon4.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/ribbon5.svg b/charges/ribbon5.svg
new file mode 100644
index 00000000..3c718bce
--- /dev/null
+++ b/charges/ribbon5.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/ribbon6.svg b/charges/ribbon6.svg
new file mode 100644
index 00000000..a32eede7
--- /dev/null
+++ b/charges/ribbon6.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/charges/ribbon7.svg b/charges/ribbon7.svg
new file mode 100644
index 00000000..2d9a1e21
--- /dev/null
+++ b/charges/ribbon7.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/ribbon8.svg b/charges/ribbon8.svg
new file mode 100644
index 00000000..f7c672a7
--- /dev/null
+++ b/charges/ribbon8.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/charges/rose.svg b/charges/rose.svg
index b80c3d51..7ce11665 100644
--- a/charges/rose.svg
+++ b/charges/rose.svg
@@ -1,12 +1,12 @@
-
+
-
+
-
-
-
-
+
+
+
+
diff --git a/charges/roundel.svg b/charges/roundel.svg
index c02cc392..344991ed 100644
--- a/charges/roundel.svg
+++ b/charges/roundel.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/roundel2.svg b/charges/roundel2.svg
index c3d8c036..fffa7ad4 100644
--- a/charges/roundel2.svg
+++ b/charges/roundel2.svg
@@ -1,7 +1 @@
-
-
-
-
-
-
-
+
\ No newline at end of file
diff --git a/charges/rustre.svg b/charges/rustre.svg
index dbfe8848..60c253a1 100644
--- a/charges/rustre.svg
+++ b/charges/rustre.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/sabre.svg b/charges/sabre.svg
index 306ff201..0f1f002d 100644
--- a/charges/sabre.svg
+++ b/charges/sabre.svg
@@ -1,20 +1,19 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/charges/sabre2.svg b/charges/sabre2.svg
new file mode 100644
index 00000000..2466a761
--- /dev/null
+++ b/charges/sabre2.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/sabresCrossed.svg b/charges/sabresCrossed.svg
index ad87ee2e..e9cec5f4 100644
--- a/charges/sabresCrossed.svg
+++ b/charges/sabresCrossed.svg
@@ -1,40 +1,37 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
diff --git a/charges/sagittarius.svg b/charges/sagittarius.svg
new file mode 100644
index 00000000..ac5eaeeb
--- /dev/null
+++ b/charges/sagittarius.svg
@@ -0,0 +1,136 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/salmon.svg b/charges/salmon.svg
new file mode 100644
index 00000000..bda9bf49
--- /dev/null
+++ b/charges/salmon.svg
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/saw.svg b/charges/saw.svg
new file mode 100644
index 00000000..c356263f
--- /dev/null
+++ b/charges/saw.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/scale.svg b/charges/scale.svg
new file mode 100644
index 00000000..b2da96ea
--- /dev/null
+++ b/charges/scale.svg
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/scaleImbalanced.svg b/charges/scaleImbalanced.svg
new file mode 100644
index 00000000..ea151649
--- /dev/null
+++ b/charges/scaleImbalanced.svg
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/scalesHanging.svg b/charges/scalesHanging.svg
new file mode 100644
index 00000000..1065211b
--- /dev/null
+++ b/charges/scalesHanging.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/sceptre.svg b/charges/sceptre.svg
new file mode 100644
index 00000000..57869cbf
--- /dev/null
+++ b/charges/sceptre.svg
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/scissors.svg b/charges/scissors.svg
new file mode 100644
index 00000000..a7437f1e
--- /dev/null
+++ b/charges/scissors.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/charges/scissors2.svg b/charges/scissors2.svg
new file mode 100644
index 00000000..109d8238
--- /dev/null
+++ b/charges/scissors2.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/scorpion.svg b/charges/scorpion.svg
new file mode 100644
index 00000000..c132511d
--- /dev/null
+++ b/charges/scorpion.svg
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/scrollClosed.svg b/charges/scrollClosed.svg
new file mode 100644
index 00000000..1f7d8034
--- /dev/null
+++ b/charges/scrollClosed.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/scythe.svg b/charges/scythe.svg
new file mode 100644
index 00000000..b8d0a04d
--- /dev/null
+++ b/charges/scythe.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/scythe2.svg b/charges/scythe2.svg
new file mode 100644
index 00000000..7fa9de5d
--- /dev/null
+++ b/charges/scythe2.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/charges/serpent.svg b/charges/serpent.svg
index fb2089d0..e12c9570 100644
--- a/charges/serpent.svg
+++ b/charges/serpent.svg
@@ -1,10 +1,11 @@
-
+
+
diff --git a/charges/sextifoil.svg b/charges/sextifoil.svg
new file mode 100644
index 00000000..ad6e3303
--- /dev/null
+++ b/charges/sextifoil.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/shears.svg b/charges/shears.svg
new file mode 100644
index 00000000..3b3daeb4
--- /dev/null
+++ b/charges/shears.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/charges/shield.svg b/charges/shield.svg
new file mode 100644
index 00000000..89ad41de
--- /dev/null
+++ b/charges/shield.svg
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/shipWheel.svg b/charges/shipWheel.svg
new file mode 100644
index 00000000..fa23136c
--- /dev/null
+++ b/charges/shipWheel.svg
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/sickle.svg b/charges/sickle.svg
new file mode 100644
index 00000000..753eeeaa
--- /dev/null
+++ b/charges/sickle.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/skeleton.svg b/charges/skeleton.svg
new file mode 100644
index 00000000..cde28dae
--- /dev/null
+++ b/charges/skeleton.svg
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/skull.svg b/charges/skull.svg
new file mode 100644
index 00000000..c7dc7044
--- /dev/null
+++ b/charges/skull.svg
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/skull2.svg b/charges/skull2.svg
new file mode 100644
index 00000000..a580afd7
--- /dev/null
+++ b/charges/skull2.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/snail.svg b/charges/snail.svg
new file mode 100644
index 00000000..387dc48a
--- /dev/null
+++ b/charges/snail.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/snake.svg b/charges/snake.svg
new file mode 100644
index 00000000..532f2c0c
--- /dev/null
+++ b/charges/snake.svg
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/snowflake.svg b/charges/snowflake.svg
new file mode 100644
index 00000000..d85d067b
--- /dev/null
+++ b/charges/snowflake.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/charges/spear.svg b/charges/spear.svg
new file mode 100644
index 00000000..9944f9d5
--- /dev/null
+++ b/charges/spear.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/spiral.svg b/charges/spiral.svg
new file mode 100644
index 00000000..05736127
--- /dev/null
+++ b/charges/spiral.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/charges/squirrel.svg b/charges/squirrel.svg
new file mode 100644
index 00000000..bf2cc68b
--- /dev/null
+++ b/charges/squirrel.svg
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/stagLodgedRegardant.svg b/charges/stagLodgedRegardant.svg
new file mode 100644
index 00000000..024f648c
--- /dev/null
+++ b/charges/stagLodgedRegardant.svg
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/stagPassant.svg b/charges/stagPassant.svg
new file mode 100644
index 00000000..745ed25e
--- /dev/null
+++ b/charges/stagPassant.svg
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/stagsAttires.svg b/charges/stagsAttires.svg
index 0fd887c4..c8b3692b 100644
--- a/charges/stagsAttires.svg
+++ b/charges/stagsAttires.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/stirrup.svg b/charges/stirrup.svg
new file mode 100644
index 00000000..4350ad26
--- /dev/null
+++ b/charges/stirrup.svg
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/sun.svg b/charges/sun.svg
index 247515eb..6d58a55c 100644
--- a/charges/sun.svg
+++ b/charges/sun.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/sunInSplendour.svg b/charges/sunInSplendour.svg
index a11ab0dc..4de9c571 100644
--- a/charges/sunInSplendour.svg
+++ b/charges/sunInSplendour.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/sunInSplendour2.svg b/charges/sunInSplendour2.svg
new file mode 100644
index 00000000..d56c221d
--- /dev/null
+++ b/charges/sunInSplendour2.svg
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/swallow.svg b/charges/swallow.svg
new file mode 100644
index 00000000..bf363a15
--- /dev/null
+++ b/charges/swallow.svg
@@ -0,0 +1,62 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/swan.svg b/charges/swan.svg
index 491b23fd..26a345f7 100644
--- a/charges/swan.svg
+++ b/charges/swan.svg
@@ -1,10 +1,11 @@
-
+
-
-
-
-
+
+
+
+
+
@@ -12,15 +13,15 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/charges/swanErased.svg b/charges/swanErased.svg
index 40e1e588..510c380a 100644
--- a/charges/swanErased.svg
+++ b/charges/swanErased.svg
@@ -1,8 +1,8 @@
-
+
-
-
+
+
diff --git a/charges/sword.svg b/charges/sword.svg
index 65f0ac35..cdf8853b 100644
--- a/charges/sword.svg
+++ b/charges/sword.svg
@@ -1,7 +1,7 @@
-
+
-
+
diff --git a/charges/talbotPassant.svg b/charges/talbotPassant.svg
new file mode 100644
index 00000000..121e6ba4
--- /dev/null
+++ b/charges/talbotPassant.svg
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/talbotSejant.svg b/charges/talbotSejant.svg
new file mode 100644
index 00000000..e89d4b90
--- /dev/null
+++ b/charges/talbotSejant.svg
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/template.svg b/charges/template.svg
index a7510939..cad51295 100644
--- a/charges/template.svg
+++ b/charges/template.svg
@@ -2,6 +2,7 @@
+
diff --git a/charges/thistle.svg b/charges/thistle.svg
new file mode 100644
index 00000000..09cff52a
--- /dev/null
+++ b/charges/thistle.svg
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/tower.svg b/charges/tower.svg
index 40df5b9e..9754803a 100644
--- a/charges/tower.svg
+++ b/charges/tower.svg
@@ -1,17 +1,17 @@
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
\ No newline at end of file
+
diff --git a/charges/tree.svg b/charges/tree.svg
index 41a4b032..0e2854fc 100644
--- a/charges/tree.svg
+++ b/charges/tree.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/trefle.svg b/charges/trefle.svg
index 9916c5c2..8180526b 100644
--- a/charges/trefle.svg
+++ b/charges/trefle.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/trefoil.svg b/charges/trefoil.svg
new file mode 100644
index 00000000..438c993e
--- /dev/null
+++ b/charges/trefoil.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/triangle.svg b/charges/triangle.svg
index 7109e498..0a06d67c 100644
--- a/charges/triangle.svg
+++ b/charges/triangle.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/trianglePierced.svg b/charges/trianglePierced.svg
index 9017aead..6bbe2fc2 100644
--- a/charges/trianglePierced.svg
+++ b/charges/trianglePierced.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/trowel.svg b/charges/trowel.svg
new file mode 100644
index 00000000..b9533474
--- /dev/null
+++ b/charges/trowel.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/unicornRampant.svg b/charges/unicornRampant.svg
index 18040236..a3102dbc 100644
--- a/charges/unicornRampant.svg
+++ b/charges/unicornRampant.svg
@@ -1,27 +1,29 @@
-
+
-
-
-
-
+
+
+
+
+
-
+
+
-
+
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/charges/wasp.svg b/charges/wasp.svg
new file mode 100644
index 00000000..9d54306c
--- /dev/null
+++ b/charges/wasp.svg
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/wheatStalk.svg b/charges/wheatStalk.svg
new file mode 100644
index 00000000..c6113ccd
--- /dev/null
+++ b/charges/wheatStalk.svg
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/wheel.svg b/charges/wheel.svg
index aadbde83..6133eee9 100644
--- a/charges/wheel.svg
+++ b/charges/wheel.svg
@@ -1,23 +1,23 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
diff --git a/charges/windmill.svg b/charges/windmill.svg
new file mode 100644
index 00000000..b814ef1e
--- /dev/null
+++ b/charges/windmill.svg
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/charges/wing.svg b/charges/wing.svg
index 04c108f2..d38622f2 100644
--- a/charges/wing.svg
+++ b/charges/wing.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/charges/wingSword.svg b/charges/wingSword.svg
index 4fe4b70e..75c2f80e 100644
--- a/charges/wingSword.svg
+++ b/charges/wingSword.svg
@@ -1,11 +1,11 @@
-
+
-
-
-
+
+
+
-
+
diff --git a/charges/wolfHeadErased.svg b/charges/wolfHeadErased.svg
index 4f821ba8..518ea83f 100644
--- a/charges/wolfHeadErased.svg
+++ b/charges/wolfHeadErased.svg
@@ -1,9 +1,9 @@
-
+