code
stringlengths
0
56.1M
repo_name
stringclasses
515 values
path
stringlengths
2
147
language
stringclasses
447 values
license
stringclasses
7 values
size
int64
0
56.8M
.vscode .env build node_modules greeting.md
nonuttoday/oai
.gitignore
Git
unknown
44
# OAI Reverse Proxy Reverse proxy server for the OpenAI (and soon Anthropic) APIs. Forwards text generation requests while rejecting administrative/billing requests. Includes optional rate limiting and prompt filtering to prevent abuse. ### Table of Contents - [What is this?](#what-is-this) - [Why?](#why) - [Usage Instructions](#setup-instructions) - [Deploy to Huggingface (Recommended)](#deploy-to-huggingface-recommended) - [Deploy to Repl.it (WIP)](#deploy-to-replit-wip) - [Local Development](#local-development) ## What is this? If you would like to provide a friend access to an API via keys you own, you can use this to keep your keys safe while still allowing them to generate text with the API. You can also use this if you'd like to build a client-side application which uses the OpenAI or Anthropic APIs, but don't want to build your own backend. You should never embed your real API keys in a client-side application. Instead, you can have your frontend connect to this reverse proxy and forward requests to the downstream service. This keeps your keys safe and allows you to use the rate limiting and prompt filtering features of the proxy to prevent abuse. ## Why? OpenAI keys have full account permissions. They can revoke themselves, generate new keys, modify spend quotas, etc. **You absolutely should not share them, post them publicly, nor embed them in client-side applications as they can be easily stolen.** This proxy only forwards text generation requests to the downstream service and rejects requests which would otherwise modify your account. --- ## Usage Instructions If you'd like to run your own instance of this proxy, you'll need to deploy it somewhere and configure it with your API keys. A few easy options are provided below, though you can also deploy it to any other service you'd like. ### Deploy to Huggingface (Recommended) [See here for instructions on how to deploy to a Huggingface Space.](./docs/deploy-huggingface.md) ### Deploy to Render [See here for instructions on how to deploy to Render.com.](./docs/deploy-render.md) ## Local Development To run the proxy locally for development or testing, install Node.js >= 18.0.0 and follow the steps below. 1. Clone the repo 2. Install dependencies with `npm install` 3. Create a `.env` file in the root of the project and add your API keys. See the [.env.example](./.env.example) file for an example. 4. Start the server in development mode with `npm run start:dev`. You can also use `npm run start:dev:tsc` to enable project-wide type checking at the cost of slower startup times. `npm run type-check` can be used to run type checking without starting the server.
nonuttoday/oai
README.md
Markdown
unknown
2,677
FROM node:18-bullseye-slim RUN apt-get update && \ apt-get install -y git RUN git clone https://gitgud.io/khanon/oai-reverse-proxy.git /app WORKDIR /app RUN npm install COPY Dockerfile greeting.md* .env* ./ RUN npm run build EXPOSE 7860 ENV NODE_ENV=production CMD [ "npm", "start" ]
nonuttoday/oai
docker/huggingface/Dockerfile
Dockerfile
unknown
288
# syntax = docker/dockerfile:1.2 FROM node:18-bullseye-slim RUN apt-get update && \ apt-get install -y curl # Unlike Huggingface, Render can only deploy straight from a git repo and # doesn't allow you to create or modify arbitrary files via the web UI. # To use a greeting file, set `GREETING_URL` to a URL that points to a raw # text file containing your greeting, such as a GitHub Gist. # You may need to clear the build cache if you change the greeting, otherwise # Render will use the cached layer from the previous build. WORKDIR /app ARG GREETING_URL RUN if [ -n "$GREETING_URL" ]; then \ curl -sL "$GREETING_URL" > greeting.md; \ fi COPY package*.json greeting.md* ./ RUN npm install COPY . . RUN npm run build RUN --mount=type=secret,id=_env,dst=/etc/secrets/.env cat /etc/secrets/.env >> .env EXPOSE 10000 ENV NODE_ENV=production CMD [ "npm", "start" ]
nonuttoday/oai
docker/render/Dockerfile
Dockerfile
unknown
883
# Deploy to Huggingface Space This repository can be deployed to a [Huggingface Space](https://huggingface.co/spaces). This is a free service that allows you to run a simple server in the cloud. You can use it to safely share your OpenAI API key with a friend. ### 1. Get an API key - Go to [OpenAI](https://openai.com/) and sign up for an account. You can use a free trial key for this as long as you provide SMS verification. ### 2. Create an empty Huggingface Space - Go to [Huggingface](https://huggingface.co/) and sign up for an account. - Once logged in, [create a new Space](https://huggingface.co/new-space). - Provide a name for your Space and select "Docker" as the SDK. Select "Blank" for the template. - Click "Create Space" and wait for the Space to be created. ![Create Space](huggingface-createspace.png) ### 3. Create an empty Dockerfile - Once your Space is created, you'll see an option to "Create the Dockerfile in your browser". Click that link. ![Create Dockerfile](huggingface-dockerfile.png) - Paste the following into the text editor and click "Save". ```dockerfile FROM node:18-bullseye-slim RUN apt-get update && \ apt-get install -y git RUN git clone https://gitgud.io/khanon/oai-reverse-proxy.git /app WORKDIR /app RUN npm install COPY Dockerfile greeting.md* .env* ./ RUN npm run build EXPOSE 7860 ENV NODE_ENV=production CMD [ "npm", "start" ] ``` - Click "Commit new file to `main`" to save the Dockerfile. ![Commit](huggingface-savedockerfile.png) ### 4. Set your OpenAI API key as a secret - Click the Settings button in the top right corner of your repository. - Scroll down to the `Repository Secrets` section and click `New Secret`. ![Secrets](https://files.catbox.moe/irrp2p.png) - Enter `OPENAI_KEY` as the name and your OpenAI API key as the value. ![New Secret](https://files.catbox.moe/ka6s1a.png) ### 5. Deploy the server - Your server should automatically deploy when you add the secret, but if not you can select `Factory Reboot` from that same Settings menu. ### 6. Share the link - The Service Info section below should show the URL for your server. You can share this with anyone to safely give them access to your OpenAI API key. - Your friend doesn't need any OpenAI API key of their own, they just need your link. # Optional ## Updating the server To update your server, go to the Settings menu and select `Factory Reboot`. This will pull the latest version of the code from GitHub and restart the server. Note that if you just perform a regular Restart, the server will be restarted with the same code that was running before. ## Adding a greeting message You can create a Markdown file called `greeting.md` to display a message on the Server Info page. This is a good place to put instructions for how to use the server. ## Customizing the server The server will be started with some default configuration, but you can override it by adding a `.env` file to your Space. You can use Huggingface's web editor to create a new `.env` file alongside your Dockerfile. Huggingface will restart your server automatically when you save the file. Here are some example settings: ```shell # Requests per minute per IP address MODEL_RATE_LIMIT=2 # Max tokens to request from OpenAI MAX_OUTPUT_TOKENS=256 # Block prompts containing disallowed characters REJECT_DISALLOWED=false REJECT_MESSAGE="This content violates /aicg/'s acceptable use policy." ``` See `.env.example` for a full list of available settings, or check `config.ts` for details on what each setting does. ## Restricting access to the server If you want to restrict access to the server, you can set a `PROXY_KEY` secret. This key will need to be passed in the Authentication header of every request to the server, just like an OpenAI API key. Add this using the same method as the OPENAI_KEY secret above. Don't add this to your `.env` file because that file is public and anyone can see it.
nonuttoday/oai
docs/deploy-huggingface.md
Markdown
unknown
3,936
# Deploy to Render.com Render.com offers a free tier that includes 750 hours of compute time per month. This is enough to run a single proxy instance 24/7. Instances shut down after 15 minutes without traffic but start up again automatically when a request is received. ### 1. Create account - [Sign up for Render.com](https://render.com/) to create an account and access the dashboard. ### 2. Create a service using a Blueprint Render allows you to deploy and auutomatically configure a repository containing a [render.yaml](../render.yaml) file using its Blueprints feature. This is the easiest way to get started. - Click the **Blueprints** tab at the top of the dashboard. - Click **New Blueprint Instance**. - Under **Public Git repository**, enter `https://gitlab.com/khanon/oai-proxy`. - Note that this is not the GitGud repository, but a mirror on GitLab. - Click **Continue**. - Under **Blueprint Name**, enter a name. - Under **Branch**, enter `main`. - Click **Apply**. The service will be created according to the instructions in the `render.yaml` file. Don't wait for it to complete as it will fail due to missing environment variables. Instead, proceed to the next step. ### 3. Set environment variables - Return to the **Dashboard** tab. - Click the name of the service you just created, which may show as "Deploy failed". - Click the **Environment** tab. - Click **Add Secret File**. - Under **Filename**, enter `.env`. - Under **Contents**, enter all of your environment variables, one per line, in the format `NAME=value`. - For example, `OPENAI_KEY=sk-abc123`. - Click **Save Changes**. The service will automatically rebuild and deploy with the new environment variables. This will take a few minutes. The link to your deployed proxy will appear at the top of the page. If you want to change the URL, go to the **Settings** tab of your Web Service and click the **Edit** button next to **Name**. You can also set a custom domain, though I haven't tried this yet. # Optional ## Updating the server To update your server, go to the page for your Web Service and click **Manual Deploy** > **Deploy latest commit**. This will pull the latest version of the code and redeploy the server. _If you have trouble with this, you can also try selecting **Clear build cache & deploy** instead from the same menu._ ## Adding a greeting message To show a greeting message on the Server Info page, set the `GREETING_URL` environment variable within Render to the URL of a Markdown file. This URL should point to a raw text file, not an HTML page. You can use a public GitHub Gist or GitLab Snippet for this. For example: `GREETING_URL=https://gitlab.com/-/snippets/2542011/raw/main/greeting.md`. You can change the title of the page by setting the `SERVER_TITLE` environment variable. Don't set `GREETING_URL` in the `.env` secret file you created earlier; it must be set in Render's environment variables section for it to work correctly. ## Customizing the server You can customize the server by editing the `.env` configuration you created earlier. Refer to [.env.example](../.env.example) for a list of all available configuration options. Further information can be found in the [config.ts](../src/config.ts) file.
nonuttoday/oai
docs/deploy-render.md
Markdown
unknown
3,257
# Warning **I strongly suggest against using this feature with a Google account that you care about.** Depending on the content of the prompts people submit, Google may flag the spreadsheet as containing inappropriate content. This seems to prevent you from sharing that spreadsheet _or any others on the account. This happened with my throwaway account during testing; the existing shared spreadsheet continues to work but even completely new spreadsheets are flagged and cannot be shared. I'll be looking into alternative storage backends but you should not use this implementation with a Google account you care about, or even one remotely connected to your main accounts (as Google has a history of linking accounts together via IPs/browser fingerprinting). Use a VPN and completely isolated VM to be safe. # Configuring Google Sheets Prompt Logging This proxy can log incoming prompts and model responses to Google Sheets. Some configuration on the Google side is required to enable this feature. The APIs used are free, but you will need a Google account and a Google Cloud Platform project. NOTE: Concurrency is not supported. Don't connect two instances of the server to the same spreadsheet or bad things will happen. ## Prerequisites - A Google account - **USE A THROWAWAY ACCOUNT!** - A Google Cloud Platform project ### 0. Create a Google Cloud Platform Project _A Google Cloud Platform project is required to enable programmatic access to Google Sheets. If you already have a project, skip to the next step. You can also see the [Google Cloud Platform documentation](https://developers.google.com/workspace/guides/create-project) for more information._ - Go to the Google Cloud Platform Console and [create a new project](https://console.cloud.google.com/projectcreate). ### 1. Enable the Google Sheets API _The Google Sheets API must be enabled for your project. You can also see the [Google Sheets API documentation](https://developers.google.com/sheets/api/quickstart/nodejs) for more information._ - Go to the [Google Sheets API page](https://console.cloud.google.com/apis/library/sheets.googleapis.com) and click **Enable**, then fill in the form to enable the Google Sheets API for your project. <!-- TODO: Add screenshot of Enable page and describe filling out the form --> ### 2. Create a Service Account _A service account is required to authenticate the proxy to Google Sheets._ - Once the Google Sheets API is enabled, click the **Credentials** tab on the Google Sheets API page. - Click **Create credentials** and select **Service account**. - Provide a name for the service account and click **Done** (the second and third steps can be skipped). ### 3. Download the Service Account Key _Once your account is created, you'll need to download the key file and include it in the proxy's secrets configuration._ - Click the Service Account you just created in the list of service accounts for the API. - Click the **Keys** tab and click **Add key**, then select **Create new key**. - Select **JSON** as the key type and click **Create**. The JSON file will be downloaded to your computer. ### 4. Set the Service Account key as a Secret _The JSON key file must be set as a secret in the proxy's configuration. Because files cannot be included in the secrets configuration, you'll need to base64 encode the file's contents and paste the encoded string as the value of the `GOOGLE_SHEETS_KEY` secret._ - Open the JSON key file in a text editor and copy the contents. - Visit the [base64 encode/decode tool](https://www.base64encode.org/) and paste the contents into the box, then click **Encode**. - Copy the encoded string and paste it as the value of the `GOOGLE_SHEETS_KEY` secret in the deployment's secrets configuration. - **WARNING:** Don't reveal this string publically. The `.env` file is NOT private -- unless you're running the proxy locally, you should not use it to store secrets! ### 5. Create a new spreadsheet and share it with the service account _The service account must be given permission to access the logging spreadsheet. Each service account has a unique email address, which can be found in the JSON key file; share the spreadsheet with that email address just as you would share it with another user._ - Open the JSON key file in a text editor and copy the value of the `client_email` field. - Open the spreadsheet you want to log to, or create a new one, and click **File > Share**. - Paste the service account's email address into the **Add people or groups** field. Ensure the service account has **Editor** permissions, then click **Done**. ### 6. Set the spreadsheet ID as a Secret _The spreadsheet ID must be set as a secret in the proxy's configuration. The spreadsheet ID can be found in the URL of the spreadsheet. For example, the spreadsheet ID for `https://docs.google.com/spreadsheets/d/1X2Y3Z/edit#gid=0` is `1X2Y3Z`. The ID isn't necessarily a sensitive value if you intend for the spreadsheet to be public, but it's still recommended to set it as a secret._ - Copy the spreadsheet ID and paste it as the value of the `GOOGLE_SHEETS_SPREADSHEET_ID` secret in the deployment's secrets configuration.
nonuttoday/oai
docs/logging-sheets.md
Markdown
unknown
5,183
# Shat out by GPT-4, I did not check for correctness beyond a cursory glance openapi: 3.0.0 info: version: 1.0.0 title: User Management API paths: /admin/users: get: summary: List all users operationId: getUsers responses: "200": description: A list of users content: application/json: schema: type: object properties: users: type: array items: $ref: "#/components/schemas/User" count: type: integer format: int32 post: summary: Create a new user operationId: createUser responses: "200": description: The created user's token content: application/json: schema: type: object properties: token: type: string put: summary: Bulk upsert users operationId: bulkUpsertUsers requestBody: content: application/json: schema: type: object properties: users: type: array items: $ref: "#/components/schemas/User" responses: "200": description: The upserted users content: application/json: schema: type: object properties: upserted_users: type: array items: $ref: "#/components/schemas/User" count: type: integer format: int32 "400": description: Bad request content: application/json: schema: type: object properties: error: type: string /admin/users/{token}: get: summary: Get a user by token operationId: getUser parameters: - name: token in: path required: true schema: type: string responses: "200": description: A user content: application/json: schema: $ref: "#/components/schemas/User" "404": description: Not found content: application/json: schema: type: object properties: error: type: string put: summary: Update a user by token operationId: upsertUser parameters: - name: token in: path required: true schema: type: string requestBody: content: application/json: schema: $ref: "#/components/schemas/User" responses: "200": description: The updated user content: application/json: schema: $ref: "#/components/schemas/User" "400": description: Bad request content: application/json: schema: type: object properties: error: type: string delete: summary: Disables the user with the given token description: Optionally accepts a `disabledReason` query parameter. Returns the disabled user. parameters: - in: path name: token required: true schema: type: string description: The token of the user to disable - in: query name: disabledReason required: false schema: type: string description: The reason for disabling the user responses: '200': description: The disabled user content: application/json: schema: $ref: '#/components/schemas/User' '400': description: Bad request content: application/json: schema: type: object properties: error: type: string '404': description: Not found content: application/json: schema: type: object properties: error: type: string components: schemas: User: type: object properties: token: type: string ip: type: array items: type: string type: type: string enum: ["normal", "special"] promptCount: type: integer format: int32 tokenCount: type: integer format: int32 createdAt: type: integer format: int64 lastUsedAt: type: integer format: int64 disabledAt: type: integer format: int64 disabledReason: type: string
nonuttoday/oai
docs/openapi-admin-users.yaml
YAML
unknown
5,273
# User Management The proxy supports several different user management strategies. You can choose the one that best fits your needs by setting the `GATEKEEPER` environment variable. Several of these features require you to set secrets in your environment. If using Huggingface Spaces to deploy, do not set these in your `.env` file because that file is public and anyone can see it. ## Table of Contents - [No user management](#no-user-management-gatekeepernone) - [Single-password authentication](#single-password-authentication-gatekeeperproxy_key) - [Per-user authentication](#per-user-authentication-gatekeeperuser_token) - [Memory](#memory) - [Firebase Realtime Database](#firebase-realtime-database) - [Firebase setup instructions](#firebase-setup-instructions) ## No user management (`GATEKEEPER=none`) This is the default mode. The proxy will not require any authentication to access the server and offers basic IP-based rate limiting and anti-abuse features. ## Single-password authentication (`GATEKEEPER=proxy_key`) This mode allows you to set a password that must be passed in the `Authentication` header of every request to the server as a bearer token. This is useful if you want to restrict access to the server, but don't want to create a separate account for every user. To set the password, create a `PROXY_KEY` secret in your environment. ## Per-user authentication (`GATEKEEPER=user_token`) This mode allows you to provision separate Bearer tokens for each user. You can manage users via the /admin/users REST API, which itself requires an admin Bearer token. To begin, set `ADMIN_KEY` to a secret value. This will be used to authenticate requests to the /admin/users REST API. [You can find an OpenAPI specification for the /admin/users REST API here.](openapi-admin-users.yaml) By default, the proxy will store user data in memory. Naturally, this means that user data will be lost when the proxy is restarted, though you can use the bulk user import/export feature to save and restore user data manually or via a script. However, the proxy also supports persisting user data to an external data store with some additional configuration. Below are the supported data stores and their configuration options. ### Memory This is the default data store (`GATEKEEPER_STORE=memory`) User data will be stored in memory and will be lost when the proxy is restarted. You are responsible for downloading and re-uploading user data via the REST API if you want to persist it. ### Firebase Realtime Database To use Firebase Realtime Database to persist user data, set the following environment variables: - `GATEKEEPER_STORE`: Set this to `firebase_rtdb` - **Secret** `FIREBASE_RTDB_URL`: The URL of your Firebase Realtime Database, e.g. `https://my-project-default-rtdb.firebaseio.com` - **Secret** `FIREBASE_KEY`: A base-64 encoded service account key for your Firebase project. Refer to the instructions below for how to create this key. **Firebase setup instructions** 1. Go to the [Firebase console](https://console.firebase.google.com/) and click "Add project", then follow the prompts to create a new project. 2. From the **Project Overview** page, click **All products** in the left sidebar, then click **Realtime Database**. 3. Click **Create database** and choose **Start in test mode**. Click **Enable**. - Test mode is fine for this use case as it still requires authentication to access the database. You may wish to set up more restrictive rules if you plan to use the database for other purposes. - The reference URL for the database will be displayed on the page. You will need this later. 4. Click the gear icon next to **Project Overview** in the left sidebar, then click **Project settings**. 5. Click the **Service accounts** tab, then click **Generate new private key**. 6. The downloaded file contains your key. Encode it as base64 and set it as the `FIREBASE_KEY` secret in your environment. 7. Set `FIREBASE_RTDB_URL` to the reference URL of your Firebase Realtime Database, e.g. `https://my-project-default-rtdb.firebaseio.com`. 8. Set `GATEKEEPER_STORE` to `firebase_rtdb` in your environment if you haven't already. The proxy will attempt to connect to your Firebase Realtime Database at startup and will throw an error if it cannot connect. If you see this error, check that your `FIREBASE_RTDB_URL` and `FIREBASE_KEY` secrets are set correctly. --- Users are loaded from the database and changes are flushed periodically. You can use the PUT /admin/users API to bulk import users and force a flush to the database.
nonuttoday/oai
docs/user-management.md
Markdown
unknown
4,602
{ "name": "oai-reverse-proxy", "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "oai-reverse-proxy", "version": "1.0.0", "license": "MIT", "dependencies": { "axios": "^1.3.5", "cors": "^2.8.5", "dotenv": "^16.0.3", "express": "^4.18.2", "firebase-admin": "^11.8.0", "googleapis": "^117.0.0", "http-proxy-middleware": "^3.0.0-beta.1", "openai": "^3.2.1", "pino": "^8.11.0", "pino-http": "^8.3.3", "showdown": "^2.1.0", "uuid": "^9.0.0", "zlib": "^1.0.5", "zod": "^3.21.4" }, "devDependencies": { "@types/cors": "^2.8.13", "@types/express": "^4.17.17", "@types/showdown": "^2.0.0", "@types/uuid": "^9.0.1", "concurrently": "^8.0.1", "esbuild": "^0.17.16", "esbuild-register": "^3.4.2", "nodemon": "^2.0.22", "source-map-support": "^0.5.21", "ts-node": "^10.9.1", "typescript": "^5.0.4" }, "engines": { "node": ">=18.0.0" } }, "node_modules/@babel/parser": { "version": "7.21.8", "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.8.tgz", "integrity": "sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA==", "optional": true, "bin": { "parser": "bin/babel-parser.js" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@cspotcode/source-map-support": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", "dev": true, "dependencies": { "@jridgewell/trace-mapping": "0.3.9" }, "engines": { "node": ">=12" } }, "node_modules/@esbuild/android-arm": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.16.tgz", "integrity": "sha512-baLqRpLe4JnKrUXLJChoTN0iXZH7El/mu58GE3WIA6/H834k0XWvLRmGLG8y8arTRS9hJJibPnF0tiGhmWeZgw==", "cpu": [ "arm" ], "dev": true, "optional": true, "os": [ "android" ], "engines": { "node": ">=12" } }, "node_modules/@esbuild/android-arm64": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.16.tgz", "integrity": "sha512-QX48qmsEZW+gcHgTmAj+x21mwTz8MlYQBnzF6861cNdQGvj2jzzFjqH0EBabrIa/WVZ2CHolwMoqxVryqKt8+Q==", "cpu": [ "arm64" ], "dev": true, "optional": true, "os": [ "android" ], "engines": { "node": ">=12" } }, "node_modules/@esbuild/android-x64": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.16.tgz", "integrity": "sha512-G4wfHhrrz99XJgHnzFvB4UwwPxAWZaZBOFXh+JH1Duf1I4vIVfuYY9uVLpx4eiV2D/Jix8LJY+TAdZ3i40tDow==", "cpu": [ "x64" ], "dev": true, "optional": true, "os": [ "android" ], "engines": { "node": ">=12" } }, "node_modules/@esbuild/darwin-arm64": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.16.tgz", "integrity": "sha512-/Ofw8UXZxuzTLsNFmz1+lmarQI6ztMZ9XktvXedTbt3SNWDn0+ODTwxExLYQ/Hod91EZB4vZPQJLoqLF0jvEzA==", "cpu": [ "arm64" ], "dev": true, "optional": true, "os": [ "darwin" ], "engines": { "node": ">=12" } }, "node_modules/@esbuild/darwin-x64": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.16.tgz", "integrity": "sha512-SzBQtCV3Pdc9kyizh36Ol+dNVhkDyIrGb/JXZqFq8WL37LIyrXU0gUpADcNV311sCOhvY+f2ivMhb5Tuv8nMOQ==", "cpu": [ "x64" ], "dev": true, "optional": true, "os": [ "darwin" ], "engines": { "node": ">=12" } }, "node_modules/@esbuild/freebsd-arm64": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.16.tgz", "integrity": "sha512-ZqftdfS1UlLiH1DnS2u3It7l4Bc3AskKeu+paJSfk7RNOMrOxmeFDhLTMQqMxycP1C3oj8vgkAT6xfAuq7ZPRA==", "cpu": [ "arm64" ], "dev": true, "optional": true, "os": [ "freebsd" ], "engines": { "node": ">=12" } }, "node_modules/@esbuild/freebsd-x64": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.16.tgz", "integrity": "sha512-rHV6zNWW1tjgsu0dKQTX9L0ByiJHHLvQKrWtnz8r0YYJI27FU3Xu48gpK2IBj1uCSYhJ+pEk6Y0Um7U3rIvV8g==", "cpu": [ "x64" ], "dev": true, "optional": true, "os": [ "freebsd" ], "engines": { "node": ">=12" } }, "node_modules/@esbuild/linux-arm": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.16.tgz", "integrity": "sha512-n4O8oVxbn7nl4+m+ISb0a68/lcJClIbaGAoXwqeubj/D1/oMMuaAXmJVfFlRjJLu/ZvHkxoiFJnmbfp4n8cdSw==", "cpu": [ "arm" ], "dev": true, "optional": true, "os": [ "linux" ], "engines": { "node": ">=12" } }, "node_modules/@esbuild/linux-arm64": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.16.tgz", "integrity": "sha512-8yoZhGkU6aHu38WpaM4HrRLTFc7/VVD9Q2SvPcmIQIipQt2I/GMTZNdEHXoypbbGao5kggLcxg0iBKjo0SQYKA==", "cpu": [ "arm64" ], "dev": true, "optional": true, "os": [ "linux" ], "engines": { "node": ">=12" } }, "node_modules/@esbuild/linux-ia32": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.16.tgz", "integrity": "sha512-9ZBjlkdaVYxPNO8a7OmzDbOH9FMQ1a58j7Xb21UfRU29KcEEU3VTHk+Cvrft/BNv0gpWJMiiZ/f4w0TqSP0gLA==", "cpu": [ "ia32" ], "dev": true, "optional": true, "os": [ "linux" ], "engines": { "node": ">=12" } }, "node_modules/@esbuild/linux-loong64": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.16.tgz", "integrity": "sha512-TIZTRojVBBzdgChY3UOG7BlPhqJz08AL7jdgeeu+kiObWMFzGnQD7BgBBkWRwOtKR1i2TNlO7YK6m4zxVjjPRQ==", "cpu": [ "loong64" ], "dev": true, "optional": true, "os": [ "linux" ], "engines": { "node": ">=12" } }, "node_modules/@esbuild/linux-mips64el": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.16.tgz", "integrity": "sha512-UPeRuFKCCJYpBbIdczKyHLAIU31GEm0dZl1eMrdYeXDH+SJZh/i+2cAmD3A1Wip9pIc5Sc6Kc5cFUrPXtR0XHA==", "cpu": [ "mips64el" ], "dev": true, "optional": true, "os": [ "linux" ], "engines": { "node": ">=12" } }, "node_modules/@esbuild/linux-ppc64": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.16.tgz", "integrity": "sha512-io6yShgIEgVUhExJejJ21xvO5QtrbiSeI7vYUnr7l+v/O9t6IowyhdiYnyivX2X5ysOVHAuyHW+Wyi7DNhdw6Q==", "cpu": [ "ppc64" ], "dev": true, "optional": true, "os": [ "linux" ], "engines": { "node": ">=12" } }, "node_modules/@esbuild/linux-riscv64": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.16.tgz", "integrity": "sha512-WhlGeAHNbSdG/I2gqX2RK2gfgSNwyJuCiFHMc8s3GNEMMHUI109+VMBfhVqRb0ZGzEeRiibi8dItR3ws3Lk+cA==", "cpu": [ "riscv64" ], "dev": true, "optional": true, "os": [ "linux" ], "engines": { "node": ">=12" } }, "node_modules/@esbuild/linux-s390x": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.16.tgz", "integrity": "sha512-gHRReYsJtViir63bXKoFaQ4pgTyah4ruiMRQ6im9YZuv+gp3UFJkNTY4sFA73YDynmXZA6hi45en4BGhNOJUsw==", "cpu": [ "s390x" ], "dev": true, "optional": true, "os": [ "linux" ], "engines": { "node": ">=12" } }, "node_modules/@esbuild/linux-x64": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.16.tgz", "integrity": "sha512-mfiiBkxEbUHvi+v0P+TS7UnA9TeGXR48aK4XHkTj0ZwOijxexgMF01UDFaBX7Q6CQsB0d+MFNv9IiXbIHTNd4g==", "cpu": [ "x64" ], "dev": true, "optional": true, "os": [ "linux" ], "engines": { "node": ">=12" } }, "node_modules/@esbuild/netbsd-x64": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.16.tgz", "integrity": "sha512-n8zK1YRDGLRZfVcswcDMDM0j2xKYLNXqei217a4GyBxHIuPMGrrVuJ+Ijfpr0Kufcm7C1k/qaIrGy6eG7wvgmA==", "cpu": [ "x64" ], "dev": true, "optional": true, "os": [ "netbsd" ], "engines": { "node": ">=12" } }, "node_modules/@esbuild/openbsd-x64": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.16.tgz", "integrity": "sha512-lEEfkfsUbo0xC47eSTBqsItXDSzwzwhKUSsVaVjVji07t8+6KA5INp2rN890dHZeueXJAI8q0tEIfbwVRYf6Ew==", "cpu": [ "x64" ], "dev": true, "optional": true, "os": [ "openbsd" ], "engines": { "node": ">=12" } }, "node_modules/@esbuild/sunos-x64": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.16.tgz", "integrity": "sha512-jlRjsuvG1fgGwnE8Afs7xYDnGz0dBgTNZfgCK6TlvPH3Z13/P5pi6I57vyLE8qZYLrGVtwcm9UbUx1/mZ8Ukag==", "cpu": [ "x64" ], "dev": true, "optional": true, "os": [ "sunos" ], "engines": { "node": ">=12" } }, "node_modules/@esbuild/win32-arm64": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.16.tgz", "integrity": "sha512-TzoU2qwVe2boOHl/3KNBUv2PNUc38U0TNnzqOAcgPiD/EZxT2s736xfC2dYQbszAwo4MKzzwBV0iHjhfjxMimg==", "cpu": [ "arm64" ], "dev": true, "optional": true, "os": [ "win32" ], "engines": { "node": ">=12" } }, "node_modules/@esbuild/win32-ia32": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.16.tgz", "integrity": "sha512-B8b7W+oo2yb/3xmwk9Vc99hC9bNolvqjaTZYEfMQhzdpBsjTvZBlXQ/teUE55Ww6sg//wlcDjOaqldOKyigWdA==", "cpu": [ "ia32" ], "dev": true, "optional": true, "os": [ "win32" ], "engines": { "node": ">=12" } }, "node_modules/@esbuild/win32-x64": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.16.tgz", "integrity": "sha512-xJ7OH/nanouJO9pf03YsL9NAFQBHd8AqfrQd7Pf5laGyyTt/gToul6QYOA/i5i/q8y9iaM5DQFNTgpi995VkOg==", "cpu": [ "x64" ], "dev": true, "optional": true, "os": [ "win32" ], "engines": { "node": ">=12" } }, "node_modules/@fastify/busboy": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/@fastify/busboy/-/busboy-1.2.1.tgz", "integrity": "sha512-7PQA7EH43S0CxcOa9OeAnaeA0oQ+e/DHNPZwSQM9CQHW76jle5+OvLdibRp/Aafs9KXbLhxyjOTkRjWUbQEd3Q==", "dependencies": { "text-decoding": "^1.0.0" }, "engines": { "node": ">=14" } }, "node_modules/@firebase/app-types": { "version": "0.9.0", "resolved": "https://registry.npmjs.org/@firebase/app-types/-/app-types-0.9.0.tgz", "integrity": "sha512-AeweANOIo0Mb8GiYm3xhTEBVCmPwTYAu9Hcd2qSkLuga/6+j9b1Jskl5bpiSQWy9eJ/j5pavxj6eYogmnuzm+Q==" }, "node_modules/@firebase/auth-interop-types": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/@firebase/auth-interop-types/-/auth-interop-types-0.2.1.tgz", "integrity": "sha512-VOaGzKp65MY6P5FI84TfYKBXEPi6LmOCSMMzys6o2BN2LOsqy7pCuZCup7NYnfbk5OkkQKzvIfHOzTm0UDpkyg==" }, "node_modules/@firebase/component": { "version": "0.6.4", "resolved": "https://registry.npmjs.org/@firebase/component/-/component-0.6.4.tgz", "integrity": "sha512-rLMyrXuO9jcAUCaQXCMjCMUsWrba5fzHlNK24xz5j2W6A/SRmK8mZJ/hn7V0fViLbxC0lPMtrK1eYzk6Fg03jA==", "dependencies": { "@firebase/util": "1.9.3", "tslib": "^2.1.0" } }, "node_modules/@firebase/database": { "version": "0.14.4", "resolved": "https://registry.npmjs.org/@firebase/database/-/database-0.14.4.tgz", "integrity": "sha512-+Ea/IKGwh42jwdjCyzTmeZeLM3oy1h0mFPsTy6OqCWzcu/KFqRAr5Tt1HRCOBlNOdbh84JPZC47WLU18n2VbxQ==", "dependencies": { "@firebase/auth-interop-types": "0.2.1", "@firebase/component": "0.6.4", "@firebase/logger": "0.4.0", "@firebase/util": "1.9.3", "faye-websocket": "0.11.4", "tslib": "^2.1.0" } }, "node_modules/@firebase/database-compat": { "version": "0.3.4", "resolved": "https://registry.npmjs.org/@firebase/database-compat/-/database-compat-0.3.4.tgz", "integrity": "sha512-kuAW+l+sLMUKBThnvxvUZ+Q1ZrF/vFJ58iUY9kAcbX48U03nVzIF6Tmkf0p3WVQwMqiXguSgtOPIB6ZCeF+5Gg==", "dependencies": { "@firebase/component": "0.6.4", "@firebase/database": "0.14.4", "@firebase/database-types": "0.10.4", "@firebase/logger": "0.4.0", "@firebase/util": "1.9.3", "tslib": "^2.1.0" } }, "node_modules/@firebase/database-types": { "version": "0.10.4", "resolved": "https://registry.npmjs.org/@firebase/database-types/-/database-types-0.10.4.tgz", "integrity": "sha512-dPySn0vJ/89ZeBac70T+2tWWPiJXWbmRygYv0smT5TfE3hDrQ09eKMF3Y+vMlTdrMWq7mUdYW5REWPSGH4kAZQ==", "dependencies": { "@firebase/app-types": "0.9.0", "@firebase/util": "1.9.3" } }, "node_modules/@firebase/logger": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/@firebase/logger/-/logger-0.4.0.tgz", "integrity": "sha512-eRKSeykumZ5+cJPdxxJRgAC3G5NknY2GwEbKfymdnXtnT0Ucm4pspfR6GT4MUQEDuJwRVbVcSx85kgJulMoFFA==", "dependencies": { "tslib": "^2.1.0" } }, "node_modules/@firebase/util": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/@firebase/util/-/util-1.9.3.tgz", "integrity": "sha512-DY02CRhOZwpzO36fHpuVysz6JZrscPiBXD0fXp6qSrL9oNOx5KWICKdR95C0lSITzxp0TZosVyHqzatE8JbcjA==", "dependencies": { "tslib": "^2.1.0" } }, "node_modules/@google-cloud/firestore": { "version": "6.5.0", "resolved": "https://registry.npmjs.org/@google-cloud/firestore/-/firestore-6.5.0.tgz", "integrity": "sha512-U0QwG6pEQxO5c0v0eUylswozmuvlvz7iXSW+I18jzqR2hAFrUq2Weu1wm3NaH8wGD4ZL7W9Be4cMHG5CYU8LuQ==", "optional": true, "dependencies": { "fast-deep-equal": "^3.1.1", "functional-red-black-tree": "^1.0.1", "google-gax": "^3.5.7", "protobufjs": "^7.0.0" }, "engines": { "node": ">=12.0.0" } }, "node_modules/@google-cloud/paginator": { "version": "3.0.7", "resolved": "https://registry.npmjs.org/@google-cloud/paginator/-/paginator-3.0.7.tgz", "integrity": "sha512-jJNutk0arIQhmpUUQJPJErsojqo834KcyB6X7a1mxuic8i1tKXxde8E69IZxNZawRIlZdIK2QY4WALvlK5MzYQ==", "optional": true, "dependencies": { "arrify": "^2.0.0", "extend": "^3.0.2" }, "engines": { "node": ">=10" } }, "node_modules/@google-cloud/projectify": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/@google-cloud/projectify/-/projectify-3.0.0.tgz", "integrity": "sha512-HRkZsNmjScY6Li8/kb70wjGlDDyLkVk3KvoEo9uIoxSjYLJasGiCch9+PqRVDOCGUFvEIqyogl+BeqILL4OJHA==", "optional": true, "engines": { "node": ">=12.0.0" } }, "node_modules/@google-cloud/promisify": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@google-cloud/promisify/-/promisify-3.0.1.tgz", "integrity": "sha512-z1CjRjtQyBOYL+5Qr9DdYIfrdLBe746jRTYfaYU6MeXkqp7UfYs/jX16lFFVzZ7PGEJvqZNqYUEtb1mvDww4pA==", "optional": true, "engines": { "node": ">=12" } }, "node_modules/@google-cloud/storage": { "version": "6.10.1", "resolved": "https://registry.npmjs.org/@google-cloud/storage/-/storage-6.10.1.tgz", "integrity": "sha512-EtLlT0YbXtrbUxaNbEfTyTytrjELtl4i42flf8COg+Hu5+apdNjsFO9XEY39wshxAuVjLf4fCSm7GTSW+BD3gQ==", "optional": true, "dependencies": { "@google-cloud/paginator": "^3.0.7", "@google-cloud/projectify": "^3.0.0", "@google-cloud/promisify": "^3.0.0", "abort-controller": "^3.0.0", "async-retry": "^1.3.3", "compressible": "^2.0.12", "duplexify": "^4.0.0", "ent": "^2.2.0", "extend": "^3.0.2", "gaxios": "^5.0.0", "google-auth-library": "^8.0.1", "mime": "^3.0.0", "mime-types": "^2.0.8", "p-limit": "^3.0.1", "retry-request": "^5.0.0", "teeny-request": "^8.0.0", "uuid": "^8.0.0" }, "engines": { "node": ">=12" } }, "node_modules/@google-cloud/storage/node_modules/mime": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", "optional": true, "bin": { "mime": "cli.js" }, "engines": { "node": ">=10.0.0" } }, "node_modules/@google-cloud/storage/node_modules/uuid": { "version": "8.3.2", "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "optional": true, "bin": { "uuid": "dist/bin/uuid" } }, "node_modules/@grpc/grpc-js": { "version": "1.8.14", "resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.8.14.tgz", "integrity": "sha512-w84maJ6CKl5aApCMzFll0hxtFNT6or9WwMslobKaqWUEf1K+zhlL43bSQhFreyYWIWR+Z0xnVFC1KtLm4ZpM/A==", "optional": true, "dependencies": { "@grpc/proto-loader": "^0.7.0", "@types/node": ">=12.12.47" }, "engines": { "node": "^8.13.0 || >=10.10.0" } }, "node_modules/@grpc/proto-loader": { "version": "0.7.7", "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.7.tgz", "integrity": "sha512-1TIeXOi8TuSCQprPItwoMymZXxWT0CPxUhkrkeCUH+D8U7QDwQ6b7SUz2MaLuWM2llT+J/TVFLmQI5KtML3BhQ==", "optional": true, "dependencies": { "@types/long": "^4.0.1", "lodash.camelcase": "^4.3.0", "long": "^4.0.0", "protobufjs": "^7.0.0", "yargs": "^17.7.2" }, "bin": { "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" }, "engines": { "node": ">=6" } }, "node_modules/@jridgewell/resolve-uri": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", "dev": true, "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/sourcemap-codec": { "version": "1.4.15", "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", "dev": true }, "node_modules/@jridgewell/trace-mapping": { "version": "0.3.9", "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", "dev": true, "dependencies": { "@jridgewell/resolve-uri": "^3.0.3", "@jridgewell/sourcemap-codec": "^1.4.10" } }, "node_modules/@jsdoc/salty": { "version": "0.2.5", "resolved": "https://registry.npmjs.org/@jsdoc/salty/-/salty-0.2.5.tgz", "integrity": "sha512-TfRP53RqunNe2HBobVBJ0VLhK1HbfvBYeTC1ahnN64PWvyYyGebmMiPkuwvD9fpw2ZbkoPb8Q7mwy0aR8Z9rvw==", "optional": true, "dependencies": { "lodash": "^4.17.21" }, "engines": { "node": ">=v12.0.0" } }, "node_modules/@protobufjs/aspromise": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==", "optional": true }, "node_modules/@protobufjs/base64": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==", "optional": true }, "node_modules/@protobufjs/codegen": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==", "optional": true }, "node_modules/@protobufjs/eventemitter": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==", "optional": true }, "node_modules/@protobufjs/fetch": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", "optional": true, "dependencies": { "@protobufjs/aspromise": "^1.1.1", "@protobufjs/inquire": "^1.1.0" } }, "node_modules/@protobufjs/float": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==", "optional": true }, "node_modules/@protobufjs/inquire": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==", "optional": true }, "node_modules/@protobufjs/path": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==", "optional": true }, "node_modules/@protobufjs/pool": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==", "optional": true }, "node_modules/@protobufjs/utf8": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==", "optional": true }, "node_modules/@tootallnate/once": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", "optional": true, "engines": { "node": ">= 10" } }, "node_modules/@tsconfig/node10": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", "dev": true }, "node_modules/@tsconfig/node12": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", "dev": true }, "node_modules/@tsconfig/node14": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", "dev": true }, "node_modules/@tsconfig/node16": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz", "integrity": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==", "dev": true }, "node_modules/@types/body-parser": { "version": "1.19.2", "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", "dependencies": { "@types/connect": "*", "@types/node": "*" } }, "node_modules/@types/connect": { "version": "3.4.35", "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", "dependencies": { "@types/node": "*" } }, "node_modules/@types/cors": { "version": "2.8.13", "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.13.tgz", "integrity": "sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA==", "dev": true, "dependencies": { "@types/node": "*" } }, "node_modules/@types/express": { "version": "4.17.17", "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", "dependencies": { "@types/body-parser": "*", "@types/express-serve-static-core": "^4.17.33", "@types/qs": "*", "@types/serve-static": "*" } }, "node_modules/@types/express-serve-static-core": { "version": "4.17.33", "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz", "integrity": "sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==", "dependencies": { "@types/node": "*", "@types/qs": "*", "@types/range-parser": "*" } }, "node_modules/@types/glob": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/@types/glob/-/glob-8.1.0.tgz", "integrity": "sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==", "optional": true, "dependencies": { "@types/minimatch": "^5.1.2", "@types/node": "*" } }, "node_modules/@types/http-proxy": { "version": "1.17.10", "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.10.tgz", "integrity": "sha512-Qs5aULi+zV1bwKAg5z1PWnDXWmsn+LxIvUGv6E2+OOMYhclZMO+OXd9pYVf2gLykf2I7IV2u7oTHwChPNsvJ7g==", "dependencies": { "@types/node": "*" } }, "node_modules/@types/jsonwebtoken": { "version": "9.0.2", "resolved": "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-9.0.2.tgz", "integrity": "sha512-drE6uz7QBKq1fYqqoFKTDRdFCPHd5TCub75BM+D+cMx7NU9hUz7SESLfC2fSCXVFMO5Yj8sOWHuGqPgjc+fz0Q==", "dependencies": { "@types/node": "*" } }, "node_modules/@types/linkify-it": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-3.0.2.tgz", "integrity": "sha512-HZQYqbiFVWufzCwexrvh694SOim8z2d+xJl5UNamcvQFejLY/2YUtzXHYi3cHdI7PMlS8ejH2slRAOJQ32aNbA==", "optional": true }, "node_modules/@types/long": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz", "integrity": "sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==", "optional": true }, "node_modules/@types/markdown-it": { "version": "12.2.3", "resolved": "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-12.2.3.tgz", "integrity": "sha512-GKMHFfv3458yYy+v/N8gjufHO6MSZKCOXpZc5GXIWWy8uldwfmPn98vp81gZ5f9SVw8YYBctgfJ22a2d7AOMeQ==", "optional": true, "dependencies": { "@types/linkify-it": "*", "@types/mdurl": "*" } }, "node_modules/@types/mdurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-1.0.2.tgz", "integrity": "sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==", "optional": true }, "node_modules/@types/mime": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==" }, "node_modules/@types/minimatch": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", "optional": true }, "node_modules/@types/node": { "version": "18.15.11", "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.11.tgz", "integrity": "sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==" }, "node_modules/@types/qs": { "version": "6.9.7", "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" }, "node_modules/@types/range-parser": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" }, "node_modules/@types/rimraf": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/@types/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-F3OznnSLAUxFrCEu/L5PY8+ny8DtcFRjx7fZZ9bycvXRi3KPTRS9HOitGZwvPg0juRhXFWIeKX58cnX5YqLohQ==", "optional": true, "dependencies": { "@types/glob": "*", "@types/node": "*" } }, "node_modules/@types/serve-static": { "version": "1.15.1", "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.1.tgz", "integrity": "sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==", "dependencies": { "@types/mime": "*", "@types/node": "*" } }, "node_modules/@types/showdown": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@types/showdown/-/showdown-2.0.0.tgz", "integrity": "sha512-70xBJoLv+oXjB5PhtA8vo7erjLDp9/qqI63SRHm4REKrwuPOLs8HhXwlZJBJaB4kC18cCZ1UUZ6Fb/PLFW4TCA==", "dev": true }, "node_modules/@types/uuid": { "version": "9.0.1", "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.1.tgz", "integrity": "sha512-rFT3ak0/2trgvp4yYZo5iKFEPsET7vKydKF+VRCxlQ9bpheehyAJH89dAkaLEq/j/RZXJIqcgsmPJKUP1Z28HA==", "dev": true }, "node_modules/abbrev": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", "dev": true }, "node_modules/abort-controller": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", "dependencies": { "event-target-shim": "^5.0.0" }, "engines": { "node": ">=6.5" } }, "node_modules/accepts": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dependencies": { "mime-types": "~2.1.34", "negotiator": "0.6.3" }, "engines": { "node": ">= 0.6" } }, "node_modules/acorn": { "version": "8.8.2", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", "devOptional": true, "bin": { "acorn": "bin/acorn" }, "engines": { "node": ">=0.4.0" } }, "node_modules/acorn-jsx": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "optional": true, "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "node_modules/acorn-walk": { "version": "8.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", "dev": true, "engines": { "node": ">=0.4.0" } }, "node_modules/agent-base": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "dependencies": { "debug": "4" }, "engines": { "node": ">= 6.0.0" } }, "node_modules/agent-base/node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dependencies": { "ms": "2.1.2" }, "engines": { "node": ">=6.0" }, "peerDependenciesMeta": { "supports-color": { "optional": true } } }, "node_modules/agent-base/node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "devOptional": true, "engines": { "node": ">=8" } }, "node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "devOptional": true, "dependencies": { "color-convert": "^2.0.1" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/anymatch": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dev": true, "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" }, "engines": { "node": ">= 8" } }, "node_modules/arg": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", "dev": true }, "node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "optional": true }, "node_modules/array-flatten": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" }, "node_modules/arrify": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", "engines": { "node": ">=8" } }, "node_modules/async-retry": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz", "integrity": "sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==", "optional": true, "dependencies": { "retry": "0.13.1" } }, "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" }, "node_modules/atomic-sleep": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz", "integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==", "engines": { "node": ">=8.0.0" } }, "node_modules/axios": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/axios/-/axios-1.3.5.tgz", "integrity": "sha512-glL/PvG/E+xCWwV8S6nCHcrfg1exGx7vxyUIivIA1iL7BIh6bePylCfVHwp6k13ao7SATxB6imau2kqY+I67kw==", "dependencies": { "follow-redirects": "^1.15.0", "form-data": "^4.0.0", "proxy-from-env": "^1.1.0" } }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "devOptional": true }, "node_modules/base64-js": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ] }, "node_modules/bignumber.js": { "version": "9.1.1", "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.1.tgz", "integrity": "sha512-pHm4LsMJ6lzgNGVfZHjMoO8sdoRhOzOH4MLmY65Jg70bpxCKu5iOHNJyfF6OyvYw7t8Fpf35RuzUyqnQsj8Vig==", "engines": { "node": "*" } }, "node_modules/binary-extensions": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/bluebird": { "version": "3.7.2", "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", "optional": true }, "node_modules/body-parser": { "version": "1.20.1", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.4", "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", "qs": "6.11.0", "raw-body": "2.5.1", "type-is": "~1.6.18", "unpipe": "1.0.0" }, "engines": { "node": ">= 0.8", "npm": "1.2.8000 || >= 1.4.16" } }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "devOptional": true, "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "node_modules/braces": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dependencies": { "fill-range": "^7.0.1" }, "engines": { "node": ">=8" } }, "node_modules/buffer": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.2.1" } }, "node_modules/buffer-equal-constant-time": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" }, "node_modules/buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true }, "node_modules/bytes": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "engines": { "node": ">= 0.8" } }, "node_modules/call-bind": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "dependencies": { "function-bind": "^1.1.1", "get-intrinsic": "^1.0.2" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/catharsis": { "version": "0.9.0", "resolved": "https://registry.npmjs.org/catharsis/-/catharsis-0.9.0.tgz", "integrity": "sha512-prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A==", "optional": true, "dependencies": { "lodash": "^4.17.15" }, "engines": { "node": ">= 10" } }, "node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "devOptional": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/chalk/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "devOptional": true, "engines": { "node": ">=8" } }, "node_modules/chalk/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "devOptional": true, "dependencies": { "has-flag": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/chokidar": { "version": "3.5.3", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "dev": true, "funding": [ { "type": "individual", "url": "https://paulmillr.com/funding/" } ], "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" }, "engines": { "node": ">= 8.10.0" }, "optionalDependencies": { "fsevents": "~2.3.2" } }, "node_modules/cliui": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "devOptional": true, "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" }, "engines": { "node": ">=12" } }, "node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "devOptional": true, "dependencies": { "color-name": "~1.1.4" }, "engines": { "node": ">=7.0.0" } }, "node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "devOptional": true }, "node_modules/combined-stream": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dependencies": { "delayed-stream": "~1.0.0" }, "engines": { "node": ">= 0.8" } }, "node_modules/commander": { "version": "9.5.0", "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", "engines": { "node": "^12.20.0 || >=14" } }, "node_modules/compressible": { "version": "2.0.18", "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", "optional": true, "dependencies": { "mime-db": ">= 1.43.0 < 2" }, "engines": { "node": ">= 0.6" } }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "devOptional": true }, "node_modules/concurrently": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-8.0.1.tgz", "integrity": "sha512-Sh8bGQMEL0TAmAm2meAXMjcASHZa7V0xXQVDBLknCPa9TPtkY9yYs+0cnGGgfdkW0SV1Mlg+hVGfXcoI8d3MJA==", "dev": true, "dependencies": { "chalk": "^4.1.2", "date-fns": "^2.29.3", "lodash": "^4.17.21", "rxjs": "^7.8.0", "shell-quote": "^1.8.0", "spawn-command": "0.0.2-1", "supports-color": "^8.1.1", "tree-kill": "^1.2.2", "yargs": "^17.7.1" }, "bin": { "conc": "dist/bin/concurrently.js", "concurrently": "dist/bin/concurrently.js" }, "engines": { "node": "^14.13.0 || >=16.0.0" }, "funding": { "url": "https://github.com/open-cli-tools/concurrently?sponsor=1" } }, "node_modules/concurrently/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/concurrently/node_modules/supports-color": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "dependencies": { "has-flag": "^4.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/supports-color?sponsor=1" } }, "node_modules/content-disposition": { "version": "0.5.4", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "dependencies": { "safe-buffer": "5.2.1" }, "engines": { "node": ">= 0.6" } }, "node_modules/content-type": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", "engines": { "node": ">= 0.6" } }, "node_modules/cookie": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", "engines": { "node": ">= 0.6" } }, "node_modules/cookie-signature": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "node_modules/cors": { "version": "2.8.5", "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", "dependencies": { "object-assign": "^4", "vary": "^1" }, "engines": { "node": ">= 0.10" } }, "node_modules/create-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", "dev": true }, "node_modules/date-fns": { "version": "2.29.3", "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz", "integrity": "sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==", "dev": true, "engines": { "node": ">=0.11" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/date-fns" } }, "node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dependencies": { "ms": "2.0.0" } }, "node_modules/deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "optional": true }, "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", "engines": { "node": ">=0.4.0" } }, "node_modules/depd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", "engines": { "node": ">= 0.8" } }, "node_modules/destroy": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "engines": { "node": ">= 0.8", "npm": "1.2.8000 || >= 1.4.16" } }, "node_modules/diff": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", "dev": true, "engines": { "node": ">=0.3.1" } }, "node_modules/dotenv": { "version": "16.0.3", "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz", "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==", "engines": { "node": ">=12" } }, "node_modules/duplexify": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz", "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==", "optional": true, "dependencies": { "end-of-stream": "^1.4.1", "inherits": "^2.0.3", "readable-stream": "^3.1.1", "stream-shift": "^1.0.0" } }, "node_modules/duplexify/node_modules/readable-stream": { "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "optional": true, "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" }, "engines": { "node": ">= 6" } }, "node_modules/ecdsa-sig-formatter": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", "dependencies": { "safe-buffer": "^5.0.1" } }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "devOptional": true }, "node_modules/encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", "engines": { "node": ">= 0.8" } }, "node_modules/end-of-stream": { "version": "1.4.4", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "optional": true, "dependencies": { "once": "^1.4.0" } }, "node_modules/ent": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/ent/-/ent-2.2.0.tgz", "integrity": "sha512-GHrMyVZQWvTIdDtpiEXdHZnFQKzeO09apj8Cbl4pKWy4i0Oprcq17usfDt5aO63swf0JOeMWjWQE/LzgSRuWpA==", "optional": true }, "node_modules/entities": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==", "optional": true, "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/esbuild": { "version": "0.17.16", "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.16.tgz", "integrity": "sha512-aeSuUKr9aFVY9Dc8ETVELGgkj4urg5isYx8pLf4wlGgB0vTFjxJQdHnNH6Shmx4vYYrOTLCHtRI5i1XZ9l2Zcg==", "dev": true, "hasInstallScript": true, "bin": { "esbuild": "bin/esbuild" }, "engines": { "node": ">=12" }, "optionalDependencies": { "@esbuild/android-arm": "0.17.16", "@esbuild/android-arm64": "0.17.16", "@esbuild/android-x64": "0.17.16", "@esbuild/darwin-arm64": "0.17.16", "@esbuild/darwin-x64": "0.17.16", "@esbuild/freebsd-arm64": "0.17.16", "@esbuild/freebsd-x64": "0.17.16", "@esbuild/linux-arm": "0.17.16", "@esbuild/linux-arm64": "0.17.16", "@esbuild/linux-ia32": "0.17.16", "@esbuild/linux-loong64": "0.17.16", "@esbuild/linux-mips64el": "0.17.16", "@esbuild/linux-ppc64": "0.17.16", "@esbuild/linux-riscv64": "0.17.16", "@esbuild/linux-s390x": "0.17.16", "@esbuild/linux-x64": "0.17.16", "@esbuild/netbsd-x64": "0.17.16", "@esbuild/openbsd-x64": "0.17.16", "@esbuild/sunos-x64": "0.17.16", "@esbuild/win32-arm64": "0.17.16", "@esbuild/win32-ia32": "0.17.16", "@esbuild/win32-x64": "0.17.16" } }, "node_modules/esbuild-register": { "version": "3.4.2", "resolved": "https://registry.npmjs.org/esbuild-register/-/esbuild-register-3.4.2.tgz", "integrity": "sha512-kG/XyTDyz6+YDuyfB9ZoSIOOmgyFCH+xPRtsCa8W85HLRV5Csp+o3jWVbOSHgSLfyLc5DmP+KFDNwty4mEjC+Q==", "dev": true, "dependencies": { "debug": "^4.3.4" }, "peerDependencies": { "esbuild": ">=0.12 <1" } }, "node_modules/esbuild-register/node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "dependencies": { "ms": "2.1.2" }, "engines": { "node": ">=6.0" }, "peerDependenciesMeta": { "supports-color": { "optional": true } } }, "node_modules/esbuild-register/node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, "node_modules/escalade": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", "devOptional": true, "engines": { "node": ">=6" } }, "node_modules/escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" }, "node_modules/escape-string-regexp": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "optional": true, "engines": { "node": ">=8" } }, "node_modules/escodegen": { "version": "1.14.3", "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", "optional": true, "dependencies": { "esprima": "^4.0.1", "estraverse": "^4.2.0", "esutils": "^2.0.2", "optionator": "^0.8.1" }, "bin": { "escodegen": "bin/escodegen.js", "esgenerate": "bin/esgenerate.js" }, "engines": { "node": ">=4.0" }, "optionalDependencies": { "source-map": "~0.6.1" } }, "node_modules/escodegen/node_modules/estraverse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "optional": true, "engines": { "node": ">=4.0" } }, "node_modules/eslint-visitor-keys": { "version": "3.4.1", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", "optional": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/espree": { "version": "9.5.2", "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.2.tgz", "integrity": "sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==", "optional": true, "dependencies": { "acorn": "^8.8.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^3.4.1" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "optional": true, "bin": { "esparse": "bin/esparse.js", "esvalidate": "bin/esvalidate.js" }, "engines": { "node": ">=4" } }, "node_modules/estraverse": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "optional": true, "engines": { "node": ">=4.0" } }, "node_modules/esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "optional": true, "engines": { "node": ">=0.10.0" } }, "node_modules/etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", "engines": { "node": ">= 0.6" } }, "node_modules/event-target-shim": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", "engines": { "node": ">=6" } }, "node_modules/eventemitter3": { "version": "4.0.7", "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" }, "node_modules/events": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", "engines": { "node": ">=0.8.x" } }, "node_modules/express": { "version": "4.18.2", "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", "body-parser": "1.20.1", "content-disposition": "0.5.4", "content-type": "~1.0.4", "cookie": "0.5.0", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "finalhandler": "1.2.0", "fresh": "0.5.2", "http-errors": "2.0.0", "merge-descriptors": "1.0.1", "methods": "~1.1.2", "on-finished": "2.4.1", "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.7", "qs": "6.11.0", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "0.18.0", "serve-static": "1.15.0", "setprototypeof": "1.2.0", "statuses": "2.0.1", "type-is": "~1.6.18", "utils-merge": "1.0.1", "vary": "~1.1.2" }, "engines": { "node": ">= 0.10.0" } }, "node_modules/extend": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" }, "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "optional": true }, "node_modules/fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "optional": true }, "node_modules/fast-redact": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.1.2.tgz", "integrity": "sha512-+0em+Iya9fKGfEQGcd62Yv6onjBmmhV1uh86XVfOU8VwAe6kaFdQCWI9s0/Nnugx5Vd9tdbZ7e6gE2tR9dzXdw==", "engines": { "node": ">=6" } }, "node_modules/fast-text-encoding": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/fast-text-encoding/-/fast-text-encoding-1.0.6.tgz", "integrity": "sha512-VhXlQgj9ioXCqGstD37E/HBeqEGV/qOD/kmbVG8h5xKBYvM1L3lR1Zn4555cQ8GkYbJa8aJSipLPndE1k6zK2w==" }, "node_modules/faye-websocket": { "version": "0.11.4", "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", "dependencies": { "websocket-driver": ">=0.5.1" }, "engines": { "node": ">=0.8.0" } }, "node_modules/fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dependencies": { "to-regex-range": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/finalhandler": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "on-finished": "2.4.1", "parseurl": "~1.3.3", "statuses": "2.0.1", "unpipe": "~1.0.0" }, "engines": { "node": ">= 0.8" } }, "node_modules/firebase-admin": { "version": "11.8.0", "resolved": "https://registry.npmjs.org/firebase-admin/-/firebase-admin-11.8.0.tgz", "integrity": "sha512-RxO0wWDnuqVikXExhVjnhVaaXpziKCad4D1rOX5c1WJdk1jAu9hfE4rbrFKZQZgF1okZS04kgCBIFJro7xn8NQ==", "dependencies": { "@fastify/busboy": "^1.2.1", "@firebase/database-compat": "^0.3.4", "@firebase/database-types": "^0.10.4", "@types/node": ">=12.12.47", "jsonwebtoken": "^9.0.0", "jwks-rsa": "^3.0.1", "node-forge": "^1.3.1", "uuid": "^9.0.0" }, "engines": { "node": ">=14" }, "optionalDependencies": { "@google-cloud/firestore": "^6.5.0", "@google-cloud/storage": "^6.9.5" } }, "node_modules/follow-redirects": { "version": "1.15.2", "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", "funding": [ { "type": "individual", "url": "https://github.com/sponsors/RubenVerborgh" } ], "engines": { "node": ">=4.0" }, "peerDependenciesMeta": { "debug": { "optional": true } } }, "node_modules/form-data": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "mime-types": "^2.1.12" }, "engines": { "node": ">= 6" } }, "node_modules/forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", "engines": { "node": ">= 0.6" } }, "node_modules/fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "engines": { "node": ">= 0.6" } }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "optional": true }, "node_modules/fsevents": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", "dev": true, "hasInstallScript": true, "optional": true, "os": [ "darwin" ], "engines": { "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, "node_modules/function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, "node_modules/functional-red-black-tree": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", "optional": true }, "node_modules/gaxios": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/gaxios/-/gaxios-5.1.0.tgz", "integrity": "sha512-aezGIjb+/VfsJtIcHGcBSerNEDdfdHeMros+RbYbGpmonKWQCOVOes0LVZhn1lDtIgq55qq0HaxymIoae3Fl/A==", "dependencies": { "extend": "^3.0.2", "https-proxy-agent": "^5.0.0", "is-stream": "^2.0.0", "node-fetch": "^2.6.7" }, "engines": { "node": ">=12" } }, "node_modules/gcp-metadata": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-5.2.0.tgz", "integrity": "sha512-aFhhvvNycky2QyhG+dcfEdHBF0FRbYcf39s6WNHUDysKSrbJ5vuFbjydxBcmewtXeV248GP8dWT3ByPNxsyHCw==", "dependencies": { "gaxios": "^5.0.0", "json-bigint": "^1.0.0" }, "engines": { "node": ">=12" } }, "node_modules/get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "engines": { "node": "6.* || 8.* || >= 10.*" } }, "node_modules/get-intrinsic": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", "dependencies": { "function-bind": "^1.1.1", "has": "^1.0.3", "has-symbols": "^1.0.3" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/glob": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", "optional": true, "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^5.0.1", "once": "^1.3.0" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "dependencies": { "is-glob": "^4.0.1" }, "engines": { "node": ">= 6" } }, "node_modules/glob/node_modules/brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "optional": true, "dependencies": { "balanced-match": "^1.0.0" } }, "node_modules/glob/node_modules/minimatch": { "version": "5.1.6", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "optional": true, "dependencies": { "brace-expansion": "^2.0.1" }, "engines": { "node": ">=10" } }, "node_modules/google-auth-library": { "version": "8.7.0", "resolved": "https://registry.npmjs.org/google-auth-library/-/google-auth-library-8.7.0.tgz", "integrity": "sha512-1M0NG5VDIvJZEnstHbRdckLZESoJwguinwN8Dhae0j2ZKIQFIV63zxm6Fo6nM4xkgqUr2bbMtV5Dgo+Hy6oo0Q==", "dependencies": { "arrify": "^2.0.0", "base64-js": "^1.3.0", "ecdsa-sig-formatter": "^1.0.11", "fast-text-encoding": "^1.0.0", "gaxios": "^5.0.0", "gcp-metadata": "^5.0.0", "gtoken": "^6.1.0", "jws": "^4.0.0", "lru-cache": "^6.0.0" }, "engines": { "node": ">=12" } }, "node_modules/google-gax": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/google-gax/-/google-gax-3.6.0.tgz", "integrity": "sha512-2fyb61vWxUonHiArRNJQmE4tx5oY1ni8VPo08fzII409vDSCWG7apDX4qNOQ2GXXT82gLBn3d3P1Dydh7pWjyw==", "optional": true, "dependencies": { "@grpc/grpc-js": "~1.8.0", "@grpc/proto-loader": "^0.7.0", "@types/long": "^4.0.0", "@types/rimraf": "^3.0.2", "abort-controller": "^3.0.0", "duplexify": "^4.0.0", "fast-text-encoding": "^1.0.3", "google-auth-library": "^8.0.2", "is-stream-ended": "^0.1.4", "node-fetch": "^2.6.1", "object-hash": "^3.0.0", "proto3-json-serializer": "^1.0.0", "protobufjs": "7.2.3", "protobufjs-cli": "1.1.1", "retry-request": "^5.0.0" }, "bin": { "compileProtos": "build/tools/compileProtos.js", "minifyProtoJson": "build/tools/minify.js" }, "engines": { "node": ">=12" } }, "node_modules/google-p12-pem": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/google-p12-pem/-/google-p12-pem-4.0.1.tgz", "integrity": "sha512-WPkN4yGtz05WZ5EhtlxNDWPhC4JIic6G8ePitwUWy4l+XPVYec+a0j0Ts47PDtW59y3RwAhUd9/h9ZZ63px6RQ==", "dependencies": { "node-forge": "^1.3.1" }, "bin": { "gp12-pem": "build/src/bin/gp12-pem.js" }, "engines": { "node": ">=12.0.0" } }, "node_modules/googleapis": { "version": "117.0.0", "resolved": "https://registry.npmjs.org/googleapis/-/googleapis-117.0.0.tgz", "integrity": "sha512-F6l7uK5BpPuMoWZQJ07yPgd1o42R5ke1CbxfejPJtCffd9UyWdSvsr7Ah97u9co9Qk1HkNSoCX749rxQmpVj8g==", "dependencies": { "google-auth-library": "^8.0.2", "googleapis-common": "^6.0.0" }, "engines": { "node": ">=12.0.0" } }, "node_modules/googleapis-common": { "version": "6.0.4", "resolved": "https://registry.npmjs.org/googleapis-common/-/googleapis-common-6.0.4.tgz", "integrity": "sha512-m4ErxGE8unR1z0VajT6AYk3s6a9gIMM6EkDZfkPnES8joeOlEtFEJeF8IyZkb0tjPXkktUfYrE4b3Li1DNyOwA==", "dependencies": { "extend": "^3.0.2", "gaxios": "^5.0.1", "google-auth-library": "^8.0.2", "qs": "^6.7.0", "url-template": "^2.0.8", "uuid": "^9.0.0" }, "engines": { "node": ">=12.0.0" } }, "node_modules/graceful-fs": { "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "optional": true }, "node_modules/gtoken": { "version": "6.1.2", "resolved": "https://registry.npmjs.org/gtoken/-/gtoken-6.1.2.tgz", "integrity": "sha512-4ccGpzz7YAr7lxrT2neugmXQ3hP9ho2gcaityLVkiUecAiwiy60Ii8gRbZeOsXV19fYaRjgBSshs8kXw+NKCPQ==", "dependencies": { "gaxios": "^5.0.1", "google-p12-pem": "^4.0.0", "jws": "^4.0.0" }, "engines": { "node": ">=12.0.0" } }, "node_modules/has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dependencies": { "function-bind": "^1.1.1" }, "engines": { "node": ">= 0.4.0" } }, "node_modules/has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, "engines": { "node": ">=4" } }, "node_modules/has-symbols": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/http-errors": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", "statuses": "2.0.1", "toidentifier": "1.0.1" }, "engines": { "node": ">= 0.8" } }, "node_modules/http-parser-js": { "version": "0.5.8", "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" }, "node_modules/http-proxy": { "version": "1.18.1", "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", "dependencies": { "eventemitter3": "^4.0.0", "follow-redirects": "^1.0.0", "requires-port": "^1.0.0" }, "engines": { "node": ">=8.0.0" } }, "node_modules/http-proxy-agent": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", "optional": true, "dependencies": { "@tootallnate/once": "2", "agent-base": "6", "debug": "4" }, "engines": { "node": ">= 6" } }, "node_modules/http-proxy-agent/node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "optional": true, "dependencies": { "ms": "2.1.2" }, "engines": { "node": ">=6.0" }, "peerDependenciesMeta": { "supports-color": { "optional": true } } }, "node_modules/http-proxy-agent/node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "optional": true }, "node_modules/http-proxy-middleware": { "version": "3.0.0-beta.1", "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-3.0.0-beta.1.tgz", "integrity": "sha512-hdiTlVVoaxncf239csnEpG5ew2lRWnoNR1PMWOO6kYulSphlrfLs5JFZtFVH3R5EUWSZNMkeUqvkvfctuWaK8A==", "dependencies": { "@types/http-proxy": "^1.17.10", "debug": "^4.3.4", "http-proxy": "^1.18.1", "is-glob": "^4.0.1", "is-plain-obj": "^3.0.0", "micromatch": "^4.0.5" }, "engines": { "node": ">=12.0.0" } }, "node_modules/http-proxy-middleware/node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dependencies": { "ms": "2.1.2" }, "engines": { "node": ">=6.0" }, "peerDependenciesMeta": { "supports-color": { "optional": true } } }, "node_modules/http-proxy-middleware/node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/https-proxy-agent": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dependencies": { "agent-base": "6", "debug": "4" }, "engines": { "node": ">= 6" } }, "node_modules/https-proxy-agent/node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dependencies": { "ms": "2.1.2" }, "engines": { "node": ">=6.0" }, "peerDependenciesMeta": { "supports-color": { "optional": true } } }, "node_modules/https-proxy-agent/node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, "engines": { "node": ">=0.10.0" } }, "node_modules/ieee754": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ] }, "node_modules/ignore-by-default": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", "dev": true }, "node_modules/inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "optional": true, "dependencies": { "once": "^1.3.0", "wrappy": "1" } }, "node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "node_modules/ipaddr.js": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", "engines": { "node": ">= 0.10" } }, "node_modules/is-binary-path": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, "dependencies": { "binary-extensions": "^2.0.0" }, "engines": { "node": ">=8" } }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "engines": { "node": ">=0.10.0" } }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "devOptional": true, "engines": { "node": ">=8" } }, "node_modules/is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dependencies": { "is-extglob": "^2.1.1" }, "engines": { "node": ">=0.10.0" } }, "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "engines": { "node": ">=0.12.0" } }, "node_modules/is-plain-obj": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-stream-ended": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/is-stream-ended/-/is-stream-ended-0.1.4.tgz", "integrity": "sha512-xj0XPvmr7bQFTvirqnFr50o0hQIh6ZItDqloxt5aJrR4NQsYeSsyFQERYGCAzfindAcnKjINnwEEgLx4IqVzQw==", "optional": true }, "node_modules/jose": { "version": "4.14.4", "resolved": "https://registry.npmjs.org/jose/-/jose-4.14.4.tgz", "integrity": "sha512-j8GhLiKmUAh+dsFXlX1aJCbt5KMibuKb+d7j1JaOJG6s2UjX1PQlW+OKB/sD4a/5ZYF4RcmYmLSndOoU3Lt/3g==", "funding": { "url": "https://github.com/sponsors/panva" } }, "node_modules/js2xmlparser": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-4.0.2.tgz", "integrity": "sha512-6n4D8gLlLf1n5mNLQPRfViYzu9RATblzPEtm1SthMX1Pjao0r9YI9nw7ZIfRxQMERS87mcswrg+r/OYrPRX6jA==", "optional": true, "dependencies": { "xmlcreate": "^2.0.4" } }, "node_modules/jsdoc": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/jsdoc/-/jsdoc-4.0.2.tgz", "integrity": "sha512-e8cIg2z62InH7azBBi3EsSEqrKx+nUtAS5bBcYTSpZFA+vhNPyhv8PTFZ0WsjOPDj04/dOLlm08EDcQJDqaGQg==", "optional": true, "dependencies": { "@babel/parser": "^7.20.15", "@jsdoc/salty": "^0.2.1", "@types/markdown-it": "^12.2.3", "bluebird": "^3.7.2", "catharsis": "^0.9.0", "escape-string-regexp": "^2.0.0", "js2xmlparser": "^4.0.2", "klaw": "^3.0.0", "markdown-it": "^12.3.2", "markdown-it-anchor": "^8.4.1", "marked": "^4.0.10", "mkdirp": "^1.0.4", "requizzle": "^0.2.3", "strip-json-comments": "^3.1.0", "underscore": "~1.13.2" }, "bin": { "jsdoc": "jsdoc.js" }, "engines": { "node": ">=12.0.0" } }, "node_modules/json-bigint": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-1.0.0.tgz", "integrity": "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==", "dependencies": { "bignumber.js": "^9.0.0" } }, "node_modules/jsonwebtoken": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.0.tgz", "integrity": "sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==", "dependencies": { "jws": "^3.2.2", "lodash": "^4.17.21", "ms": "^2.1.1", "semver": "^7.3.8" }, "engines": { "node": ">=12", "npm": ">=6" } }, "node_modules/jsonwebtoken/node_modules/jwa": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", "dependencies": { "buffer-equal-constant-time": "1.0.1", "ecdsa-sig-formatter": "1.0.11", "safe-buffer": "^5.0.1" } }, "node_modules/jsonwebtoken/node_modules/jws": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", "dependencies": { "jwa": "^1.4.1", "safe-buffer": "^5.0.1" } }, "node_modules/jsonwebtoken/node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" }, "node_modules/jsonwebtoken/node_modules/semver": { "version": "7.5.1", "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", "dependencies": { "lru-cache": "^6.0.0" }, "bin": { "semver": "bin/semver.js" }, "engines": { "node": ">=10" } }, "node_modules/jwa": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.0.tgz", "integrity": "sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA==", "dependencies": { "buffer-equal-constant-time": "1.0.1", "ecdsa-sig-formatter": "1.0.11", "safe-buffer": "^5.0.1" } }, "node_modules/jwks-rsa": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/jwks-rsa/-/jwks-rsa-3.0.1.tgz", "integrity": "sha512-UUOZ0CVReK1QVU3rbi9bC7N5/le8ziUj0A2ef1Q0M7OPD2KvjEYizptqIxGIo6fSLYDkqBrazILS18tYuRc8gw==", "dependencies": { "@types/express": "^4.17.14", "@types/jsonwebtoken": "^9.0.0", "debug": "^4.3.4", "jose": "^4.10.4", "limiter": "^1.1.5", "lru-memoizer": "^2.1.4" }, "engines": { "node": ">=14" } }, "node_modules/jwks-rsa/node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dependencies": { "ms": "2.1.2" }, "engines": { "node": ">=6.0" }, "peerDependenciesMeta": { "supports-color": { "optional": true } } }, "node_modules/jwks-rsa/node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/jws": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/jws/-/jws-4.0.0.tgz", "integrity": "sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg==", "dependencies": { "jwa": "^2.0.0", "safe-buffer": "^5.0.1" } }, "node_modules/klaw": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/klaw/-/klaw-3.0.0.tgz", "integrity": "sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==", "optional": true, "dependencies": { "graceful-fs": "^4.1.9" } }, "node_modules/levn": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", "optional": true, "dependencies": { "prelude-ls": "~1.1.2", "type-check": "~0.3.2" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/limiter": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/limiter/-/limiter-1.1.5.tgz", "integrity": "sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==" }, "node_modules/linkify-it": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.3.tgz", "integrity": "sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==", "optional": true, "dependencies": { "uc.micro": "^1.0.1" } }, "node_modules/lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, "node_modules/lodash.camelcase": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", "optional": true }, "node_modules/lodash.clonedeep": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", "integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==" }, "node_modules/long": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==", "optional": true }, "node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dependencies": { "yallist": "^4.0.0" }, "engines": { "node": ">=10" } }, "node_modules/lru-memoizer": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/lru-memoizer/-/lru-memoizer-2.2.0.tgz", "integrity": "sha512-QfOZ6jNkxCcM/BkIPnFsqDhtrazLRsghi9mBwFAzol5GCvj4EkFT899Za3+QwikCg5sRX8JstioBDwOxEyzaNw==", "dependencies": { "lodash.clonedeep": "^4.5.0", "lru-cache": "~4.0.0" } }, "node_modules/lru-memoizer/node_modules/lru-cache": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.0.2.tgz", "integrity": "sha512-uQw9OqphAGiZhkuPlpFGmdTU2tEuhxTourM/19qGJrxBPHAr/f8BT1a0i/lOclESnGatdJG/UCkP9kZB/Lh1iw==", "dependencies": { "pseudomap": "^1.0.1", "yallist": "^2.0.0" } }, "node_modules/lru-memoizer/node_modules/yallist": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" }, "node_modules/make-error": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", "dev": true }, "node_modules/markdown-it": { "version": "12.3.2", "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.2.tgz", "integrity": "sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==", "optional": true, "dependencies": { "argparse": "^2.0.1", "entities": "~2.1.0", "linkify-it": "^3.0.1", "mdurl": "^1.0.1", "uc.micro": "^1.0.5" }, "bin": { "markdown-it": "bin/markdown-it.js" } }, "node_modules/markdown-it-anchor": { "version": "8.6.7", "resolved": "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-8.6.7.tgz", "integrity": "sha512-FlCHFwNnutLgVTflOYHPW2pPcl2AACqVzExlkGQNsi4CJgqOHN7YTgDd4LuhgN1BFO3TS0vLAruV1Td6dwWPJA==", "optional": true, "peerDependencies": { "@types/markdown-it": "*", "markdown-it": "*" } }, "node_modules/marked": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/marked/-/marked-4.3.0.tgz", "integrity": "sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==", "optional": true, "bin": { "marked": "bin/marked.js" }, "engines": { "node": ">= 12" } }, "node_modules/mdurl": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==", "optional": true }, "node_modules/media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", "engines": { "node": ">= 0.6" } }, "node_modules/merge-descriptors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" }, "node_modules/methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", "engines": { "node": ">= 0.6" } }, "node_modules/micromatch": { "version": "4.0.5", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dependencies": { "braces": "^3.0.2", "picomatch": "^2.3.1" }, "engines": { "node": ">=8.6" } }, "node_modules/mime": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "bin": { "mime": "cli.js" }, "engines": { "node": ">=4" } }, "node_modules/mime-db": { "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "engines": { "node": ">= 0.6" } }, "node_modules/mime-types": { "version": "2.1.35", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dependencies": { "mime-db": "1.52.0" }, "engines": { "node": ">= 0.6" } }, "node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "devOptional": true, "dependencies": { "brace-expansion": "^1.1.7" }, "engines": { "node": "*" } }, "node_modules/minimist": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "optional": true, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/mkdirp": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "optional": true, "bin": { "mkdirp": "bin/cmd.js" }, "engines": { "node": ">=10" } }, "node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/negotiator": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", "engines": { "node": ">= 0.6" } }, "node_modules/node-fetch": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", "dependencies": { "whatwg-url": "^5.0.0" }, "engines": { "node": "4.x || >=6.0.0" }, "peerDependencies": { "encoding": "^0.1.0" }, "peerDependenciesMeta": { "encoding": { "optional": true } } }, "node_modules/node-forge": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", "engines": { "node": ">= 6.13.0" } }, "node_modules/nodemon": { "version": "2.0.22", "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.22.tgz", "integrity": "sha512-B8YqaKMmyuCO7BowF1Z1/mkPqLk6cs/l63Ojtd6otKjMx47Dq1utxfRxcavH1I7VSaL8n5BUaoutadnsX3AAVQ==", "dev": true, "dependencies": { "chokidar": "^3.5.2", "debug": "^3.2.7", "ignore-by-default": "^1.0.1", "minimatch": "^3.1.2", "pstree.remy": "^1.1.8", "semver": "^5.7.1", "simple-update-notifier": "^1.0.7", "supports-color": "^5.5.0", "touch": "^3.1.0", "undefsafe": "^2.0.5" }, "bin": { "nodemon": "bin/nodemon.js" }, "engines": { "node": ">=8.10.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/nodemon" } }, "node_modules/nodemon/node_modules/debug": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "dependencies": { "ms": "^2.1.1" } }, "node_modules/nodemon/node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true }, "node_modules/nopt": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", "integrity": "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==", "dev": true, "dependencies": { "abbrev": "1" }, "bin": { "nopt": "bin/nopt.js" }, "engines": { "node": "*" } }, "node_modules/normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "engines": { "node": ">=0.10.0" } }, "node_modules/object-hash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", "optional": true, "engines": { "node": ">= 6" } }, "node_modules/object-inspect": { "version": "1.12.3", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/on-exit-leak-free": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-2.1.0.tgz", "integrity": "sha512-VuCaZZAjReZ3vUwgOB8LxAosIurDiAW0s13rI1YwmaP++jvcxP77AWoQvenZebpCA2m8WC1/EosPYPMjnRAp/w==" }, "node_modules/on-finished": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dependencies": { "ee-first": "1.1.1" }, "engines": { "node": ">= 0.8" } }, "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "optional": true, "dependencies": { "wrappy": "1" } }, "node_modules/openai": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/openai/-/openai-3.2.1.tgz", "integrity": "sha512-762C9BNlJPbjjlWZi4WYK9iM2tAVAv0uUp1UmI34vb0CN5T2mjB/qM6RYBmNKMh/dN9fC+bxqPwWJZUTWW052A==", "dependencies": { "axios": "^0.26.0", "form-data": "^4.0.0" } }, "node_modules/openai/node_modules/axios": { "version": "0.26.1", "resolved": "https://registry.npmjs.org/axios/-/axios-0.26.1.tgz", "integrity": "sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==", "dependencies": { "follow-redirects": "^1.14.8" } }, "node_modules/optionator": { "version": "0.8.3", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", "optional": true, "dependencies": { "deep-is": "~0.1.3", "fast-levenshtein": "~2.0.6", "levn": "~0.3.0", "prelude-ls": "~1.1.2", "type-check": "~0.3.2", "word-wrap": "~1.2.3" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "optional": true, "dependencies": { "yocto-queue": "^0.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", "engines": { "node": ">= 0.8" } }, "node_modules/path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "optional": true, "engines": { "node": ">=0.10.0" } }, "node_modules/path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" }, "node_modules/picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "engines": { "node": ">=8.6" }, "funding": { "url": "https://github.com/sponsors/jonschlinkert" } }, "node_modules/pino": { "version": "8.11.0", "resolved": "https://registry.npmjs.org/pino/-/pino-8.11.0.tgz", "integrity": "sha512-Z2eKSvlrl2rH8p5eveNUnTdd4AjJk8tAsLkHYZQKGHP4WTh2Gi1cOSOs3eWPqaj+niS3gj4UkoreoaWgF3ZWYg==", "dependencies": { "atomic-sleep": "^1.0.0", "fast-redact": "^3.1.1", "on-exit-leak-free": "^2.1.0", "pino-abstract-transport": "v1.0.0", "pino-std-serializers": "^6.0.0", "process-warning": "^2.0.0", "quick-format-unescaped": "^4.0.3", "real-require": "^0.2.0", "safe-stable-stringify": "^2.3.1", "sonic-boom": "^3.1.0", "thread-stream": "^2.0.0" }, "bin": { "pino": "bin.js" } }, "node_modules/pino-abstract-transport": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-1.0.0.tgz", "integrity": "sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==", "dependencies": { "readable-stream": "^4.0.0", "split2": "^4.0.0" } }, "node_modules/pino-http": { "version": "8.3.3", "resolved": "https://registry.npmjs.org/pino-http/-/pino-http-8.3.3.tgz", "integrity": "sha512-p4umsNIXXVu95HD2C8wie/vXH7db5iGRpc+yj1/ZQ3sRtTQLXNjoS6Be5+eI+rQbqCRxen/7k/KSN+qiZubGDw==", "dependencies": { "get-caller-file": "^2.0.5", "pino": "^8.0.0", "pino-std-serializers": "^6.0.0", "process-warning": "^2.0.0" } }, "node_modules/pino-std-serializers": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-6.1.0.tgz", "integrity": "sha512-KO0m2f1HkrPe9S0ldjx7za9BJjeHqBku5Ch8JyxETxT8dEFGz1PwgrHaOQupVYitpzbFSYm7nnljxD8dik2c+g==" }, "node_modules/prelude-ls": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", "optional": true, "engines": { "node": ">= 0.8.0" } }, "node_modules/process": { "version": "0.11.10", "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", "engines": { "node": ">= 0.6.0" } }, "node_modules/process-warning": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-2.2.0.tgz", "integrity": "sha512-/1WZ8+VQjR6avWOgHeEPd7SDQmFQ1B5mC1eRXsCm5TarlNmx/wCsa5GEaxGm05BORRtyG/Ex/3xq3TuRvq57qg==" }, "node_modules/proto3-json-serializer": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/proto3-json-serializer/-/proto3-json-serializer-1.1.1.tgz", "integrity": "sha512-AwAuY4g9nxx0u52DnSMkqqgyLHaW/XaPLtaAo3y/ZCfeaQB/g4YDH4kb8Wc/mWzWvu0YjOznVnfn373MVZZrgw==", "optional": true, "dependencies": { "protobufjs": "^7.0.0" }, "engines": { "node": ">=12.0.0" } }, "node_modules/protobufjs": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.3.tgz", "integrity": "sha512-TtpvOqwB5Gdz/PQmOjgsrGH1nHjAQVCN7JG4A6r1sXRWESL5rNMAiRcBQlCAdKxZcAbstExQePYG8xof/JVRgg==", "hasInstallScript": true, "optional": true, "dependencies": { "@protobufjs/aspromise": "^1.1.2", "@protobufjs/base64": "^1.1.2", "@protobufjs/codegen": "^2.0.4", "@protobufjs/eventemitter": "^1.1.0", "@protobufjs/fetch": "^1.1.0", "@protobufjs/float": "^1.0.2", "@protobufjs/inquire": "^1.1.0", "@protobufjs/path": "^1.1.2", "@protobufjs/pool": "^1.1.0", "@protobufjs/utf8": "^1.1.0", "@types/node": ">=13.7.0", "long": "^5.0.0" }, "engines": { "node": ">=12.0.0" } }, "node_modules/protobufjs-cli": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/protobufjs-cli/-/protobufjs-cli-1.1.1.tgz", "integrity": "sha512-VPWMgIcRNyQwWUv8OLPyGQ/0lQY/QTQAVN5fh+XzfDwsVw1FZ2L3DM/bcBf8WPiRz2tNpaov9lPZfNcmNo6LXA==", "optional": true, "dependencies": { "chalk": "^4.0.0", "escodegen": "^1.13.0", "espree": "^9.0.0", "estraverse": "^5.1.0", "glob": "^8.0.0", "jsdoc": "^4.0.0", "minimist": "^1.2.0", "semver": "^7.1.2", "tmp": "^0.2.1", "uglify-js": "^3.7.7" }, "bin": { "pbjs": "bin/pbjs", "pbts": "bin/pbts" }, "engines": { "node": ">=12.0.0" }, "peerDependencies": { "protobufjs": "^7.0.0" } }, "node_modules/protobufjs-cli/node_modules/semver": { "version": "7.5.1", "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", "optional": true, "dependencies": { "lru-cache": "^6.0.0" }, "bin": { "semver": "bin/semver.js" }, "engines": { "node": ">=10" } }, "node_modules/protobufjs/node_modules/long": { "version": "5.2.3", "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==", "optional": true }, "node_modules/proxy-addr": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dependencies": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" }, "engines": { "node": ">= 0.10" } }, "node_modules/proxy-from-env": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" }, "node_modules/pseudomap": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" }, "node_modules/pstree.remy": { "version": "1.1.8", "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", "dev": true }, "node_modules/qs": { "version": "6.11.0", "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", "dependencies": { "side-channel": "^1.0.4" }, "engines": { "node": ">=0.6" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/quick-format-unescaped": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz", "integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==" }, "node_modules/range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", "engines": { "node": ">= 0.6" } }, "node_modules/raw-body": { "version": "2.5.1", "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" }, "engines": { "node": ">= 0.8" } }, "node_modules/readable-stream": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.3.0.tgz", "integrity": "sha512-MuEnA0lbSi7JS8XM+WNJlWZkHAAdm7gETHdFK//Q/mChGyj2akEFtdLZh32jSdkWGbRwCW9pn6g3LWDdDeZnBQ==", "dependencies": { "abort-controller": "^3.0.0", "buffer": "^6.0.3", "events": "^3.3.0", "process": "^0.11.10" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, "node_modules/readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dev": true, "dependencies": { "picomatch": "^2.2.1" }, "engines": { "node": ">=8.10.0" } }, "node_modules/real-require": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/real-require/-/real-require-0.2.0.tgz", "integrity": "sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==", "engines": { "node": ">= 12.13.0" } }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "devOptional": true, "engines": { "node": ">=0.10.0" } }, "node_modules/requires-port": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" }, "node_modules/requizzle": { "version": "0.2.4", "resolved": "https://registry.npmjs.org/requizzle/-/requizzle-0.2.4.tgz", "integrity": "sha512-JRrFk1D4OQ4SqovXOgdav+K8EAhSB/LJZqCz8tbX0KObcdeM15Ss59ozWMBWmmINMagCwmqn4ZNryUGpBsl6Jw==", "optional": true, "dependencies": { "lodash": "^4.17.21" } }, "node_modules/retry": { "version": "0.13.1", "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", "optional": true, "engines": { "node": ">= 4" } }, "node_modules/retry-request": { "version": "5.0.2", "resolved": "https://registry.npmjs.org/retry-request/-/retry-request-5.0.2.tgz", "integrity": "sha512-wfI3pk7EE80lCIXprqh7ym48IHYdwmAAzESdbU8Q9l7pnRCk9LEhpbOTNKjz6FARLm/Bl5m+4F0ABxOkYUujSQ==", "optional": true, "dependencies": { "debug": "^4.1.1", "extend": "^3.0.2" }, "engines": { "node": ">=12" } }, "node_modules/retry-request/node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "optional": true, "dependencies": { "ms": "2.1.2" }, "engines": { "node": ">=6.0" }, "peerDependenciesMeta": { "supports-color": { "optional": true } } }, "node_modules/retry-request/node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "optional": true }, "node_modules/rimraf": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "optional": true, "dependencies": { "glob": "^7.1.3" }, "bin": { "rimraf": "bin.js" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/rimraf/node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "optional": true, "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "engines": { "node": "*" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/rxjs": { "version": "7.8.0", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.0.tgz", "integrity": "sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==", "dev": true, "dependencies": { "tslib": "^2.1.0" } }, "node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ] }, "node_modules/safe-stable-stringify": { "version": "2.4.3", "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==", "engines": { "node": ">=10" } }, "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "node_modules/semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true, "bin": { "semver": "bin/semver" } }, "node_modules/send": { "version": "0.18.0", "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", "dependencies": { "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", "http-errors": "2.0.0", "mime": "1.6.0", "ms": "2.1.3", "on-finished": "2.4.1", "range-parser": "~1.2.1", "statuses": "2.0.1" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/send/node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" }, "node_modules/serve-static": { "version": "1.15.0", "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.3", "send": "0.18.0" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" }, "node_modules/shell-quote": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/showdown": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/showdown/-/showdown-2.1.0.tgz", "integrity": "sha512-/6NVYu4U819R2pUIk79n67SYgJHWCce0a5xTP979WbNp0FL9MN1I1QK662IDU1b6JzKTvmhgI7T7JYIxBi3kMQ==", "dependencies": { "commander": "^9.0.0" }, "bin": { "showdown": "bin/showdown.js" }, "funding": { "type": "individual", "url": "https://www.paypal.me/tiviesantos" } }, "node_modules/side-channel": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", "dependencies": { "call-bind": "^1.0.0", "get-intrinsic": "^1.0.2", "object-inspect": "^1.9.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/simple-update-notifier": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz", "integrity": "sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg==", "dev": true, "dependencies": { "semver": "~7.0.0" }, "engines": { "node": ">=8.10.0" } }, "node_modules/simple-update-notifier/node_modules/semver": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/sonic-boom": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-3.3.0.tgz", "integrity": "sha512-LYxp34KlZ1a2Jb8ZQgFCK3niIHzibdwtwNUWKg0qQRzsDoJ3Gfgkf8KdBTFU3SkejDEIlWwnSnpVdOZIhFMl/g==", "dependencies": { "atomic-sleep": "^1.0.0" } }, "node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "devOptional": true, "engines": { "node": ">=0.10.0" } }, "node_modules/source-map-support": { "version": "0.5.21", "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" } }, "node_modules/spawn-command": { "version": "0.0.2-1", "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2-1.tgz", "integrity": "sha512-n98l9E2RMSJ9ON1AKisHzz7V42VDiBQGY6PB1BwRglz99wpVsSuGzQ+jOi6lFXBGVTCrRpltvjm+/XA+tpeJrg==", "dev": true }, "node_modules/split2": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", "engines": { "node": ">= 10.x" } }, "node_modules/statuses": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", "engines": { "node": ">= 0.8" } }, "node_modules/stream-events": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/stream-events/-/stream-events-1.0.5.tgz", "integrity": "sha512-E1GUzBSgvct8Jsb3v2X15pjzN1tYebtbLaMg+eBOUOAxgbLoSbT2NS91ckc5lJD1KfLjId+jXJRgo0qnV5Nerg==", "optional": true, "dependencies": { "stubs": "^3.0.0" } }, "node_modules/stream-shift": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", "optional": true }, "node_modules/string_decoder": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", "optional": true, "dependencies": { "safe-buffer": "~5.2.0" } }, "node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "devOptional": true, "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" }, "engines": { "node": ">=8" } }, "node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "devOptional": true, "dependencies": { "ansi-regex": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "optional": true, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/stubs": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/stubs/-/stubs-3.0.0.tgz", "integrity": "sha512-PdHt7hHUJKxvTCgbKX9C1V/ftOcjJQgz8BZwNfV5c4B6dcGqlpelTbJ999jBGZ2jYiPAwcX5dP6oBwVlBlUbxw==", "optional": true }, "node_modules/supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "dependencies": { "has-flag": "^3.0.0" }, "engines": { "node": ">=4" } }, "node_modules/teeny-request": { "version": "8.0.3", "resolved": "https://registry.npmjs.org/teeny-request/-/teeny-request-8.0.3.tgz", "integrity": "sha512-jJZpA5He2y52yUhA7pyAGZlgQpcB+xLjcN0eUFxr9c8hP/H7uOXbBNVo/O0C/xVfJLJs680jvkFgVJEEvk9+ww==", "optional": true, "dependencies": { "http-proxy-agent": "^5.0.0", "https-proxy-agent": "^5.0.0", "node-fetch": "^2.6.1", "stream-events": "^1.0.5", "uuid": "^9.0.0" }, "engines": { "node": ">=12" } }, "node_modules/text-decoding": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/text-decoding/-/text-decoding-1.0.0.tgz", "integrity": "sha512-/0TJD42KDnVwKmDK6jj3xP7E2MG7SHAOG4tyTgyUCRPdHwvkquYNLEQltmdMa3owq3TkddCVcTsoctJI8VQNKA==" }, "node_modules/thread-stream": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-2.3.0.tgz", "integrity": "sha512-kaDqm1DET9pp3NXwR8382WHbnpXnRkN9xGN9dQt3B2+dmXiW8X1SOwmFOxAErEQ47ObhZ96J6yhZNXuyCOL7KA==", "dependencies": { "real-require": "^0.2.0" } }, "node_modules/tmp": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", "optional": true, "dependencies": { "rimraf": "^3.0.0" }, "engines": { "node": ">=8.17.0" } }, "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dependencies": { "is-number": "^7.0.0" }, "engines": { "node": ">=8.0" } }, "node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", "engines": { "node": ">=0.6" } }, "node_modules/touch": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", "dev": true, "dependencies": { "nopt": "~1.0.10" }, "bin": { "nodetouch": "bin/nodetouch.js" } }, "node_modules/tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" }, "node_modules/tree-kill": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", "dev": true, "bin": { "tree-kill": "cli.js" } }, "node_modules/ts-node": { "version": "10.9.1", "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", "dev": true, "dependencies": { "@cspotcode/source-map-support": "^0.8.0", "@tsconfig/node10": "^1.0.7", "@tsconfig/node12": "^1.0.7", "@tsconfig/node14": "^1.0.0", "@tsconfig/node16": "^1.0.2", "acorn": "^8.4.1", "acorn-walk": "^8.1.1", "arg": "^4.1.0", "create-require": "^1.1.0", "diff": "^4.0.1", "make-error": "^1.1.1", "v8-compile-cache-lib": "^3.0.1", "yn": "3.1.1" }, "bin": { "ts-node": "dist/bin.js", "ts-node-cwd": "dist/bin-cwd.js", "ts-node-esm": "dist/bin-esm.js", "ts-node-script": "dist/bin-script.js", "ts-node-transpile-only": "dist/bin-transpile.js", "ts-script": "dist/bin-script-deprecated.js" }, "peerDependencies": { "@swc/core": ">=1.2.50", "@swc/wasm": ">=1.2.50", "@types/node": "*", "typescript": ">=2.7" }, "peerDependenciesMeta": { "@swc/core": { "optional": true }, "@swc/wasm": { "optional": true } } }, "node_modules/tslib": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" }, "node_modules/type-check": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", "optional": true, "dependencies": { "prelude-ls": "~1.1.2" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/type-is": { "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.24" }, "engines": { "node": ">= 0.6" } }, "node_modules/typescript": { "version": "5.0.4", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz", "integrity": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==", "dev": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" }, "engines": { "node": ">=12.20" } }, "node_modules/uc.micro": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==", "optional": true }, "node_modules/uglify-js": { "version": "3.17.4", "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", "optional": true, "bin": { "uglifyjs": "bin/uglifyjs" }, "engines": { "node": ">=0.8.0" } }, "node_modules/undefsafe": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", "dev": true }, "node_modules/underscore": { "version": "1.13.6", "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz", "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==", "optional": true }, "node_modules/unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", "engines": { "node": ">= 0.8" } }, "node_modules/url-template": { "version": "2.0.8", "resolved": "https://registry.npmjs.org/url-template/-/url-template-2.0.8.tgz", "integrity": "sha512-XdVKMF4SJ0nP/O7XIPB0JwAEuT9lDIYnNsK8yGVe43y0AWoKeJNdv3ZNWh7ksJ6KqQFjOO6ox/VEitLnaVNufw==" }, "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "optional": true }, "node_modules/utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", "engines": { "node": ">= 0.4.0" } }, "node_modules/uuid": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==", "bin": { "uuid": "dist/bin/uuid" } }, "node_modules/v8-compile-cache-lib": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", "dev": true }, "node_modules/vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", "engines": { "node": ">= 0.8" } }, "node_modules/webidl-conversions": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "node_modules/websocket-driver": { "version": "0.7.4", "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", "dependencies": { "http-parser-js": ">=0.5.1", "safe-buffer": ">=5.1.0", "websocket-extensions": ">=0.1.1" }, "engines": { "node": ">=0.8.0" } }, "node_modules/websocket-extensions": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", "engines": { "node": ">=0.8.0" } }, "node_modules/whatwg-url": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }, "node_modules/word-wrap": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", "optional": true, "engines": { "node": ">=0.10.0" } }, "node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "devOptional": true, "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "optional": true }, "node_modules/xmlcreate": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/xmlcreate/-/xmlcreate-2.0.4.tgz", "integrity": "sha512-nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg==", "optional": true }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "devOptional": true, "engines": { "node": ">=10" } }, "node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" }, "node_modules/yargs": { "version": "17.7.2", "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "devOptional": true, "dependencies": { "cliui": "^8.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", "string-width": "^4.2.3", "y18n": "^5.0.5", "yargs-parser": "^21.1.1" }, "engines": { "node": ">=12" } }, "node_modules/yargs-parser": { "version": "21.1.1", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", "devOptional": true, "engines": { "node": ">=12" } }, "node_modules/yn": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "optional": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/zlib": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/zlib/-/zlib-1.0.5.tgz", "integrity": "sha512-40fpE2II+Cd3k8HWTWONfeKE2jL+P42iWJ1zzps5W51qcTsOUKM5Q5m2PFb0CLxlmFAaUuUdJGc3OfZy947v0w==", "hasInstallScript": true, "engines": { "node": ">=0.2.0" } }, "node_modules/zod": { "version": "3.21.4", "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", "funding": { "url": "https://github.com/sponsors/colinhacks" } } } }
nonuttoday/oai
package-lock.json
JSON
unknown
158,829
{ "name": "oai-reverse-proxy", "version": "1.0.0", "description": "Reverse proxy for the OpenAI API", "scripts": { "build:watch": "esbuild src/server.ts --outfile=build/server.js --platform=node --target=es2020 --format=cjs --bundle --sourcemap --watch", "build": "tsc", "start:dev": "concurrently \"npm run build:watch\" \"npm run start:watch\"", "start:dev:tsc": "nodemon --watch src --exec ts-node src/server.ts", "start:watch": "nodemon --require source-map-support/register build/server.js", "start:replit": "tsc && node build/server.js", "start": "node build/server.js", "type-check": "tsc --noEmit" }, "engines": { "node": ">=18.0.0" }, "author": "", "license": "MIT", "dependencies": { "axios": "^1.3.5", "cors": "^2.8.5", "dotenv": "^16.0.3", "express": "^4.18.2", "firebase-admin": "^11.8.0", "googleapis": "^117.0.0", "http-proxy-middleware": "^3.0.0-beta.1", "openai": "^3.2.1", "pino": "^8.11.0", "pino-http": "^8.3.3", "showdown": "^2.1.0", "uuid": "^9.0.0", "zlib": "^1.0.5", "zod": "^3.21.4" }, "devDependencies": { "@types/cors": "^2.8.13", "@types/express": "^4.17.17", "@types/showdown": "^2.0.0", "@types/uuid": "^9.0.1", "concurrently": "^8.0.1", "esbuild": "^0.17.16", "esbuild-register": "^3.4.2", "nodemon": "^2.0.22", "source-map-support": "^0.5.21", "ts-node": "^10.9.1", "typescript": "^5.0.4" } }
nonuttoday/oai
package.json
JSON
unknown
1,487
services: - type: web name: oai-proxy env: docker repo: https://gitlab.com/khanon/oai-proxy.git region: oregon plan: free branch: main healthCheckPath: /health dockerfilePath: ./docker/render/Dockerfile
nonuttoday/oai
render.yaml
YAML
unknown
240
import { RequestHandler, Router } from "express"; import { config } from "../config"; import { usersRouter } from "./users"; const ADMIN_KEY = config.adminKey; const failedAttempts = new Map<string, number>(); const adminRouter = Router(); const auth: RequestHandler = (req, res, next) => { const token = req.headers.authorization?.slice("Bearer ".length); const attempts = failedAttempts.get(req.ip) ?? 0; if (attempts > 5) { req.log.warn( { ip: req.ip, token }, `Blocked request to admin API due to too many failed attempts` ); return res.status(401).json({ error: "Too many attempts" }); } if (token !== ADMIN_KEY) { const newAttempts = attempts + 1; failedAttempts.set(req.ip, newAttempts); req.log.warn( { ip: req.ip, attempts: newAttempts, token }, `Attempted admin API request with invalid token` ); return res.status(401).json({ error: "Unauthorized" }); } next(); }; adminRouter.use(auth); adminRouter.use("/users", usersRouter); export { adminRouter };
nonuttoday/oai
src/admin/routes.ts
TypeScript
unknown
1,039
import { Router } from "express"; import { z } from "zod"; import * as userStore from "../proxy/auth/user-store"; const usersRouter = Router(); const UserSchema = z .object({ ip: z.array(z.string()).optional(), type: z.enum(["normal", "special"]).optional(), promptCount: z.number().optional(), tokenCount: z.number().optional(), createdAt: z.number().optional(), lastUsedAt: z.number().optional(), disabledAt: z.number().optional(), disabledReason: z.string().optional(), }) .strict(); const UserSchemaWithToken = UserSchema.extend({ token: z.string(), }).strict(); /** * Returns a list of all users, sorted by prompt count and then last used time. * GET /admin/users */ usersRouter.get("/", (_req, res) => { const users = userStore.getUsers().sort((a, b) => { if (a.promptCount !== b.promptCount) { return b.promptCount - a.promptCount; } return (b.lastUsedAt ?? 0) - (a.lastUsedAt ?? 0); }); res.json({ users, count: users.length }); }); /** * Returns the user with the given token. * GET /admin/users/:token */ usersRouter.get("/:token", (req, res) => { const user = userStore.getUser(req.params.token); if (!user) { return res.status(404).json({ error: "Not found" }); } res.json(user); }); /** * Creates a new user. * Returns the created user's token. * POST /admin/users */ usersRouter.post("/", (_req, res) => { res.json({ token: userStore.createUser() }); }); /** * Updates the user with the given token, creating them if they don't exist. * Accepts a JSON body containing at least one field on the User type. * Returns the upserted user. * PUT /admin/users/:token */ usersRouter.put("/:token", (req, res) => { const result = UserSchema.safeParse(req.body); if (!result.success) { return res.status(400).json({ error: result.error }); } userStore.upsertUser({ ...result.data, token: req.params.token }); res.json(userStore.getUser(req.params.token)); }); /** * Bulk-upserts users given a list of User updates. * Accepts a JSON body with the field `users` containing an array of updates. * Returns an object containing the upserted users and the number of upserts. * PUT /admin/users */ usersRouter.put("/", (req, res) => { const result = z.array(UserSchemaWithToken).safeParse(req.body.users); if (!result.success) { return res.status(400).json({ error: result.error }); } const upserts = result.data.map((user) => userStore.upsertUser(user)); res.json({ upserted_users: upserts, count: upserts.length, }); }); /** * Disables the user with the given token. Optionally accepts a `disabledReason` * query parameter. * Returns the disabled user. * DELETE /admin/users/:token */ usersRouter.delete("/:token", (req, res) => { const user = userStore.getUser(req.params.token); const disabledReason = z .string() .optional() .safeParse(req.query.disabledReason); if (!disabledReason.success) { return res.status(400).json({ error: disabledReason.error }); } if (!user) { return res.status(404).json({ error: "Not found" }); } userStore.disableUser(req.params.token, disabledReason.data); res.json(userStore.getUser(req.params.token)); }); export { usersRouter };
nonuttoday/oai
src/admin/users.ts
TypeScript
unknown
3,252
import dotenv from "dotenv"; import type firebase from "firebase-admin"; dotenv.config(); const isDev = process.env.NODE_ENV !== "production"; type PromptLoggingBackend = "google_sheets"; export type DequeueMode = "fair" | "random" | "none"; type Config = { /** The port the proxy server will listen on. */ port: number; /** OpenAI API key, either a single key or a comma-delimeted list of keys. */ openaiKey?: string; /** * The proxy key to require for requests. Only applicable if the user * management mode is set to 'proxy_key', and required if so. **/ proxyKey?: string; /** * The admin key used to access the /admin API. Required if the user * management mode is set to 'user_token'. **/ adminKey?: string; /** * Which user management mode to use. * * `none`: No user management. Proxy is open to all requests with basic * abuse protection. * * `proxy_key`: A specific proxy key must be provided in the Authorization * header to use the proxy. * * `user_token`: Users must be created via the /admin REST API and provide * their personal access token in the Authorization header to use the proxy. * Configure this function and add users via the /admin API. */ gatekeeper: "none" | "proxy_key" | "user_token"; /** * Persistence layer to use for user management. * * `memory`: Users are stored in memory and are lost on restart (default) * * `firebase_rtdb`: Users are stored in a Firebase Realtime Database; requires * `firebaseKey` and `firebaseRtdbUrl` to be set. **/ gatekeeperStore: "memory" | "firebase_rtdb"; /** URL of the Firebase Realtime Database if using the Firebase RTDB store. */ firebaseRtdbUrl?: string; /** Base64-encoded Firebase service account key if using the Firebase RTDB store. */ firebaseKey?: string; /** * Maximum number of IPs per user, after which their token is disabled. * Users with the manually-assigned `special` role are exempt from this limit. * By default, this is 0, meaning that users are not IP-limited. */ maxIpsPerUser: number; /** Per-IP limit for requests per minute to OpenAI's completions endpoint. */ modelRateLimit: number; /** Max number of tokens to generate. Requests which specify a higher value will be rewritten to use this value. */ maxOutputTokens: number; /** Whether requests containing disallowed characters should be rejected. */ rejectDisallowed?: boolean; /** Message to return when rejecting requests. */ rejectMessage?: string; /** Pino log level. */ logLevel?: "debug" | "info" | "warn" | "error"; /** Whether prompts and responses should be logged to persistent storage. */ promptLogging?: boolean; /** Which prompt logging backend to use. */ promptLoggingBackend?: PromptLoggingBackend; /** Base64-encoded Google Sheets API key. */ googleSheetsKey?: string; /** Google Sheets spreadsheet ID. */ googleSheetsSpreadsheetId?: string; /** Whether to periodically check keys for usage and validity. */ checkKeys?: boolean; /** * How to display quota information on the info page. * * `none`: Hide quota information * * `partial`: Display quota information only as a percentage * * `full`: Display quota information as usage against total capacity */ quotaDisplayMode: "none" | "partial" | "full"; /** * Which request queueing strategy to use when keys are over their rate limit. * * `fair`: Requests are serviced in the order they were received (default) * * `random`: Requests are serviced randomly * * `none`: Requests are not queued and users have to retry manually */ queueMode: DequeueMode; /** * Comma-separated list of origins to block. Requests matching any of these * origins or referers will be rejected. * Partial matches are allowed, so `reddit` will match `www.reddit.com`. * Include only the hostname, not the protocol or path, e.g: * `reddit.com,9gag.com,gaiaonline.com` */ blockedOrigins?: string; /** * Message to return when rejecting requests from blocked origins. */ blockMessage?: string; /** * Desination URL to redirect blocked requests to, for non-JSON requests. */ blockRedirect?: string; }; // To change configs, create a file called .env in the root directory. // See .env.example for an example. export const config: Config = { port: getEnvWithDefault("PORT", 7860), openaiKey: getEnvWithDefault("OPENAI_KEY", ""), proxyKey: getEnvWithDefault("PROXY_KEY", ""), adminKey: getEnvWithDefault("ADMIN_KEY", ""), gatekeeper: getEnvWithDefault("GATEKEEPER", "none"), gatekeeperStore: getEnvWithDefault("GATEKEEPER_STORE", "memory"), maxIpsPerUser: getEnvWithDefault("MAX_IPS_PER_USER", 0), firebaseRtdbUrl: getEnvWithDefault("FIREBASE_RTDB_URL", undefined), firebaseKey: getEnvWithDefault("FIREBASE_KEY", undefined), modelRateLimit: getEnvWithDefault("MODEL_RATE_LIMIT", 4), maxOutputTokens: getEnvWithDefault("MAX_OUTPUT_TOKENS", 300), rejectDisallowed: getEnvWithDefault("REJECT_DISALLOWED", false), rejectMessage: getEnvWithDefault( "REJECT_MESSAGE", "This content violates /aicg/'s acceptable use policy." ), logLevel: getEnvWithDefault("LOG_LEVEL", "info"), checkKeys: getEnvWithDefault("CHECK_KEYS", !isDev), quotaDisplayMode: getEnvWithDefault("QUOTA_DISPLAY_MODE", "partial"), promptLogging: getEnvWithDefault("PROMPT_LOGGING", false), promptLoggingBackend: getEnvWithDefault("PROMPT_LOGGING_BACKEND", undefined), googleSheetsKey: getEnvWithDefault("GOOGLE_SHEETS_KEY", undefined), googleSheetsSpreadsheetId: getEnvWithDefault( "GOOGLE_SHEETS_SPREADSHEET_ID", undefined ), queueMode: getEnvWithDefault("QUEUE_MODE", "fair"), blockedOrigins: getEnvWithDefault("BLOCKED_ORIGINS", undefined), blockMessage: getEnvWithDefault( "BLOCK_MESSAGE", "You must be over the age of majority in your country to use this service." ), blockRedirect: getEnvWithDefault("BLOCK_REDIRECT", "https://www.9gag.com"), } as const; /** Prevents the server from starting if config state is invalid. */ export async function assertConfigIsValid() { // Ensure gatekeeper mode is valid. if (!["none", "proxy_key", "user_token"].includes(config.gatekeeper)) { throw new Error( `Invalid gatekeeper mode: ${config.gatekeeper}. Must be one of: none, proxy_key, user_token.` ); } // Don't allow `user_token` mode without `ADMIN_KEY`. if (config.gatekeeper === "user_token" && !config.adminKey) { throw new Error( "`user_token` gatekeeper mode requires an `ADMIN_KEY` to be set." ); } // Don't allow `proxy_key` mode without `PROXY_KEY`. if (config.gatekeeper === "proxy_key" && !config.proxyKey) { throw new Error( "`proxy_key` gatekeeper mode requires a `PROXY_KEY` to be set." ); } // Don't allow `PROXY_KEY` to be set for other modes. if (config.gatekeeper !== "proxy_key" && config.proxyKey) { throw new Error( "`PROXY_KEY` is set, but gatekeeper mode is not `proxy_key`. Make sure to set `GATEKEEPER=proxy_key`." ); } // Require appropriate firebase config if using firebase store. if ( config.gatekeeperStore === "firebase_rtdb" && (!config.firebaseKey || !config.firebaseRtdbUrl) ) { throw new Error( "Firebase RTDB store requires `FIREBASE_KEY` and `FIREBASE_RTDB_URL` to be set." ); } // Ensure forks which add new secret-like config keys don't unwittingly expose // them to users. for (const key of getKeys(config)) { const maybeSensitive = ["key", "credentials", "secret", "password"].some( (sensitive) => key.toLowerCase().includes(sensitive) ); const secured = new Set([...SENSITIVE_KEYS, ...OMITTED_KEYS]); if (maybeSensitive && !secured.has(key)) throw new Error( `Config key "${key}" may be sensitive but is exposed. Add it to SENSITIVE_KEYS or OMITTED_KEYS.` ); } await maybeInitializeFirebase(); } /** * Config keys that are masked on the info page, but not hidden as their * presence may be relevant to the user due to privacy implications. */ export const SENSITIVE_KEYS: (keyof Config)[] = ["googleSheetsSpreadsheetId"]; /** * Config keys that are not displayed on the info page at all, generally because * they are not relevant to the user or can be inferred from other config. */ export const OMITTED_KEYS: (keyof Config)[] = [ "port", "logLevel", "openaiKey", "proxyKey", "adminKey", "checkKeys", "quotaDisplayMode", "googleSheetsKey", "firebaseKey", "firebaseRtdbUrl", "gatekeeperStore", "maxIpsPerUser", "blockedOrigins", "blockMessage", "blockRedirect", ]; const getKeys = Object.keys as <T extends object>(obj: T) => Array<keyof T>; export function listConfig(): Record<string, string> { const result: Record<string, string> = {}; for (const key of getKeys(config)) { const value = config[key]?.toString() || ""; const shouldOmit = OMITTED_KEYS.includes(key) || value === "" || value === "undefined"; const shouldMask = SENSITIVE_KEYS.includes(key); if (shouldOmit) { continue; } if (value && shouldMask) { result[key] = "********"; } else { result[key] = value; } } return result; } function getEnvWithDefault<T>(name: string, defaultValue: T): T { const value = process.env[name]; if (value === undefined) { return defaultValue; } try { if (name === "OPENAI_KEY") { return value as unknown as T; } return JSON.parse(value) as T; } catch (err) { return value as unknown as T; } } let firebaseApp: firebase.app.App | undefined; async function maybeInitializeFirebase() { if (!config.gatekeeperStore.startsWith("firebase")) { return; } const firebase = await import("firebase-admin"); const firebaseKey = Buffer.from(config.firebaseKey!, "base64").toString(); const app = firebase.initializeApp({ credential: firebase.credential.cert(JSON.parse(firebaseKey)), databaseURL: config.firebaseRtdbUrl, }); await app.database().ref("connection-test").set(Date.now()); firebaseApp = app; } export function getFirebaseApp(): firebase.app.App { if (!firebaseApp) { throw new Error("Firebase app not initialized."); } return firebaseApp; }
nonuttoday/oai
src/config.ts
TypeScript
unknown
10,326
import fs from "fs"; import { Request, Response } from "express"; import showdown from "showdown"; import { config, listConfig } from "./config"; import { keyPool } from "./key-management"; import { getUniqueIps } from "./proxy/rate-limit"; import { getEstimatedWaitTime, getQueueLength } from "./proxy/queue"; const INFO_PAGE_TTL = 5000; let infoPageHtml: string | undefined; let infoPageLastUpdated = 0; export const handleInfoPage = (req: Request, res: Response) => { if (infoPageLastUpdated + INFO_PAGE_TTL > Date.now()) { res.send(infoPageHtml); return; } // Some load balancers/reverse proxies don't give us the right protocol in // the host header. Huggingface works this way, Cloudflare does not. const host = req.get("host"); const isHuggingface = host?.includes("hf.space"); const protocol = isHuggingface ? "https" : req.protocol; res.send(cacheInfoPageHtml(protocol + "://" + host)); }; function cacheInfoPageHtml(host: string) { const keys = keyPool.list(); let keyInfo: Record<string, any> = { all: keys.length }; if (keyPool.anyUnchecked()) { const uncheckedKeys = keys.filter((k) => !k.lastChecked); keyInfo = { ...keyInfo, active: keys.filter((k) => !k.isDisabled).length, status: `Still checking ${uncheckedKeys.length} keys...`, }; } else if (config.checkKeys) { const trialKeys = keys.filter((k) => k.isTrial); const turboKeys = keys.filter((k) => !k.isGpt4 && !k.isDisabled); const gpt4Keys = keys.filter((k) => k.isGpt4 && !k.isDisabled); const quota: Record<string, string> = { turbo: "", gpt4: "" }; const hasGpt4 = keys.some((k) => k.isGpt4); if (config.quotaDisplayMode === "full") { quota.turbo = `${keyPool.usageInUsd()} (${Math.round( keyPool.remainingQuota() * 100 )}% remaining)`; quota.gpt4 = `${keyPool.usageInUsd(true)} (${Math.round( keyPool.remainingQuota(true) * 100 )}% remaining)`; } else { quota.turbo = `${Math.round(keyPool.remainingQuota() * 100)}%`; quota.gpt4 = `${Math.round(keyPool.remainingQuota(true) * 100)}%`; } if (!hasGpt4) { delete quota.gpt4; } keyInfo = { ...keyInfo, trial: trialKeys.length, active: { turbo: turboKeys.length, ...(hasGpt4 ? { gpt4: gpt4Keys.length } : {}), }, ...(config.quotaDisplayMode !== "none" ? { quota: quota } : {}), }; } const info = { uptime: process.uptime(), endpoints: { kobold: host, openai: host + "/proxy/openai", }, proompts: keys.reduce((acc, k) => acc + k.promptCount, 0), ...(config.modelRateLimit ? { proomptersNow: getUniqueIps() } : {}), ...getQueueInformation(), keys: keyInfo, config: listConfig(), build: process.env.BUILD_INFO || "dev", }; const title = getServerTitle(); const headerHtml = buildInfoPageHeader(new showdown.Converter(), title); const pageBody = `<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="robots" content="noindex" /> <title>${title}</title> </head> <body style="font-family: sans-serif; background-color: #f0f0f0; padding: 1em;"> ${headerHtml} <hr /> <h2>Service Info</h2> <pre>${JSON.stringify(info, null, 2)}</pre> </body> </html>`; infoPageHtml = pageBody; infoPageLastUpdated = Date.now(); return pageBody; } /** * If the server operator provides a `greeting.md` file, it will be included in * the rendered info page. **/ function buildInfoPageHeader(converter: showdown.Converter, title: string) { const customGreeting = fs.existsSync("greeting.md") ? fs.readFileSync("greeting.md", "utf8") : null; // TODO: use some templating engine instead of this mess let infoBody = `<!-- Header for Showdown's parser, don't remove this line --> # ${title}`; if (config.promptLogging) { infoBody += `\n## Prompt logging is enabled! The server operator has enabled prompt logging. The prompts you send to this proxy and the AI responses you receive may be saved. Logs are anonymous and do not contain IP addresses or timestamps. [You can see the type of data logged here, along with the rest of the code.](https://gitgud.io/khanon/oai-reverse-proxy/-/blob/main/src/prompt-logging/index.ts). **If you are uncomfortable with this, don't send prompts to this proxy!**`; } if (config.queueMode !== "none") { const friendlyWaitTime = getQueueInformation().estimatedQueueTime; infoBody += `\n### Estimated Wait Time: ${friendlyWaitTime} Queueing is enabled. If the AI is busy, your prompt will processed when a slot frees up. **Enable Streaming in your preferred front-end to prevent timeouts while waiting in the queue.**`; } if (customGreeting) { infoBody += `\n## Server Greeting\n ${customGreeting}`; } return converter.makeHtml(infoBody); } /** Returns queue time in seconds, or minutes + seconds if over 60 seconds. */ function getQueueInformation() { if (config.queueMode === "none") { return {}; } const waitMs = getEstimatedWaitTime(); const waitTime = waitMs < 60000 ? `${Math.round(waitMs / 1000)}sec` : `${Math.round(waitMs / 60000)}min, ${Math.round( (waitMs % 60000) / 1000 )}sec`; return { proomptersInQueue: getQueueLength(), estimatedQueueTime: waitMs > 2000 ? waitTime : "no wait", }; } function getServerTitle() { // Use manually set title if available if (process.env.SERVER_TITLE) { return process.env.SERVER_TITLE; } // Huggingface if (process.env.SPACE_ID) { return `${process.env.SPACE_AUTHOR_NAME} / ${process.env.SPACE_TITLE}`; } // Render if (process.env.RENDER) { return `Render / ${process.env.RENDER_SERVICE_NAME}`; } return "OAI Reverse Proxy"; }
nonuttoday/oai
src/info-page.ts
TypeScript
unknown
5,797
import { KeyPool } from "./key-pool"; export type { Key, Model } from "./key-pool"; export const keyPool = new KeyPool(); export { SUPPORTED_MODELS } from "./key-pool";
nonuttoday/oai
src/key-management/index.ts
TypeScript
unknown
170
import axios, { AxiosError } from "axios"; import { Configuration, OpenAIApi } from "openai"; import { logger } from "../logger"; import type { Key, KeyPool } from "./key-pool"; const MIN_CHECK_INTERVAL = 3 * 1000; // 3 seconds const KEY_CHECK_PERIOD = 5 * 60 * 1000; // 5 minutes const GET_SUBSCRIPTION_URL = "https://api.openai.com/dashboard/billing/subscription"; const GET_USAGE_URL = "https://api.openai.com/dashboard/billing/usage"; type GetSubscriptionResponse = { plan: { title: string }; has_payment_method: boolean; soft_limit_usd: number; hard_limit_usd: number; system_hard_limit_usd: number; }; type GetUsageResponse = { total_usage: number; }; type OpenAIError = { error: { type: string; code: string; param: unknown; message: string }; }; type UpdateFn = typeof KeyPool.prototype.update; export class KeyChecker { private readonly keys: Key[]; private log = logger.child({ module: "key-checker" }); private timeout?: NodeJS.Timeout; private updateKey: UpdateFn; private lastCheck = 0; constructor(keys: Key[], updateKey: UpdateFn) { this.keys = keys; this.updateKey = updateKey; } public start() { this.log.info("Starting key checker..."); this.scheduleNextCheck(); } public stop() { if (this.timeout) { clearTimeout(this.timeout); } } /** * Schedules the next check. If there are still keys yet to be checked, it * will schedule a check immediately for the next unchecked key. Otherwise, * it will schedule a check in several minutes for the oldest key. **/ private scheduleNextCheck() { const enabledKeys = this.keys.filter((key) => !key.isDisabled); if (enabledKeys.length === 0) { this.log.warn("All keys are disabled. Key checker stopping."); return; } // Perform startup checks for any keys that haven't been checked yet. const uncheckedKeys = enabledKeys.filter((key) => !key.lastChecked); if (uncheckedKeys.length > 0) { // Check up to 12 keys at once to speed up startup. const keysToCheck = uncheckedKeys.slice(0, 12); this.log.info( { key: keysToCheck.map((key) => key.hash), remaining: uncheckedKeys.length - keysToCheck.length, }, "Scheduling initial checks for key batch." ); this.timeout = setTimeout(async () => { const promises = keysToCheck.map((key) => this.checkKey(key)); try { await Promise.all(promises); } catch (error) { this.log.error({ error }, "Error checking one or more keys."); } this.scheduleNextCheck(); }, 250); return; } // Schedule the next check for the oldest key. const oldestKey = enabledKeys.reduce((oldest, key) => key.lastChecked < oldest.lastChecked ? key : oldest ); // Don't check any individual key more than once every 5 minutes. // Also, don't check anything more often than once every 3 seconds. const nextCheck = Math.max( oldestKey.lastChecked + KEY_CHECK_PERIOD, this.lastCheck + MIN_CHECK_INTERVAL ); this.log.info( { key: oldestKey.hash, nextCheck: new Date(nextCheck) }, "Scheduling next check." ); const delay = nextCheck - Date.now(); this.timeout = setTimeout(() => this.checkKey(oldestKey), delay); } private async checkKey(key: Key) { // It's possible this key might have been disabled while we were waiting // for the next check. if (key.isDisabled) { this.log.warn({ key: key.hash }, "Skipping check for disabled key."); this.scheduleNextCheck(); return; } this.log.info({ key: key.hash }, "Checking key..."); let isInitialCheck = !key.lastChecked; try { // During the initial check we need to get the subscription first because // trials have different behavior. if (isInitialCheck) { const subscription = await this.getSubscription(key); this.updateKey(key.hash, { isTrial: !subscription.has_payment_method }); if (key.isTrial) { this.log.debug( { key: key.hash }, "Attempting generation on trial key." ); await this.assertCanGenerate(key); } const [provisionedModels, usage] = await Promise.all([ this.getProvisionedModels(key), this.getUsage(key), ]); const updates = { isGpt4: provisionedModels.gpt4, softLimit: subscription.soft_limit_usd, hardLimit: subscription.hard_limit_usd, systemHardLimit: subscription.system_hard_limit_usd, usage, }; this.updateKey(key.hash, updates); } else { // Don't check provisioned models after the initial check because it's // not likely to change. const [subscription, usage] = await Promise.all([ this.getSubscription(key), this.getUsage(key), ]); const updates = { softLimit: subscription.soft_limit_usd, hardLimit: subscription.hard_limit_usd, systemHardLimit: subscription.system_hard_limit_usd, usage, }; this.updateKey(key.hash, updates); } this.log.info( { key: key.hash, usage: key.usage, hardLimit: key.hardLimit }, "Key check complete." ); } catch (error) { // touch the key so we don't check it again for a while this.updateKey(key.hash, {}); this.handleAxiosError(key, error as AxiosError); } this.lastCheck = Date.now(); // Only enqueue the next check if this wasn't a startup check, since those // are batched together elsewhere. if (!isInitialCheck) { this.scheduleNextCheck(); } } private async getProvisionedModels( key: Key ): Promise<{ turbo: boolean; gpt4: boolean }> { const openai = new OpenAIApi(new Configuration({ apiKey: key.key })); const models = (await openai.listModels()!).data.data; const turbo = models.some(({ id }) => id.startsWith("gpt-3.5")); const gpt4 = models.some(({ id }) => id.startsWith("gpt-4")); return { turbo, gpt4 }; } private async getSubscription(key: Key) { const { data } = await axios.get<GetSubscriptionResponse>( GET_SUBSCRIPTION_URL, { headers: { Authorization: `Bearer ${key.key}` } } ); return data; } private async getUsage(key: Key) { const querystring = KeyChecker.getUsageQuerystring(key.isTrial); const url = `${GET_USAGE_URL}?${querystring}`; const { data } = await axios.get<GetUsageResponse>(url, { headers: { Authorization: `Bearer ${key.key}` }, }); return parseFloat((data.total_usage / 100).toFixed(2)); } private handleAxiosError(key: Key, error: AxiosError) { if (error.response && KeyChecker.errorIsOpenAiError(error)) { const { status, data } = error.response; if (status === 401) { this.log.warn( { key: key.hash, error: data }, "Key is invalid or revoked. Disabling key." ); this.updateKey(key.hash, { isDisabled: true }); } else if (status === 429 && data.error.type === "insufficient_quota") { this.log.warn( { key: key.hash, isTrial: key.isTrial, error: data }, "Key is out of quota. Disabling key." ); this.updateKey(key.hash, { isDisabled: true }); } else { this.log.error( { key: key.hash, status, error: data }, "Encountered API error while checking key." ); } return; } this.log.error( { key: key.hash, error }, "Network error while checking key; trying again later." ); } /** * Trial key usage reporting is inaccurate, so we need to run an actual * completion to test them for liveness. */ private async assertCanGenerate(key: Key): Promise<void> { const openai = new OpenAIApi(new Configuration({ apiKey: key.key })); // This will throw an AxiosError if the key is invalid or out of quota. await openai.createChatCompletion({ model: "gpt-3.5-turbo", messages: [{ role: "user", content: "Hello" }], max_tokens: 1, }); } static getUsageQuerystring(isTrial: boolean) { // For paid keys, the limit resets every month, so we can use the first day // of the current month. // For trial keys, the limit does not reset and we don't know when the key // was created, so we use 99 days ago because that's as far back as the API // will let us go. // End date needs to be set to the beginning of the next day so that we get // usage for the current day. const today = new Date(); const startDate = isTrial ? new Date(today.getTime() - 99 * 24 * 60 * 60 * 1000) : new Date(today.getFullYear(), today.getMonth(), 1); const endDate = new Date(today.getTime() + 24 * 60 * 60 * 1000); return `start_date=${startDate.toISOString().split("T")[0]}&end_date=${ endDate.toISOString().split("T")[0] }`; } static errorIsOpenAiError( error: AxiosError ): error is AxiosError<OpenAIError> { const data = error.response?.data as any; return data?.error?.type; } }
nonuttoday/oai
src/key-management/key-checker.ts
TypeScript
unknown
9,209
/* Manages OpenAI API keys. Tracks usage, disables expired keys, and provides round-robin access to keys. Keys are stored in the OPENAI_KEY environment variable as a comma-separated list of keys. */ import crypto from "crypto"; import fs from "fs"; import http from "http"; import path from "path"; import { config } from "../config"; import { logger } from "../logger"; import { KeyChecker } from "./key-checker"; // TODO: Made too many assumptions about OpenAI being the only provider and now // this doesn't really work for Anthropic. Create a Provider interface and // implement Pool, Checker, and Models for each provider. export type Model = OpenAIModel | AnthropicModel; export type OpenAIModel = "gpt-3.5-turbo" | "gpt-4"; export type AnthropicModel = "claude-v1" | "claude-instant-v1"; export const SUPPORTED_MODELS: readonly Model[] = [ "gpt-3.5-turbo", "gpt-4", "claude-v1", "claude-instant-v1", ] as const; export type Key = { /** The OpenAI API key itself. */ key: string; /** Whether this is a free trial key. These are prioritized over paid keys if they can fulfill the request. */ isTrial: boolean; /** Whether this key has been provisioned for GPT-4. */ isGpt4: boolean; /** Whether this key is currently disabled. We set this if we get a 429 or 401 response from OpenAI. */ isDisabled: boolean; /** Threshold at which a warning email will be sent by OpenAI. */ softLimit: number; /** Threshold at which the key will be disabled because it has reached the user-defined limit. */ hardLimit: number; /** The maximum quota allocated to this key by OpenAI. */ systemHardLimit: number; /** The current usage of this key. */ usage: number; /** The number of prompts that have been sent with this key. */ promptCount: number; /** The time at which this key was last used. */ lastUsed: number; /** The time at which this key was last checked. */ lastChecked: number; /** Key hash for displaying usage in the dashboard. */ hash: string; /** The time at which this key was last rate limited. */ rateLimitedAt: number; /** * Last known X-RateLimit-Requests-Reset header from OpenAI, converted to a * number. * Formatted as a `\d+(m|s)` string denoting the time until the limit resets. * Specifically, it seems to indicate the time until the key's quota will be * fully restored; the key may be usable before this time as the limit is a * rolling window. * * Requests which return a 429 do not count against the quota. * * Requests which fail for other reasons (e.g. 401) count against the quota. */ rateLimitRequestsReset: number; /** * Last known X-RateLimit-Tokens-Reset header from OpenAI, converted to a * number. * Appears to follow the same format as `rateLimitRequestsReset`. * * Requests which fail do not count against the quota as they do not consume * tokens. */ rateLimitTokensReset: number; }; export type KeyUpdate = Omit< Partial<Key>, "key" | "hash" | "lastUsed" | "lastChecked" | "promptCount" >; export class KeyPool { private keys: Key[] = []; private checker?: KeyChecker; private log = logger.child({ module: "key-pool" }); constructor() { const keyString = config.openaiKey; if (!keyString?.trim()) { throw new Error("OPENAI_KEY environment variable is not set"); } let bareKeys: string[]; bareKeys = keyString.split(",").map((k) => k.trim()); bareKeys = [...new Set(bareKeys)]; for (const k of bareKeys) { const newKey = { key: k, isGpt4: false, isTrial: false, isDisabled: false, softLimit: 0, hardLimit: 0, systemHardLimit: 0, usage: 0, lastUsed: 0, lastChecked: 0, promptCount: 0, hash: crypto.createHash("sha256").update(k).digest("hex").slice(0, 8), rateLimitedAt: 0, rateLimitRequestsReset: 0, rateLimitTokensReset: 0, }; this.keys.push(newKey); } this.log.info({ keyCount: this.keys.length }, "Loaded keys"); } public init() { if (config.checkKeys) { this.checker = new KeyChecker(this.keys, this.update.bind(this)); this.checker.start(); } } /** * Returns a list of all keys, with the key field removed. * Don't mutate returned keys, use a KeyPool method instead. **/ public list() { return this.keys.map((key) => { return Object.freeze({ ...key, key: undefined, }); }); } public get(model: Model) { const needGpt4 = model.startsWith("gpt-4"); const availableKeys = this.keys.filter( (key) => !key.isDisabled && (!needGpt4 || key.isGpt4) ); if (availableKeys.length === 0) { let message = "No keys available. Please add more keys."; if (needGpt4) { message = "No GPT-4 keys available. Please add more keys or select a non-GPT-4 model."; } throw new Error(message); } // Select a key, from highest priority to lowest priority: // 1. Keys which are not rate limited // a. We can assume any rate limits over a minute ago are expired // b. If all keys were rate limited in the last minute, select the // least recently rate limited key // 2. Keys which are trials // 3. Keys which have not been used in the longest time const now = Date.now(); const rateLimitThreshold = 60 * 1000; const keysByPriority = availableKeys.sort((a, b) => { const aRateLimited = now - a.rateLimitedAt < rateLimitThreshold; const bRateLimited = now - b.rateLimitedAt < rateLimitThreshold; if (aRateLimited && !bRateLimited) return 1; if (!aRateLimited && bRateLimited) return -1; if (aRateLimited && bRateLimited) { return a.rateLimitedAt - b.rateLimitedAt; } if (a.isTrial && !b.isTrial) return -1; if (!a.isTrial && b.isTrial) return 1; return a.lastUsed - b.lastUsed; }); const selectedKey = keysByPriority[0]; selectedKey.lastUsed = Date.now(); // When a key is selected, we rate-limit it for a brief period of time to // prevent the queue processor from immediately flooding it with requests // while the initial request is still being processed (which is when we will // get new rate limit headers). // Instead, we will let a request through every second until the key // becomes fully saturated and locked out again. selectedKey.rateLimitedAt = Date.now(); selectedKey.rateLimitRequestsReset = 1000; return { ...selectedKey }; } /** Called by the key checker to update key information. */ public update(keyHash: string, update: KeyUpdate) { const keyFromPool = this.keys.find((k) => k.hash === keyHash)!; Object.assign(keyFromPool, { ...update, lastChecked: Date.now() }); // this.writeKeyStatus(); } public disable(key: Key) { const keyFromPool = this.keys.find((k) => k.key === key.key)!; if (keyFromPool.isDisabled) return; keyFromPool.isDisabled = true; // If it's disabled just set the usage to the hard limit so it doesn't // mess with the aggregate usage. keyFromPool.usage = keyFromPool.hardLimit; this.log.warn({ key: key.hash }, "Key disabled"); } public available() { return this.keys.filter((k) => !k.isDisabled).length; } public anyUnchecked() { return config.checkKeys && this.keys.some((key) => !key.lastChecked); } /** * Given a model, returns the period until a key will be available to service * the request, or returns 0 if a key is ready immediately. */ public getLockoutPeriod(model: Model = "gpt-4"): number { const needGpt4 = model.startsWith("gpt-4"); const activeKeys = this.keys.filter( (key) => !key.isDisabled && (!needGpt4 || key.isGpt4) ); if (activeKeys.length === 0) { // If there are no active keys for this model we can't fulfill requests. // We'll return 0 to let the request through and return an error, // otherwise the request will be stuck in the queue forever. return 0; } // A key is rate-limited if its `rateLimitedAt` plus the greater of its // `rateLimitRequestsReset` and `rateLimitTokensReset` is after the // current time. // If there are any keys that are not rate-limited, we can fulfill requests. const now = Date.now(); const rateLimitedKeys = activeKeys.filter((key) => { const resetTime = Math.max( key.rateLimitRequestsReset, key.rateLimitTokensReset ); return now < key.rateLimitedAt + resetTime; }).length; const anyNotRateLimited = rateLimitedKeys < activeKeys.length; if (anyNotRateLimited) { return 0; } // If all keys are rate-limited, return the time until the first key is // ready. const timeUntilFirstReady = Math.min( ...activeKeys.map((key) => { const resetTime = Math.max( key.rateLimitRequestsReset, key.rateLimitTokensReset ); return key.rateLimitedAt + resetTime - now; }) ); return timeUntilFirstReady; } public markRateLimited(keyHash: string) { this.log.warn({ key: keyHash }, "Key rate limited"); const key = this.keys.find((k) => k.hash === keyHash)!; key.rateLimitedAt = Date.now(); } public incrementPrompt(keyHash?: string) { if (!keyHash) return; const key = this.keys.find((k) => k.hash === keyHash)!; key.promptCount++; } public updateRateLimits(keyHash: string, headers: http.IncomingHttpHeaders) { const key = this.keys.find((k) => k.hash === keyHash)!; const requestsReset = headers["x-ratelimit-reset-requests"]; const tokensReset = headers["x-ratelimit-reset-tokens"]; // Sometimes OpenAI only sends one of the two rate limit headers, it's // unclear why. if (requestsReset && typeof requestsReset === "string") { this.log.info( { key: key.hash, requestsReset }, `Updating rate limit requests reset time` ); key.rateLimitRequestsReset = getResetDurationMillis(requestsReset); } if (tokensReset && typeof tokensReset === "string") { this.log.info( { key: key.hash, tokensReset }, `Updating rate limit tokens reset time` ); key.rateLimitTokensReset = getResetDurationMillis(tokensReset); } if (!requestsReset && !tokensReset) { this.log.warn( { key: key.hash }, `No rate limit headers in OpenAI response; skipping update` ); return; } } /** Returns the remaining aggregate quota for all keys as a percentage. */ public remainingQuota(gpt4 = false) { const keys = this.keys.filter((k) => k.isGpt4 === gpt4); if (keys.length === 0) return 0; const totalUsage = keys.reduce((acc, key) => { // Keys can slightly exceed their quota return acc + Math.min(key.usage, key.hardLimit); }, 0); const totalLimit = keys.reduce((acc, { hardLimit }) => acc + hardLimit, 0); return 1 - totalUsage / totalLimit; } /** Returns used and available usage in USD. */ public usageInUsd(gpt4 = false) { const keys = this.keys.filter((k) => k.isGpt4 === gpt4); if (keys.length === 0) return "???"; const totalHardLimit = keys.reduce( (acc, { hardLimit }) => acc + hardLimit, 0 ); const totalUsage = keys.reduce((acc, key) => { // Keys can slightly exceed their quota return acc + Math.min(key.usage, key.hardLimit); }, 0); return `$${totalUsage.toFixed(2)} / $${totalHardLimit.toFixed(2)}`; } /** Writes key status to disk. */ // public writeKeyStatus() { // const keys = this.keys.map((key) => ({ // key: key.key, // isGpt4: key.isGpt4, // usage: key.usage, // hardLimit: key.hardLimit, // isDisabled: key.isDisabled, // })); // fs.writeFileSync( // path.join(__dirname, "..", "keys.json"), // JSON.stringify(keys, null, 2) // ); // } } /** * Converts reset string ("21.0032s" or "21ms") to a number of milliseconds. * Result is clamped to 10s even though the API returns up to 60s, because the * API returns the time until the entire quota is reset, even if a key may be * able to fulfill requests before then due to partial resets. **/ function getResetDurationMillis(resetDuration?: string): number { const match = resetDuration?.match(/(\d+(\.\d+)?)(s|ms)/); if (match) { const [, time, , unit] = match; const value = parseFloat(time); const result = unit === "s" ? value * 1000 : value; return Math.min(result, 10000); } return 0; }
nonuttoday/oai
src/key-management/key-pool.ts
TypeScript
unknown
12,647
import pino from "pino"; import { config } from "./config"; export const logger = pino({ level: config.logLevel, });
nonuttoday/oai
src/logger.ts
TypeScript
unknown
120
export * as sheets from "./sheets";
nonuttoday/oai
src/prompt-logging/backends/index.ts
TypeScript
unknown
36
/* Google Sheets backend for prompt logger. Upon every flush, this backend writes the batch to a Sheets spreadsheet. If the sheet becomes too large, it will create a new sheet and continue writing there. This is essentially a really shitty ORM for Sheets. Absolutely no concurrency support because it relies on local state to match up with the remote state. */ import { google, sheets_v4 } from "googleapis"; import type { CredentialBody } from "google-auth-library"; import type { GaxiosResponse } from "googleapis-common"; import { config } from "../../config"; import { logger } from "../../logger"; import { PromptLogEntry } from ".."; // There is always a sheet called __index__ which contains a list of all the // other sheets. We use this rather than iterating over all the sheets in case // the user needs to manually work with the spreadsheet. // If no __index__ sheet exists, we will assume that the spreadsheet is empty // and create one. type IndexSheetModel = { /** * Stored in cell B2. Set on startup; if it changes, we assume that another * instance of the proxy is writing to the spreadsheet and stop. */ lockId: string; /** * Data starts at row 4. Row 1-3 are headers */ rows: { logSheetName: string; createdAt: string; rowCount: number }[]; }; type LogSheetModel = { sheetName: string; rows: { model: string; endpoint: string; promptRaw: string; promptFlattened: string; response: string; }[]; }; const MAX_ROWS_PER_SHEET = 2000; const log = logger.child({ module: "sheets" }); let sheetsClient: sheets_v4.Sheets | null = null; /** Called when log backend aborts to tell the log queue to stop. */ let stopCallback: (() => void) | null = null; /** Lock/synchronization ID for this session. */ let lockId = Math.random().toString(36).substring(2, 15); /** In-memory cache of the index sheet. */ let indexSheet: IndexSheetModel | null = null; /** In-memory cache of the active log sheet. */ let activeLogSheet: LogSheetModel | null = null; /** * Loads the __index__ sheet into memory. By default, asserts that the lock ID * has not changed since the start of the session. */ const loadIndexSheet = async (assertLockId = true) => { const client = sheetsClient!; const spreadsheetId = config.googleSheetsSpreadsheetId!; log.info({ assertLockId }, "Loading __index__ sheet."); const res = await client.spreadsheets.values.get({ spreadsheetId: spreadsheetId, range: "__index__!A1:D", majorDimension: "ROWS", }); const data = assertData(res); if (!data.values || data.values[2][0] !== "logSheetName") { log.error({ values: data.values }, "Unexpected format for __index__ sheet"); throw new Error("Unexpected format for __index__ sheet"); } if (assertLockId) { const lockIdCell = data.values[1][1]; if (lockIdCell !== lockId) { log.error( { receivedLock: lockIdCell, expectedLock: lockId }, "Another instance of the proxy is writing to the spreadsheet; stopping." ); stop(); throw new Error(`Lock ID assertion failed`); } } const rows = data.values.slice(3).map((row) => { return { logSheetName: row[0], createdAt: row[1], rowCount: row[2], }; }); indexSheet = { lockId, rows }; }; /** Creates empty __index__ sheet for a new spreadsheet. */ const createIndexSheet = async () => { const client = sheetsClient!; const spreadsheetId = config.googleSheetsSpreadsheetId!; log.info("Creating empty __index__ sheet."); const res = await client.spreadsheets.batchUpdate({ spreadsheetId: spreadsheetId, requestBody: { requests: [ { addSheet: { properties: { title: "__index__", gridProperties: { rowCount: 1, columnCount: 3 }, }, }, }, ], }, }); assertData(res); indexSheet = { lockId, rows: [] }; await writeIndexSheet(); }; /** Writes contents of in-memory indexSheet to the remote __index__ sheet. */ const writeIndexSheet = async () => { const client = sheetsClient!; const spreadsheetId = config.googleSheetsSpreadsheetId!; const headerRows = [ ["Don't edit this sheet while the server is running.", "", ""], ["Lock ID", lockId, ""], ["logSheetName", "createdAt", "rowCount"], ]; const contentRows = indexSheet!.rows.map((row) => { return [row.logSheetName, row.createdAt, row.rowCount]; }); log.info("Persisting __index__ sheet."); await client.spreadsheets.values.batchUpdate({ spreadsheetId: spreadsheetId, requestBody: { valueInputOption: "RAW", data: [ { range: "__index__!A1:D", values: [...headerRows, ...contentRows] }, ], }, }); }; /** Creates a new log sheet, adds it to the index, and sets it as active. */ const createLogSheet = async () => { const client = sheetsClient!; const spreadsheetId = config.googleSheetsSpreadsheetId!; // Sheet name format is Log_YYYYMMDD_HHMMSS const sheetName = `Log_${new Date() .toISOString() // YYYY-MM-DDTHH:MM:SS.sssZ -> YYYYMMDD_HHMMSS .replace(/[-:.]/g, "") .replace(/T/, "_") .substring(0, 15)}`; log.info({ sheetName }, "Creating new log sheet."); const res = await client.spreadsheets.batchUpdate({ spreadsheetId: spreadsheetId, requestBody: { requests: [ { addSheet: { properties: { title: sheetName, gridProperties: { rowCount: MAX_ROWS_PER_SHEET, columnCount: 5 }, }, }, }, ], }, }); assertData(res); // Increase row/column size and wrap text for readability. const sheetId = res.data.replies![0].addSheet!.properties!.sheetId; await client.spreadsheets.batchUpdate({ spreadsheetId: spreadsheetId, requestBody: { requests: [ { repeatCell: { range: { sheetId }, cell: { userEnteredFormat: { wrapStrategy: "WRAP", verticalAlignment: "TOP", }, }, fields: "*", }, }, { updateDimensionProperties: { range: { sheetId, dimension: "COLUMNS", startIndex: 3, endIndex: 5, }, properties: { pixelSize: 500 }, fields: "pixelSize", }, }, { updateDimensionProperties: { range: { sheetId, dimension: "ROWS", startIndex: 1, }, properties: { pixelSize: 200 }, fields: "pixelSize", }, }, ], }, }); await client.spreadsheets.values.batchUpdate({ spreadsheetId: spreadsheetId, requestBody: { valueInputOption: "RAW", data: [ { range: `${sheetName}!A1:E`, values: [ ["model", "endpoint", "prompt json", "prompt string", "response"], ], }, ], }, }); indexSheet!.rows.push({ logSheetName: sheetName, createdAt: new Date().toISOString(), rowCount: 0, }); await writeIndexSheet(); activeLogSheet = { sheetName, rows: [] }; }; export const appendBatch = async (batch: PromptLogEntry[]) => { if (!activeLogSheet) { // Create a new log sheet if we don't have one yet. await createLogSheet(); } else { // Check lock to ensure we're the only instance writing to the spreadsheet. await loadIndexSheet(true); } const client = sheetsClient!; const spreadsheetId = config.googleSheetsSpreadsheetId!; const sheetName = activeLogSheet!.sheetName; const newRows = batch.map((entry) => { return [ entry.model, entry.endpoint, entry.promptRaw, entry.promptFlattened, entry.response, ]; }); log.info({ sheetName, rowCount: newRows.length }, "Appending log batch."); const data = await client.spreadsheets.values.append({ spreadsheetId: spreadsheetId, range: `${sheetName}!A1:D`, valueInputOption: "RAW", requestBody: { values: newRows, majorDimension: "ROWS" }, }); assertData(data); if (data.data.updates && data.data.updates.updatedRows) { const newRowCount = data.data.updates.updatedRows; log.info({ sheetName, rowCount: newRowCount }, "Successfully appended."); activeLogSheet!.rows = activeLogSheet!.rows.concat( newRows.map((row) => ({ model: row[0], endpoint: row[1], promptRaw: row[2], promptFlattened: row[3], response: row[4], })) ); } else { // We didn't receive an error but we didn't get any updates either. // We may need to create a new sheet and throw to make the queue retry the // batch. log.warn( { sheetName, rowCount: newRows.length }, "No updates received from append. Creating new sheet and retrying." ); await createLogSheet(); throw new Error("No updates received from append."); } await finalizeBatch(); }; const finalizeBatch = async () => { const sheetName = activeLogSheet!.sheetName; const rowCount = activeLogSheet!.rows.length; const indexRow = indexSheet!.rows.find( ({ logSheetName }) => logSheetName === sheetName )!; indexRow.rowCount = rowCount; if (rowCount >= MAX_ROWS_PER_SHEET) { await createLogSheet(); // Also updates index sheet } else { await writeIndexSheet(); } log.info({ sheetName, rowCount }, "Batch finalized."); }; type LoadLogSheetArgs = { sheetName: string; /** The starting row to load. If omitted, loads all rows (expensive). */ fromRow?: number; }; /** Not currently used. */ export const loadLogSheet = async ({ sheetName, fromRow = 2, // omit header row }: LoadLogSheetArgs) => { const client = sheetsClient!; const spreadsheetId = config.googleSheetsSpreadsheetId!; const range = `${sheetName}!A${fromRow}:E`; const res = await client.spreadsheets.values.get({ spreadsheetId: spreadsheetId, range, }); const data = assertData(res); const values = data.values || []; const rows = values.slice(1).map((row) => { return { model: row[0], endpoint: row[1], promptRaw: row[2], promptFlattened: row[3], response: row[4], }; }); activeLogSheet = { sheetName, rows }; }; export const init = async (onStop: () => void) => { if (sheetsClient) { return; } if (!config.googleSheetsKey || !config.googleSheetsSpreadsheetId) { throw new Error( "Missing required Google Sheets config. Refer to documentation for setup instructions." ); } log.info("Initializing Google Sheets backend."); const encodedCreds = config.googleSheetsKey; // encodedCreds is a base64-encoded JSON key from the GCP console. const creds: CredentialBody = JSON.parse( Buffer.from(encodedCreds, "base64").toString("utf8").trim() ); const auth = new google.auth.GoogleAuth({ scopes: ["https://www.googleapis.com/auth/spreadsheets"], credentials: creds, }); sheetsClient = google.sheets({ version: "v4", auth }); stopCallback = onStop; const sheetId = config.googleSheetsSpreadsheetId; const res = await sheetsClient.spreadsheets.get({ spreadsheetId: sheetId, }); if (!res.data) { const { status, statusText, headers } = res; log.error( { res: { status, statusText, headers }, creds: { client_email: creds.client_email?.slice(0, 5) + "********", private_key: creds.private_key?.slice(0, 5) + "********", }, sheetId: config.googleSheetsSpreadsheetId, }, "Could not connect to Google Sheets." ); stop(); throw new Error("Could not connect to Google Sheets."); } else { const sheetTitle = res.data.properties?.title; log.info({ sheetId, sheetTitle }, "Connected to Google Sheets."); } // Load or create the index sheet and write the lockId to it. try { log.info("Loading index sheet."); await loadIndexSheet(false); await writeIndexSheet(); } catch (e) { log.info("Creating new index sheet."); await createIndexSheet(); } }; /** Called during some unrecoverable error to tell the log queue to stop. */ function stop() { log.warn("Stopping Google Sheets backend."); if (stopCallback) { stopCallback(); } sheetsClient = null; } function assertData<T = sheets_v4.Schema$ValueRange>(res: GaxiosResponse<T>) { if (!res.data) { const { status, statusText, headers } = res; log.error( { res: { status, statusText, headers } }, "Unexpected response from Google Sheets API." ); } return res.data!; }
nonuttoday/oai
src/prompt-logging/backends/sheets.ts
TypeScript
unknown
12,685
/* Logs prompts and model responses to a persistent storage backend, if enabled. Since the proxy is generally deployed to free-tier services, our options for persistent storage are pretty limited. We'll use Google Sheets as a makeshift database for now. Due to the limitations of Google Sheets, we'll queue up log entries and flush them to the API periodically. */ export interface PromptLogEntry { model: string; endpoint: string; /** JSON prompt passed to the model */ promptRaw: string; /** Prompt with user and assistant messages flattened into a single string */ promptFlattened: string; response: string; // TODO: temperature, top_p, top_k, etc. } export * as logQueue from "./log-queue";
nonuttoday/oai
src/prompt-logging/index.ts
TypeScript
unknown
715
/* Queues incoming prompts/responses and periodically flushes them to configured * logging backend. */ import { logger } from "../logger"; import { PromptLogEntry } from "."; import { sheets } from "./backends"; const FLUSH_INTERVAL = 1000 * 20; // 20 seconds const MAX_BATCH_SIZE = 100; const queue: PromptLogEntry[] = []; const log = logger.child({ module: "log-queue" }); let started = false; let timeoutId: NodeJS.Timeout | null = null; let retrying = false; let failedBatchCount = 0; export const enqueue = (payload: PromptLogEntry) => { if (!started) { log.warn("Log queue not started, discarding incoming log entry."); return; } queue.push(payload); }; export const flush = async () => { if (!started) { return; } if (queue.length > 0) { const batchSize = Math.min(MAX_BATCH_SIZE, queue.length); const nextBatch = queue.splice(0, batchSize); log.info({ size: nextBatch.length }, "Submitting new batch."); try { await sheets.appendBatch(nextBatch); retrying = false; } catch (e: any) { if (retrying) { log.error( { message: e.message, stack: e.stack }, "Failed twice to flush batch, discarding." ); retrying = false; failedBatchCount++; } else { // Put the batch back at the front of the queue and try again log.warn( { message: e.message, stack: e.stack }, "Failed to flush batch. Retrying." ); queue.unshift(...nextBatch); retrying = true; setImmediate(() => flush()); return; } } } const useHalfInterval = queue.length > MAX_BATCH_SIZE / 2; scheduleFlush(useHalfInterval); }; export const start = async () => { try { await sheets.init(() => stop()); log.info("Logging backend initialized."); started = true; } catch (e) { log.error(e, "Could not initialize logging backend."); return; } scheduleFlush(); }; export const stop = () => { if (timeoutId) { clearTimeout(timeoutId); } log.info("Stopping log queue."); started = false; }; const scheduleFlush = (halfInterval = false) => { if (failedBatchCount > 5) { log.error( { failedBatchCount }, "Too many failed batches. Stopping prompt logging." ); stop(); return; } if (halfInterval) { log.warn( { queueSize: queue.length }, "Queue is falling behind, switching to faster flush interval." ); } timeoutId = setTimeout( () => { flush(); }, halfInterval ? FLUSH_INTERVAL / 2 : FLUSH_INTERVAL ); };
nonuttoday/oai
src/prompt-logging/log-queue.ts
TypeScript
unknown
2,597
import type { RequestHandler } from "express"; import { config } from "../../config"; import { authenticate, getUser } from "./user-store"; const GATEKEEPER = config.gatekeeper; const PROXY_KEY = config.proxyKey; const ADMIN_KEY = config.adminKey; export const gatekeeper: RequestHandler = (req, res, next) => { const token = req.headers.authorization?.slice("Bearer ".length); delete req.headers.authorization; // TODO: Generate anonymous users based on IP address for public or proxy_key // modes so that all middleware can assume a user of some sort is present. if (token === ADMIN_KEY) { return next(); } if (GATEKEEPER === "none") { return next(); } if (GATEKEEPER === "proxy_key" && token === PROXY_KEY) { return next(); } if (GATEKEEPER === "user_token" && token) { const user = authenticate(token, req.ip); if (user) { req.user = user; return next(); } else { const maybeBannedUser = getUser(token); if (maybeBannedUser?.disabledAt) { return res.status(403).json({ error: `Forbidden: ${ maybeBannedUser.disabledReason || "Token disabled" }`, }); } } } res.status(401).json({ error: "Unauthorized" }); };
nonuttoday/oai
src/proxy/auth/gatekeeper.ts
TypeScript
unknown
1,252
/** * Basic user management. Handles creation and tracking of proxy users, personal * access tokens, and quota management. Supports in-memory and Firebase Realtime * Database persistence stores. * * Users are identified solely by their personal access token. The token is * used to authenticate the user for all proxied requests. */ import admin from "firebase-admin"; import { v4 as uuid } from "uuid"; import { config, getFirebaseApp } from "../../config"; import { logger } from "../../logger"; export interface User { /** The user's personal access token. */ token: string; /** The IP addresses the user has connected from. */ ip: string[]; /** The user's privilege level. */ type: UserType; /** The number of prompts the user has made. */ promptCount: number; /** The number of tokens the user has consumed. Not yet implemented. */ tokenCount: number; /** The time at which the user was created. */ createdAt: number; /** The time at which the user last connected. */ lastUsedAt?: number; /** The time at which the user was disabled, if applicable. */ disabledAt?: number; /** The reason for which the user was disabled, if applicable. */ disabledReason?: string; } /** * Possible privilege levels for a user. * - `normal`: Default role. Subject to usual rate limits and quotas. * - `special`: Special role. Higher quotas and exempt from auto-ban/lockout. * TODO: implement auto-ban/lockout for normal users when they do naughty shit */ export type UserType = "normal" | "special"; type UserUpdate = Partial<User> & Pick<User, "token">; const MAX_IPS_PER_USER = config.maxIpsPerUser; const users: Map<string, User> = new Map(); const usersToFlush = new Set<string>(); export async function init() { logger.info({ store: config.gatekeeperStore }, "Initializing user store..."); if (config.gatekeeperStore === "firebase_rtdb") { await initFirebase(); } logger.info("User store initialized."); } /** Creates a new user and returns their token. */ export function createUser() { const token = uuid(); users.set(token, { token, ip: [], type: "normal", promptCount: 0, tokenCount: 0, createdAt: Date.now(), }); usersToFlush.add(token); return token; } /** Returns the user with the given token if they exist. */ export function getUser(token: string) { return users.get(token); } /** Returns a list of all users. */ export function getUsers() { return Array.from(users.values()).map((user) => ({ ...user })); } /** * Upserts the given user. Intended for use with the /admin API for updating * user information via JSON. Use other functions for more specific operations. */ export function upsertUser(user: UserUpdate) { const existing: User = users.get(user.token) ?? { token: user.token, ip: [], type: "normal", promptCount: 0, tokenCount: 0, createdAt: Date.now(), }; users.set(user.token, { ...existing, ...user, }); usersToFlush.add(user.token); // Immediately schedule a flush to the database if we're using Firebase. if (config.gatekeeperStore === "firebase_rtdb") { setImmediate(flushUsers); } return users.get(user.token); } /** Increments the prompt count for the given user. */ export function incrementPromptCount(token: string) { const user = users.get(token); if (!user) return; user.promptCount++; usersToFlush.add(token); } /** Increments the token count for the given user by the given amount. */ export function incrementTokenCount(token: string, amount = 1) { const user = users.get(token); if (!user) return; user.tokenCount += amount; usersToFlush.add(token); } /** * Given a user's token and IP address, authenticates the user and adds the IP * to the user's list of IPs. Returns the user if they exist and are not * disabled, otherwise returns undefined. */ export function authenticate(token: string, ip: string) { const user = users.get(token); if (!user || user.disabledAt) return; if (!user.ip.includes(ip)) user.ip.push(ip); // If too many IPs are associated with the user, disable the account. const ipLimit = user.type === "special" || !MAX_IPS_PER_USER ? Infinity : MAX_IPS_PER_USER; if (user.ip.length > ipLimit) { disableUser(token, "Too many IP addresses associated with this token."); return; } user.lastUsedAt = Date.now(); usersToFlush.add(token); return user; } /** Disables the given user, optionally providing a reason. */ export function disableUser(token: string, reason?: string) { const user = users.get(token); if (!user) return; user.disabledAt = Date.now(); user.disabledReason = reason; usersToFlush.add(token); } // TODO: Firebase persistence is pretend right now and just polls the in-memory // store to sync it with Firebase when it changes. Will refactor to abstract // persistence layer later so we can support multiple stores. let firebaseTimeout: NodeJS.Timeout | undefined; async function initFirebase() { logger.info("Connecting to Firebase..."); const app = getFirebaseApp(); const db = admin.database(app); const usersRef = db.ref("users"); const snapshot = await usersRef.once("value"); const users: Record<string, User> | null = snapshot.val(); firebaseTimeout = setInterval(flushUsers, 20 * 1000); if (!users) { logger.info("No users found in Firebase."); return; } for (const token in users) { upsertUser(users[token]); } usersToFlush.clear(); const numUsers = Object.keys(users).length; logger.info({ users: numUsers }, "Loaded users from Firebase"); } async function flushUsers() { const app = getFirebaseApp(); const db = admin.database(app); const usersRef = db.ref("users"); const updates: Record<string, User> = {}; for (const token of usersToFlush) { const user = users.get(token); if (!user) { continue; } updates[token] = user; } usersToFlush.clear(); const numUpdates = Object.keys(updates).length; if (numUpdates === 0) { return; } await usersRef.update(updates); logger.info( { users: Object.keys(updates).length }, "Flushed users to Firebase" ); }
nonuttoday/oai
src/proxy/auth/user-store.ts
TypeScript
unknown
6,166
import { config } from "../config"; import { RequestHandler } from "express"; const BLOCKED_REFERERS = config.blockedOrigins?.split(",") || []; /** Disallow requests from blocked origins and referers. */ export const checkOrigin: RequestHandler = (req, res, next) => { const blocks = BLOCKED_REFERERS || []; for (const block of blocks) { if ( req.headers.origin?.includes(block) || req.headers.referer?.includes(block) ) { req.log.warn( { origin: req.headers.origin, referer: req.headers.referer }, "Blocked request from origin or referer" ); // VenusAI requests incorrectly say they accept HTML despite immediately // trying to parse the response as JSON, so we check the body type instead const hasJsonBody = req.headers["content-type"]?.includes("application/json"); if (!req.accepts("html") || hasJsonBody) { return res.status(403).json({ error: { type: "blocked_origin", message: config.blockMessage }, }); } else { const destination = config.blockRedirect || "https://openai.com"; return res.status(403).send( `<html> <head> <title>Redirecting</title> <meta http-equiv="refresh" content="3; url=${destination}" /> </head> <body style="font-family: sans-serif; height: 100vh; display: flex; flex-direction: column; justify-content: center; text-align: center;"> <h2>${config.blockMessage}</h3> <p><strong>Please hold while you are redirected to a more suitable service.</strong></p> </body> </html>` ); } } } next(); };
nonuttoday/oai
src/proxy/check-origin.ts
TypeScript
unknown
1,596
/* Pretends to be a KoboldAI API endpoint and translates incoming Kobold requests to OpenAI API equivalents. */ import { Request, Response, Router } from "express"; import http from "http"; import { createProxyMiddleware } from "http-proxy-middleware"; import { config } from "../config"; import { logger } from "../logger"; import { ipLimiter } from "./rate-limit"; import { addKey, checkStreaming, finalizeBody, languageFilter, limitOutputTokens, transformKoboldPayload, } from "./middleware/request"; import { createOnProxyResHandler, handleInternalError, ProxyResHandlerWithBody, } from "./middleware/response"; export const handleModelRequest = (_req: Request, res: Response) => { res.status(200).json({ result: "Connected to OpenAI reverse proxy" }); }; export const handleSoftPromptsRequest = (_req: Request, res: Response) => { res.status(200).json({ soft_prompts_list: [] }); }; const rewriteRequest = ( proxyReq: http.ClientRequest, req: Request, res: Response ) => { if (config.queueMode !== "none") { const msg = `Queueing is enabled on this proxy instance and is incompatible with the KoboldAI endpoint. Use the OpenAI endpoint instead.`; proxyReq.destroy(new Error(msg)); return; } req.api = "kobold"; const rewriterPipeline = [ addKey, transformKoboldPayload, languageFilter, checkStreaming, limitOutputTokens, finalizeBody, ]; try { for (const rewriter of rewriterPipeline) { rewriter(proxyReq, req, res, {}); } } catch (error) { logger.error(error, "Error while executing proxy rewriter"); proxyReq.destroy(error as Error); } }; const koboldResponseHandler: ProxyResHandlerWithBody = async ( _proxyRes, req, res, body ) => { if (typeof body !== "object") { throw new Error("Expected body to be an object"); } const koboldResponse = { results: [{ text: body.choices[0].message.content }], model: body.model, ...(config.promptLogging && { proxy_note: `Prompt logging is enabled on this proxy instance. See ${req.get( "host" )} for more information.`, }), }; res.send(JSON.stringify(koboldResponse)); }; const koboldOaiProxy = createProxyMiddleware({ target: "https://api.openai.com", changeOrigin: true, pathRewrite: { "^/api/v1/generate": "/v1/chat/completions", }, on: { proxyReq: rewriteRequest, proxyRes: createOnProxyResHandler([koboldResponseHandler]), error: handleInternalError, }, selfHandleResponse: true, logger, }); const koboldRouter = Router(); koboldRouter.get("/api/v1/model", handleModelRequest); koboldRouter.get("/api/v1/config/soft_prompts_list", handleSoftPromptsRequest); koboldRouter.post("/api/v1/generate", ipLimiter, koboldOaiProxy); koboldRouter.use((req, res) => { logger.warn(`Unhandled kobold request: ${req.method} ${req.path}`); res.status(404).json({ error: "Not found" }); }); export const kobold = koboldRouter;
nonuttoday/oai
src/proxy/kobold.ts
TypeScript
unknown
2,970
import { Key, Model, keyPool, SUPPORTED_MODELS } from "../../../key-management"; import type { ExpressHttpProxyReqCallback } from "."; /** Add an OpenAI key from the pool to the request. */ export const addKey: ExpressHttpProxyReqCallback = (proxyReq, req) => { let assignedKey: Key; // Not all clients request a particular model. // If they request a model, just use that. // If they don't request a model, use a GPT-4 key if there is an active one, // otherwise use a GPT-3.5 key. // TODO: Anthropic mode should prioritize Claude over Claude Instant. // Each provider needs to define some priority order for their models. if (bodyHasModel(req.body)) { assignedKey = keyPool.get(req.body.model); } else { try { assignedKey = keyPool.get("gpt-4"); } catch { assignedKey = keyPool.get("gpt-3.5-turbo"); } } req.key = assignedKey; req.log.info( { key: assignedKey.hash, model: req.body?.model, isGpt4: assignedKey.isGpt4, }, "Assigned key to request" ); // TODO: Requests to Anthropic models use `X-API-Key`. proxyReq.setHeader("Authorization", `Bearer ${assignedKey.key}`); }; function bodyHasModel(body: any): body is { model: Model } { // Model names can have suffixes indicating the frozen release version but // OpenAI and Anthropic will use the latest version if you omit the suffix. const isSupportedModel = (model: string) => SUPPORTED_MODELS.some((supported) => model.startsWith(supported)); return typeof body?.model === "string" && isSupportedModel(body.model); }
nonuttoday/oai
src/proxy/middleware/request/add-key.ts
TypeScript
unknown
1,579
import { ExpressHttpProxyReqCallback, isCompletionRequest } from "."; /** * If a stream is requested, mark the request as such so the response middleware * knows to use the alternate EventSource response handler. * Kobold requests can't currently be streamed as they use a different event * format than the OpenAI API and we need to rewrite the events as they come in, * which I have not yet implemented. */ export const checkStreaming: ExpressHttpProxyReqCallback = (_proxyReq, req) => { const streamableApi = req.api !== "kobold"; if (isCompletionRequest(req) && req.body?.stream) { if (!streamableApi) { req.log.warn( { api: req.api, key: req.key?.hash }, `Streaming requested, but ${req.api} streaming is not supported.` ); req.body.stream = false; return; } req.body.stream = true; req.isStreaming = true; } };
nonuttoday/oai
src/proxy/middleware/request/check-streaming.ts
TypeScript
unknown
885
import { fixRequestBody } from "http-proxy-middleware"; import type { ExpressHttpProxyReqCallback } from "."; /** Finalize the rewritten request body. Must be the last rewriter. */ export const finalizeBody: ExpressHttpProxyReqCallback = (proxyReq, req) => { if (["POST", "PUT", "PATCH"].includes(req.method ?? "") && req.body) { const updatedBody = JSON.stringify(req.body); proxyReq.setHeader("Content-Length", Buffer.byteLength(updatedBody)); (req as any).rawBody = Buffer.from(updatedBody); // body-parser and http-proxy-middleware don't play nice together fixRequestBody(proxyReq, req); } };
nonuttoday/oai
src/proxy/middleware/request/finalize-body.ts
TypeScript
unknown
623
import type { Request } from "express"; import type { ClientRequest } from "http"; import type { ProxyReqCallback } from "http-proxy"; export { addKey } from "./add-key"; export { checkStreaming } from "./check-streaming"; export { finalizeBody } from "./finalize-body"; export { languageFilter } from "./language-filter"; export { limitCompletions } from "./limit-completions"; export { limitOutputTokens } from "./limit-output-tokens"; export { transformKoboldPayload } from "./transform-kobold-payload"; const OPENAI_CHAT_COMPLETION_ENDPOINT = "/v1/chat/completions"; /** Returns true if we're making a chat completion request. */ export function isCompletionRequest(req: Request) { return ( req.method === "POST" && req.path.startsWith(OPENAI_CHAT_COMPLETION_ENDPOINT) ); } export type ExpressHttpProxyReqCallback = ProxyReqCallback< ClientRequest, Request >;
nonuttoday/oai
src/proxy/middleware/request/index.ts
TypeScript
unknown
884
import { config } from "../../../config"; import { logger } from "../../../logger"; import type { ExpressHttpProxyReqCallback } from "."; const DISALLOWED_REGEX = /[\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u3005\u3007\u3021-\u3029\u3038-\u303B\u3400-\u4DB5\u4E00-\u9FD5\uF900-\uFA6D\uFA70-\uFAD9]/; // Our shitty free-tier VMs will fall over if we test every single character in // each 15k character request ten times a second. So we'll just sample 20% of // the characters and hope that's enough. const containsDisallowedCharacters = (text: string) => { const sampleSize = Math.ceil(text.length * 0.2); const sample = text .split("") .sort(() => 0.5 - Math.random()) .slice(0, sampleSize) .join(""); return DISALLOWED_REGEX.test(sample); }; /** Block requests containing too many disallowed characters. */ export const languageFilter: ExpressHttpProxyReqCallback = (_proxyReq, req) => { if (!config.rejectDisallowed) { return; } if (req.method === "POST" && req.body?.messages) { const combinedText = req.body.messages .map((m: { role: string; content: string }) => m.content) .join(","); if (containsDisallowedCharacters(combinedText)) { logger.warn(`Blocked request containing bad characters`); _proxyReq.destroy(new Error(config.rejectMessage)); } } };
nonuttoday/oai
src/proxy/middleware/request/language-filter.ts
TypeScript
unknown
1,333
import { ExpressHttpProxyReqCallback, isCompletionRequest } from "."; /** Don't allow multiple completions to be requested to prevent abuse. */ export const limitCompletions: ExpressHttpProxyReqCallback = ( _proxyReq, req ) => { if (isCompletionRequest(req)) { const originalN = req.body?.n || 1; req.body.n = 1; if (originalN !== req.body.n) { req.log.warn(`Limiting completion choices from ${originalN} to 1`); } } };
nonuttoday/oai
src/proxy/middleware/request/limit-completions.ts
TypeScript
unknown
451
import { config } from "../../../config"; import { logger } from "../../../logger"; import { ExpressHttpProxyReqCallback, isCompletionRequest } from "."; const MAX_TOKENS = config.maxOutputTokens; /** Enforce a maximum number of tokens requested from OpenAI. */ export const limitOutputTokens: ExpressHttpProxyReqCallback = ( _proxyReq, req ) => { if (isCompletionRequest(req) && req.body?.max_tokens) { // convert bad or missing input to a MAX_TOKENS if (typeof req.body.max_tokens !== "number") { logger.warn( `Invalid max_tokens value: ${req.body.max_tokens}. Using ${MAX_TOKENS}` ); req.body.max_tokens = MAX_TOKENS; } const originalTokens = req.body.max_tokens; req.body.max_tokens = Math.min(req.body.max_tokens, MAX_TOKENS); if (originalTokens !== req.body.max_tokens) { logger.warn( `Limiting max_tokens from ${originalTokens} to ${req.body.max_tokens}` ); } } };
nonuttoday/oai
src/proxy/middleware/request/limit-output-tokens.ts
TypeScript
unknown
957
import { Response } from "express"; import * as http from "http"; import { RawResponseBodyHandler, decodeResponseBody } from "."; /** * Consume the SSE stream and forward events to the client. Once the stream is * stream is closed, resolve with the full response body so that subsequent * middleware can work with it. * * Typically we would only need of the raw response handlers to execute, but * in the event a streamed request results in a non-200 response, we need to * fall back to the non-streaming response handler so that the error handler * can inspect the error response. */ export const handleStreamedResponse: RawResponseBodyHandler = async ( proxyRes, req, res ) => { if (!req.isStreaming) { req.log.error( { api: req.api, key: req.key?.hash }, `handleEventSource called for non-streaming request, which isn't valid.` ); throw new Error("handleEventSource called for non-streaming request."); } if (proxyRes.statusCode !== 200) { // Ensure we use the non-streaming middleware stack since we won't be // getting any events. req.isStreaming = false; req.log.warn( `Streaming request to ${req.api} returned ${proxyRes.statusCode} status code. Falling back to non-streaming response handler.` ); return decodeResponseBody(proxyRes, req, res); } return new Promise((resolve, reject) => { req.log.info( { api: req.api, key: req.key?.hash }, `Starting to proxy SSE stream.` ); // Queued streaming requests will already have a connection open and headers // sent due to the heartbeat handler. In that case we can just start // streaming the response without sending headers. if (!res.headersSent) { res.setHeader("Content-Type", "text/event-stream"); res.setHeader("Cache-Control", "no-cache"); res.setHeader("Connection", "keep-alive"); res.setHeader("X-Accel-Buffering", "no"); copyHeaders(proxyRes, res); res.flushHeaders(); } const chunks: Buffer[] = []; proxyRes.on("data", (chunk) => { chunks.push(chunk); res.write(chunk); }); proxyRes.on("end", () => { const finalBody = convertEventsToOpenAiResponse(chunks); req.log.info( { api: req.api, key: req.key?.hash }, `Finished proxying SSE stream.` ); res.end(); resolve(finalBody); }); proxyRes.on("error", (err) => { req.log.error( { error: err, api: req.api, key: req.key?.hash }, `Error while streaming response.` ); // OAI's spec doesn't allow for error events and clients wouldn't know // what to do with them anyway, so we'll just send a completion event // with the error message. const fakeErrorEvent = { id: "chatcmpl-error", object: "chat.completion.chunk", created: Date.now(), model: "", choices: [ { delta: { content: "[Proxy streaming error: " + err.message + "]" }, index: 0, finish_reason: "error", }, ], }; res.write(`data: ${JSON.stringify(fakeErrorEvent)}\n\n`); res.write("data: [DONE]\n\n"); res.end(); reject(err); }); }); }; /** Copy headers, excluding ones we're already setting for the SSE response. */ const copyHeaders = (proxyRes: http.IncomingMessage, res: Response) => { const toOmit = [ "content-length", "content-encoding", "transfer-encoding", "content-type", "connection", "cache-control", ]; for (const [key, value] of Object.entries(proxyRes.headers)) { if (!toOmit.includes(key) && value) { res.setHeader(key, value); } } }; type OpenAiChatCompletionResponse = { id: string; object: string; created: number; model: string; choices: { message: { role: string; content: string }; finish_reason: string | null; index: number; }[]; }; /** Converts the event stream chunks into a single completion response. */ const convertEventsToOpenAiResponse = (chunks: Buffer[]) => { let response: OpenAiChatCompletionResponse = { id: "", object: "", created: 0, model: "", choices: [], }; const events = Buffer.concat(chunks) .toString() .trim() .split("\n\n") .map((line) => line.trim()); response = events.reduce((acc, chunk, i) => { if (!chunk.startsWith("data: ")) { return acc; } if (chunk === "data: [DONE]") { return acc; } const data = JSON.parse(chunk.slice("data: ".length)); if (i === 0) { return { id: data.id, object: data.object, created: data.created, model: data.model, choices: [ { message: { role: data.choices[0].delta.role, content: "" }, index: 0, finish_reason: null, }, ], }; } if (data.choices[0].delta.content) { acc.choices[0].message.content += data.choices[0].delta.content; } acc.choices[0].finish_reason = data.choices[0].finish_reason; return acc; }, response); return response; };
nonuttoday/oai
src/proxy/middleware/response/handle-streamed-response.ts
TypeScript
unknown
5,133
import { Request, Response } from "express"; import * as http from "http"; import util from "util"; import zlib from "zlib"; import * as httpProxy from "http-proxy"; import { config } from "../../../config"; import { logger } from "../../../logger"; import { keyPool } from "../../../key-management"; import { buildFakeSseMessage, enqueue, trackWaitTime } from "../../queue"; import { handleStreamedResponse } from "./handle-streamed-response"; import { logPrompt } from "./log-prompt"; import { incrementPromptCount } from "../../auth/user-store"; export const QUOTA_ROUTES = ["/v1/chat/completions"]; const DECODER_MAP = { gzip: util.promisify(zlib.gunzip), deflate: util.promisify(zlib.inflate), br: util.promisify(zlib.brotliDecompress), }; const isSupportedContentEncoding = ( contentEncoding: string ): contentEncoding is keyof typeof DECODER_MAP => { return contentEncoding in DECODER_MAP; }; class RetryableError extends Error { constructor(message: string) { super(message); this.name = "RetryableError"; } } /** * Either decodes or streams the entire response body and then passes it as the * last argument to the rest of the middleware stack. */ export type RawResponseBodyHandler = ( proxyRes: http.IncomingMessage, req: Request, res: Response ) => Promise<string | Record<string, any>>; export type ProxyResHandlerWithBody = ( proxyRes: http.IncomingMessage, req: Request, res: Response, /** * This will be an object if the response content-type is application/json, * or if the response is a streaming response. Otherwise it will be a string. */ body: string | Record<string, any> ) => Promise<void>; export type ProxyResMiddleware = ProxyResHandlerWithBody[]; /** * Returns a on.proxyRes handler that executes the given middleware stack after * the common proxy response handlers have processed the response and decoded * the body. Custom middleware won't execute if the response is determined to * be an error from the upstream service as the response will be taken over by * the common error handler. * * For streaming responses, the handleStream middleware will block remaining * middleware from executing as it consumes the stream and forwards events to * the client. Once the stream is closed, the finalized body will be attached * to res.body and the remaining middleware will execute. */ export const createOnProxyResHandler = (apiMiddleware: ProxyResMiddleware) => { return async ( proxyRes: http.IncomingMessage, req: Request, res: Response ) => { const initialHandler = req.isStreaming ? handleStreamedResponse : decodeResponseBody; let lastMiddlewareName = initialHandler.name; try { const body = await initialHandler(proxyRes, req, res); const middlewareStack: ProxyResMiddleware = []; if (req.isStreaming) { // `handleStreamedResponse` writes to the response and ends it, so // we can only execute middleware that doesn't write to the response. middlewareStack.push(trackRateLimit, incrementKeyUsage, logPrompt); } else { middlewareStack.push( trackRateLimit, handleUpstreamErrors, incrementKeyUsage, copyHttpHeaders, logPrompt, ...apiMiddleware ); } for (const middleware of middlewareStack) { lastMiddlewareName = middleware.name; await middleware(proxyRes, req, res, body); } trackWaitTime(req); } catch (error: any) { // Hack: if the error is a retryable rate-limit error, the request has // been re-enqueued and we can just return without doing anything else. if (error instanceof RetryableError) { return; } const errorData = { error: error.stack, thrownBy: lastMiddlewareName, key: req.key?.hash, }; const message = `Error while executing proxy response middleware: ${lastMiddlewareName} (${error.message})`; if (res.headersSent) { req.log.error(errorData, message); // This should have already been handled by the error handler, but // just in case... if (!res.writableEnded) { res.end(); } return; } logger.error(errorData, message); res .status(500) .json({ error: "Internal server error", proxy_note: message }); } }; }; function reenqueueRequest(req: Request) { req.log.info( { key: req.key?.hash, retryCount: req.retryCount }, `Re-enqueueing request due to rate-limit error` ); req.retryCount++; enqueue(req); } /** * Handles the response from the upstream service and decodes the body if * necessary. If the response is JSON, it will be parsed and returned as an * object. Otherwise, it will be returned as a string. * @throws {Error} Unsupported content-encoding or invalid application/json body */ export const decodeResponseBody: RawResponseBodyHandler = async ( proxyRes, req, res ) => { if (req.isStreaming) { req.log.error( { api: req.api, key: req.key?.hash }, `decodeResponseBody called for a streaming request, which isn't valid.` ); throw new Error("decodeResponseBody called for a streaming request."); } const promise = new Promise<string>((resolve, reject) => { let chunks: Buffer[] = []; proxyRes.on("data", (chunk) => chunks.push(chunk)); proxyRes.on("end", async () => { let body = Buffer.concat(chunks); const contentEncoding = proxyRes.headers["content-encoding"]; if (contentEncoding) { if (isSupportedContentEncoding(contentEncoding)) { const decoder = DECODER_MAP[contentEncoding]; body = await decoder(body); } else { const errorMessage = `Proxy received response with unsupported content-encoding: ${contentEncoding}`; logger.warn({ contentEncoding, key: req.key?.hash }, errorMessage); writeErrorResponse(res, 500, { error: errorMessage, contentEncoding, }); return reject(errorMessage); } } try { if (proxyRes.headers["content-type"]?.includes("application/json")) { const json = JSON.parse(body.toString()); return resolve(json); } return resolve(body.toString()); } catch (error: any) { const errorMessage = `Proxy received response with invalid JSON: ${error.message}`; logger.warn({ error, key: req.key?.hash }, errorMessage); writeErrorResponse(res, 500, { error: errorMessage }); return reject(errorMessage); } }); }); return promise; }; // TODO: This is too specific to OpenAI's error responses, Anthropic errors // will need a different handler. /** * Handles non-2xx responses from the upstream service. If the proxied response * is an error, this will respond to the client with an error payload and throw * an error to stop the middleware stack. * On 429 errors, if request queueing is enabled, the request will be silently * re-enqueued. Otherwise, the request will be rejected with an error payload. * @throws {Error} On HTTP error status code from upstream service */ const handleUpstreamErrors: ProxyResHandlerWithBody = async ( proxyRes, req, res, body ) => { const statusCode = proxyRes.statusCode || 500; if (statusCode < 400) { return; } let errorPayload: Record<string, any>; // Subtract 1 from available keys because if this message is being shown, // it's because the key is about to be disabled. const availableKeys = keyPool.available() - 1; const tryAgainMessage = Boolean(availableKeys) ? `There are ${availableKeys} more keys available; try your request again.` : "There are no more keys available."; try { if (typeof body === "object") { errorPayload = body; } else { throw new Error("Received unparsable error response from upstream."); } } catch (parseError: any) { const statusMessage = proxyRes.statusMessage || "Unknown error"; // Likely Bad Gateway or Gateway Timeout from OpenAI's Cloudflare proxy logger.warn( { statusCode, statusMessage, key: req.key?.hash }, parseError.message ); const errorObject = { statusCode, statusMessage: proxyRes.statusMessage, error: parseError.message, proxy_note: `This is likely a temporary error with the upstream service.`, }; writeErrorResponse(res, statusCode, errorObject); throw new Error(parseError.message); } logger.warn( { statusCode, type: errorPayload.error?.code, errorPayload, key: req.key?.hash, }, `Received error response from upstream. (${proxyRes.statusMessage})` ); if (statusCode === 400) { // Bad request (likely prompt is too long) errorPayload.proxy_note = `OpenAI rejected the request as invalid. Your prompt may be too long for ${req.body?.model}.`; } else if (statusCode === 401) { // Key is invalid or was revoked keyPool.disable(req.key!); errorPayload.proxy_note = `The OpenAI key is invalid or revoked. ${tryAgainMessage}`; } else if (statusCode === 429) { const type = errorPayload.error?.type; if (type === "insufficient_quota") { // Billing quota exceeded (key is dead, disable it) keyPool.disable(req.key!); errorPayload.proxy_note = `Assigned key's quota has been exceeded. ${tryAgainMessage}`; } else if (type === "billing_not_active") { // Billing is not active (key is dead, disable it) keyPool.disable(req.key!); errorPayload.proxy_note = `Assigned key was deactivated by OpenAI. ${tryAgainMessage}`; } else if (type === "requests" || type === "tokens") { // Per-minute request or token rate limit is exceeded, which we can retry keyPool.markRateLimited(req.key!.hash); if (config.queueMode !== "none") { reenqueueRequest(req); // TODO: I don't like using an error to control flow here throw new RetryableError("Rate-limited request re-enqueued."); } errorPayload.proxy_note = `Assigned key's '${type}' rate limit has been exceeded. Try again later.`; } else { // OpenAI probably overloaded errorPayload.proxy_note = `This is likely a temporary error with OpenAI. Try again in a few seconds.`; } } else if (statusCode === 404) { // Most likely model not found // TODO: this probably doesn't handle GPT-4-32k variants properly if the // proxy has keys for both the 8k and 32k context models at the same time. if (errorPayload.error?.code === "model_not_found") { if (req.key!.isGpt4) { errorPayload.proxy_note = `Assigned key isn't provisioned for the GPT-4 snapshot you requested. Try again to get a different key, or use Turbo.`; } else { errorPayload.proxy_note = `No model was found for this key.`; } } } else { errorPayload.proxy_note = `Unrecognized error from OpenAI.`; } // Some OAI errors contain the organization ID, which we don't want to reveal. if (errorPayload.error?.message) { errorPayload.error.message = errorPayload.error.message.replace( /org-.{24}/gm, "org-xxxxxxxxxxxxxxxxxxx" ); } writeErrorResponse(res, statusCode, errorPayload); throw new Error(errorPayload.error?.message); }; function writeErrorResponse( res: Response, statusCode: number, errorPayload: Record<string, any> ) { // If we're mid-SSE stream, send a data event with the error payload and end // the stream. Otherwise just send a normal error response. if ( res.headersSent || res.getHeader("content-type") === "text/event-stream" ) { const msg = buildFakeSseMessage( `upstream error (${statusCode})`, JSON.stringify(errorPayload, null, 2) ); res.write(msg); res.write(`data: [DONE]\n\n`); res.end(); } else { res.status(statusCode).json(errorPayload); } } /** Handles errors in rewriter pipelines. */ export const handleInternalError: httpProxy.ErrorCallback = ( err, _req, res ) => { logger.error({ error: err }, "Error in http-proxy-middleware pipeline."); try { writeErrorResponse(res as Response, 500, { error: { type: "proxy_error", message: err.message, stack: err.stack, proxy_note: `Reverse proxy encountered an error before it could reach the upstream API.`, }, }); } catch (e) { logger.error( { error: e }, `Error writing error response headers, giving up.` ); } }; const incrementKeyUsage: ProxyResHandlerWithBody = async (_proxyRes, req) => { if (QUOTA_ROUTES.includes(req.path)) { keyPool.incrementPrompt(req.key?.hash); if (req.user) { incrementPromptCount(req.user.token); } } }; const trackRateLimit: ProxyResHandlerWithBody = async (proxyRes, req) => { keyPool.updateRateLimits(req.key!.hash, proxyRes.headers); }; const copyHttpHeaders: ProxyResHandlerWithBody = async ( proxyRes, _req, res ) => { Object.keys(proxyRes.headers).forEach((key) => { // Omit content-encoding because we will always decode the response body if (key === "content-encoding") { return; } // We're usually using res.json() to send the response, which causes express // to set content-length. That's not valid for chunked responses and some // clients will reject it so we need to omit it. if (key === "transfer-encoding") { return; } res.setHeader(key, proxyRes.headers[key] as string); }); };
nonuttoday/oai
src/proxy/middleware/response/index.ts
TypeScript
unknown
13,605
import { config } from "../../../config"; import { logQueue } from "../../../prompt-logging"; import { isCompletionRequest } from "../request"; import { ProxyResHandlerWithBody } from "."; /** If prompt logging is enabled, enqueues the prompt for logging. */ export const logPrompt: ProxyResHandlerWithBody = async ( _proxyRes, req, _res, responseBody ) => { if (!config.promptLogging) { return; } if (typeof responseBody !== "object") { throw new Error("Expected body to be an object"); } // Only log prompts if we're making a request to a completion endpoint if (!isCompletionRequest(req)) { // Remove this once we're confident that we're not missing any prompts req.log.info( `Not logging prompt for ${req.path} because it's not a completion endpoint` ); return; } const model = req.body.model; const promptFlattened = flattenMessages(req.body.messages); const response = getResponseForModel({ model, body: responseBody }); logQueue.enqueue({ model, endpoint: req.api, promptRaw: JSON.stringify(req.body.messages), promptFlattened, response, }); }; type OaiMessage = { role: "user" | "assistant" | "system"; content: string; }; const flattenMessages = (messages: OaiMessage[]): string => { return messages.map((m) => `${m.role}: ${m.content}`).join("\n"); }; const getResponseForModel = ({ model, body, }: { model: string; body: Record<string, any>; }) => { if (model.startsWith("claude")) { // TODO: confirm if there is supposed to be a leading space return body.completion.trim(); } else { return body.choices[0].message.content; } };
nonuttoday/oai
src/proxy/middleware/response/log-prompt.ts
TypeScript
unknown
1,661
import { Request, Router } from "express"; import * as http from "http"; import { createProxyMiddleware } from "http-proxy-middleware"; import { config } from "../config"; import { logger } from "../logger"; import { createQueueMiddleware } from "./queue"; import { ipLimiter } from "./rate-limit"; import { addKey, languageFilter, checkStreaming, finalizeBody, limitOutputTokens, limitCompletions, } from "./middleware/request"; import { createOnProxyResHandler, handleInternalError, ProxyResHandlerWithBody, } from "./middleware/response"; const rewriteRequest = ( proxyReq: http.ClientRequest, req: Request, res: http.ServerResponse ) => { req.api = "openai"; const rewriterPipeline = [ addKey, languageFilter, checkStreaming, limitOutputTokens, limitCompletions, finalizeBody, ]; try { for (const rewriter of rewriterPipeline) { rewriter(proxyReq, req, res, {}); } } catch (error) { logger.error(error, "Error while executing proxy rewriter"); proxyReq.destroy(error as Error); } }; const openaiResponseHandler: ProxyResHandlerWithBody = async ( _proxyRes, req, res, body ) => { if (typeof body !== "object") { throw new Error("Expected body to be an object"); } if (config.promptLogging) { const host = req.get("host"); body.proxy_note = `Prompts are logged on this proxy instance. See ${host} for more information.`; } res.status(200).json(body); }; const openaiProxy = createProxyMiddleware({ target: "https://api.openai.com", changeOrigin: true, on: { proxyReq: rewriteRequest, proxyRes: createOnProxyResHandler([openaiResponseHandler]), error: handleInternalError, }, selfHandleResponse: true, logger, }); const queuedOpenaiProxy = createQueueMiddleware(openaiProxy); const openaiRouter = Router(); // Some clients don't include the /v1/ prefix in their requests and users get // confused when they get a 404. Just fix the route for them so I don't have to // provide a bunch of different routes for each client's idiosyncrasies. openaiRouter.use((req, _res, next) => { if (!req.path.startsWith("/v1/")) { req.url = `/v1${req.url}`; } next(); }); openaiRouter.get("/v1/models", openaiProxy); openaiRouter.post("/v1/chat/completions", ipLimiter, queuedOpenaiProxy); // If a browser tries to visit a route that doesn't exist, redirect to the info // page to help them find the right URL. openaiRouter.get("*", (req, res, next) => { const isBrowser = req.headers["user-agent"]?.includes("Mozilla"); if (isBrowser) { res.redirect("/"); } else { next(); } }); openaiRouter.use((req, res) => { logger.warn(`Blocked openai proxy request: ${req.method} ${req.path}`); res.status(404).json({ error: "Not found" }); }); export const openai = openaiRouter;
nonuttoday/oai
src/proxy/openai.ts
TypeScript
unknown
2,829
/** * Very scuffed request queue. OpenAI's GPT-4 keys have a very strict rate limit * of 40000 generated tokens per minute. We don't actually know how many tokens * a given key has generated, so our queue will simply retry requests that fail * with a non-billing related 429 over and over again until they succeed. * * Dequeueing can operate in one of two modes: * - 'fair': requests are dequeued in the order they were enqueued. * - 'random': requests are dequeued randomly, not really a queue at all. * * When a request to a proxied endpoint is received, we create a closure around * the call to http-proxy-middleware and attach it to the request. This allows * us to pause the request until we have a key available. Further, if the * proxied request encounters a retryable error, we can simply put the request * back in the queue and it will be retried later using the same closure. */ import type { Handler, Request } from "express"; import { config, DequeueMode } from "../config"; import { keyPool } from "../key-management"; import { logger } from "../logger"; import { AGNAI_DOT_CHAT_IP } from "./rate-limit"; const queue: Request[] = []; const log = logger.child({ module: "request-queue" }); let dequeueMode: DequeueMode = "fair"; /** Maximum number of queue slots for Agnai.chat requests. */ const AGNAI_CONCURRENCY_LIMIT = 15; /** Maximum number of queue slots for individual users. */ const USER_CONCURRENCY_LIMIT = 1; const sameIpPredicate = (incoming: Request) => (queued: Request) => queued.ip === incoming.ip; const sameUserPredicate = (incoming: Request) => (queued: Request) => { const incomingUser = incoming.user ?? { token: incoming.ip }; const queuedUser = queued.user ?? { token: queued.ip }; return queuedUser.token === incomingUser.token; }; export function enqueue(req: Request) { let enqueuedRequestCount = 0; let isGuest = req.user?.token === undefined; if (isGuest) { enqueuedRequestCount = queue.filter(sameIpPredicate(req)).length; } else { enqueuedRequestCount = queue.filter(sameUserPredicate(req)).length; } // All Agnai.chat requests come from the same IP, so we allow them to have // more spots in the queue. Can't make it unlimited because people will // intentionally abuse it. // Authenticated users always get a single spot in the queue. const maxConcurrentQueuedRequests = isGuest && req.ip === AGNAI_DOT_CHAT_IP ? AGNAI_CONCURRENCY_LIMIT : USER_CONCURRENCY_LIMIT; if (enqueuedRequestCount >= maxConcurrentQueuedRequests) { if (req.ip === AGNAI_DOT_CHAT_IP) { // Re-enqueued requests are not counted towards the limit since they // already made it through the queue once. if (req.retryCount === 0) { throw new Error("Too many agnai.chat requests are already queued"); } } else { throw new Error("Your IP or token already has a request in the queue"); } } queue.push(req); req.queueOutTime = 0; // shitty hack to remove hpm's event listeners on retried requests removeProxyMiddlewareEventListeners(req); // If the request opted into streaming, we need to register a heartbeat // handler to keep the connection alive while it waits in the queue. We // deregister the handler when the request is dequeued. if (req.body.stream) { const res = req.res!; if (!res.headersSent) { initStreaming(req); } req.heartbeatInterval = setInterval(() => { if (process.env.NODE_ENV === "production") { req.res!.write(": queue heartbeat\n\n"); } else { req.log.info(`Sending heartbeat to request in queue.`); const avgWait = Math.round(getEstimatedWaitTime() / 1000); const currentDuration = Math.round((Date.now() - req.startTime) / 1000); const debugMsg = `queue length: ${queue.length}; elapsed time: ${currentDuration}s; avg wait: ${avgWait}s`; req.res!.write(buildFakeSseMessage("heartbeat", debugMsg)); } }, 10000); } // Register a handler to remove the request from the queue if the connection // is aborted or closed before it is dequeued. const removeFromQueue = () => { req.log.info(`Removing aborted request from queue.`); const index = queue.indexOf(req); if (index !== -1) { queue.splice(index, 1); } if (req.heartbeatInterval) { clearInterval(req.heartbeatInterval); } }; req.onAborted = removeFromQueue; req.res!.once("close", removeFromQueue); if (req.retryCount ?? 0 > 0) { req.log.info({ retries: req.retryCount }, `Enqueued request for retry.`); } else { req.log.info(`Enqueued new request.`); } } export function dequeue(model: string): Request | undefined { // TODO: This should be set by some middleware that checks the request body. const modelQueue = model === "gpt-4" ? queue.filter((req) => req.body.model?.startsWith("gpt-4")) : queue.filter((req) => !req.body.model?.startsWith("gpt-4")); if (modelQueue.length === 0) { return undefined; } let req: Request; if (dequeueMode === "fair") { // Dequeue the request that has been waiting the longest req = modelQueue.reduce((prev, curr) => prev.startTime < curr.startTime ? prev : curr ); } else { // Dequeue a random request const index = Math.floor(Math.random() * modelQueue.length); req = modelQueue[index]; } queue.splice(queue.indexOf(req), 1); if (req.onAborted) { req.res!.off("close", req.onAborted); req.onAborted = undefined; } if (req.heartbeatInterval) { clearInterval(req.heartbeatInterval); } // Track the time leaving the queue now, but don't add it to the wait times // yet because we don't know if the request will succeed or fail. We track // the time now and not after the request succeeds because we don't want to // include the model processing time. req.queueOutTime = Date.now(); return req; } /** * Naive way to keep the queue moving by continuously dequeuing requests. Not * ideal because it limits throughput but we probably won't have enough traffic * or keys for this to be a problem. If it does we can dequeue multiple * per tick. **/ function processQueue() { // This isn't completely correct, because a key can service multiple models. // Currently if a key is locked out on one model it will also stop servicing // the others, because we only track one rate limit per key. const gpt4Lockout = keyPool.getLockoutPeriod("gpt-4"); const turboLockout = keyPool.getLockoutPeriod("gpt-3.5-turbo"); const reqs: (Request | undefined)[] = []; if (gpt4Lockout === 0) { reqs.push(dequeue("gpt-4")); } if (turboLockout === 0) { reqs.push(dequeue("gpt-3.5-turbo")); } reqs.filter(Boolean).forEach((req) => { if (req?.proceed) { req.log.info({ retries: req.retryCount }, `Dequeuing request.`); req.proceed(); } }); setTimeout(processQueue, 50); } /** * Kill stalled requests after 5 minutes, and remove tracked wait times after 2 * minutes. **/ function cleanQueue() { const now = Date.now(); const oldRequests = queue.filter( (req) => now - (req.startTime ?? now) > 5 * 60 * 1000 ); oldRequests.forEach((req) => { req.log.info(`Removing request from queue after 5 minutes.`); killQueuedRequest(req); }); const index = waitTimes.findIndex( (waitTime) => now - waitTime.end > 300 * 1000 ); const removed = waitTimes.splice(0, index + 1); log.debug( { stalledRequests: oldRequests.length, prunedWaitTimes: removed.length }, `Cleaning up request queue.` ); setTimeout(cleanQueue, 20 * 1000); } export function start() { processQueue(); cleanQueue(); log.info(`Started request queue.`); } let waitTimes: { start: number; end: number }[] = []; /** Adds a successful request to the list of wait times. */ export function trackWaitTime(req: Request) { waitTimes.push({ start: req.startTime!, end: req.queueOutTime ?? Date.now(), }); } /** Returns average wait time in milliseconds. */ export function getEstimatedWaitTime() { const now = Date.now(); const recentWaits = waitTimes.filter((wt) => now - wt.end < 300 * 1000); if (recentWaits.length === 0) { return 0; } return ( recentWaits.reduce((sum, wt) => sum + wt.end - wt.start, 0) / recentWaits.length ); } export function getQueueLength() { return queue.length; } export function createQueueMiddleware(proxyMiddleware: Handler): Handler { return (req, res, next) => { if (config.queueMode === "none") { return proxyMiddleware(req, res, next); } req.proceed = () => { proxyMiddleware(req, res, next); }; try { enqueue(req); } catch (err: any) { req.res!.status(429).json({ type: "proxy_error", message: err.message, stack: err.stack, proxy_note: `Only one request per IP can be queued at a time. If you don't have another request queued, your IP may be in use by another user.`, }); } }; } function killQueuedRequest(req: Request) { if (!req.res || req.res.writableEnded) { req.log.warn(`Attempted to terminate request that has already ended.`); return; } const res = req.res; try { const message = `Your request has been terminated by the proxy because it has been in the queue for more than 5 minutes. The queue is currently ${queue.length} requests long.`; if (res.headersSent) { const fakeErrorEvent = buildFakeSseMessage("proxy queue error", message); res.write(fakeErrorEvent); res.end(); } else { res.status(500).json({ error: message }); } } catch (e) { req.log.error(e, `Error killing stalled request.`); } } function initStreaming(req: Request) { req.log.info(`Initiating streaming for new queued request.`); const res = req.res!; res.statusCode = 200; res.setHeader("Content-Type", "text/event-stream"); res.setHeader("Cache-Control", "no-cache"); res.setHeader("Connection", "keep-alive"); res.setHeader("X-Accel-Buffering", "no"); // nginx-specific fix res.flushHeaders(); res.write("\n"); res.write(": joining queue\n\n"); } export function buildFakeSseMessage(type: string, string: string) { const fakeEvent = { id: "chatcmpl-" + type, object: "chat.completion.chunk", created: Date.now(), model: "", choices: [ { delta: { content: `\`\`\`\n[${type}: ${string}]\n\`\`\`\n` }, index: 0, finish_reason: type, }, ], }; return `data: ${JSON.stringify(fakeEvent)}\n\n`; } /** * http-proxy-middleware attaches a bunch of event listeners to the req and * res objects which causes problems with our approach to re-enqueuing failed * proxied requests. This function removes those event listeners. * We don't have references to the original event listeners, so we have to * look through the list and remove HPM's listeners by looking for particular * strings in the listener functions. This is an astoundingly shitty way to do * this, but it's the best I can come up with. */ function removeProxyMiddlewareEventListeners(req: Request) { // node_modules/http-proxy-middleware/dist/plugins/default/debug-proxy-errors-plugin.js:29 // res.listeners('close') const RES_ONCLOSE = `Destroying proxyRes in proxyRes close event`; // node_modules/http-proxy-middleware/dist/plugins/default/debug-proxy-errors-plugin.js:19 // res.listeners('error') const RES_ONERROR = `Socket error in proxyReq event`; // node_modules/http-proxy/lib/http-proxy/passes/web-incoming.js:146 // req.listeners('aborted') const REQ_ONABORTED = `proxyReq.abort()`; // node_modules/http-proxy/lib/http-proxy/passes/web-incoming.js:156 // req.listeners('error') const REQ_ONERROR = `if (req.socket.destroyed`; const res = req.res!; const resOnClose = res .listeners("close") .find((listener) => listener.toString().includes(RES_ONCLOSE)); if (resOnClose) { res.removeListener("close", resOnClose as any); } const resOnError = res .listeners("error") .find((listener) => listener.toString().includes(RES_ONERROR)); if (resOnError) { res.removeListener("error", resOnError as any); } const reqOnAborted = req .listeners("aborted") .find((listener) => listener.toString().includes(REQ_ONABORTED)); if (reqOnAborted) { req.removeListener("aborted", reqOnAborted as any); } const reqOnError = req .listeners("error") .find((listener) => listener.toString().includes(REQ_ONERROR)); if (reqOnError) { req.removeListener("error", reqOnError as any); } }
nonuttoday/oai
src/proxy/queue.ts
TypeScript
unknown
12,616
import { Request, Response, NextFunction } from "express"; import { config } from "../config"; export const AGNAI_DOT_CHAT_IP = "157.230.249.32"; const RATE_LIMIT_ENABLED = Boolean(config.modelRateLimit); const RATE_LIMIT = Math.max(1, config.modelRateLimit); const ONE_MINUTE_MS = 60 * 1000; const lastAttempts = new Map<string, number[]>(); const expireOldAttempts = (now: number) => (attempt: number) => attempt > now - ONE_MINUTE_MS; const getTryAgainInMs = (ip: string) => { const now = Date.now(); const attempts = lastAttempts.get(ip) || []; const validAttempts = attempts.filter(expireOldAttempts(now)); if (validAttempts.length >= RATE_LIMIT) { return validAttempts[0] - now + ONE_MINUTE_MS; } else { lastAttempts.set(ip, [...validAttempts, now]); return 0; } }; const getStatus = (ip: string) => { const now = Date.now(); const attempts = lastAttempts.get(ip) || []; const validAttempts = attempts.filter(expireOldAttempts(now)); return { remaining: Math.max(0, RATE_LIMIT - validAttempts.length), reset: validAttempts.length > 0 ? validAttempts[0] + ONE_MINUTE_MS : now, }; }; /** Prunes attempts and IPs that are no longer relevant after one minutes. */ const clearOldAttempts = () => { const now = Date.now(); for (const [ip, attempts] of lastAttempts.entries()) { const validAttempts = attempts.filter(expireOldAttempts(now)); if (validAttempts.length === 0) { lastAttempts.delete(ip); } else { lastAttempts.set(ip, validAttempts); } } }; setInterval(clearOldAttempts, 10 * 1000); export const getUniqueIps = () => { return lastAttempts.size; }; export const ipLimiter = (req: Request, res: Response, next: NextFunction) => { if (!RATE_LIMIT_ENABLED) { next(); return; } // Exempt Agnai.chat from rate limiting since it's shared between a lot of // users. Dunno how to prevent this from being abused without some sort of // identifier sent from Agnaistic to identify specific users. if (req.ip === AGNAI_DOT_CHAT_IP) { next(); return; } // If user is authenticated, key rate limiting by their token. Otherwise, key // rate limiting by their IP address. Mitigates key sharing. const rateLimitKey = req.user?.token || req.ip; const { remaining, reset } = getStatus(rateLimitKey); res.set("X-RateLimit-Limit", config.modelRateLimit.toString()); res.set("X-RateLimit-Remaining", remaining.toString()); res.set("X-RateLimit-Reset", reset.toString()); const tryAgainInMs = getTryAgainInMs(rateLimitKey); if (tryAgainInMs > 0) { res.set("Retry-After", tryAgainInMs.toString()); res.status(429).json({ error: { type: "proxy_rate_limited", message: `This proxy is rate limited to ${ config.modelRateLimit } model requests per minute. Please try again in ${Math.ceil( tryAgainInMs / 1000 )} seconds.`, }, }); } else { next(); } };
nonuttoday/oai
src/proxy/rate-limit.ts
TypeScript
unknown
2,960
/* Accepts incoming requests at either the /kobold or /openai routes and then routes them to the appropriate handler to be forwarded to the OpenAI API. Incoming OpenAI requests are more or less 1:1 with the OpenAI API, but only a subset of the API is supported. Kobold requests must be transformed into equivalent OpenAI requests. */ import * as express from "express"; import { gatekeeper } from "./auth/gatekeeper"; import { kobold } from "./kobold"; import { openai } from "./openai"; const router = express.Router(); router.use(gatekeeper); router.use("/kobold", kobold); router.use("/openai", openai); // Each client handles the endpoints input by the user in slightly different // ways, eg TavernAI ignores everything after the hostname in Kobold mode function rewriteTavernRequests( req: express.Request, _res: express.Response, next: express.NextFunction ) { // Requests coming into /api/v1 are actually requests to /proxy/kobold/api/v1 if (req.path.startsWith("/api/v1")) { req.url = req.url.replace("/api/v1", "/proxy/kobold/api/v1"); } next(); } export { rewriteTavernRequests }; export { router as proxyRouter };
nonuttoday/oai
src/proxy/routes.ts
TypeScript
unknown
1,148
import { assertConfigIsValid, config } from "./config"; import "source-map-support/register"; import express from "express"; import cors from "cors"; import pinoHttp from "pino-http"; import childProcess from "child_process"; import { logger } from "./logger"; import { keyPool } from "./key-management"; import { adminRouter } from "./admin/routes"; import { proxyRouter, rewriteTavernRequests } from "./proxy/routes"; import { handleInfoPage } from "./info-page"; import { logQueue } from "./prompt-logging"; import { start as startRequestQueue } from "./proxy/queue"; import { init as initUserStore } from "./proxy/auth/user-store"; import { checkOrigin } from "./proxy/check-origin"; const PORT = config.port; const app = express(); // middleware app.use("/", rewriteTavernRequests); app.use( pinoHttp({ quietReqLogger: true, logger, autoLogging: { ignore: (req) => { const ignored = ["/proxy/kobold/api/v1/model", "/health"]; return ignored.includes(req.url as string); }, }, redact: { paths: [ "req.headers.cookie", 'res.headers["set-cookie"]', "req.headers.authorization", 'req.headers["x-forwarded-for"]', 'req.headers["x-real-ip"]', 'req.headers["true-client-ip"]', 'req.headers["cf-connecting-ip"]', ], censor: "********", }, }) ); app.get("/health", (_req, res) => res.sendStatus(200)); app.use((req, _res, next) => { req.startTime = Date.now(); req.retryCount = 0; next(); }); app.use(cors()); app.use( express.json({ limit: "10mb" }), express.urlencoded({ extended: true, limit: "10mb" }) ); // TODO: Detect (or support manual configuration of) whether the app is behind // a load balancer/reverse proxy, which is necessary to determine request IP // addresses correctly. app.set("trust proxy", true); // routes app.use(checkOrigin); app.get("/", handleInfoPage); app.use("/admin", adminRouter); app.use("/proxy", proxyRouter); // 500 and 404 app.use((err: any, _req: unknown, res: express.Response, _next: unknown) => { if (err.status) { res.status(err.status).json({ error: err.message }); } else { logger.error(err); res.status(500).json({ error: { type: "proxy_error", message: err.message, stack: err.stack, proxy_note: `Reverse proxy encountered an internal server error.`, }, }); } }); app.use((_req: unknown, res: express.Response) => { res.status(404).json({ error: "Not found" }); }); async function start() { logger.info("Server starting up..."); await setBuildInfo(); logger.info("Checking configs and external dependencies..."); await assertConfigIsValid(); keyPool.init(); if (config.gatekeeper === "user_token") { await initUserStore(); } if (config.promptLogging) { logger.info("Starting prompt logging..."); logQueue.start(); } if (config.queueMode !== "none") { logger.info("Starting request queue..."); startRequestQueue(); } app.listen(PORT, async () => { logger.info({ port: PORT }, "Now listening for connections."); registerUncaughtExceptionHandler(); }); logger.info( { build: process.env.BUILD_INFO, nodeEnv: process.env.NODE_ENV }, "Startup complete." ); } function registerUncaughtExceptionHandler() { process.on("uncaughtException", (err: any) => { logger.error( { err, stack: err?.stack }, "UNCAUGHT EXCEPTION. Please report this error trace." ); }); process.on("unhandledRejection", (err: any) => { logger.error( { err, stack: err?.stack }, "UNCAUGHT PROMISE REJECTION. Please report this error trace." ); }); } /** * Attepts to collect information about the current build from either the * environment or the git repo used to build the image (only works if not * .dockerignore'd). If you're running a sekrit club fork, you can no-op this * function and set the BUILD_INFO env var manually, though I would prefer you * didn't set it to something misleading. */ async function setBuildInfo() { // Render .dockerignore's the .git directory but provides info in the env if (process.env.RENDER) { const sha = process.env.RENDER_GIT_COMMIT?.slice(0, 7) || "unknown SHA"; const branch = process.env.RENDER_GIT_BRANCH || "unknown branch"; const repo = process.env.RENDER_GIT_REPO_SLUG || "unknown repo"; const buildInfo = `${sha} (${branch}@${repo})`; process.env.BUILD_INFO = buildInfo; logger.info({ build: buildInfo }, "Got build info from Render config."); return; } try { // Ignore git's complaints about dubious directory ownership on Huggingface // (which evidently runs dockerized Spaces on Windows with weird NTFS perms) if (process.env.SPACE_ID) { childProcess.execSync("git config --global --add safe.directory /app"); } const promisifyExec = (cmd: string) => new Promise((resolve, reject) => { childProcess.exec(cmd, (err, stdout) => err ? reject(err) : resolve(stdout) ); }); const promises = [ promisifyExec("git rev-parse --short HEAD"), promisifyExec("git rev-parse --abbrev-ref HEAD"), promisifyExec("git config --get remote.origin.url"), promisifyExec("git status --porcelain"), ].map((p) => p.then((result: any) => result.toString().trim())); let [sha, branch, remote, status] = await Promise.all(promises); remote = remote.match(/.*[\/:]([\w-]+)\/([\w\-\.]+?)(?:\.git)?$/) || []; const repo = remote.slice(-2).join("/"); status = status // ignore Dockerfile changes since that's how the user deploys the app .split("\n") .filter((line: string) => !line.endsWith("Dockerfile") && line); const changes = status.length > 0; const build = `${sha}${changes ? " (modified)" : ""} (${branch}@${repo})`; process.env.BUILD_INFO = build; logger.info({ build, status, changes }, "Got build info from Git."); } catch (error: any) { logger.error( { error, stdout: error.stdout.toString(), stderr: error.stderr.toString(), }, "Failed to get commit SHA.", error ); process.env.BUILD_INFO = "unknown"; } } start();
nonuttoday/oai
src/server.ts
TypeScript
unknown
6,253
import { Express } from "express-serve-static-core"; import { Key } from "../key-management/key-pool"; import { User } from "../proxy/auth/user-store"; declare global { namespace Express { interface Request { key?: Key; api: "kobold" | "openai" | "anthropic"; user?: User; isStreaming?: boolean; startTime: number; retryCount: number; queueOutTime?: number; onAborted?: () => void; proceed: () => void; heartbeatInterval?: NodeJS.Timeout; } } }
nonuttoday/oai
src/types/custom.d.ts
TypeScript
unknown
518
{ "compilerOptions": { "strict": true, "target": "ES2020", "module": "CommonJS", "moduleResolution": "node", "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "skipLibCheck": true, "skipDefaultLibCheck": true, "outDir": "build", "sourceMap": true }, "include": ["src"], "exclude": ["node_modules"], "files": ["src/types/custom.d.ts"] }
nonuttoday/oai
tsconfig.json
JSON
unknown
403
*.bat text eol=crlf *.tw text eol=lf *.sh text eol=lf *.py text eol=lf *.txt text eol=lf compile text eol=lf compile-git text eol=lf sanityCheck text eol=lf
amomynous0/fc
.gitattributes
Git
bsd-3-clause
157
# Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class *.swp *.swo # C extensions *.so # Distribution / packaging .Python env/ build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ *.egg-info/ .installed.cfg *.egg # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *,cover .hypothesis/ # Translations *.mo *.pot # Django stuff: *.log local_settings.py # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ # PyBuilder target/ # IPython Notebook .ipynb_checkpoints # pyenv .python-version # celery beat schedule file celerybeat-schedule # dotenv .env # virtualenv venv/ ENV/ # Spyder project settings .spyderproject # Rope project settings .ropeproject # Start.tw src/config/start.tw # eslint .eslintrc.js node_modules package-lock.json package.json # TODO TODO.txt # outlines *.outline # misc fc-pregmod
amomynous0/fc
.gitignore
Git
bsd-3-clause
1,216
{ "browser": true, "esversion": 6, "eqeqeq": true, "nocomma": true, "undef": true, "maxerr": 150 }
amomynous0/fc
.jshintrc
none
bsd-3-clause
105
further development: -specialized slave schools -fortifications -more levels for militia edict (further militarize society) -conquering other arcologies? Events: -famous criminal escapes to the arcology, followed by another arcology police force Bugs: -sometimes troop counts breaks -sometimes rebel numbers have fractionary parts Rules Assistant: - find a way for the new intense drugs to fit in - everything mentioned in https://gitgud.io/pregmodfan/fc-pregmod/issues/81 main.tw porting: - slaveart - createsimpletabs - displaybuilding - optionssortasappearsonmain - resetassignmentfilter - mainlinks - arcology description - office description - slave summary - use guard - toychest - walk past DCoded: Farmyard - allow adoption of animals (potentially allow them to be customized) - add animals to slave v slave fights - loser gets fucked, etc - add female animal-on-slave scene - add animal-human pregnancy - allow slaves to be assigned to the Farmyard - add zoo - open to the public / charge admission - assign slaves to generate more income / rep - maybe attract immigrants Nursery X create Nursery - create array / list of babies in Nursery with their age (starts at 0, week 0), basic genetics (skin color, eye color) - add a list or variable to slave array with number of children sent to Nursery - hardcap of 50 (40?) - add option to kick out babies if space is needed - rewrite certain areas - rewrite nursery.tw and incubator.tw with link macros Misc - rework seNonlethalPit.tw to take different variables into account (virginity, devotion / trust, fetishes / quirks, etc) X rewrite seNonlethalPit.tw - have slave come in naked and bound, then have the animal chase her around and see how long she'll last - add personality types - add boomerang to "gated community" event X add check for amputees in killSlave
amomynous0/fc
TODO.txt
Text
bsd-3-clause
1,847
# How to vector art Please read the whole document before starting to work. Some aspects are not obvious right away. Note: This does not actually describe how to be an artist. ## TL;DR killall inkscape artTools/vector_layer_split.py artTools/vector_source.svg tw src/art/vector/layers/ compile python3 artTools/normalize_svg.py artTools/vector_source.svg git commit -a ## 1. Be an artist Make changes to the vector_source.svg. Inkscape was thoroughly tested. Adobe Illustrator might work decently, too. ## 2. Respect the structure While editing, keep the Layers in mind. * In Inkscape, Layers are special "Inkscape groups". * In Illustrator, Layers are groups with user-definded IDs. * All Layers should have an ID that is globally unique (not just within their subtree). * Please use anonymous groups only for the ease of editing. Remove all "helper" groups before finally saving the file. * Anonymous groups can be used for continous scaling (of e.g. boobs). * Every asset that should go into a separate file needs to be in a labelled group (even if that is a group with only one shape). * There are some globally available styles defined as CSS classes (e.g. skin, hair). Use them if your asset should be changed upon display. Do not set the style directly in the object. ## 3. Normalise the document (before committing) **THIS IS IMPORTANT** The various editors out there (Inkscape, Illustrator) may use different variants of formatting the SVG XML. Use python3 normalize_svg.py vector_source.svg before committing to normalise the format so git will not freak out about the changed indentation. If you use Inkscape, please use in Edit → Settings → Input/Output → SVG-Output → Path Data → Optimized. This is the default. In case your Editor uses another path data style which cannot be changed, please contact the other artists and developers via the issue tracker to find a new common ground. What it does: * Formats the SVG XML according to Pythons lxml module, regardless of editor. * Adobe Illustrator uses group IDs as layer labels. Inkscape however uses layer labels and a separate, auto-generated group ID. normalize_svg.py overwrites the group ID with the Inkscape layer label so they are synchronised with Inkscape layer labels. * Inkscape copies the global style definition into the object *every time* the object is edited. If an object references a CSS class AND at the same time has a local style, the local style is removed so global dynamic styling is possible later on. Note: Behaviour of Adobe Illustrator is untested. ## 4. Split the layers For NoX original, deepurk extensions, execute python3 vector_layer_split.py vector_deepmurk_primary.svg tw ../src/art/vector/layers/ For faraen revamped art (based on NoX original) python3 vector_revamp_layer_split.py vector_revamp_source.svg tw ../src/art/vector_revamp/layers/ . This application reads all groups in `vector_source.svg`. Each group is stored in a separate file in the target directory `/src/art/vector/layers/`. The group ID sets the file name. Therefore, the group ID **must not** contain spaces or any other weird characters. Also consider: * A group with ID ending in _ is ignored. Use Layers ending in _ to keep overview. * A group with ID starting with "g" (Inkscape) or "XMLID" (Illustrator) is also ignored. * Existing files are overwritten **without enquiry**. * The target directory is not emptied. If a file is no longer needed, you should remove it manually. * This procedure removes global definitions. This means, SVG filters are currently not supported. Available output formats are `svg` and `tw`. `svg` output exists for debug reasons. `tw` embeds the SVG data into Twine files, but removes the global style definitions so they can be set during display. ## 5. Edit the code `/src/art/` contains Twine code which shows the assets in the story. There are many helpful comments in `/src/art/artWidgets.tw`. The code also generates the previously removed global style definitions on the fly and per display. ## 6. Compile the story Use the provided compile script (Windows batch or shell) for compiling. ## 7. Advanced usage You can define multiple CSS classes to one element, e.g. "skin torso". When procedurally generating CSS, you can then set a global "skin" style, and a different one for "torso". You can put variable text into the image using single quotes, e.g. "'+_tattooText+'". The single quotes *break* the quoting in Twine so the content of the Twine variable `_tattooText` is shown upon display. You can even align text on paths. An anonymous group can be used for dynamic transformation. However, finding the correct parameters for the affine transformation matrix can be cumbersome. Use any method you see fit. See `src/art/vector/Boob.tw` for one example of the result.
amomynous0/fc
artTools/README.md
Markdown
bsd-3-clause
4,901
Apron AttractiveLingerie AttractiveLingerieForAPregnantWoman BallGown Battledress Blouse BodyOil Bunny Chains ChattelHabit Cheerleader ClubslutNetting ComfortableBodysuit Conservative Cutoffs Cybersuit FallenNunsHabit FuckdollSuit HalterTopDress HaremGauze Hijab Huipil Kimono LatexCatsuit Leotard LongQipao MaternityDress MilitaryUniform MiniDress Monokini NiceBusinessAttire NiceMaid NiceNurse No PenitentNunsHabit RedArmyUniform RestrictiveLatex ScalemailBikini SchoolgirlUniform SchutzstaffelUniform ShibariRopes SlaveGown Slutty SluttyBusinessAttire SluttyJewelry SluttyMaid SluttyNurse SluttyQipao SluttySchutzstaffelUniform Spats StretchPants StringBikini Succubus Toga UncomfortableStraps Western
amomynous0/fc
artTools/game_suffixes.txt
Text
bsd-3-clause
705
#!/bin/bash # This script reads all possible values of $slave.clothes as mentioned by the documentation. # This script uses the actual implementation of the JS clothing2artSuffix function as defined in src/art/vector/Helper_Functions.tw # This script outputs suffixes to be used in the SVG naming scheme # This script is meant to be executed at the project root directory. # This script depends on bash, grep, sed, paste and nodejs (so best executed on Linux, I guess) # grep -Porh '(?<=\.clothes = )"[^"]+"' src/ | sort | uniq # searches sources for all clothes strings actually used in the game, even undocumented ones ( echo 'var window = {};' grep -v '^:' src/art/vector/Helper_Functions.tw echo -n 'Array(' sed '/^clothes:/,/:/!d' "slave variables documentation - Pregmod.txt" | grep '"' | paste -sd, echo ').forEach(v => {console.log(window.clothing2artSuffix(v));});' ) | nodejs | sort
amomynous0/fc
artTools/generate_game_suffixes.sh
Shell
bsd-3-clause
908
#!/usr/bin/env python3 ''' Application for "normalizing" SVGs These problems are addressed: * Inkscape notoriously copies class styles into the object definitions. https://bugs.launchpad.net/inkscape/+bug/167937 * Inkscape uses labels on layers. Layers are basically named groups. Inkscape does not sync the group id with the layer label. Usage Example: python3 inkscape_svg_fixup.py vector_source.svg ''' import lxml.etree as etree import sys def fix(tree): # know namespaces ns = { 'svg' : 'http://www.w3.org/2000/svg', 'inkscape' : 'http://www.inkscape.org/namespaces/inkscape' } # find document global style definition # mangle it and interpret as python dictionary style_element = tree.find('./svg:style',namespaces=ns) style_definitions = style_element.text pythonic_style_definitions = '{'+style_definitions.\ replace('\t.','"').replace('{','":"').replace('}','",').\ replace('/*','#')+'}' styles = eval(pythonic_style_definitions) # go through all SVG elements for elem in tree.iter(): if (elem.tag == etree.QName(ns['svg'], 'g')): # compare inkscape label with group element ID l = elem.get(etree.QName(ns['inkscape'], 'label')) if l: i = elem.get('id') if (i != l): print("Overwriting ID %s with Label %s..."%(i, l)) elem.set('id', l) # clean styles (for easier manual merging) style_string = elem.get('style') if style_string: split_styles = style_string.strip('; ').split(';') styles_pairs = [s.strip('; ').split(':') for s in split_styles] filtered_pairs = [ (k,v) for k,v in styles_pairs if not ( k.startswith('font-') or k.startswith('text-') or k.endswith('-spacing') or k in ["line-height", " direction", " writing", " baseline-shift", " white-space", " writing-mode"] )] split_styles = [':'.join(p) for p in filtered_pairs] style_string = ';'.join(sorted(split_styles)) elem.attrib["style"] = style_string # remove all style attributes offending class styles s = elem.get('style') c = elem.get('class') if (c and s): s = s.lower() c = c.split(' ')[0] # regard main style only cs = '' if c in styles: cs = styles[c].strip('; ').lower() if (c not in styles): print("Object id %s references unknown style class %s."%(i,c)) else: if (cs != s.strip('; ')): print("Style %s removed from object id %s differed from class %s style %s."%(s,i,c,cs)) del elem.attrib["style"] if __name__ == "__main__": input_file = sys.argv[1] tree = etree.parse(input_file) fix(tree) # store SVG into file (input file is overwritten) svg = etree.tostring(tree, pretty_print=True) with open(input_file, 'wb') as f: f.write('<?xml version="1.0" encoding="UTF-8" standalone="no"?>\n'.encode("utf-8")) f.write(svg)
amomynous0/fc
artTools/normalize_svg.py
Python
bsd-3-clause
2,914
#!/usr/bin/env python3 ''' Application for procedural content adaption *THIS IS VERY EXPERIMENTAL* Contains a very poor man's implementation of spline mesh warping. This application parses SVG path data of an outfit sample aligned to a body part. The outfit is then replicated for other shapes of the same body part. Example data is geared towards generating a strap outfit for boobs and torso for all sizes of boobs and all shapes of torsos based on a single outfit for boobs of size 2 and a hourglass torso respectively. Limitations: * handles paths only * only svg.path Line and CubicBezier are tested * only the aforementioned examples are tested Usage: python3 vector_clothing_replicator.py infile clothing bodypart destinationfile Usage Example: python3 vector_clothing_replicator.py vector_source.svg Straps Boob vector_destination.svg python3 vector_clothing_replicator.py vector_source.svg Straps Torso vector_destination.svg ''' from svg.path import parse_path import copy import lxml.etree as etree import sys REFERENCE_PATH_SAMPLES = 200 EMBED_REPLICATIONS = True # wether to embed all replications into the input file or output separate files input_file = sys.argv[1] clothing = sys.argv[2] bodypart = sys.argv[3] output_file_embed = sys.argv[4] # TODO: make these configurable output_file_pattern = '%s_%s_%s.svg' #bodypart, target_id, clothing if ('Torso' == bodypart): xpath_shape = './svg:g[@id="Torso_"]/svg:g[@id="Torso_%s"]/svg:path[@class="skin torso"]/@d' # TODO: formulate more general, independent of style xpath_outfit_container = '//svg:g[@id="Torso_Outfit_%s_"]'%(clothing) xpath_outfit = '//svg:g[@id="Torso_Outfit_%s_%s"]'%(clothing,'%s') target_ids = "Unnatural,Hourglass,Normal".split(",") reference_id = "Hourglass" else: raise RuntimeError("Please specify a bodypart for clothing to replicate.") tree = etree.parse(input_file) ns = {'svg' : 'http://www.w3.org/2000/svg'} canvas = copy.deepcopy(tree) for e in canvas.xpath('./svg:g',namespaces=ns)+canvas.xpath('./svg:path',namespaces=ns): # TODO: this should be "remove all objects, preserve document properties" e.getparent().remove(e) def get_points(xpath_shape): ''' This funciton extracts reference paths by the given xpath selector. Each path is used to sample a fixed number of points. ''' paths_data = tree.xpath(xpath_shape,namespaces=ns) points = [] path_length = None for path_data in paths_data: p = parse_path(path_data) points += [ p.point(1.0/float(REFERENCE_PATH_SAMPLES)*i) for i in range(REFERENCE_PATH_SAMPLES) ] if (not points): raise RuntimeError( 'No paths for reference points found by selector "%s".'%(xpath_shape) ) return points def point_movement(point, reference_points, target_points): ''' For a given point, finds the nearest point in the reference path. Gives distance vector from the nearest reference point to the respective target reference point. ''' distances = [abs(point-reference_point) for reference_point in reference_points] min_ref_dist_idx = min(enumerate(distances), key=lambda x:x[1])[0] movement = target_points[min_ref_dist_idx] - reference_points[min_ref_dist_idx] return movement reference_points = get_points(xpath_shape%(reference_id)) container = tree.xpath(xpath_outfit_container,namespaces=ns) if (len(container) != 1): raise RuntimeError('Outfit container selector "%s" does not yield exactly one layer.'%(xpath_outfit_container)) container = container[0] outfit_source = container.xpath(xpath_outfit%(reference_id),namespaces=ns) if (len(outfit_source) != 1): raise RuntimeError('Outfit source selector "%s" does not yield exactly one outfit layer in container selected by "%s".'%(xpath_outfit%(reference_id), xpath_outfit_container)) outfit_source = outfit_source[0] for target_id in target_ids: print( 'Generating variant "%s" of clothing "%s" for bodypart "%s"...'% (target_id, clothing, bodypart) ) outfit = copy.deepcopy(outfit_source) paths = outfit.xpath('./svg:path',namespaces=ns) if target_id == reference_id: print("This is the source variant. Skipping...") else: layerid = outfit.get('id').replace('_%s'%(reference_id),'_%s'%(target_id)) outfit.set('id', layerid) outfit.set(etree.QName('http://www.inkscape.org/namespaces/inkscape', 'label'), layerid) # for the Inkscape-users target_points = get_points(xpath_shape%(target_id)) if (len(reference_points) != len(target_points)): raise RuntimeError( ('Different amounts of sampled points in reference "%s" and target "%s" paths. '+ 'Selector "%s" probably matches different number of paths in the two layers.')% (reference_id, target_id, xpath_shape) ) for path in paths: path_data = path.get("d") p = parse_path(path_data) for segment in p: original_distance = abs(segment.end-segment.start) start_movement = point_movement(segment.start, reference_points, target_points) segment.start += start_movement end_movement = point_movement(segment.end, reference_points, target_points) segment.end += end_movement distance = abs(segment.end-segment.start) try: # enhance position of CubicBezier control points # amplification is relative to the distance gained by movement segment.control1 += start_movement segment.control1 += (segment.control1-segment.start)*(distance/original_distance-1.0) segment.control2 += end_movement segment.control2 += (segment.control2-segment.end)*(distance/original_distance-1.0) except AttributeError as ae: # segment is not a CubicBezier pass path.set("d", p.d()) if EMBED_REPLICATIONS: container.append(outfit) if not EMBED_REPLICATIONS: container = copy.deepcopy(canvas).xpath('.',namespaces=ns)[0] container.append(outfit) if not EMBED_REPLICATIONS: svg = etree.tostring(container, pretty_print=True) with open((output_file_pattern%(bodypart, target_id, clothing)).lower(), 'wb') as f: f.write('<?xml version="1.0" encoding="UTF-8" standalone="no"?>\n'.encode("utf-8")) f.write(svg) if EMBED_REPLICATIONS: svg = etree.tostring(tree, pretty_print=True) with open(output_file_embed, 'wb') as f: f.write('<?xml version="1.0" encoding="UTF-8" standalone="no"?>\n'.encode("utf-8")) f.write(svg)
amomynous0/fc
artTools/vector_clothing_replicator.py
Python
bsd-3-clause
6,444
#!/usr/bin/env python3 ''' Application for splitting groups from one SVG file into separate files Usage: python3 vector_layer_split.py infile format outdir Usage Example: python3 vector_layer_split.py vector_source.svg tw ../src/art/vector/layers/ ''' import lxml.etree as etree import sys import os import copy import re import normalize_svg input_file = sys.argv[1] output_format = sys.argv[2] output_directory = sys.argv[3] if not os.path.exists(output_directory): os.makedirs(output_directory) ns = { 'svg' : 'http://www.w3.org/2000/svg', 'inkscape' : 'http://www.inkscape.org/namespaces/inkscape', 'sodipodi':"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd", } tree = etree.parse(input_file) normalize_svg.fix(tree) # prepare output template template = copy.deepcopy(tree) root = template.getroot() # remove all svg root attributes except document size for a in root.attrib: if (a != "viewBox"): del root.attrib[a] # add placeholder for CSS class (needed for workaround for non HTML 5.1 compliant browser) if output_format == 'tw': root.attrib["class"] = "'+_art_display_class+'" # remove all content, including metadata # for twine output, style definitions are removed, too defs = None for e in root: if (e.tag == etree.QName(ns['svg'], 'defs')): defs = e if (e.tag == etree.QName(ns['svg'], 'g') or e.tag == etree.QName(ns['svg'], 'metadata') or e.tag == etree.QName(ns['svg'], 'defs') or e.tag == etree.QName(ns['sodipodi'], 'namedview') or (output_format == 'tw' and e.tag == etree.QName(ns['svg'], 'style')) ): root.remove(e) # template preparation finished # prepare regex for later use regex_xmlns = re.compile(' xmlns[^ ]+',) regex_space = re.compile('[>][ ]+[<]',) # find all groups layers = tree.xpath('//svg:g',namespaces=ns) for layer in layers: i = layer.get('id') if ( # disregard non-content groups i.endswith("_") or # manually suppressed with underscore i.startswith("XMLID") or # Illustrator generated group i.startswith("g") # Inkscape generated group ): continue # create new canvas output = copy.deepcopy(template) # copy all shapes into template canvas = output.getroot() for e in layer: canvas.append(e) # represent template as SVG (binary string) svg = etree.tostring(output, pretty_print=False) # poor man's conditional defs insertion # TODO: extract only referenced defs (filters, gradients, ...) # TODO: detect necessity by traversing the elements. do not stupidly search in the string representation if ("filter:" in svg.decode('utf-8')): # it seems there is a filter referenced in the generated SVG, re-insert defs from main document canvas.insert(0,defs) # re-generate output svg = etree.tostring(output, pretty_print=False) if (output_format == 'tw'): # remove unnecessary attributes # TODO: never generate unnecessary attributes in the first place svg = svg.decode('utf-8') svg = regex_xmlns.sub('',svg) svg = svg.replace(' inkscape:connector-curvature="0"','') # this just saves space svg = svg.replace('\n','').replace('\r','') # print cannot be multi-line svg = regex_space.sub('><',svg) # remove indentaion svg = svg.replace('svg:','') # svg namespace was removed svg = svg.replace('<g ','<g transform="\'+_art_transform+\'"') # internal groups are used for scaling svg = svg.encode('utf-8') # save SVG string to file i = layer.get('id') output_path = os.path.join(output_directory,i+'.'+output_format) with open(output_path, 'wb') as f: if (output_format == 'svg'): # Header for normal SVG (XML) f.write('<?xml version="1.0" encoding="UTF-8" standalone="no"?>\n'.encode("utf-8")) f.write(svg) elif (output_format == 'tw'): # Header for SVG in Twine file (SugarCube print statement) f.write((':: Art_Vector_%s [nobr]\n\n'%(i)).encode("utf-8")) f.write("<<print '<html>".encode("utf-8")) f.write(svg) f.write("</html>' >>".encode("utf-8"))
amomynous0/fc
artTools/vector_layer_split.py
Python
bsd-3-clause
4,035
#!/usr/bin/env python3 ''' Application for splitting groups from one SVG file into separate files Usage: python3 vector_layer_split.py infile format outdir Usage Example: python3 vector_layer_split.py vector_source.svg tw ../src/art/vector/layers/ ''' import lxml.etree as etree from lxml.etree import XMLParser, parse import sys import os import copy import re import normalize_svg input_file = sys.argv[1] output_format = sys.argv[2] output_directory = sys.argv[3] if not os.path.exists(output_directory): os.makedirs(output_directory) ns = { 'svg': 'http://www.w3.org/2000/svg', 'inkscape': 'http://www.inkscape.org/namespaces/inkscape', 'sodipodi': "http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd", } p = XMLParser(huge_tree=True) tree = parse(input_file, parser=p) #tree = etree.parse(input_file) normalize_svg.fix(tree) # prepare output template template = copy.deepcopy(tree) root = template.getroot() # remove all svg root attributes except document size for a in root.attrib: if (a != "viewBox"): del root.attrib[a] # add placeholder for CSS class (needed for workaround for non HTML 5.1 compliant browser) if output_format == 'tw': root.attrib["class"] = "'+_art_display_class+'" # remove all content, including metadata # for twine output, style definitions are removed, too defs = None for e in root: if (e.tag == etree.QName(ns['svg'], 'defs')): defs = e if (e.tag == etree.QName(ns['svg'], 'g') or e.tag == etree.QName(ns['svg'], 'metadata') or e.tag == etree.QName(ns['svg'], 'defs') or e.tag == etree.QName(ns['sodipodi'], 'namedview') or (output_format == 'tw' and e.tag == etree.QName(ns['svg'], 'style')) ): root.remove(e) # template preparation finished # prepare regex for later use regex_xmlns = re.compile(' xmlns[^ ]+', ) regex_space = re.compile('[>][ ]+[<]', ) regex_transformValue = re.compile('(?<=transformVariableName=")[^"]*', ) regex_transformVar = re.compile('transformVariableName="[^"]*"', ) regex_transformAttr = re.compile('transform="[^"]*"', ) # find all groups layers = tree.xpath('//svg:g', namespaces=ns) for layer in layers: i = layer.get('id') if ( # disregard non-content groups i.endswith("_") or # manually suppressed with underscore i.startswith("XMLID") or # Illustrator generated group i.startswith("g") # Inkscape generated group ): continue # create new canvas output = copy.deepcopy(template) # copy all shapes into template canvas = output.getroot() for e in layer: canvas.append(e) # represent template as SVG (binary string) svg = etree.tostring(output, pretty_print=False) # poor man's conditional defs insertion # TODO: extract only referenced defs (filters, gradients, ...) # TODO: detect necessity by traversing the elements. do not stupidly search in the string representation if ("filter:" in svg.decode('utf-8')): # it seems there is a filter referenced in the generated SVG, re-insert defs from main document canvas.insert(0, defs) # re-generate output svg = etree.tostring(output, pretty_print=False) elif ("clip-path=" in svg.decode('utf-8')): # it seems there is a clip path referenced in the generated SVG, re-insert defs from main document canvas.insert(0, defs) # re-generate output svg = etree.tostring(output, pretty_print=False) if (output_format == 'tw'): # remove unnecessary attributes # TODO: never generate unnecessary attributes in the first place svg = svg.decode('utf-8') svg = regex_xmlns.sub('', svg) svg = svg.replace(' inkscape:connector-curvature="0"', '') # this just saves space svg = svg.replace('\n', '').replace('\r', '') # print cannot be multi-line svg = regex_space.sub('><', svg) # remove indentaion svg = svg.replace('svg:', '') # svg namespace was removed transformGroups = regex_transformVar.findall(svg) if (len(transformGroups) > 0): svg = regex_transformAttr.sub('', svg) for transformGroup in transformGroups: transformValue = regex_transformValue.search(transformGroup) if (transformValue is not None): svg = svg.replace(transformGroup, ' transform="\'+' + transformValue.group() + '+\'" ') # internal groups are used for scaling svg = svg.encode('utf-8') # save SVG string to file i = layer.get('id') output_path = os.path.join(output_directory, i + '.' + output_format) with open(output_path, 'wb') as f: if (output_format == 'svg'): # Header for normal SVG (XML) f.write('<?xml version="1.0" encoding="UTF-8" standalone="no"?>\n'.encode("utf-8")) f.write(svg) elif (output_format == 'tw'): # Header for SVG in Twine file (SugarCube print statement) f.write((':: Art_Vector_Revamp_%s [nobr]\n\n' % (i)).encode("utf-8")) f.write("<<print '<html>".encode("utf-8")) f.write(svg) f.write("</html>' >>".encode("utf-8"))
amomynous0/fc
artTools/vector_revamp_layer_split.py
Python
bsd-3-clause
5,232
# Ignore everything in this directory * # Except the following: !.gitignore
amomynous0/fc
bin/.gitignore
Git
bsd-3-clause
78
#!/bin/bash while [[ "$1" ]] do case $1 in --insane) insane="true" ;; *) echo "Unknown argument $1" exit 1 esac shift done # Find and insert current commit COMMIT=$(git rev-parse --short HEAD) sed -Ei "s/build .releaseID/\0 commit $COMMIT/" src/gui/mainMenu/AlphaDisclaimer.tw if [[ ! "$insane" ]] then # Run sanity check. ./sanityCheck fi ARCH="$(uname -m)" if [ "$ARCH" = "x86_64" ] then echo "x64 arch" ./devTools/tweeGo/tweego_nix64 -o bin/FC_pregmod.html src/ || build_failed="true" elif echo "$ARCH" | grep -Ee '86$' > /dev/null then echo "x86 arch" ./devTools/tweeGo/tweego_nix86 -o bin/FC_pregmod.html src/ || build_failed="true" elif echo "$ARCH" | grep -Ee '^arm' > /dev/null then echo "arm arch" # tweego doesn't provide arm binaries so you have to build it yourself export TWEEGO_PATH=devTools/tweeGo/storyFormats tweego -o bin/FC_pregmod.html src/ || build_failed="true" else exit 2 fi # Revert AlphaDisclaimer for next compilation git checkout -- src/gui/mainMenu/AlphaDisclaimer.tw if [ "$build_failed" = "true" ] then exit 1 fi #Make the output prettier, replacing \t with a tab and \n with a newline sed -i -e '/^.*<div id="store-area".*$/s/\\t/\t/g' -e '/^.*<div id="store-area".*$/s/\\n/\n/g' bin/FC_pregmod.html
amomynous0/fc
compile
none
bsd-3-clause
1,264
#!/bin/bash # Run sanity check. ./sanityCheck HASH="$(git rev-list -n 1 --abbrev-commit HEAD)" ARCH="$(uname -m)" if [ "$ARCH" = "x86_64" ] then echo "x64 arch" ./devTools/tweeGo/tweego_nix64 -o "bin/FC_pregmod_$HASH.html" src/ elif echo "$ARCH" | grep -Ee '86$' > /dev/null then echo "x86 arch" ./devTools/tweeGo/tweego_nix86 -o "bin/FC_pregmod_$HASH.html" src/ elif echo "$ARCH" | grep -Ee '^arm' > /dev/null then echo "arm arch" # tweego doesn't provide arm binaries so you have to build it yourself export TWEEGO_PATH=devTools/tweeGo/storyFormats tweego -o "bin/FC_pregmod_$HASH.html" src/ else exit 2 fi #Make the output prettier, replacing \t with a tab and \n with a newline sed -i -e '/^<div id="store-area".*$/s/\\t/\t/g' -e '/^<div id="store-area".*$/s/\\n/\n/g' "bin/FC_pregmod_$HASH.html" echo "FC_pregmod_$HASH.html" compilation finished.
amomynous0/fc
compile-git
none
bsd-3-clause
866
@echo off :: Free Cities Basic Compiler - Windows :: Set working directory pushd %~dp0 :: Run the appropriate compiler for the user's CPU architecture. if %PROCESSOR_ARCHITECTURE% == AMD64 ( CALL "%~dp0devTools\tweeGo\tweego_win64.exe" -o "%~dp0bin/FC_pregmod.html" "%~dp0src" ) else ( CALL "%~dp0devTools\tweeGo\tweego_win86.exe" -o "%~dp0bin/FC_pregmod.html" "%~dp0src" ) popd ECHO Done
amomynous0/fc
compile.bat
Batchfile
bsd-3-clause
415
@echo off :: Free Cities Basic Compiler - Windows :: Set working directory pushd %~dp0 :: See if we can find a git installation setlocal enabledelayedexpansion for %%k in (HKCU HKLM) do ( for %%w in (\ \Wow6432Node\) do ( for /f "skip=2 delims=: tokens=1*" %%a in ('reg query "%%k\SOFTWARE%%wMicrosoft\Windows\CurrentVersion\Uninstall\Git_is1" /v InstallLocation 2^> nul') do ( for /f "tokens=3" %%z in ("%%a") do ( set GIT=%%z:%%b set GITFOUND=yes goto FOUND ) ) ) ) :FOUND if %GITFOUND% == yes ( set "PATH=%GIT%bin;%PATH%" bash --login -c ./sanityCheck ) :: Compile the game call "%~dp0compile.bat" if %GITFOUND% == yes ( :: Make the output prettier, replacing \t with a tab and \n with a newline bash -c "sed -i -e '/^.*<div id=\"store-area\".*$/s/\\\t/\t/g' -e '/^.*<div id=\"store-area\".*$/s/\\\n/\n/g' bin/FC_pregmod.html" :: Revert ./src/init/storyInit.tw for next compilation git checkout -- ./src/init/storyInit.tw ) popd PAUSE
amomynous0/fc
compile_debug+sanityCheck.bat
Batchfile
bsd-3-clause
1,074
@echo off :: Free Cities Basic Compiler - Windows :: Set working directory pushd %~dp0 :: Compile the game call "%~dp0compile.bat" popd PAUSE
amomynous0/fc
compile_debug.bat
Batchfile
bsd-3-clause
156
Anatomy of a FreeCities event Type There are several types of events. They all happen during the end-of-week calculation, AFTER the normal changes to the slaves and all the economic effects (including you messing with your corporation) happened. Scheduled events Nonrandom events Random nonindividual events Random individual events The differences between them are almost non-existent. If they happen, they happen in this order, so you could say it's a kind of event priority ordering. The last two events pre-select a slave (in $eventSlave), with the "nonindividual" events using all your slaves while the "individual" events use only non-fuckdolls, typically from your penthouse. When writing your event, you're free to ignore this and choose your own slave or create a new one. By convention, scheduled events tend to go back to the "Scheduled Event" passage so that other such events can run; all the others tend to just skip to the next event category. Nothing in code forces you to do it this way for your events. Preconditions Most events have some kind of precondition for when they happen. Scheduled events always happen when their preconditions are true. Nonrandom events happen when their preconditions are true and no other nonrandom events get picked first (so writing a too-often-true precondition is a good way to break the game by blocking any further such events). The two other types of events get put in a pool ($events) if they match the precondition, then at most one event gets pulled from the pool per type. NonRandomEvent (26-33) <<elseif (_effectiveWeek == 14) && $badC != 1>> <<set _valid = $slaves.find(function(s) { return s.curatives > 1 || s.inflationType == "curative"; })>> <<if def _valid>> <<set $badC = 1, $Event = "bad curatives">> <<goto "Generic Plot Events">> <<else>> <<set $badC = 1>> <<goto "Nonrandom Event">> <</if>> If it is week fourteen and the player hasn't ready seen the event, a check is then made for slaves that either are on curatives or have their implants filled by curatives. If it was successful then load the "bad curatives" generic event, if unsuccessful set the flag anyway and read from the Nonrandom Event passage. Immediate effects Every event can have immediate effects, which happen when the event gets chosen. For most events, those are what should happen if the player ignores the event (by hitting "Continue" or the space bar on the keyboard). Choice effects (see below) can override or roll back those. reRecuit (4-19) <<if Array.isArray($recruit)>> <<if $cheatMode == 1>> <<set $nextButton = "Back", $nextLink = "Nonrandom Event", $returnTo = "Nonrandom Event">> /* if user just clicks spacebar */ ''A random recruit event would have been selected from the following:'' <br> <<for _i = 0; _i < $recruit.length; _i++>> <<print "[[$recruit[_i]|RE recruit][$recruit = $recruit[" + _i + "]]]">> <br> <</for>> <br><br>[[Go Back to Random Nonindividual Event|Random Nonindividual Event][$eventSlave = 0]] <<else>> <<set $recruit = $recruit.random()>> <<goto "RE recruit">> <</if>> <<else>> If cheat mode is enabled and the user presses the space bar go back to the start. Main event text The bulk of the writing will be in the main event text. There are quite a few rules to deal with here. The PC is referred to in the second person singular ("you"), everyone else in third person. The PC has no direct speech. All the things "you" say are described, not quoted. A slave can be linked with the macro <<EventNameLink _Slave>>. This allows the player to click on the slave name and view their description, then go back to the event. WARNING: Going back triggers the event passage again, so if your event has immediate effects (see above), make sure to NOT repeat them by setting corresponding flags (this is harder than it sounds in general). <<SlaveTitle _Slave>> sets $desc (which ends up being a string like "slavegirl", "MILF", "futanari" and so on, depending on slave). <<SlavePronouns _Slave>> allows you to use the variables $pronoun ("she"/"he"/"it"), $pronounCap ("She"/"He"/"It"), $possessive ("her"/"his"/"its"), $possessiveCap ("Her"/"His"/"Its") and $object ("her"/"him"/"it"). There is NO variable for self-possession ("hers"/"his"/"its") and for "herself", you need to use <<= $object>>self. One more macro initializes several others and is required when you have a slave speak and want to use direct quotes: <<Enunciate _Slave>> allows you to use <<Master>>, <<WrittenMaster>>, <<says>> (which turns into "lisps" when that's the case) and the lisping replacers <<s>>, <<ss>>, <<S>>, <<c>> and <<z>>. The text should be about large enough to fit on the screen assuming typical monitor sizes. In terms of visible text, about 1000 words are a fine limit to aim for. There's a lot to keep in mind in terms of different appearances and circumstances, so keep your document with slave variables as a reference nearby. It's fine - and a part of the normal workflow - to first write an event without any variation, then go through it and vary the text here and there. Choices You should keep the amount of choices small, but not too small. About three to five is generally a good number. Choices which can't be taken due to the current situation should be displayed as such ("You lack the funds ...") if they are an obvious choice, hidden when they aren't (for example, in event chains you might want to hide choices if the player didn't do something specific or didn't acquire some specific bit of knowledge). Every choice should be a simple sentence of the form "Do something." followed by a short explanation of the obvious effects. Choices should also be hidden when they run against the game rules, like for example the setting if the player wants to see "extreme" content. diary (313-325) <<if $dairyFeedersUpgrade == 1>> The milking machines can hold feeders in slaves' mouths and inject drugs into their bodies, ensuring ideal nutrition and production. <br>&nbsp;&nbsp;&nbsp;&nbsp;The feeders are <<if $dairyFeedersSetting == 2>> ''industrial.'' [[Moderate|Dairy][$dairyFeedersSetting = 1, $dairyFeedersSettingChanged = -1]] <<elseif $dairyFeedersSetting == 1>> ''active.'' [[Inactive|Dairy][$dairyFeedersSetting = 0]]<<if ($seeExtreme != 0) && ($dairyRestraintsSetting == 2)>> | [[Industrial|Dairy][$dairyFeedersSetting = 2, $dairyFeedersSettingChanged = 1]]<</if>> <<else>> ''inactive.'' [[Active|Dairy][$dairyFeedersSetting = 1]] <</if>> <<else>> $dairyNameCaps is equipped to feed and clean slaves normally. [[Upgrade the milking machines with intubators|Dairy][$cash -= _Tmult1, $dairyFeedersUpgrade = 1]] //Costs ¤_Tmult1 and will increase upkeep costs// <</if>> In order to enable the industrial feeder option both any of the see extreme content options has be enabled and the restraint's have to be already set to industrial. Remember that "do nothing" is almost always a choice (it's called "Continue" and can be found on the left side of the screen) so your events don't need this as an extra choice. Choice text This should be a short text describing the effects of your choice. Generally shorter than the main text, but all the other things mentioned there apply. Try to keep surprise buttsex to a minimum. For example this cut up version of "paternalist encounter" from REFS (l:106-139). <span id="result"> <<link "Alert your drones and keep walking">> <</link>> <<if $cash >= 2000>> <br><<link "Take the poor slave girl into your custody">> <br><<link "Publicly confront the citizen">> So here you can either, A) "Alert your drones and keep walking", B) if $cash is above 2000 you can take acquire the slave or C) "Publicly confront the citizen". Choice effect A choice doesn't need to have a specific effect. If your event has an immediate effect, remember to take that into account when you decide on the choice's effects. <span id="result"> <<link "Alert your drones and keep walking">> <<replace "#result">> You inform $assistantName that you have a slave beater in need of detainment by your security drones, then continue on your way confident in your knowledge that the citizen will soon be in custody. <</replace>> <</link>> <<if $cash >= 2000>> <br><<link "Take the poor slave girl into your custody">> <<replace "#result">> Confronting the citizen is simplicity in itself; he would not dare defy you under threat of arrest by your security drones and is unlikely to garner any sympathy from the public for his degradationist behaviors. As such, you are able to take civil ownership over the poor slave girl and take her into your care with only minimal compensation to the citizen. As you stride away from her former owner with the girl in your arms, she leans over to plant a chaste kiss of thanks on your cheek. <<set $cash -= 2000>> <<set $activeSlaveOneTimeMaxAge = 22>> <<include "Generate New Slave">> <<set $activeSlave.origin = "She was taken into your custody from an abusive owner.">> <<set $activeSlave.devotion = random(-25,0)>> <<set $activeSlave.trust = random(-25,0)>> <<set $activeSlave.boobs = random(300,450)>> <<set $activeSlave.hips = random(-2,-1)>> <<set $activeSlave.butt = random(0,2)>> <<set $activeSlave.health = random(10,20)>> <<include "New Slave Intro">> <<set $nextLink = "AS Dump", $returnTo = "RIE Eligibility Check">> <</replace>> <</link>> // Taking custody of the girl will cost ¤2000. // <</if>> <br><<link "Publicly confront the citizen">> <<replace "#result">> Your walk up to the citizen is not accompanied by shaking ground or tumultuous fanfare, yet the citizen looks as if death itself has come before him. You don't hurt him physically, instead chastising him publicly in front of his fellow peers who begin to cheer their agreement. You end your tirade of verbal abuse with a reminder that although the man is a citizen of your arcology, that does not give him the impunity to shirk the law. To make it clear his next offense will be his last, a brace of your security drones hover behind you threateningly. The crowd that gathered @@.green;approves of your rebuke of the citizen@@. <<set $rep += 500>> <</replace>> <</link>> </span> So here the results of the choices are, A) nothing, B) reduce cash by 2000 but acquire the slave C) chastise the citizen for plus 500 rep.
amomynous0/fc
devNotes/AnatomyOfAFreeCitiesEvent.txt
Text
bsd-3-clause
10,389
artist notes ------------- TO USE: SELECT VECTOR ART BY NOX/DEEPMURK CREDITS ------------- Nov_X/NoX (Original Artist, whose work I built off of) skinAnon (For doing the color hexes on hundreds of skin/nipple tones.) @prndev (For dynamic belly scaling magic) @klorpa (For fixing many of my mistakes/spaghetti art code) @kopareigns (For fixing many of my mistakes/spaghetti art code) @pregmodder (Fixes and more art) FOR MANUAL USE ------------- 1. Split source_vector_ndmain.svg and source_vector_ndextras.svg into src/art/vector/layer. Note#1 source_vector.svg is a legacy version (before the art was changed) and is not used for anything. Note#2 vector_revamp_source.svg not related and belongs to the other artist. TO PLAY WITHOUT FACES ------------- 1. Go to pregmod/src/art/vector 2. Open head.tw in notepad/notepad++ 3. Delete everything from Line 30 to Line 979... you'll see it says faceShape, eyebrowFullness, etc-- all of those are related to faces and can be deleted. (AKA just delete everything between the lines that says /* FACIAL APPEARANCE */ and /* END FACIAL APPEARANCE */) 4. Compile and play game. planned additions ------------- known issues ------------- -minor clipping issue leg/ass outfits due to their outfit transparency effects -not all outfit art works with amputees -minor hair clipping on some outfits -fucktoys are broken -clipping on facial features/belly buttons -heavy lip piercings look wonky on open mouth art -heavy/light piercings on face seem to override each other pending requests/suggestions ------------- -muscle definition -dick piercings -super secret stuff pending outfit requests ------------- v1.5 (10/12/2018) ------------- -removed penis head piercing light flaccid (art only) -removed penis head piercing light erect (art only) -removed penis head piercing heavy flaccid (art only) -removed penis head piecing heavy erect (art only) -corrected ku klux klan robe description grammar -added burkini outfit -added hijab and blouse outfit -changed the code that affects art layer names due to conflicts with new outfits -changed art layer name of cutoffs to cutoffsandatshirt -changed art layer name of niqab to niqabandabaya -changed art layer name of hijab to hijabandabaya -changed art layer name of spats to spatsandatanktop -changed art layer name of stretchpants to stretchpantsandacroptop -changed art layer name of blouse to hijabandblouse -changed blouse and hijab outfit string name to hijab and blouse -changed shimapan panties outfit string name to striped panties -added bra outfit (no art yet) -added button-up shirt outfit (no art yet) -added button-up shirt and panties outfit (no art yet) -added gothic lolita dress outfit (no art yet) -added hanbok outfit (no art yet) -added nice pony outfit (no art yet) -added one-piece swimsuit outfit (no art yet) -added police uniform outfit (no art yet) -added skimpy loincloth outfit (no art yet) -added slutty klan robe outfit (no art yet) -added slutty pony outfit (no art yet) -added sports bra outfit (no art yet) -added striped bra outfit (no art yet) -added sweater outfit (no art yet) -added sweater and cutoffs outfit (no art yet) -added sweater and panties outfit (no art yet) -added t-shirt outfit (no art yet) -added t-shirt and jeans outfit (no art yet) -added t-shirt and panties outfit (no art yet) -added t-shirt and thong outfit (no art yet) -added tank-top outfit (no art yet) -added tank-top and panties outfit (no art yet) -added thong outfit (no art yet) -added tube top outfit (no art yet) -added tube top and thong outfit (no art yet) -added oversized t-shirt outfit (no art yet) -added oversized t-shirt and boyshorts outfit (no art yet) -added boyshorts outfit (no art yet) -added cutoffs outfit (no art yet) -added jeans outfit (no art yet) -added leather pants outfit (no art yet) -added leather pants and a tube top outfit (no art yet) -added leather pants and pasties outfit (no art yet) -added panties outfit (no art yet) -added panties and pasties outfit (no art yet) -added sport shorts outfit (no art yet) -added sport shorts and a sports bra outfit (no art yet) -added sport shorts and a t-shirt outfit (no art yet) -added striped underwear outfit (no art yet) v1.4 (09/29/2018) ------------- -fixed facial markings showing on restrictive latex -fixed error on certain clothes when slave is an amputee -added ku klux klan outfit -added burqa outfit -added hijab and abaya outfit -changed niqab and abaya outift -added shimapan panty outfit -fixed malay race not having faces -added penis head piercing light flaccid (art only) -added penis head piercing light erect (art only) -added penis head piercing heavy flaccid (art only) -added penis head piecing heavy erect (art only) -added nose piercing light -added nose piercing heavy -added lip piercing light -added lip piercing heavy -added eyebrow piercing light -added eyebrow piercing heavy -fixed some eyebrow types not coloring correctly when dyeing -fixed chastity belt showing incorrectly on some bodies (chubby, fat, obese) -fixed hijab head outfit showing incorrectly on faces -added cybernetic feet basic -added cybernetic leg narrow basic -added cybernetic leg normal basic -added cybernetic leg wide basic -added cybernetic leg thick basic -added cybernetic butt 0 basic -added cybernetic butt 1 basic -added cybernetic butt 2 basic -added cybernetic butt 3 basic -added cybernetic butt 4 basic -added cybernetic butt 5 basic -added cybernetic butt 6 basic -added cybernetic arm left thumb down basic -added cybernetic arm left rebel basic -added cybernetic arm left high basic -added cybernetic arm left mid basic -added cybernetic arm left low basic -added cybernetic arm right high basic -added cybernetic arm right mid basic -added cybernetic arm right low basic -added cybernetic feet sexy -added cybernetic leg narrow sexy -added cybernetic leg normal sexy -added cybernetic leg wide sexy -added cybernetic leg thick sexy -added cybernetic butt 0 sexy -added cybernetic butt 1 sexy -added cybernetic butt 2 sexy -added cybernetic butt 3 sexy -added cybernetic butt 4 sexy -added cybernetic butt 5 sexy -added cybernetic butt 6 sexy -added cybernetic arm left thumb down sexy -added cybernetic arm left rebel sexy -added cybernetic arm left high sexy -added cybernetic arm left mid sexy -added cybernetic arm left low sexy -added cybernetic arm right high sexy -added cybernetic arm right mid sexy -added cybernetic arm right low sexy -added cybernetic feet beauty -added cybernetic leg narrow beauty -added cybernetic leg normal beauty -added cybernetic leg wide beauty -added cybernetic leg thick beauty -added cybernetic butt 0 beauty -added cybernetic butt 1 beauty -added cybernetic butt 2 beauty -added cybernetic butt 3 beauty -added cybernetic butt 4 beauty -added cybernetic butt 5 beauty -added cybernetic butt 6 beauty -added cybernetic arm left thumb down beauty -added cybernetic arm left rebel beauty -added cybernetic arm left high beauty -added cybernetic arm left mid beauty -added cybernetic arm left low beauty -added cybernetic arm right high beauty -added cybernetic arm right mid beauty -added cybernetic arm right low beauty -added cybernetic feet combat -added cybernetic leg narrow combat -added cybernetic leg normal combat -added cybernetic leg wide combat -added cybernetic leg thick combat -added cybernetic butt 0 combat -added cybernetic butt 1 combat -added cybernetic butt 2 combat -added cybernetic butt 3 combat -added cybernetic butt 4 combat -added cybernetic butt 5 combat -added cybernetic butt 6 combat -added cybernetic arm left thumb down combat -added cybernetic arm left rebel combat -added cybernetic arm left high combat -added cybernetic arm left mid combat -added cybernetic arm left low combat -added cybernetic arm right high combat -added cybernetic arm right mid combat -added cybernetic arm right low combat -added cybernetic feet swiss -added cybernetic leg narrow swiss -added cybernetic leg normal swiss -added cybernetic leg wide swiss -added cybernetic leg thick swiss -added cybernetic butt 0 swiss -added cybernetic butt 1 swiss -added cybernetic butt 2 swiss -added cybernetic butt 3 swiss -added cybernetic butt 4 swiss -added cybernetic butt 5 swiss -added cybernetic butt 6 swiss -added cybernetic arm left thumb down swiss -added cybernetic arm left rebel swiss -added cybernetic arm left high swiss -added cybernetic arm left mid swiss -added cybernetic arm left low swiss -added cybernetic arm right high swiss -added cybernetic arm right mid swiss -added cybernetic arm right low swiss -added penis flaccid circumcised 0 -added penis flaccid circumcised 1 -added penis flaccid circumcised 2 -added penis flaccid circumcised 3 -added penis flaccid circumcised 4 -added penis flaccid circumcised 5 -added penis flaccid circumcised 6 -added penis flaccid circumcised 7 -added penis flaccid circumcised 8 -added penis flaccid circumcised 9 -added penis flaccid circumcised 10 -added penis erect circumcised 0 -added penis erect circumcised 1 -added penis erect circumcised 2 -added penis erect circumcised 3 -added penis erect circumcised 4 -added penis erect circumcised 5 -added penis erect circumcised 6 -added penis erect circumcised 7 -added penis erect circumcised 8 -added penis erect circumcised 9 -added penis erect circumcised 10 v1.3 (09/22/2018) ------------- -fixed shaved sides hairstyle showing incorrectly -fixed faces showing on restrictive latex -fixed restrictive latex not showing on bodies (chubby, fat, obese) -fixed accent band not showing on kimono belly outfits -fixed facial markings showing incorrectly on faces (birthmark,etc) -added eye coloring (irises only) -fixed lips showing only one color -added fox ears and tail -added cat ears and tail -fixed nipples not showing on attractive lingerie for a pregnant woman outfit -fixed black colored nipples showing on latex and bodysuits -fixed head accessory alignment to new faces (ball gag, dildo gag, etc) -changed art on porcelain mask -added eyes type-d -added mouth type-d -added nose type-d -added eyebrows type-d pencilthin -added eyebrows type-d thin -added eyebrows type-d threaded -added eyebrows type-d natural -added eyebrows type-d tapered -added eyebrows type-d thick -added eyebrows type-d bushy -added eyes type-e -added mouth type-e -added nose type-e -added eyebrows type-e pencilthin -added eyebrows type-e thin -added eyebrows type-e threaded -added eyebrows type-e natural -added eyebrows type-e tapered -added eyebrows type-e thick -added eyebrows type-e bushy -added eyes type-f -added mouth type-f -added nose type-f -added eyebrows type-f pencilthin -added eyebrows type-f thin -added eyebrows type-f threaded -added eyebrows type-f natural -added eyebrows type-f tapered -added eyebrows type-f thick -added eyebrows type-f bushy -separated faces by race/head shape (eg: white/exotic is different from asian/exotic) -made some eye types smaller -fixed stockings not covering thick thighs properly v1.2 (09/16/2018) ------------- -added naked apron outfit (chubby, fat, obese) -added attractive lingerie (chubby, fat, obese) -added ballgown outfit (chubby, fat, obese) -added battlearmor outfit (chubby, fat, obese) -added battledress outfit (chubby, fat, obese) -added biyelgee costume (chubby, fat, obese) -added body oil outfit (chubby, fat, obese) -added bunny outfit (chubby, fat, obese) -added chains outfit (chubby, fat, obese) -added chattel habit outfit (chubby, fat, obese) -added cheerleader outfit (chubby, fat, obese) -added clubslut outfit (chubby, fat, obese) -added comfortable bodysuit outfit (chubby, fat, obese) -added conservative outfit (chubby, fat, obese) -added cutoffs and tshirt outfit (chubby, fat, obese) -added dirndl outfit (chubby, fat, obese) -added fallennun habit outfit (chubby, fat, obese) -added haltertop dress outfit (chubby, fat, obese) -added harem gauze outfit (chubby, fat, obese) -added hijab and abaya outfit (chubby, fat, obese) -added huipil outfit (chubby, fat, obese) -added kimono outfit (chubby, fat, obese) -added latex outfit (chubby, fat, obese) -added attractive lingerie for pregnant woman outfit (chubby, fat, obese) -added leotard outfit (chubby, fat, obese) -added lederhosen outfit (chubby, fat, obese) -added long qipao outfit (chubby, fat, obese) -added maternity dress outfit (chubby, fat, obese) -added military uniform outfit (chubby, fat, obese) -added minidress outfit (chubby, fat, obese) -added monikini outfit (chubby, fat, obese) -added mounty outfit (chubby, fat, obese) -added nice business attire outfit (chubby, fat, obese) -added nice maid outfit (chubby, fat, obese) -added nice nurse outfit (chubby, fat, obese) -added penitent nuns habit outfit (chubby, fat, obese) -added red army uniform outfit (chubby, fat, obese) -added scalemail bikini outfit (chubby, fat, obese) -added schoolgirl outfit (chubby, fat, obese) -added schutzstaffel uniform outfit (chubby, fat, obese) -added schutzstaffel uniform slutty outfit (chubby, fat, obese) -added shine outfit [Only applies to latex] (chubby, fat, obese) -added shibari rope outfit (chubby, fat, obese) -added slutty outfit (chubby, fat, obese) -reworked slutty outfit (changed to pasties) -added slave gown outfit (chubby, fat, obese) -added slutty business attire outfit (chubby, fat, obese) -added slutty jewelry outfit (chubby, fat, obese) -added slutty maid outfit (chubby, fat, obese) -added slutty nurse outfit (chubby, fat, obese) -updated slutty nurse outfit (now with 100% more hat) -added slutty qipao outfit (chubby, fat, obese) -added spats outfit (chubby, fat, obese) -added stretch pants outfit (chubby, fat, obese) -added string bikini outfit (chubby, fat, obese) -added succubus outfit (chubby, fat, obese) -added toga outfit (chubby, fat, obese) -added uncomfortable strap outfit (chubby, fat, obese) -added western outfit (chubby, fat, obese) -added eyes type-a -added mouth type-a -added nose type-a -added eyebrows type-a pencilthin -added eyebrows type-a thin -added eyebrows type-a threaded -added eyebrows type-a natural -added eyebrows type-a tapered -added eyebrows type-a thick -added eyebrows type-a bushy -added eyes type-b -added mouth type-b -added nose type-b -added eyebrows type-b pencilthin -added eyebrows type-b thin -added eyebrows type-b threaded -added eyebrows type-b natural -added eyebrows type-b tapered -added eyebrows type-b thick -added eyebrows type-b bushy -added eyes type-c -added mouth type-c -added nose type-c -added eyebrows type-c pencilthin -added eyebrows type-c thin -added eyebrows type-c threaded -added eyebrows type-c natural -added eyebrows type-c tapered -added eyebrows type-c thick -added eyebrows type-c bushy v1.1 (07-11-2018) ------------- -added torso chubby -added torso fat -added torso obese -added butt enormous -added butt gigantic -added butt massive -added legs thick -added butt outfits enormous (x56) -added butt outfits gigantic (x56) -added butt outfits massive (x56) -fixed crotch coloring for dicks on dirndl -fixed crotch coloring for dicks on lederhosen -fixed crotch coloring for dicks on battlearmor -fixed crotch coloring for dicks on mounty outfit -fixed crotch coloring for dicks on long qipao -fixed crotch coloring for dicks on biyelgee costume -added leg outfits thick (x56) v1.0 (07-03-2018) ------------- -added long qipao outfit -added battlearmor outfit -added mounty outfit -added dirndl outfit -added lederhosen outfit -added biyelgee costume outfit -added tiny nipple art -added cute nipple art -added puffy nipple art -added inverted nipple art -added huge nipple art -added fuckable nipple art -added partially inverted nipple art v0.9 (05-05-2018) ------------- -added dynamic belly scaling (courtesy of @prndev) -added belly button art -fixed belly piercings not showing -updated belly piercing art -added belly outfit apron -added belly outfit bodysuit -added belly outfit cheerleader -added belly outfit clubslut -added belly outfit cutoffs (base only) -added belly outfit cybersuit -added belly outfit fallen nun (base only) -added belly outfit haltertop dress -added belly outfit hijab and ayaba -added belly outfit latex catsuit -added belly outfit leotard -added belly outfit nice maid -added belly outfit slutty maid -added belly outfit military (base only) -added belly outfit minidress -added belly outfit monokini (base only) -added belly outfit nice nurse -added belly outfit slutty nurse (base only) -added belly outfit red army uniform (base only) -added belly outfit schoolgirl (base only) -added belly outfit schutzstaffel (base only) -added belly outfit silken ballgown -added belly outfit skimpy battldress (base only) -added belly outfit slave gown -added belly outfit spats and a tank top (base only) -added belly outfit succubus (base only) -added belly outfit suit nice (base only) -added belly outfit suit slutty (base only) -added belly outfit bunny outfit -added belly outfit chattel habit (base only) -added belly outfit conservative clothing (base only) -added belly outfit harem gauze (base only) -added belly outfit huipil -added belly outfit kimono (base only) -added belly outfit maternity dress -added belly outfit slutty qipao -added belly outfit toga -added belly outfit western clothing -added belly outfit penitent nun (base only) -added belly outfit restrictive latex -added freckles as misc facial feature -added heavy freckles as misc facial feature -added beauty mark as misc facial feature -added birthmark as misc facial feature -minor outfit polishing on some outfits -polished outlines on torso art (normal, narrow, absurd) -reworked naked apron outfit -updated bangles outfit -fixed problems when surgically altering a slave's race -reworked clubslut netting outfit -updated cheerleader outfit -added AI personal assistant art -added blue-violet hair color -updated deep red hair color -added shaved armpit hair -added neat armpit hair -added bushy armpit hair -fixed male genitalia showing over large bellies -added porcelain mask accessory -added ability to custom color porcelain mask -added ability to custom color glasses -added slutty schutzstaffel uniform v0.8 (04-21-2018) ------------- -added wispy pubic hair -added areola normal art -added areola large art -added areola wide art -added areola huge art -added areola star-shaped art -added areola heart-shaped art -converted stockings to a leg accessory -fixed issue that allowed stockings to be shown/selected on amputees -added visor hat to military outfit (per request) -fixed tilted neat pubic hair -fixed bellies/corsets showing at the same time if present/selected -major overhaul of skin tones -tweaked leg/hipsize/weight art distribution -fixed vaginal piercings not showing -updated vaginal piercing art -created porcelain mask accessory art -added cybersuit outfit -added skin/nipple tones for every race (courtesy of skinAnon) -added naked apron outfit -added schutzstaffel uniform -added red army uniform -darkened stocking art slightly (per request) v0.7 (04-14-2018) ------------- -added sleeves to hijab and abaya outfit -added sleeves to cutoffs and a t-shirt outfit -added sleeves to skimpy battledress outfit -added sleeves to conservative outfit -added sleeves to huipil outfit -added sleeves to kimono outfit -added sleeves to nice maid outfit -added sleeves to military uniform outfit -added sleeves to nice nurse outfit -added sleeves to slutty nurse outfit -added sleeves to slutty qipao outfit -added sleeves to schoolgirl outfit -added sleeves to nice suit outfit -added sleeves to slutty suit outfit -added sleeves to western clothing outfit -removed thigh-highs/stockings on most outfits -fixed nipple piercings showing incorrectly -fixed boots showing incorrectly on some outfits -fixed 'invisible balls' on one of the scrotum sizes (the shadow was showing as skin colour, removing the outline) -slutty nurse outfit now better matches the description -updated thigh boot art -updated extreme heel art -added bare feet stocking outfits (Long/short) -added additional flat shoe outfits (bare/stockings short/stockings long) -added additional heel shoe outfits (bare/stockings short/stockings long) -added additional pump shoe outfits (bare/stockings short/stockings long) v0.6 (04-07-2018) ------------- -fixed bodysuit outfit color issue on non-default colors -fixed restrictive latex color issue on non-default colors -added hairstyle 'messy bun' (long/medium/short) -added hairstyle 'dreadlocks' (long/medium/short) -added hairstyle 'cornrows' (long/medium/short) -added hairstyle 'braided' (long/medium/short) -added hairstyle 'twintails' (long/medium/short) -added hairstyle 'shavedsides' (long/medium/short) -added chains outfit -added penitent nun outfit -reworked male genitalia -added bulge outfits for the appropriate outfits -removed transparency on clubslut, harem, and slutty torso outfits due to multiple issues -overhauled clubslut outfit to fix numerous art issues. -changed extreme heels -changed thigh high boots -overhauled breasts -reworked all breast outfits due to breast overhauled -changed breast positioning relative to the overall body -reworked corset lengths -reworked all breast and torso outfits for new breast compatibility v0.5 (03-31-2018) ------------- -added belly scaling w/pregnancy+overfeeding -minor polishing on all outfits -fixed piercings not showing correctly -added nipple light piercings -added areola light piercings -added nipple heavy piercings -added areola heavy piercings -added vaginal dildo accessory -added vaginal long dildo accessory -added vaginal large dildo accessory -added vaginal long, large dildo accessory -added vaginal huge dildo accessory -added vaginal long, huge dildo accessory -added anal long plug accessory -added anal large plug accessory -added anal long, large plug accessory -added anal huge plug accessory -added anal long, huge accessory -added anal tail plug accessory (anal hook/bunny tail) -added first trimester pregnancy empathy belly -added second trimester pregnancy empathy belly -added third trimester pregnancy empathy belly -added third trimester twin pregnancy empathy belly -added tight corset torso accessory -added extreme corset torso accessory -cleaned up changelog wording for clarity purposes -added uncomfortable leather collar outfit -updated dildo gag collar graphic art -added massive dildo gag collar outfit -added ball gag collar outfit -added bit gag collar outfit -added silken ribbon collar outfit -added bowtie collar outfit -added ancient egyptian collar outfit -added hairstyle 'neat' (long/medium/short) -added hairstyle 'up' (long/medium/short) -added hairstyle 'ponytail' (long/medium/short) -added hairstyle 'bun' (long/medium/short) -added hairstyle 'curled' (long/medium/short) -added hairstyle 'messy' (long/medium/short) -added hairstyle 'permed' (long/medium/short) -added hairstyle 'eary' (long/medium/short) -added hairstyle 'luxurious' (long/medium/short) -added hairstyle 'afro' (long/medium/short) -fixed cowboy hat not showing on western outfit -fixed baldness on generic/generated non-selectable hairstyles v0.4 (03-24-2018) ------------- -added nice lingerie outfit -fixed immersion breaking art on specific flat-chested outfits (somewhat) -added nurse slutty outfit -added silken ballgown outfit -added skimpy battledress outfit -minor polishing on all outfits -added slutty outfit -added spats and a tank top outfit -fixed graphical issues on mini dress -added succubus outfit -added nice suit outfit -added slutty suit outfit -added attractive lingerie for a pregnant woman outfit -added bunny outfit -added chattel habit outfit -updated fallen nun outfit (headdress added) -added conservative clothing outfit -added harem gauze outfit -added huipil outfit -added kimono outfit -added slave gown outfit -added stretch pants and a crop top outfit -updated schoolgirl outfit (sweater vest added) -added slutty qipao outfit -added toga outfit -added western clothing outfit (no cowboy hat) -fixed dick/ball clipping issues on all relevant outfits -added natural color nipples to match racial skin tones v0.3 (03-17-2018) ------------- -added schoolgirl outfit -added fallennun outfit -added nice maid outfit -added slutty maid outfit -updated minidress outfit (changed color+fixes) -minor polishing on some outfits -added niqab and abaya outfit (niqab > hijab) -changed white colors on outfits to grey for increased contrast on light skin tones. -added nice nurse outfit -fixed outline issues on boots/extreme heels -fixed ultra black hair color issue (vanilla only) -added military uniform outfit -updated to latest pregmod git v0.2 (03-10-2018) ------------- -added string bikini outfit -added scalemail bikini outfit -updated male genitalia display position -set default shoe colors to neutral (per request) -added some natural color nipples to match racial skin tones v0.1 (03-03-2018) ------------- -updated boob graphic art -updated nipple graphic art -updated arm graphic art -updated female genitalia graphic art -updated waist graphic art -updated butt graphic art -added bushy pubic hair -added very bushy pubic hair -updated vaginal chastity belt -updated anal chastity belt -added uncomfortable strap outfit -added shibari rope outfit -updated restrictive latex outfit -updated latex catsuit outfit -updated extreme heel graphic art -updated pump shoes graphic art (not selectable in-game yet) -added bodysuit outfit -added body oil outfit -added haltertop dress outfit -added bangles outfit -added mini dress outfit -added leotard outfit -added t-shirt and cutoffs outfit -added cheerleader outfit -added clubslut netting outfit
amomynous0/fc
devNotes/Deepmurk_Vector_Art_Changelog.txt
Text
bsd-3-clause
26,286
Extended family mode (mod) In short, extended family mode replaces the old .relation + .relationTarget system with a completely new system capable of handling a limitless number of relatives. Or at least until your game crashes from trying to handle it all. Fully incompatible with the old system and fully functional with ng+. The backbone of the system: .father and .mother Everything about a slave's family can be gathered by looking into her mother and father. Beyond the obvious mother-daughter relation, you can check two separate slaves' parents to see if they are related to each other, allowing for sisters, half-sisters, and with a .birthWeek check, twins with little effort. The following values are used with .mother and .father: Valid slave IDs (in other words, a value > 0) - Serves as both a target for checks and as a check itself to see if effort should be expended to search for the parent. 0 - Slave has no known parent. A slave with a parent value of 0 is capable of having a parent added via reRelativeRecruiter MissingParentIDs (in other words, a value < -2) - Serves as a placeholder to preserve sibling relations in the case of a parent being sold or lost. Outside of extreme cases, this value will never be restored to its' previous value. $missingParentID starts at -10000 and decrements after application. On NG+, positive values are incremented the same as a normal slave and checked for validity. Should it be invalid, it will be replaced with $missingParentID. Negative values, on the other hand, are decremented by 1200000. Values of -1 and -2 are ignored by the JS, so don't use them. Also -9999 through -9994 are used by hero slaves to preserve their sibling status no matter when they are purchased or obtained during the same game. The limiters: .sisters and .daughters Extended family mode is VERY for loop intensive, and as such, has limiters to prevent it from needlessly looping. A value greater than 0 for either of these slave variables signals that slave has a sibling/daughter for various checks. Furthermore, the value of .sisters and .daughters accurately tracks the number of sisters and daughters, particularly for checks that require all of them to be found. You'll learn to hate these, but on the plus side, they can safely be recalculated with no side effects. Nearly entirely handled by <<AddSlave>> and removeActiveSlave, you do not understand how huge of a plus this is. The recruiting check: .canRecruit Checked by reRelativeRecruiter to see if a slave is eligible to have relatives added. Hero slaves, special slaves, and often event slaves are ineligible for recruiting. Gets disabled if the slave is called into the recruiting event but fails to qualify for additional relatives due to unaddable slots or too many existing relatives. A quick list of the JS that gets things done and various useful JS calls: sameDad(slave1, slave2) - checks if the slaves share the same father and returns true/false. sameMom(slave1, slave2) - checks if the slaves share the same mother and returns true/false. sameTParent(slave1, slave2) - an exception catcher that handles such things as "slave1 knocked up slave2 and got impregnated by slave2, their children will be sisters" and returns the sister variable (0 - not related, 1 - twins, 2 - sisters, 3 - half-sisters). (subJS, never call on its own) areTwins(slave1, slave2) - checks if the slaves are twins and returns true/false. areSisters(slave1, slave2) - combines all of the above and returns the sister variable (0 - not related, 1 - twins, 2 - sisters, 3 - half-sisters). A widely used check to identify sister relatives. Generally gated by a .sisters check. Recommended to use in a <<switch>> macro instead of calling it for each outcome. totalRelatives(slave) - returns how many relatives a slave has as an integer. Useful both as a check and for its value. Recommended to use as a check in instances where you want a relative, but don't care what it is. mutualChildren(slave1, slave2, slaves) - checks the slave array for children shared by the two slave arguments and returns the number of mutual children as an integer. Currently used solely to encourage two slaves into a relationship if they have kids together. The utility JS, courtesy of FCGudder. This JS should only be called if you know it will find something, use your limiters! These will always return the only relative if only one outcome is possible, so technically they can be used creatively. randomAvailable JS should be followed with random JS as a fallback for circumstances where you must find something, but would prefer it to be sensible if possible. randomRelatedSlave(slave, filterFunction) - returns a random related slave to the slave passed into it. filterFunction is called in the following JS but not needed if you just want a random relative. randomRelatedAvailableSlave(slave) - returns a random available related slave. randomSister(slave) - returns a random sister. randomTwinSister(slave) - returns a random twin. randomAvailableSister(slave) - returns a random available sister. randomAvailableTwinSister(slave) - returns a random available twin. randomDaughter(slave) - returns a random daughter. randomAvailableDaughter(slave) - returns a random available daughter. randomParent(slave) - returns a random parent. randomAvailableParent(slave) - returns a random available parent.
amomynous0/fc
devNotes/Extended Family Mode Explained.txt
Text
bsd-3-clause
5,385
Security Expansion 10/18/17 1 3 10/22/17 5 10/24/17 6 -balance adjustments -fixed improper name assignment -added renaming of units -reworked casualties logic -added statistics to arcology management screen -various other fixes 10/28/17 7 -SFanon additions -fixes -balance 10/29/17 7.1 -fixes -couple of balance adjustments. 11/01/17 7.5 7.6 -fixed reported issue -balance adjustments (run backward compatibility to apply them) 7.7 11/03/17 8 -various fixes -balance -rebellions 11/05/17 8.5 -fixes -rebellions 11/06/17 Pregmod v113 8.6 -fixes 8.7 -fixed reported issue maybe pretty please? 11/07/17 Pregmod v114/Pregmod v114.1 8.8 -fixes 9.2 -small fixes -new edicts -new units upgrade -new barracks upgrade Pregmod v115 9.6 -fixes -loyalty work 11/09/17 Pregmod v119 9.6 -small fixes 11/10/17 10 -fixes -weapons manufacturing -balance 11/11/17 Pregmod v121 10.2 -fixes Pregmod v122 11 -fixes -proclamations -balance 11.1 11.2 -fixes -extra options 11/12/17 Pregmod v124 11.5 -fixes -balance 11.6 -fixed reported issues -balance Pregmod v125 12 -fixes -transport hub and trade -balance 11/13/17 12.3 -fixes -SFanon additions -balance Pregmod v126 12.4 11/14/17 Pregmod v130 12.5 -fixes -SFanon stuff -balance Pregmod v132 12.6 -fixes -anon's stuff 12.8 -fixes -balance 12.9 -fixes 11/15/17 13 -fixes -balance 11/16/17 13.1 -fixes -balance 13.3 -fixes 13.4 -fixed >>142293 (Attack value NaN during major battle) 11/17/17 Pregmod v135 13.4 -fixes -balance -difficulty settings Pregmod v136 13.6 -fixes 11/18/17 13.7 -balance -(maybe) fix for battle terrain not showing up. 13.8 -(maybe) fixed >>142732 Pregmod v137 v13.9 -fixes (couple of) Pregmod v139 14 -fixes -spell checked attack report. My god was is bad. 14.1 -fixes 11/20/17 14.2 -fixes -balance -very satisfying version number.
amomynous0/fc
devNotes/MultiVersionChangeLog.txt
Text
bsd-3-clause
2,098
QuickList is built from the interaction of six parts. 1] The Quick List option enable/disable control. 2] The list context, basically if there are more than one, and the context is correct, the toggle, the table will be available. 3] The Slave Summary Passage contains the Quick List toggle button, clicking it either shows or hides the quick list table. 4] The Slave Summary Passage contains the actual quick list table, which if shown has a button for each slave name in the list, in columns up to 5 wide. 5] The Slave Summary Passage contains invisible <a> links or any other html element nearby or tied to each slave's name. These are generated with an html attribute id set to "slave-##" where ## is the slave's ID. 6] The JS code to tie a scroll animation from the visible name buttons in the quick list table down to the invisible links/elements. The slave summary passage is called in many strange contexts, and for this reason, there is some serious complexity in getting consistent results. As it stands now, the passage sometimes calls itself recursively (for facilities), but it doesn't do that for the Main penthouse page. The list context is duplicated, so that we can quickly loop over the list context to get the slave names in the list, all without disturbing the principal list context for the slave data. If the list context has more than one slave, and is either the first call for the Main/penthouse list, or the recursive call for any other facility, And we haven't *already* built a quick list table, then we proceed to build the quick list table. We use special attributes on the built button to name the invisible link to which we'll navigate, the speed that we'll animate our navigation and an offset.
amomynous0/fc
devNotes/QuickList.txt
Text
bsd-3-clause
1,779
Pregmod 0.10.7.1-0.10.x 10/12/2018 12 -fixes 11 -fixes -tweaks to lispReplace() 10 -fixes -adjustments to how intelligence and education affects slave price -new aid event 10/11/2018 9 -fixes -fixed secExp drones total annihilation oversight 8 -major fix to VaginalVCheck 10/10/2018 7 -anon's hpreg inventor event chain enabled 6 -fixes -backend work on concurrent pregnancies 10/08/2018 5 -fixes -more clothing vectors from deepmurk 4 -fixes 3 -fixes -several new sets of clothing from deepmurk 10/07/2018 2 -fixes -tweaks to intelligence distribution in slavegen 10/04/2018 1 -overhauled intelligence and education -buffed intelligence based FS beauty calcs -more vector work from Deepmurk -fixes 0.10.7.1-0.9.x 9/30/2018 6 -removed redundant and questionably functional PCTitle() function -renamed the working properTitle() function to PCTitle() 5 -fixes 9/29/2018 4 -fixes 3 -fixes -moved a number of clothes to special orders from the wardrobe 9/28/2018 2 -fixes -devotion/trust check corrections 1 -Security Force Mod overhaul -fixes -pronoun work 0.10.7.1-0.8.x 9/26/2018 2 -fixes 9/25/2018 1 -fixes 0 -nursery facility added (beta) 0.10.7.1-0.7.x 9/25/2018 43 -fixes -added more options to the RA -added nipple fuck interaction 42 -fixes -more deepmurk tinkerings 9/24/2018 41 -fixes -more deepmurk tinkerings -klan robes 9/23/2018 40 -fixes -more deepmurk tinkerings -pantsu 9/22/2018 39 -fixes -more face tweaks from deepmurk -various other new vectors from deepmurk 9/20/2018 38 -fixes -more face tweaks from deepmurk 37 -fixes -non max inflation no longer blocks conception 9/19/2018 36 -fixes 35 -more vector work from Deepmurk -tweaks to special slave prices and how the catalogue works 9/18/2018 34 -fixed filter by race -young slaves now generate with baby teeth and lose them as they age -fixes 9/17/2018 33 -fixed issues with RA enemas (maybe?) -fixed issues with NG+ slaves and null pointer relatives/relations/pregSources -other fixes 9/16/2018 32 -enema control added to the RA -Deepmurk's faces and fatties vector art -fixes 9/15/2018 31 -fixes 30 -added solid slave food and hole preference options to the RA -fixes 9/14/2018 29 -fixes 28 -expanded canImpreg() to be able to handle the player 27 -fixes -anon's farmyard tweaks 9/12/2018 26 -fixes 25 -fixes -code entry added to cheat edit menus to allow for advanced control 9/10/2018 24 -fixes -added a new aid event possibility 9/09/2018 23 -fixes 9/08/2018 22 -fixes 9/07/2018 21 -fixes -more widget to Js conversion 20 -fixes -increased costs for hyper pregnant slaves 9/06/2018 19 -more vignettes for more assignments -fixes 9/05/2018 18 -fixes -tweaked underage pregnancy immobility thresholds -reworked preg malus block -pregAdaptation activated 9/02/2018 17 -fixes 16 -fixed player pregnancy not properly transferring across NG+ 15 -added chemical castration -newly grown testicles and ovaries may now replace existing ones (currently only used to replace sterilized balls) -fixes 9/01/2018 14 -fixes to nationality related issues 13 -split fillable implants into three tiers each with its own cap -lowered the price of the implant manufacturer -implant manufacturer now gives access to advanced fillable implants -raised the price of implant related research to compensate -fixes 12 -fixes -more pronoun implementation 8/31/2018 11 -fixes 10 -eyebrows of various shapes, sizes and colors added -AddSlave widget deprecated in favor of newSlave() -fixes 8/30/2018 9 -nursing handjob interaction added -fixes 8/29/2018 8 -fixes 8/28/2018 7 -fixes and code cleanup 6 -fixes 5 -fixes -option to allow male slaves to gen with male names -tweaked body purism's views on bush 8/27/2018 4 -fixes 8/25/2018 3 -fixes 2 -fixes 8/24/2018 1 -applied MB checks to surgery degradation -fixes -race system overhaul 0.10.7.1-0.6.x 8/22/2018 10 -fixes -lactation adaption and hormone levels added to cheat edit slave 8/21/2018 9 -fixes 8 -slightly adjusted pregnancy breast growth rates -larynx implant for cybermod voice control -expanded vocal surgery to allow deepening -porn feed control added to the RA -fixes 8/20/2018 7 -sugarcube updated to 2.27.0 -various fixes -tweaks to disability slavegen 8/19/2018 6 -added pupil shape and schlera color -fixes 8/18/2018 5 -removed deaf chance from standard slavegen -restricted blindness to grateful careers in slavegen -fixes 4 -areolea shape split from size -player b-cups -fixes 8/17/2018 3 -new supremacist and subjugationist PA FS appearances -hearing and deafness added -fixes 0.10.7.1-0.5.x 8/14/2018 33 -SFanon's security force overhaul (reverted) -fixes -added fox tail buttplug attachment (no desc yet) -new justice event 8/12/2018 32 -fixes 31 -more outcomes for saChoosesOwnClothes -fixes 8/11/2018 30 -fixes -new malefactor -added kitty lingerie 8/10/2018 29 -added body hair controls to startingGirls more customization options -fixed issues with the new slave markets -slaves should no longer experience rivalry whiplash -slaves that would have gained flaws from stress, but are receiving your careful attention, now gain minor devotion instead. -Ex-escorts getting back into the game now have less sexual energy to spend on slaves 28 -bulk ordering from the prison sales now works -fixed, hopefully, an issue where executed traitors were not properly being removed from the unit pool (secEx) 27 -critical fix to missing parents in childgen (now only done once instead for each child) 26 -skin color tweaking -fixes -typo and grammar corrections -quartet of prison markets added on rotation 8/08/2018 25 -fixes -vector art color tweaking -retirement clamps expanded -cum milking retirement goal 8/07/2018 24 -fixed RA ear/nose piercing issue 23 -Spelling and grammar fixes -Pronoun conversions -Formatting 8/05/2018 22 -more little fixes 21 -added height comparison to the RA 20 -fixed an unlikely occurance where labor could be preepmpted causing oddities with birth -fixes 19 -fixes 18 -fixes 8/04/2018 17 -fixes and corrections -new buyers for slaves with porn prestige -ex-escort PCs can use old connections for a discounted porn fame spending at the price of their body -expansions to nationality and race selection in custom slaves 8/03/2018 16 -fixes -added "a niqab and abaya", "a hijab and blouse", "a burqa", and "a burkini" outfits -anon's hpreg clothing descriptions 8/02/2018 15 -fixes and typo corrections -tweaked cyber-economic warfare to hinge more on the target's prosperity 8/01/2018 14 -fixes -JS tinkering -tweaks to porn fame face gains 7/30/2018 13 -sugarcube updated to 2.26.0 -fixed DJ/Madam vignette issues 12 -fixed bugs and typos 11 -more widget to JS conversions -gingering now works as intended -converted saStayConfined to JS (make sure you do not have a lingering version in src/uncategorized) 7/29/2018 10 -fixes -vignettes now JS'd 7/28/2018 9 -fixing mindbreak now brings back original intelligence-1 -more arcology names -more nicknames -cheat mode starting slaves now respect $seeDicks 8 -fixes -more widget to JS conversion 7/27/2018 7 -fixes -more widget to JS conversion -lots more implementation of pronouns -anon's hpreg event 7/26/2018 6 -fixes -broken societal elite now bitch less about your actions 7/25/2018 5 -fixes -marked breeders are now only special in Eugenics societies that have embraced them -tweaked beauty prestige multipliers 4 -more porn balance tweaks -fixes and edits 3 -tweaked gain rates for pornPrestige 0 and 1 2 -lowered requirement for pornFocus -pornFocus is no longer disabled once .pornPrestige is earned (allows undermining) -fixed bugs 7/24/2018 1 -porn system overhaul -added ability to track true virgins 0.10.7.1-0.4.x 22 -fixes -slaveSummary JS conversion -startingGirls slaves can now be relatives in NG+, bu only with each other -more widget to JS conversion -imperial measurement is now an option -RA haircuts controls 7/08/2018 21 -fixes -more widget to JS conversion -fixed milk/cum pastoralist decoration cascade 7/07/2018 20 -fixes -more widget to JS conversion 19 -various little fixes and tweaks -incubator slaves take longer to learn languages now 7/05/2018 18 -added anon's TFS path -added a new choice to the TFS organ farm request event -fixes 7/04/2018 17 -fixes, grammer and typo corrections -added anon's FCNN blurbs 7/03/2018 16 -fixes -more widget to JS conversions -nipple vectors 15 -fixes and typo corrections -Deepmurk's Battlearmor, Biyelgee Costume, Dirndl, Lederhosen, Long Qipao/Qipao (Nice), and Mounty Outfit 7/02/2018 14 -fixes and typos -applied lisping to new slave intro, among other technical things 7/01/2018 13 -fixes -cleaned up brother/sister text -prestigious slave overhaul 12 -fixes and updates to the RA -The rival is more likely to take a hostage now -fixed bugs and typos -made slave rivals a little less rapey if slaves aren't allowed to rape each other 6/30/2018 11 -fixes -rivals are now more rapey and lovers more sexual 6/29/2018 10 -fixed forceFeeding -SFanon's facility naming UI support 9 -you can now change your refreshment choice at the black market -fixed pronoun problems in clothing selection 8 -fixes -physical idealist SMR now better suits your muscle preference 7 -more fixes to the RA -other fixes and typos -several widgets replaced with JS -anon's Mediterranean market slave preset 6/27/2018 6 -widgeted slave interact drug setting to better handle the intensify option 5 -more fixes to reported RA bugs -minor text corrections 6/26/2018 4 -a whole bunch of fixes, mostly major RA fixes -fixed a bunch of minor things -placed stronger safeguards on rival gen to prevent null races -tweaked spacing in club/brothel ads 6/24/2018 3 -fixes (not RA related) 6/22/2018 2 -various fixes to the RA -various additions to the RA -other fixes 1 -vas's total RA overhaul -various little fixes and tweaks 0.10.7.1-0.3.x 6/20/2018 26 -fixed saServant's object literal issues 25 -more little fixes -old RA should be a little more accepting of "" 6/19/2018 24 -few little fixes 6/17/2018 23 -typos fixed -careless enactment of certain Subjugationist laws may now have consequences -added Elite breeder auction -unfucked set race slavegen -fixes 6/16/2018 22 -fixes -tweaked Repop's likes block to allow preg biometrics more pull, especially in fat slaves -slave summary smart piercing will now describe itself as "monitoring" if it has satisfied its previous task 6/15/2018 21 -fixes -test round of JS'd end week passages (report oddities with servants, please) 6/13/2018 20 -expanded eugenics bad end to cover all player states 6/12/2018 19.1 -fixed pRaidResult lingering $i 19 -secEx's $mercLoyalty now functions -added a couple new recruit events 18 -fixes 6/11/2018 17 -yet more various fixes and corrections 16 -more various fixes and corrections 6/10/2018 15 -several bugs fixed -bunch of typos and grammar quirks sorted out -SFanon's whoring, entertainment and serving career skills 6/08/2018 14 -added anon's wetware cpu market -fixes 6/07/2018 13 -fixes to NCS, mostly respect to implants and not removing balls -fixes to hero slave pregnancies (Not backwards compatible) -fixes 12 -more little fixes 6/06/2018 11 -various little fixes 6/05/2018 10 -fixes to cheat edit player pregnancy -fixes to various cheat edit datatype cleanups -event fixes -overhauled JFC to allow for more freedom in slave role purchases -overhauled "injections please" to be more random and expanded potential drug picks -aphrodisiacs now override sexual need energy loss with devotion/trust loss 9 -added more catches to hostage gen to prevent strange slave generation -backwards compatibility now accepts that 0 is a number and will not be helpful and set $seedicks to 25 when you want none. -arcade sadist now requires an actual slave to be in the arcade instead of just the arcade -other minor fixes 8 -removed duplicate text in nonLethalPit -fixed problems and formatting in generic plot events 6/03/2018 7 -tweaks to .weekAcquired -fixes -adjusted did x every y hours text to not be so analcentric 6/01/2018 6 -added artificial insemination -various SF related fixes from SFanon -possible fixes to cheat edit slave pregnancy issues -fixes to braces to age interaction -the flesh heap no longer uses old face values 5 -various minor text corrections -catches to advertisements not getting cleared upon facility decommision -corp fixed race setting should now apply to XY genned slaves 5/31/2018 4 -fixes -fixes to crazy devotion gains from bodyswapping, hopefully -colored slave summary to make it more obvious if something is on a slave 3 -remove all slaves facility option -BC now properly applies pronouns to hero slaves -fixes 5/30/2018 2 -fixes 1 -prosthetic limb rework (mutually exclusive with cybermod - backwards compatibility will allow switching between them) -various fixes 0.10.7.1-0.2.x 5/29/2018 10 -fixes and text corrections -attempted to fix fMarry pronoun issue 9 -minor fixes (wardeness not buyable from JFC, backwards compat error) 8 -induced NCS fixes (you can now actually buy it) -fixes to surname stripping having trouble lowercasing a number and losing its shit 7 -added anon's induced NCS -tweaks to arm/leg tattoos and how they are managed when slaves lack arms and legs -minor fixes and tweaks 5/28/2018 6 -bodyswapping moved out of cheatmode -prettied up former Elites -tweaked breeding standard for fit focused physical idealist societies -various minor text fixes -fixes 5/26/2018 5 -various fixes to issues created with v4 4 -more tweaks to bodyswapping -fPat cleaning -tweaks to face shapes and beauty -fixes 5/23/2018 3 -slave slave bodyswapping added (WIP) -fixes -many text corrections -couple new nationalities -ability to manually retire more than one slave per week 5/21/2018 2 -fixes -more names -various text corrections 5/17/2018 1 -added bodyswapping -begining of pronoun rework -fixes 0.10.7.1-0.1.x 5/14/2018 97 -couple of bug fixes (broodmother slave summary now properly appears and an extra closing if was removed from generateChild) -number of text corrections 5/14/2018 96 -bug and text fixes 5/13/2018 95 -fixes and text corrections -strengthened ID setting in identical twins to hopefully not result in duplicate IDs -FS clothing price hike -you can now obtain FS clothing from sufficiently developed neighbors 5/12/2018 94 -slaves may now birth identical twins -anon's quick find slave index ui now works on tabbed penthouse and supports sort boxes -fixes 5/10/2018 93 -fixes to vector art and potential custom image issues in RESS -fixes 91 - 92 -more tweaks to anon's quick find slave index ui 5/08/2018 90 -anon's quick find slave index ui 89 -fixes and code optimizations -some extra fuckable nipples content in RESS 88 -anon's continued corporation tweaks -fuckable nipples support for RESS -couple little fixes 5/06/2018 87 -anon's corp tweaks -added fuckable nipples 5/05/2018 86.1 -added a catch to prevent possible failed rival gen under unknown circumstances 86 -overhauled saPleaseYou -fixed .pregWeek quirks with cheat edit pregnancy (hopefully) -removed PC's ability to impregnate fucktoys in reFullBed regardless of if they can become pregnant and whether or not you actually have a dick 5/04/2018 85 -fixes 84 -fixed FResult undefined bug 5/03/2018 83 -fixed BGs still trying their hardest to kill themselves in the pit -fixed reservations not being freed after birth 82 -fix for broken FS progress -better handling for getSlave() returning undefined -fix for some obscure BS that led to slave duplication 81 -fixed player cheat edit pregnancy weirdness -fixed various little issues -work towards fuckable nipples 5/02/2018 80 -more fixes 79 -various fixes -work towards fuckable nipples -you can now drop Hedonistic Decadence's slave food research if you don't have the FS 4/30/2018 78 -Deepmurks vector art pack update -Deepmurks slutty schutzstaffel outfit and porcelain mask accessory -various fixes 4/29/2018 77 -fixed some text issues -fixed all cheat edit pregnancies 76 -multiple fixed bugs -tweak to oversized breast decrease rate (it's no longer instant) -better feedback for oversized butts and facility devotion caps 4/28/2018 75 -groundwork for pronoun rework -various minor corrections -vector name standardization 4/26/2018 74 -fixed an obnoxious bug that worked its way back into walkPast -added clothing-fetish interactions for monokini and naked apron 73 -bodyguard once again told to stop fighting herself in the pit -spire apartments now work -fixes 4/25/2018 72 -pit now readds living slaves to its roster -bellyDesc work 4/24/2018 71 -various fixes and typo corrections -couple new nicknames 4/23/2018 70 -fixes -attempted to clean up seCoursing (it slimmed down a little) -added an override variable to block maturity pref's max age increase in cases where a slave is expected to strictly be between x and y age. 69 -various fixes, the most notable being slaves that die during childbirth now actually die (again) -more code optimizations -more belly vector content from Deepmurk -increased the max age for ovary renewal by 10 years (includes player) -Hedonistic Decadence research now works outside of Hedonistic Decadence -Weight gain removal formula is available to all societies if Hedonistic Decadence is not taken 4/22/2018 68 -added servant career class (they make better servants) -SFanon's pit virginity respect -various fixes and optimizations 4/21/2018 67 -fixes -more code optimization and cleanup 66 -various fixes, cleanups and optimizations 4/20/2018 65 -finished REFI cleaning -red army uniform and schutzstaffel uniform from Deepmurk -more vectors from Deepmurk too 64 -added options to allow/deny DJ and Madam fixing flaws -added anon's pirate themed FCTV channel 63 -fixes and code improvements, the usual 4/19/2018 62 -tons of fixes -more code optimizations 61 -fixes -code optimizations -channel13's FCTV channel addition 4/18/2018 60 -fixes and more code optimizations 59.1 -accidentally made HGs even more likely to become doms, that has been fixed now 59 -added naked apron -various fixes and optimizations -more REFI work 4/17/2018 58 -crooked teeth generation changes -several minor tweaks 57 -fixes -more REFI work 4/16/2018 56 -fixes -added Deepmurk's cybersuit -comes with vectors 55 -fixes -more code optimizations -more REFI work 54 -fixed bugs and other minor text issues -Deepmurks' monokini vectors 53 -fixes -more code improvements -more REFI work 4/15/2018 52 -fixes -Deepmurks skin color rework 51 -added monokini -various fixes, code cleanup, etc -the nicknames never end 4/14/2018 50 -fixes -more code cleanup 49 -fixes and typos -split socks from shoes -even more nicknames 48 -Kopareigns found the HGsuite doubling pop counts bug and fixed it -seriously, it's gone now 4/13/2018 47 -fixes to reFullBed -more code improvement -Nox/Deepmurk areolea and pre-pube vectors 46 -fixes to walkPast -code cleaning 45 -several fixes, most notable being NationalityToName not recognizing Revivalist slaves -fSlaveSlaveDick overhaul -code improvements 44 -bunch of new shoes and stockings by Deepmurk -code cleanup -partial REFI work (merge conflict forced push) 4/12/2018 43 -readded fixed reverted content -mulitple typos fixed -better RA contols for diet and muscle 4/11/2018 42 -reverted "new means to add, remove, and locate slaves via index map" 41 -various fixes -encyclopedia prodding from SFanon -new means to add, remove, and locate slaves via index map 40 -added fuckdoll impregnation -preglocke's fSlaveSlaveVagConsumate cleanup and content addition 4/10/2018 39 -various fixes and typos -fixed an issue where personal training could attempt to soften paraphilias 38 -various typos and minor fixes -fixed tabbed main's link issues 37 -added ability to give slaves your surname during marriage -unbound slaveInteract impreg block from fuckdoll suit (it now checks .fuckdoll instead) -more fixess and typo corrections -Stuffedanon's tweaks now only apply to refreshed passages and not first visits -fixed engineering start not giving secExp proper drone counts 36 -code cleanup -many more cases caught for supremacist's law -defiant slaves get excess trust converted into negative rep 4/09/2018 35 -fixes -background color flipper (WIP) -more Nox/Deepmurk vector work -stuffedanon's sugarcube tweaks 34 -fixes to slaveSummary name flipping -fixed bad array in bellyDesc 33 -fixes -typo corrections -small additions to footwear and chastity descriptions to a couple outfits that previously lacked them 4/08/2018 32 -more typo corrections -more nicknames -various code improvements 31 -fixes -expanded fDick a bit -typo corrections 4/07/2018 30 -several typo corrections -large vector art update from Deepmurk involving boobs and sleaves 29 -hopefully have finished fixing that rival hacking victory -various typo corrections -messy bun added to hairstyles 4/06/2018 28 -typo corrections -some code improvements -still more names and nicknames 27 -typo corrections -some code improvements -even more names -more careers 4/05/2018 27 -fixed a bad $i in nextWeek -added a basic overpower roll for slave vs player 26 -added anon's aphrodisiac demonstration to FCTV -fuckdoll conversion now unsets inflation 4/04/2018 25 -added the black market pt 1 (FS research buying) -various fixes and typo corrections -most, if not all, of the old sugarcube operators 4/03/2018 24 -various fixes including issues pertaining to incubator reservations not clearing after birth -tweaked maturity pref age effects to hopefully be less overwhelming 23 -lots more new nicknames -various text and bug fixes 4/02/2018 22 -fixes, typos and code improvements -even more (git) vector art 21 -more nicknames -more names then you'll ever want -added neighber hacking options -fixes -typo corrections -code cleanup 4/01/2018 20 -various little fixes -fixed slimming diet not lowering muscle -many typo corrections 3/31/2018 19 -fixes -more nicknames 18 -bunch of bug fixes, typo corrections and scene oddity fixes -also more nicknames 3/30/2018 17 -major update to original embedded vector art -shifted loli growth hormone check into saHormoneEffects to not supress feedback -various little fixes -added surname order control to description options 16 -various corrections to enslaved citizens not being the right race when the supremacist law is in play -a certain policy is now properly enforced 3/29/2018 15 -fixed issue causing a slave's player children fathered to not properly track 14 -you can now implant a belly implant post csec (non-seBirth only) -added more hacking skill effects -fixed bad syntax in seBirth -various typos fixed -some code cleanup 3/28/2018 13 -PC cheat edit improvements -twincest options for new voluntarily enslaved twins during recruitment -various typos fixed -more bugs squashed, most notably virgins claiming to have given birth before 3/27/2018 12 -fixed issues with eugenics and the rival conflict -fixed various little bugs 11 -added many new git submitted nationalities -fixed needless space between knock yourself up and its link -revised saLiveWithHG's diet block to better stick to dietary targets 3/26/2018 10 -added breeder's diet (boosts conception rates) 3/26/2018 9 -git resync, mostly typos on this end -fixes to issues in facilities on the git end 3/25/2018 8 -fixes and tweaks, nothing major 3/24/2018 7 -fixed a couple minor annoyances -if any slave has a .reservedChildren value, the incubator global tracking resetter will be usable 6 -new voluntarily enslaved pairs can show their incestual love during recruitment -minor tweaks to muscle building and steroids -added fertility diet 5 -fixed improper usage of jsEither() 3/23/2018 4 -fixes to setPregType() -slimming diet can now be reassigned after muscles are completely gone to trim assets 3.1 -little fix to broodmother initiation in wombJS 3 -finished implementing setPregType(), now to find it outputs multiples too readily -incubator now adjusts .hormoneBalance when the hormone settings are on -various spelling corrections and a minor bugfix 2.1 -minor fixes -fixed boomerang slave relation null pointer exception 2 -fixed boomerang slaves null pointer excetions regarding rivalries and relationships 1.1 -reverted change to traitor slave origin concatenation 1 -many spelling corrections -fixes to decreasing custom nationality weighting -fixes to bad versionID setting -partial implementaion of setPregType() 0.1 -minor fix to generateXYslave 0 -fixes severe issues with customized slave trade *Requires backwards compatibility - no exceptions v1022 (0.10.7.1-0.1.0) 0.10.7.0/1 3/22/2018 407 -spelling fixes -decreased memory usage, apparently signifigantly -added setPregType(), but not implemented it yet *Severe issues with customized slave trade. If you are not using it, DO NOT USE THIS VERSION. 406 -minor fixes -major fixes and overhauling to autosurgery and to the RA -backwards compatibility should no longer unset all your rules -FResult JSification 3/21/2018 405 -various text fixes -fixes to csec bug 404 -numerous reported bugs fixed -also a few typos 3/20/2018 403.1 -fixed all reported bugs and typos 403 -XX, XY, and XXY diets now properly handle boobs -minor fixes -pregmodder can not spell "receive" thus necessitating a sanityCheck entry 402 -SFanon's new trio of recruits -Pregmodfan's continued fixing and tweaking of his preg tracking system -lower back brand location -fixes 3/19/2018 401 -tweaked saLongTermEffects pregnancy setting -various little fixes -fixed missed closing '>' in neighborsFSAdoption 3/18/2018 400 -added neighbor FS Incest Festishist -new JS functions (areRelated()) -more fixes 3/17/2018 399.2 -added missing impregnation checks to slave-slave impreg 399.1 -policy now sets properly 399 -added incest focus policy (pre-EgyptianRevivalist bonus) -SFanon's fixes and tweaks -pregmodfan's fixes to the autosurgery -pregmodfan's belly implant implantation and filling to the RA -pregmodfan's broodmother implant tweaks (implant stays in after shutdown; must be removed surgically, but can be restarted) -various little text fixes 3/16/2018 398 -fixed HG, BG, and HG's slave not showing up in endweek if you have no other slaves in the penthouse -various text fixes 3/15/2018 397 -fixed broken nice nurse outfit belly description -game start player pregnancies should be initialized properly now 396 -fixes to PC cheat menu -continued work on belly descriptions -minor text fixes 3/14/2018 395.1 -fixes hostage inheriting starting girls wombs 395 -unbroke fake belly clothing descriptions -fixed starting girls sometimes having piercings 3/12/2018 394 -more fixes to pregnancy clearing 3/11/2018 393 -Incursion specialist background -little fixes 392 -SFanon's PC cheat menu -fixes to sellSlave and slaveSold 3/10/2018 391 -finished saChoosesOwnClothes rework -fixes 3/09/2018 390 -sugarcube updated to 2.24.0 -little text fixes -tweaks to personal attention "sex" to make use of available tits and dicks where appropriate and to not use virgin holes 389 -various git fixes (brothel implant ads, custom slave voice, SF tweaks) -stripped JS of all "Sugarcube.State"s leaving it as "State" 3/08/2018 388 -fixed a very very unlikely case in sister indentification -fixed some improper pregnancy sets in the dairy -fixed more improper preg sets in saLongTermEffects -barred random impreg in dairies with preg settings on 387 -tweaked saGuardsYou to actually count facility heads the BG has trained when it comes to counting successors -your BG nows considers servants and your harem in her count -a race now no longer can be both superior and inferior -slaves can now die of age as young as 50 should they be in bad condition, conversely, healthy slaves live longer -reordered full royal court enslavement to circumvent a possible ghost in the machine situation -partial revert to scheduledEvent to handle sugarcube BS 386 -tweaked childgen to only random face and int for playerXmarked if the child is below the minimum value -migrated mindbroken kicker cases from slaveAssignmentsReport to saTakeClasses and saStayConfined -hyperpreg and overwhelmingly female hormone balances now prevent oversized breasts from shrinking -slaves below 10 are now more resistant to developing fetishes -fixed bad initialization -various little text corrections 385 -fixed itt noted errors -lowercasedonkey's tabed slave overview (find it in options) -tweaks for potential issues in scheduled events 3/07/18 384 -various git merges -devoted virgin event 3/04/18 383 -Revamped vector art content -Edit neighbor cheats -various submitted fixes -various reported bugs ???? 382 -overhauled saChoosesOwnClothes (currently trapped on a powerless computer) 3/02/18 381 -ocular implants now get consumed on use -fixed minor text bugs 3/01/18 380 -addition gui support for jquery (git only for now) -crimeanon's secEx replenish all option and fixes 2/28/18 379 -more fixes to player birth 378 -fixed issues with mindbreak/fuckdolls and corsets/heels -masochists now get off from extreme corsets and heels -fixes to trade show 2/27/18 377 -major fix to youth and maturity pref failing not clearing SMR, law and PA appearance 376 -pregmodfan's fixes to player pregnancy 375 -Sfanon's fixes and tweaks -some more robust catchers for NaN'd rep -pregmodfan's tweaking to saAgent -cleaned out all the new sanityCheck complaints 374 -fixed pregnancy desync in startingGirls 2/26/18 373 -raWidgets now will not complain about "please you" -fixed policies and PA tabs requiring cybermod -some code cleanup in RETS -removed a mysterious <<break>> in the neighbors FS selection 372 -more prodding to seBirthWidgets -sidebar reorganization 2/25/18 371 -cleaned up seBirthWidgets some more to bring in back in line with original intent -various little fixes 370 -various bug fixes -more stuff from SFanon Agent pregnancy bug still in play. 2/24/18 369 -fixes for pregmodfan's pregnancy tracking -SFanon's continued SF work 368 -added missing dairy broodmother birth -hacking skill allows you to pose as a medical expert to gain access to some of surgeon's starting bonuses -reduced hacking bonus to be in line with other bonuses -tons of logic fixes in scenes -updated RA to use itemAccessibility JS 2/23/18 367 -filled another braces exploit -SFanon's SF work 366 -more support from pregmodfan to his new system -fixes to the facility decoration bug -other fixes -added a new hpreg recruit (in cheatmode only as preg counts that high aren't handled yet) 365 -SFanon's player hacking skill (basic implementation) Still more to come with it. 2/22/18 364 -sidebar notification when you can start a new FS -pregmodfan's new pregnancy tracking system -fixes to players being unable to manage HG, BG, rec 2/21/18 363 -added labor suppressant feedback to BellyDescription -tweaked Mercenary Romeo to avoid mastersuite slaves and your wives if given the option. -further tweaked Mercenary Romeo to only fire off if you have a public slave or a slave that has seen lots of public duty. MB, FD and NG+ exclusions. 2/20/18 362 -added .pregWeek to the advanced cheat edit slave -added slow gestation feedback to PregnancyDescription -added labor suppressant feedback to PregnancyDescription -added speed gestation feedback to PregnancyDescription BellyDescription may need additions as well for the trio. 2/19/18 361 -revised fertility goddess nicknames to favor nationality based ones before others 360 -added fertility goddess nickname type (needs more nicknames) -added head girl tastes for Repop focus 2/18/18 359 -neighbors can now have the same potential number of FS as you instead of a hardset 4 -this also caps the rival 358 -attempted to plug braces exploit 357 -submitted fixes -use another slave to impregnate her now respects chastity properly 2/17/18 356 -minor fixes -minor fixes submitted via git -more additions and fixes to the revamped vector art (I also now know what it is called.) -added option to c-section a slave should you feel like it 355 -minor fixes and a major fix to personal attention -additional new vectors for the new embedded vector art 2/16/18 354 -preg biometrics collar now reports new mother status -preg biometrics collar reporting early pregnancy now pleases repopulationists -submited text improvements 2/15/18 353 -slaves now experience a postpartum state post pregnancy It takes four weeks normally to end and during which they suffer a percentage reduction to FResult that deminishes each week until their normal cycle begins anew. 2/14/18 352 -unbroken slaves' deovtion loss due to knocking you up now increases in severity the more times it happens -fixed minor text issues -spellchecked the patch notes this time 351 -minor text fixes -slaver background now starts with discounted starting girls 350 -player pregnancy postpartum state active 349 -minor text fixes 2/13/18 348.1 -added missing "tails" vector 348 -anon's new unembedded hair vectors -some code condensing from fcanon 347 -untangled dispensery text -fixed some spelling issues and duplicate words -backend work for postpartum players -isPlayerFertile($PC) JS 2/12/18 346 -fixed new fertile ovaries organ -fixed bad <<FSChange>> 345 -now menopause reversal won't clear pregnancies 344 -fixed several text issues -added menopause reversal 343 -fixed missed closing ifs in seBirth -fixed mishandled rude title in fearful balls event 342 -FCanon's big ass patch -numerous bug fixes and optimizations 2/11/18 341 -broodmother shutdown added 340 -implemented broodmother shutdown variable -fixed HG + slave display on the arcology layout -fixed issues with the old-style UI -various little fixes 339 -FCanon's fixes -fixed some display issues involving $PC.customTitle 2/10/18 338 -various little text fixes -sugarcube updated to 2.23.5 337 -fcanon's RA assignment fixes 336 -finished cleaning birthWidgets and making sure clothing birth accommodates broodmothers 2/09/18 335 -fixed attackReport. Not going to ask how it ended up like that in the first place. -fixed dairy assigning ignoring facility caps 2/08/18 334 -fixed potential bad ages in two slave recruit events -various minor tweaks -birthWidgets cleaning 2/06/18 333.1 -removing the broodmother implant now actually does what it is supposed to 333 -phase 6 completed (broodmother type 1) -typo corrections 332 -minor sanityCheck fixes 2/05/18 331 -phase 6 work (all broodmother births completed) -various little submitted fixes and tweaks -FCanon's ra fixes 2/04/18 330 -fixed reappearing peacekeepers -phase 6 work 2/02/18 329 -fixed degrading names 328 -fixed reNickname and slaveSold 327 -various code cleanup -tweaks to agents -fixed grammatical issues involving luxurious hair -pregmodfan's nickname fixes and other fixes -phase 6 work 326 -sugarcube updated to 2.23.4 325 -reduced concentration of string implant malus -fixes to saAgent's fake belly removal -fixed permanent makeup text duplication -various minor text corrections -phase 6 work 324 -added saAgent Some physical Agent stats are now tracked week to week. 323 -fixed hidden headgirls 2/01/18 322 -fixed missed rep increase in strip club closing -removed excess "the"s -fcanon's agent work -various little fixes -phase 6 work 1/31/18 321 -added Faraen's vector art 320 -fix to assignWidgets not porperly handling facility head assignment 319 -anon's master slaver multislave personal training -fixes 1/30/18 318.1 -critical fix to PMODinit bug 318 -fixed errant ".lightyellow;" -fixed non lethal pit bug 317 -fixed virginty ignoring in saRules -fixed lack of virginty taking warning in RESS -fixed the barracks getting really confused about the number of mercs fucking slaves in it -anon's corp tweaks -re-initialized phase 6 316.2 -fixed bad string in FS acquisition 316.1 -better fix to race issue in sup FS acquisition 316 -partial fix to race issue in sup FS acquisition 315 -fixes to assayWidgets (beauty) 314 -fixed bad cashFormat() arguement in costReport -fixed missed ) in saRecruitGirls -initialized phase 6 1/29/18 313 -fixed bad cashFormat() 312 -phase 5 completed (hyperpregnancy) -minor fixes -anon's $PC.trading tweaks to the corp -fixed the possibility of use counts going negative in glory holes 311 -anon's labReport fix 310 -crimeanon's fixes -anon's continued tweaking -fixed hostages sometimes showing up when they weren't supposed to be -fixed various little typos and errors 309 -various small fixes 308 -Sugarcube updated to 2.23.1 1/28/18 307 -various submitted text corrections 306 -fixed missed && in SpecialForceUpgradeOptions 305 -fixed issues with orphanage recruits -small text fixes -fixed mistargeted spans in custom slave -fixed infinite JFC looping -fixed childgen getting confused when the player fathered a slave -limited height surgeries to +- 15cm from expected average -anon's economy tweaks -crimeanon's fixes 304 -anon's tweaks -removed leftover code from RESS 303 -anon's corp tweaks 302 -fixed missing span in JFC 301 -anon's corp tweaks 1/27/18 300 -anon's corp tweaks -fixed the upgraded dispensary giving 50% off the reduced value instead of the original 299.2 -and now they are nuns and priests 299.1 -clergy capture slaves are now virgins 299 -converted anon's submitted clergy capture event into the second Chattel Religionist FS acquisition event -SFanon's fixes and tweaks -phase 4 work -fixed the dispensary giving 75% off instead of 25% off 298 -fixed the flesh heap only giving amps if $seeExtreme was off 297 -fixed minor bug in JFC 1/26/18 296 -SFanon's job fullfilment center slave market -anon's various fixes and tweaks 295 -starting girls can now be set to mindbroken -fixed some age bugs in reRecruit 1/25/18 294 -consolidated player asset descriptions -femPC can now officially be flat 293 -added a see pregnancy toggle to game options -crimeanon's secEx fixes 1/24/18 292 -conitnued implementation of $seePreg 291 -partial implementation of $seePreg 1/23/18 290 -small tweaks to FResult -fixed minor bugs -initialized .nipplesAccessory and $seePreg 1/22/18 289 -anon's continued tweaking 288 -SFanon's fixes to SFMBarracks -phase 4 work -XY ads now check for a dick instead of the lack of a vagina -tweaked combat arms deadliness to actually add deadliness -starting girls now properly tells you their genes 1/21/18 287 -anon's continued tweaks -fixed reversed degradationist check in new slave intro -cleaned up chattel religionist's clothing choices in saLongTermEvents 286 -minor fixes -anon's income tweaks -anon's vignettes 1/19/18 285 -SFanon's fixes 284 -fixed advertising issues regarding implants -fixed minor text issues 283 -fixed reversed futanari sisters career effects -minor text fixes 282 -Crimeanon's tweaks -SFanon's tweaks and SF cheat edit -minor fixes -tweaked eugenics breeding proposal to reflect post SE rebellion -refiled chains under harsh clothing 1/18/18 281 -fixed introSummary breast setting -fixed an oversight in authorityReport 1/17/18 280 -fixed multitude of problems brought in with v278 279 -fixed severe issue with "work as a servant" 278 -variety of contributed fixes and corrections 1/16/18 277 -fixed minor display issues -fixed potential $rep cause in involving SF's Colonel (or fucked up the check and made it worse) -added .ovaryAge to the cheat edit slaves 1/15/18 276 -fixed improper belly size unsetting in saInflation -slave on slave feeding now properly clears its variable -increased cost reduction of servant's quarters -added more mindbroken checks to cull inappropriate emotion 275 -various overlooked mindbreak checks added -phase 4 work 01/14/18 274 -fixed broken saWhore vignette -tweaked how sex counts work in the schoolroom 273 -fixed minor display bugs -warded against odd .burst hostage inheritance 01/13/18 272 -fixes to saRecruitGirls 271 -many new incest two slave recruit combinations -small fixes 01/12/18 270 -fixed bad RESS choice -tweaked puberty events 269 -servants can now qualify for a reduced selection of random events They are always around, after all. 268 -fixes to policies and master suite 267 -fixed age ads getting set to 0 when they shouldn't be 266 -Gutted random event selection and recoded it as JS -Crimeanon's fixes -SFanon's fixes -minor fixes and typos corrections 01/10/18 265 -fVagina fixes -SFanon's cleaning 264 -allowed master suite slaves into RESS eligibility 263 -The rest of SFanon's fixes -minor corrections -fixed a number of ".SlaveName"s 262 -SFanon's fixes and policy cleanup 261 -small fixes -secEx fixes 01/09/18 260 -fixes to advertising 259.2 -fixed fVagina, again 259.1 -fixed fVagina 259 -fixes -phase 4 work -anons FCTV channel and story 01/06/18 258 -fixes -phase 4 work -backwards compatibility fixes for vanilla to pregmod saves 01/06/18 257 -fixes -phase 4 work -personal attention now respects chastity better 256 -Fully established eugenics is now abandonable after you've dealt with the uppity SE. -Corncobman's brothel/club advertisement and code tweaks -SFanon's fixes 01/04/18 255 -fixed reBoomerang bad variables 254 -minor typo corrections 253 -more minor fixes 252 -SFanon's cleaned up introSummary -fixed numerous zero'd stats in export slave -gave most ddDatabase slaves scrotums 251 -tweaked milking arcades to delay slave rotations somewhat (they'll stay healthier longer, but still will eventually require a recovery period) -minor fixes 01/03/18 250 -SFanon's stuff -minor fixes 01/02/18 249 -Sugarcube updated to 2.22.0 -fixed lip implants vs natural lips TF check being wrong -other small fixes 01/01/18 248 -minor fixes 247 -fixed vaginal use incrementing the anal total in the arcade 12/31/17 246 -fixes Fixes include $failedElite not clearing on ng+, excessive oral use and issues with serve you other slaves. 12/30/17 245 -finished .need fixing -saServeYouOtherSlaves work -minor fixes 244 -added stamina pills for player consumption 12/29/17 243 -fixed subordinate slave setting 242 -anon's new family tree display (not yet implemented in startingGirls, so don't freak out) -various little tweaks 241 -fixed bad variable in costs JS -fixed unclosed set in endWeek 240 -living rules cost optimization -code cleanup -fixed minor bugs involving the BG's room 12/28/17 239 -fixed reputation bug -fixed secBarracks bugs 238 -fixed slave summary bug 237 -fixes to eugenics bad end -SFanons tweaks fixes and content -at least one slave in subordinate targeting must have limbs 12/27/17 236 -fixes RA XXY diets, scalemail bikini errors, bad engineering training and straps/latex showing up inappropriately in the vector art. 235 -saRules now applies to the HG's slave -HG and BG no longer consume dormitory capacity if they have their own room -SFanon's fixes 12/26/17 234 -SFanon's fixes and numbers commaing 233 -fixes 232 -saRules now applies to the master suite -various little text fixes 12/25/17 231 -saRules now applies fully to the dairy 230.2 -minor elseif if catch in saPleaseYou 12/24/17 230.1 -quick revert to lastEyeSurgery() 230 -fixed eyes autosurgery? 229 -fixes -QoL changes to unit management in secEx Fixes include the swan song followup never happening, RA getting too controlling about fertility drugs and incorrectly displayed training costs. 228 -code improvements -SFanon's player skill stuff 12/23/17 227 -various text fixes 226 -fix for removeActiveSlave incubator quirks 225 -SFanon's fixes -Milkmaid saRules 224 -SFanon's fixes -a bunch of lisping tweaks 12/22/17 223 -SFanon's stuff (mostly comma'd numbers) 222 -SFanon's stuff 221 -fixed servants quarters bugs 12/21/17 220 -saRules now applies to the servants quarters -fixes Fixed an issue with reMalefactor displaying the wrong text block. 219 -fixes More cache clearing, fixes to reBoomerang preg setters and a typo in raWidgets causing trouble. 12/20/17 218 -SFanon's tweaks 217 -fixed sex count NaN in saRules-schoolroom -tweaked childgen to use current father name 12/19/17 216 -saRules now applies to the schoolroom -fixes 12/18/17 215 -fixed brothel devotion oddities -adjusted arcology sector demand -optional comma'd numbers Every purchase and selling of an arcology sector will now make the nexst more expensive. Selling one increases it more than buying one, so while it may bring in quick money will make it more difficult to reaquire. 214 -saRules now applies to the spa Also fixed luxury rules being retained when removed from certain facilities. Those will now default to "normal". 12/17/17 213 -lots of spelling corrections -fixes 212 -fixes -new outcome for reRebels 12/16/17 211 -fixes 210 -fixed "psychosupresants" 209 -minor fixes 12/15/17 208 -saRules now applies to the cellblock -new cellblock setting to forbid your wardeness from cumming inside your prisoners -git contributed fixes -Inflation settings are also now restricted for the cellblock, similar to the dairy and arcade. 12/13/17 207 -git contributed code simplification and fixes 206 -git contributed fixes 12/12/17 205 -git contributed fixes and muscle range expansion to custom slave/starting girls 204 -saRules now applies to the clinic 203 -fxied bad if in saRules 202 -fixes 12/11/17 201 -SFanons stuff 200 -saRules now applies to the club 199 -fixes 198 -fixes -saRules now applies to the brothel 12/10/17 197 -anon's tweaks Mostly little cheat edit tweaks to secEx. 196 -fixes -saRules tinkering 12/09/17 195.1 Should fix >>149556 195 -fixes -saRules tinkering 194.1 -same fix as >>149491 (Broken pharmaceutical fabricuator purchase option) 194 -SFanon's passive PC skill gaining -anon's various additions and corrections -fixes 12/08/17 193 -fixes 192 -anon's leadership slave skills -fixes 12/06/17 191 -SFanon's fixes -Crimeanon's fixes 190 -SFanon's fixes 189 -fixes and tweaks 188 -fixes -SFanon's fixes -secEx tweaks 12/05/17 187 -fixes -SFanon's fixes 186 -fixes -SFanon's stuff 185 -fixed <<m>> 184 -tweaks to pregnancy breast growth -pregnancy overhaul phase 3 (belly implants) completed 183 -sugarcube 2.21.0 -continued bellyImplant work 12/04/17 182 -fixes 181 -fixes -reduced value of milk and cum -continued bellyImplant work 180 -fixes 179 -fixes -FSanon's custom slave voice options -continued bellyImplant work 12/03/17 178 -fixes 12/02/17 177 -fixes 176 -fixed bugs 175 -added anon's siren song part 2 -fixes -added tracking to ng+ slaves to keep them from stealing the spotlight in certain current game events 174 -added SFanon's eye and hair autosurgery settings 173 -The Hippolyta Acedemy added -fixes 12/01/17 172 -SFanon's stuff -anon's slave self impregnation -fixes 171 -fixed .pregSource not handling ng+ -tweaked childgen 11/30/17 170 -added vector art anon's bushy pits -tweaked childgen 169 -SFanon's fixes -Doubled non size related bonuses in GR's big butt policy for slimness societies to offset the negative of big butts 11/29/17 168 -disabled broken vector -escorts now have a slight edge when it comes to teaching slaves sex skills 167 -SecEx battle prestige 166 -fixes -some minor tweaks 165 -fixes -dairy entry tweaks -color tweaking 11/28/17 164 -fixes -continued color wars 163 -minor fixes -color standardization/what the fuck does this color even mean? 162 -fixes -SFanon's fixes -Crimeanon's fixes 11/27/17 161 -fixed custom slaves making all slaves their race 160 -fixed reRecruit 159 -fixed bugs -added a policy for open slave dick use 11/26/17 158 -fixed lactation implant dairy setting bug 157 -added rumor reduction to reputation policies SecEx: -discounts for applicable PC experience -cyber upgrade for units 11/25/17 156 -SFanon's fixes and tweaks 155 -fixed princes 154 -fixed FCTV channels 12 and 13 not showing reruns should they run out of content 153 -Security Expansion mod officially added -finished phase 2 of the pregnancy overhaul (inflation overhaul) -added the option to not implant cattle for lactation implants to the dairy -fixes 11/23/17 152 -fixes -changes to whoring/slutting/hole need -continued inflation work 151 -fixes -tweaks to BP and TF in regards to extreme facial surgery and race alteration -continued inflation changes -SFanon's stuff 11/21/17 150 -tweaks 149 -custom slave overhaul 11/20/17 148 -added settings to enable/disable lactation implants in flat slaves 147 -fix 146 -fixes -dairy now only increases breasts in lactating slaves and the stimulators increase cum output 145 -fixes -new SJW recruit -dairy slaves will only receive lactation implants if they have no dick, have breasts larger than flat, or are already lactating naturally. -nationality reweighting 11/19/17 144 -The daughters of liberty now require combatants to pass a physical before deployment (the captures will be in a more reasonable fighting shape) 143 -SFanon's stuff 142 -fixes 141 -completed new vanilla country additions -fixes 11/18/17 140 -fixes -SFanon's stuff 139 -fixes 138 -fixes -SFanon's stuff 11/17/17 137 -fixes -began inflation rework stage of pregnancy overhaul (phase 2) 11/16/17 136 -fixes -RESSTR cleaning completed 135 -fix to RA drug reduction targets not subtracting implants 134 -major revisions to how temporarily removed slaves are handled 11/15/17 133 -major fixes to temporarily removed slaves -fixes -removed restrictions on hormone blockes -RESSTR event cleaning 11/14/17 132 -fix 131 -fixes -Completed RESS cleanup 130 -fixed the free range dairy assignment scene -SFanon's stuff 11/13/17 129.1 -more fixes 129 -fixes 128 -anon's scalemail bikini -fixes 127 -fixed fFeet 126 -fixes -major oversight corrections -added short stories to FCTV -alterations to artWidgets.tw 11/12/17 125 -fixes -RESS work 124 -fixes -dairy diet changes 123 -some fixes -more RESS work 11/11/17 122 -fixes -very bushy pubes 121 -fixed >>140790 (<> in the DefaultRules widget is missing a $) 120 -fixed bugs -removed deprecated "be your recruiter" -more RESS stuff 11/09/17 119 -fixes 118 -fixes 11/08/17 117 -fixes 116 -tweaked supremacist and subjugationist beauty and FResults -fixes -more RESS work 115 -fixes -more RESS work 11/07/17 114.1 -fixed >>139762 114 -fixed bugs -capped devotion gained from max trust to prevent unruly slaves from suddenly loving you -more RESS work 11/06/17 113 -fixes -added isItemAccessible() to handle those obnoxious checks for FS and purchased items 11/05/17 112 -fixed bugs -tweaked choosing own clothes a little 11/04/17 111 -fixes 11/03/17 110 --fixes -vanilla cleanings -continued RESS work 11/01/17 109 -fixed >>137381 (mutinery attempt - Cannot read property 'nationality of undefined) 108 -fixed self pregnancy confusing childgen 107 -fixed reported bugs and family quirks 10/31/17 106 -RESS work -hormone blockers now block erections 105 -converted the applicable .hormone calls to use .hormoneBalance -added hormone blockers to restrict hormone effects and speed normalization while used 10/30/17 104 -fixes 103 -hormones rework -fixes 10/28/17 102 -fixes 101 -fixes -Milkanon's channel is live in FCTV 100 -fixes -fFeet overhaul -fFeet moved out of cheatmode 10/27/17 99 -fixed various bugs 98 -fixes 10/26/17 97 -fixes 96 -stuffedanon's fixes 10/25/17 95 -added masturbation only release rule -fixes 10/24/17 94 -fixes -vanilla tweaks -nationality presets now use weighted arrays (except the big one, haven't gotten it done yet) -eugenics bad end rework 93 -fixes 10/23/17 92 -bunch of vanilla stuff since I raided the waiting vanilla pull requests -fixes 91 -fixes -user submitted QoL improvements 10/22/17 90 -added >>135219 (Economy widget/spreadsheet fix for case when variables are somehow not initialized but the sheet is being displayed anyway) 89 -fixed reAWOL 88 -SFanon's work 87 -minor fixes 86 -minor fixes 85 -SFanon's stuff 10/21/17 84 -number of bugfixes 10/20/17 83 -fixed bugs 10/19/17 82 -anon's economy reports -continued RESS work 81 -SFanon's fix -minor fixes 10/17/17 80 -fixed "desperate birth" more 79.1 -more grammer fixes to reRecruit that failed to slip into v79 79 -fixes (sans multi organ implant quirks) -SFanon's stuff -attempted to extend custom tattoos 78 -fixes -anon's multiple organ growth and implantation 10/16/17 77 -fixed reported bugs 10/15/17 76 -fixed puberty setting with implanted organs 75 -SFanon's stuff -anon's organ farm support for the incubation facility -more RESS work -fixes 10/14/17 74 -fixes 10/13/17 73 -SFanon's stuff 72 -fixes 10/10/17 71 -fixes -more RESS work -added oversized sex toys to the list of accessories the RA can manage 70 -fixed reported bugs 69 -SFanon's fixes 68 -fixed the giant robot upgrade prmpt occuring prematurely 67 -fixed reported bugs 66 -fixes -dispensary prettying by SecurityExpansion anon -Massively cleaned up SFMBarracks 10/09/17 65 -fixed my passage fuckup 64 -fixed bug? 63 -fixed bugs? 62 -fixed reported bugs -SFanon's continued work -more RESS work 10/08/17 61 -added "anti-aging cream", "growth stimulants", "sag-B-gone", "male hormone injections", and "female hormone injections" to drugs the RA can manage 60 -SFanon's SF stuff 10/07/17 59 -fixes 10/06/17 58 -fixed >>131078 10/05/17 57 -fixed >>130781 >>130783 56 -tweaked childgen intelligence loss and facial beauty loss due to inbreeding (lessened chances for both, degree for beauty) -SFanon's corporation fixes 55 -SFanon's BC fixes 10/04/17 54 -SFanon's stuff 10/02/17 53 -assorted fixes -continued RESS work 10/01/17 52 -fixed reported problems -arcade will no longer convert slaves sentenced to it into fuckdolls 51 -added SFanon's merge request 09/30/17 50 -fixed creating SF event 49 -fixed, Milf tourist event and decline politely. -pregmodfan's continued RA tweaking 09/29/17 48 -fixed, SFMBarracks.tw has two extra closing ifs, Lines 328 and 374. 47 -fixed bugs -SFanon's continued SF work 09/28/17 46 -pregmodfan's RA tweaking 45 -fixes -RESS work 44 -fixes 43 -fixes -pregmodfan's continued RA tweaking 09/27/17 42 -various fixes 09/26/17 41 -small fixes 40 -fixes for everything but the RA quirks 39 -fixed reported bugs 09/25/17 38 -Pregmodfan's RA tweaks -Removed maximum rules counter (replaced with warning if more then 10 rules used). -Rules now can be selected randomly from list, not only chain go to for next/previous -belly size condition (for .belly ). -Groups of links controls for growth drugs now working without page reload after any click - so it's much more comfortable to use now. 37 -catches for (a slave been born mindbroken if their mother is) and (anal virgin enjoying anal) 36 -fixes the pussy option during the cellbock's sleep deprevation event. 09/24/17 35 -fixes -all RESS intros cleaned up and added to 34 -fixed bugs -added spats to the RA -enabled "frightening dick" event 09/23/17 33 -fixes -typos corrections 32 -fixed bugs 31 -fixes 30 -fixes -SFanon's stuff 29 -fixes -slaves can now lisp the word "access" 09/22/17 28 -SFanon's stuff -fixes 27 -minor fixes -tweaks to bed reporting 26 -fixed price not showing up in the airlift in slavery option 09/21/17 25 -SFanon's stuff -minor fixes 24 -fixed bellyAdjective() -fixed some typos 22/23 -SFanon's stuff 21 -user submitted stuff 09/20/17 20 -fixes 19 -fixed bugs 09/19/17 18 -fixed >>125249 17 -fixed the slave shelter bug 16 -fixes -cleanup and added clit rape into fSlaveSlavedick 09/18/17 15 -added a catch to prevent >>124979 -added custom lenses to add custom description 09/17/17 14 -fixed bugs 13 -fixed SFBarracks -the second half of anon's spats 12 -fixes -SFanon's SFBarracks stuff -vanilla title changes 09/16/17 11 -fixes -anon's spats and t-shirt clothing 10 -fixes 09/15/17 9 -fixed >>124399 -added anon's option to buy both the princess and queen 09/14/17 8 -minor fixes 7 -fixed >>124177 6 -fixes 5 -RETS overhaul 4 -vanilla fixes -bug fixes 09/13/17 3 -added details for some of the new vanilla nationalities -tweaked .need generation 2 -fixed >>123773 0.10.7.0 -vanilla stuff -bugfixes 09/12/17 118 -fixed reported bugs 117 -fixed >>123580 116 -backwards compatibility now properly sets .birthWeek 115 -pregmodfan's RA fixes 114 -vanilla update To sum it up: You can now influence neighbors with your recruiter and your slaves now have sexual needs that must be handled or they'll get moody. Also changes to starting girls prices to smack those who try to stack good things by offsetting them with bad things. 113 -fixes -anon's height focused growth drugs and other related things 09/11/17 112 -various bug fixes 09/09/17 111 -bugfixes 110 -possible backwards compat fix -fixed weight stuff in artWidgets 109 -heavy conversion of the flesh descriptions to the new pregnancy system -bugfixes -clean up of remnant "GenderRadicalistLaw" 09/07/17 108 -fixed >>122211 (119980) 09/05/17 107 -fixed >>122158 again 106 -fixed >>122158 ? 105 -hopefully fixed the bodymod studio 104 -hpefully fixed drgus not working in MS 103 -vanilla content Mostly stuff related to piercings, HGs getting to pierce slaves, some new rivalry causes and a nerf to attraction gain.Also FCdev failed to realize he had 'SlaveFullName' and didn't need to make 'FullName', so I set it up to yell at you to yell at me to remove it. 102 -bug fixes -now in .7z 09/04/17 101 -fixed bugs 100 -fixed bugs 99 -fixes -anon's starting girl quirks -continued overhauling 09/02/17 98 -fixed bugs -added an override to 'KnockMeUp' to supress text 97 -fixes 96 -bugfixes 95 -fixes 09/01/17 94 -fixed >>120653 93 -fixes 92.1 $injectionUpgrade changed for testicles 92 -tweaked intensive drugs more as directed -added "mongolian" to the name flipper 91 -fixed >>120436 maybe? -tweaked breast based beauty to accommodate the size increase -altered dairy breast growth 90 -fixed bugs -messed with rival-hostage events 08/31/17 89 -fixed reRoyalBlood -fixed other bugs 88 -fixed hedonism's shops 87 -fixes -anon's RA stuff -anon's ability to buy the entire royal court 86 -fixed >>120006 Turned out to be oversized breasts having one too many 'if's. 08/29/17 83 -more overhauling All slavegen should be accounted for under the new system now. 82/81 -bug fixes It helps to run the sanityCheck before posting the patch. 80 -tried to handle >>119556 08/30/17 85 -vanilla changes -fixes Biggest thing to report is definitely the breast size cap being raised to 50kcc. A slightly smaller thing to say; balls now go to 10. Still working on getting the RA changes in. 84 -fixed bugs 08/28/17 79 -maybe fixed >>119513 Keep in mind the slave must have arms and legs. 78 -core pregnancy system swapped -fixed some bugs Run backwards compatibility. No exceptions. I think everything is in place that needs to be in place. Very little beyond behind the scenes type code. If everything went right, there should be nothing really noticeable yet. The most obvious change will be the alterations to menopause. It is no longer hard set at 47, instead it drifts slightly year by year. This means that over a slave's lifetime, you will see a variance of when they go through menopause. 08/27/17 77 -fixed >>119185 A prime example of a temp variable running rogue. 76 -removeActiveSlave should now dump their growing organs -typo fixes Some other minor things here and there too. 08/26/17 75 -fixed >>119084 -a submitted addition of the cleansing diet to the RA 74 -fixed bugs 73 -fixes 72 -fixed bugs I may have broken slave facility assignment. Or maybe I fixed >>118907 I don't know. Also if your rules are broken, run either backwards compatibility or the rules resetter under options. Both should fix it. 71 -rest of the vanilla RA changes It honestly looks like it didn't break anything. Do run backwards compatibility though. 70 -vanilla stuff Mostly intense growth drugs. Due to our RA changes, I couldn't hook them into it so it will remove them for now. Still have to handle the massive RA changes, which will likely break everything. 08/25/17 69 -fixed bugs, including a mislink to the slavegirl school Beginning vanilla update merge now. 68 -quick addition of something I overlooked 67 -fixed bugs 66 -fixed reAwol harder 65 -fixed bugs 08/24/17 64 -fixed a bunch of bugs -added a new slave school that seeks to breed the perfect cowgirl It's slaves still need a little work, as they currently lack certain intended reactions to things like milking, etc. 63 -bug fixes -some of anon's submissions 08/22/17 62 -fixes 61 -fixed bugs Except for the PC breast feeding report, that is based off of a player choice at game start linked to advanced pregnancy and thus working as intended. 60 -anon's expanded smuggling personal attention 59 -fixed backwards compatibility -bug fixes Backwards compatibility should actualy work now. It was mispelled. 08/21/17 58 57 -fixed a couple bugs 56 -fixed the HG not properly handling flaws -fixed other bugs -fixed typos 55 -fixed self-impreg 54 -fixed >>117021 53 -fixed >>117003 52 -readded lost artWidgets code -fixed your rude PA 51 -fixed >>116926 -you can now seed a freshly implanted broodmother to have her bear your children. You need a penis to do this. 08/20/17 50 -fixed bugs -hopefully fixed the hole in walk past -added a clear condition for contraceptives if the slave lacks ovaries 49.1 -added a fix to the gender FS laws contributed to the git 49 -fixed bugs -added hair length maitenance to the salon 48 -vanilla part 2 08/19/17 47.1 Fixed [SetupVars] <<set>> bad evaluation Unexpected string 47 -vanilla content part 1 46 -anon's gang leader personal attention option -bug fixes 08/18/17 45 -fixes 44 -possible fix for slaves getting denied by every slave they seek a relationship with 43 -fixes -tweaks to $enduringRep and whoring/devastating rumors 08/17/17 42 -fixes -age penalties off now applie to HG like it should 41 -fixed bugs -added some paraphillia vignettes -added in anon's mutiny attempt 40 -fixed >>115783 39 -minor fixes 38 -anon's spelling corrections 37 -fixed >>115701 08/16/17 36 -now with less broken newSlaveIntro 35 -fixed reported bugs -HG will now try to break her assigned girl if she is unbroken before dressing her up nicely 34 -fixes 33 -vanilla stuff Mostly bugfixes, a new recruiter target and some changes to vector breasts. 08/15/17 32 -fixed bugs Fixed the counter for the number of a slave's children you've had and hopefully added clears to the remote surgery to prevent chastity devices getting stuck on in the first place. 31 -added catches to clear chastity devices from slaves that can't wear them. 30 -fixed bugs. 29 -fixed >>115265 28 -fixes 27 -fixes 26 -fixed physical development 08/14/17 25 -small tweaks to saLiveWithHG HG will fatten up her slave if hedonistic decadence is in play and will make use of hyper drugs if you have them researched. Also cumsluts will now expand their slave's balls to get more cum. 24 -fixed a critical bug with the menopause reversal It helps to actually link player age with it at game start, you know? 23 -added player surgeries to rid yourself of a postpartum belly without the wait and a second to temporarily restore your fertility post-menopause. -fixed bugs 08/13/17 22 -player pregnancy overhauled -some typos fixed 21 -fixed butts getting too big for their descriptions 20 -fixes and description corrections 19 -little fixes 08/12/17 18 -fixed elective surgery bugs 17 -I don't remember if I did anything. 16 -fixed >>114360 15 -fixed facial quirks -maybe fixed vector art troubles? 14 -fixed sePlayerBirth 13 -fixed bugs 12 -fixed bugs -player abortion should be working right again 08/11/17 11 -fixed bugs 10 Does backwards compatibility work now? 9 -hopefully fixed backwards compatibility 8 -ra fixes -partial conversion to the new pregnancy system for the player 08/8/17 7 -unfucked sales descriptions, maybe -fixed some bugs 6 -added vasectomies -anon's RA fixings 5.1 Still poking at the RA. 5 Trying something here. I commented out the offending drug removal code in the RA, tell me if anything changed. I expect you will have to manually unset the drugs once all growth targets are hit though, but we'll be on the right track. 4 -anon's gender rad law has been added -the vector art is now on the git 3 -vanilla updating -bugfixes 2 -fixed reported bugs 1 -now with passages in the right place 0.10.6.0 08/7/17 84 -fixed bugs -food stuffing is now available 83 -fixed bugs 82 -fixed a possible costs report bug 81 -bugfixes -some oversight corrections 08/6/17 80 -fixed a $$ 79 -fixed bugs 78 -nobr'd a bunch of passages -fixed some bugs -corrected some oddities 08/5/17 77 -fixed bugs 76 -placeholders removed -food stuffing now has effects 08/4/17 75 -fixed bugs -corrected some oversights 74 -lowercase-donkey fuckery 73 -Fixed some bugs 08/3/17 72 -fixed bugs 71 -fixed >>111042 70 -minor fixes -pointless changes to the encyclopedia 69 -bug fixes 08/2/17 68 -fixed >>110899 67 -added beauty policies for physical idealist and hedonistic decadence for strongfat slaves. These are mutually exclusive with the other beauty standard for them, but not with those outside of it. -fixed bugs and oversights -hit the sanityCheck more to remove false positives, though I still can not get rid of the ones it still shows 66 -fixed bugs 65 -vanilla changes -bugfixes 08/1/17 64 -bugs fixed 63 -fixed misplaced 'enunciate' in reRelativeRecruiter 62 -various reported things fixed 61 -surgically removing dicks and vaginas will now remove accessories that require them. 60 -fixed bugs 59 -fixed reported bugs, sans the mystery NaN 07/31/17 58 -fixed bad 'PoliteRudeTitle arguement 57 -fixed >>110176 -added a catch to prevent hostages from inheriting amputation or clipped heels from starting girls. 56 -tossed in a catch to correct amps having clipped tendo 55 -vagina removal surgery no longer requires a penis 54 -just a catcher for a potential ndef foreskin bug 53 -fixes 52 -cellblock will kick out mindbroken slaves 51 -added fat grafting surgery 07/30/17 50 -fixed the rest of the bugs -also fixed some quirks involving vanilla changes to slave naming overriding your chidlrens' surnames 49 -fixed bugs and oversight 48 -fixed bugs 07/29/17 47 -fixed bugs 46 -added universal rule to strip all slaves of their surnames and auto strip any future slaves while it is active. You can still give back particular slaves their surnames, should you so choose. 07/28/17 45 -added in the missing belly implant resetting passage -minor tweaks 44 -vanilla patches 43 -fixed bugs -altered that bonus for 18 year old slaves to apply to minimum slave age instead -likely broke the RA more 42 -fixed bugs 07/27/17 41 -altered core belly implant rules -changed how weight affects assets in slavegen 40 -FCGudder's span fixing and other cleaning -altered how nipple color is set 39 -fixed hg suite issues 38 -fixed bugs. 07/26/17 37.1 -now with NaN checks that actually check for NaNs 37 -fixed pregnancy inconsistancies -added a NaN catch for the slave sex counts 35 -fixed >>108923 34 -fixed bad costs cases 33 -fixed missed $policyCost 32 -fixed some oversights in costs -costs now runs entirely in JS 31 -bugfixes 30 -fixed >>108865 29 -bugfixes -vanilla stuff 07/25/17 28 -bugfixes 27 -FCGudder's improved slaveSummary 26 -anon's ra fixes -minor tweaks 25 -bug fixes 07/24/17 24 -vanilla stuff 23 -fixes -code improvements 22 -added anon's tiered brothel aphrodisiacs 21 -fixed >>108360 20 -anon's facility filter functions -couple fixes here and there 07/23/17 19 -fixed slave summary 18 -anon's assignment filter stuff 17 -various fixes and optimizations 07/22/17 16 -bugfixes -oversight corrections 15 -fixed bugs 14 -fixed many bugs 07/21/17 13 -bugfixes 12 -fixes -vanilla patches 07/20/17 11 -bugfixes -added FCGudder's new shelter slaves 10 -typo fixes -minor bugfixes -oversight corrections 9 -vanilla fixes 8 -fixed seBirth 07/19/17 7 -fixed phantom dicks in fVagina -added FCGudder's vector stuff 6 -fixed bugs and oversights 5 -fixes 4 -fixed >>107062 3 -maybe fixed seRaiding 2 -fixed bugs 1 -vanilla bugfixes 0.10.5.0/2 41 -vanilla fixes -RA fixes, thanks to anon 07/18/17 40 -initialized new variables -further extended family mode optimizations 39 -vanilla updates -FCGudder's guddering 07/17/17 38 -fixed >>106706 37 -FCGudder's image corrections to salon/remote surgery/etc -fixed >>106562 36 -remote surgery and salon less wordy -further optimizations to extended family mode 07/16/17 35 -fixed bad descWidgets paste 34 -fixed bugs 33 -fixes -continued optimizing 32 -fixed bugs -further extended family mode optimization 07/15/17 31 -vanilla bug fixes -pointless vanilla code moving -FCGudder's better than vanilla slave summary caching -bugfixes, including seRaiding -extended family mode optimizations 07/14/17 30 -fixed bugs 29 -fixed bugs 07/13/17 28 -fixed "0 is not her original surname;"? 27 -fixed bugs -FCGudder's fix 26 -fixed fake belly bugs 25 -fixed the policy stuff 24 -vanilla patches -bug fixes 07/12/17 23 -vanilla content -bugfixes 22 -vanilla patching -fixed some bugs -you can now stop carrying children for the SE after you've carried at least one 07/11/17 21 -hopefully fixed seDeath -finished vanilla's lisping wave 20 -lots of little vanilla things -anon's Physical Idealist beauty standard -pregmodfan's ra additions -bugfixes 19 -fixed seBirth -anon's physical idealist law is functional, but lacks the beauty component for the moment 18 -fixed names correctly this time -started adding anon's physical idealist law 17 -fixed name nonsense 07/10/17 16 -this >>104926 -added another pair of height SMRs to limit heights 15 -resynced matchmaking -little bug fixes 07/09/17 14 -altered policies into a single policy -anon's better RA fixes 13 -fixed RA applying drugs to slaves it shouldn't -fixed DJs and Madams fixing paraphillias -added a pair of basic height related SMRs -fixed this >>104691 12 -added player skin tone changing -Societal Elite no longer accept children of the wrong race in sup and sub societies for marking 07/08/17 11 -changed dye naming scheme 10 -fixed bugs -added fairyanon's descriptions 9 -fixed extra <</if>> in longSlaveDescrption.tw, line 726 and extra periods 8 -finished vanilla update 7 -vanilla patches -new fathered variables now report their contents -.origSkin added 07/07/17 6 -fixed barracks? (It's showing up, at least) -added FCGudder's anaphrodisiacs -added a number of father tracking -added some canWalk() and canTalk() checks to sePlayerBirth 5 -now with proper functionaility -also you can now use strings in custom RA rules 4 -vanilla patches 07/06/17 3 -your headgirl now has a very low chance of accidentally knocking up her slave -your headgirl can now abort her slave's early pregnancy if she is permitted to use drugs on her -fixed bugs -accidentally pushed the WIP slaveSacrifice.tw to the git 2 -maybe fixed lips resetting to 35 in ng+ 07/05/17 1 -seRaiding is now hooked up and good to go 1018a?-0 -preventatives now combat some of the negatives of obesity -added the ability to set .birthTotal in more customization options in starting girls -tons of vanilla stuff 0.10.5.0a 53 -End of week report for the penthouse fixed. 07/04/17 52 -fixed some stuff -cleaned up saLiveWithHG to respect chastity and countless other things 51 -fixed bugs -slaves can now be too fat to wear an empathy belly 07/03/17 50 -neighbors will now not develop conflicitng FS 49 -fixed FCTV never airing my infomercial 48 -added a weight control SMR -restricted weights for generated coursing slaves -more fat belly descriptions 47 -fixed bugs -split .bellySag into the current version and a pregnant version for descriptions to use -liposuction on extremely fat slaves will result in a lot of excess skin -added basic fatter belly descriptions 07/02/17 46 -cleaned out the complaints with salon and body mod studio. 45 -fixed bugged nationality setting in childgen 44 -fixed >>103129 43 -fixed reported bugs 42 -fixed >>103082 41 -added a missing "Shoes" 07/01/17 40 -more of new RA anon's RA tweaking 39 -bug fixes and oversight corrections -some new encyclopedia entries -children that would be "Stateless" will now take up revivalist nationalities if you have one. -redid the alpha version of bodyswapping. It should now not break your slaves 38 -fixed conception widget. 37 -finished respecting chastity in slave on slave force feeding -more improvements to new conception widget 06/30/17 36 -enabled Hodenistic Decadence's research -fixed some anal chastity oversights -fixed some slave count related incosistancies (still lots to do with saRules) -shifted conception to a widget for future pregnancy related content 06/29/17 35 -FCGudder's gudder height gen -removed innocence buff 34 -added a totally legit antisag cream infomercial to FCTV -more beauty tweaking (buffs to edo revivalist, chinese revivalist, body purist, youth/mature preferentialist) -bugfixes 06/28/17 33 -added an RA rule resetter to game options 32 -fixed pit decommision into "market" instead of "markets" 31 -anon's RA tweaks -FCGudder's basic sacrifices -hairlessness due to age now acts like shaved and the like for beauty calcs 06/27/17 30 -fix for vanilla dairy bug 29 -vanilla content -player freckles -inheritable freckles -various little fixes 06/26/17 28 -couple .pregMood new child intros -bit of cleanup on the supportive mesh -clothing should now affect slaves in facilities -corrected some oversights involving sex counts in the slave intros 27 -fixed >>101675 26 -new breast shape preserving implant, comes from impant manufactury upgraded dispensary. See encyclopedia for more details -couple new slave intros involving $PC.pregMood -bug fixes, hopefully including >>101672 06/25/17 25 -fixed >>101533 24 -hedonistic neighbors now always sell slaves with fetishes and occasionally paraphillias -nerfed broodmother's beauty in repop societies (a constant raw 100 is too high) -fixed bugs and oversights -added some more feedback if the societal elite are being asses -added anon's head pat interact into cheat mode for testing 06/23/17 23 -bugfixes -more beauty tampering. (more nerfs to physical idealist, rework of hedonism's weight based beauty, buffs to most beauty standards, buffs to body purist) 22 -fixed reported bugs 21 -bugfixes Fixed the wardrobe bug and the sweatshop bug. 06/22/17 20 -fixed and added more age sorting options 19 -completed hedonistic decadence's clothing -added anon's cheatmode overhaul -bugfixes 06/21/17 18 -Activated Hedonistic Decadence FS -fixed bugs 06/20/17 17 -extended weight range from -100-100 to -100-200 -added some more mental effects on slaves to the non-lethal pit, thanks to anon -added a new title set up for slaves to use when being rude to you but aren't being adamant. -fixed bugs 06/19/17 16 -fixes matchmaking bug 06/18/17 15 -fixes 14 -fixes -reduced costs for arcade and industrial dairy compnents 13 -pregmodfan's RA reworks -fixes and tweaks 06/17/17 12 -bug fixes 11 -vanilla fixes 10 -fixes 9 -added liposuction to the remote surgery to make slaves not fat -fixed bugs -disabled nationality restricing in corporate slavegen due to an inability to fix it 06/16/17 8 -fixes 7 -fixes 06/15/17 6 -bugfixes 5 -fixes -moved FCTV options to manage personal affairs -fixed issue with name flipping and your title -cleaned up player surgery some 4 -quick fix for the occasional error flash during end week events 3 -fixed bugs -cleaned up some of the FCTV intro code. 2 -bugfixes -FCTV can now slowly influence FS gain rates 0.10.4.0. -bugfixes 06/14/17 116 -fixes -less scotts 115 -fixed bugs -spread new name flipper widget around some -added more Scotts 114 -first deployment of FCTV -altered how name flipping is handled 113 -fixes misplaced passages 112 -more vanilla surname stuff -bugfixes? 111 -attempted to handle >>99083 110 -fixes missing head girl,concubine and bodyguard 109 -quick fix to keep the princess and prince sharing a surname 108 -vanilla content (including surnames) -bugfixes 06/13/17 107 -vanilla content (not surnames) -fixes 06/12/17 106 -fixed bugs 06/11/17 105 -more beauty tweaking (buffs to repop/eugenics, nerf to tranformation+bellyimplant) -bugfixes (not clinic oversight) -added frailty dependence 104 -fixes 103 -added a universal rule to keep immobile slaves from losing muscles -fixed some bugs 102 -tweaked with muscle/slimming diets -added muscular atrophy if slaves can not move 06/10/17 101 -vanilla patches 100 -more fixes 99 -fixed bugged FS values 98 -fixed bugs 97 -fixed bugs 96 -readded repeat hip and shoulder surgery. 06/09/17 95 -fixes 94 -Beware the White Scare -added Hedonistic Decadence's assay code, bugs might show up, you'll know if they do. 93 -fixed a bug, not sure if it was the right one. 92 -bugfixes -neighbors may start using the new FS 06/08/17 91 -fixes 90 -fixed bugs -some prettying up by fcgudder 89 -now with more schoolroomReport 88 -fixes -slaves with huge clits can now use them to rape in the pit 87 -vanilla updates -bugfixes 86 -minor fixes 06/07/17 85 -fcanon's fixes and safeguards 84 -fixes that I forget I should be posting 83 -you can no longer fuck a slave's ass pregnant through her fake vagina 82 -fcanon's changes to arrays and bugfixes, optimizations and tweaks -altered breeder paraphilia satisfication via vaginal/anal sex to only occur if she has a chance of getting pregnant from the action 81 -more vanilla patches -new slave intro text unfuckery 06/05/17 80 -bug fixes 79 -vanilla patches -bug fixes -possible new bugs 78 -comments in comments break everything. 77 -reverted seRetirement, it's better for the retired slave to leave than her lover -fixed some bugs 76 -sanityChecker fixes 74 -might have fixed >>96580 73 -fixed >>96563 72 -fixed bugs 71 -fixed some bugs -likely added bugs 0.10.3.4 -fixed reported bugs -incubated slaves will no longer face devotion caps and trust caps -updated backwards compatiblity 06/04/17 70 -fixed bugs 69 Fixed >>96323 . 68 -fixed bugs -likely added bugs 06/03/17 67 -added a panic button under options to reset all extended family mode limiters 66 -fixed reported bugs 65 -you can now replace ocular implants with freshly cloned eyes -clumped cheat edit skills together 64 -resynced the incubator seBirth fork with the regular version -finished tweaking RESS 63 -bug fixes 62 -vanilla patches -tweaks, mostly to seBirth and frailty 06/02/17 61 -fixed bugs -fixed typos and culled redundant text -tweaked PC pregnancy to not stray so far past the average due date. 60 -bugfixes -salon and body modification got sorted, because -FCdev nuked .gitattributes 06/01/17 59 -fixed bad canSee($eventSlave) 58 -fixes and tweaks 57 -bugfixes -some tweaks to RESS 56 -tweaked shops to allow you to change them -added a bunch of important $PC vairables to backwards compatibility 55 -standardizations of .pregType 54 -fixes -extended some of the new slave intros to work with extended family mode 53 -vanilla fixes 52 -pregmodfan's fixes 05/31/17 51 -anon's bigger player balls and self-impregnation mod -bugfixes 50 -added a new diet to combat genome damage -fixed some inconsistancies -fixed bugs 05/30/17 49 -fixes for reported problems -vanilla updates 48 -fixed custom slave race 47 -fixes -more chastity checks 46 -fixes 45.2 -readded saLongTermEffects (how did no one notice this?) 45.1 -quick removal of lingering .lrgImg 45 -lots of vanilla fixes 44.1 -should fix >>94669 44 -vanilla things -bug fixes 43 -fcanon's changes 05/29/17 42 -fixed lolimode slave gen 41 -you may now force slaves to marry you -couple bug fixes 40 -fixed reFullBed -gagged pointless error reports 39 -fixes and tweaks -attached milf tourist event 05/28/17 38 -tons of fixes and a few tweaks 37 -added gags -fixed bugs 05/27/17 36 -fixed bugs 35 -fixes -traitor might now not clear daughters and sons. 34 -fixed bugs 05/26/17 33 -fixes, mostly spelling -vanilla fixes -vanilla AWOL merc event -forced marriage is beginning to seep into active content, it may affect certain marriage related content now. 32 -vanilla tweaks and fixes. 31 -added some color to personal training -fcanon's master suite fix. 30 -fixed backwards compatibility 05/25/17 29 -spelling corrections -fixed >>93327 28 -lots of fixes from fcanon and pregmodfan 27.1 -slight revisement to the bug fixed in >>93184 27 -fixed >>93182 26.2 -fixed >>93142 26.1 -fixed >>93122 26 -more fixes 25 -vanilla bugfixes and tweaks. 05/24/17 24 -fixed some bugs -optimized and corrected some errors in new child intro 23 -added a new drug research to the dispensary to remove physical side effects from aphrodisiacs. 22 -bug fixes 05/22/17 20/21 -tossed in a compatibility catch for >>92203 19 -fixes 05/21/17 18 -maybe added/reactivated some more conditions for the RA? 17 -heavily altered how physical development works when active. Now balances hormones over the year to decide which bonus to give. -fixed bugs, maybe 05/20/17 16 -fixed bugs (mindbroken HG slaves and research lab BS) 15 -fixed minor bugs 14 -fixed, hopefully, slaves sneaking off into non-existant master suites 13 -fixed missing slaves in certain starting arcologies 12 -readded lost dairy pipelines, milk and cum should flow through the pipeline properly again 11 -fixed root issue with now shop system and my FS -FSdevelopments shops setting should now function? -fixed a bug involving slaves not ceasing calling you names when they are no longer fearful 05/19/17 10 -various bugfixes -more rude names -you can now successfully buy the prince and princess and they will definatly be different people 9 -several bugfixes -hateful slaves may now voice their opinions of you more clearly 8 -bugfixes 7 -fixed lost incubator report, fcanon! 6 -fixed bugs -added anon's recruit event -likely broke ng+ extended family mode harder 05/18/17 5 -fixed shops? 3 -resynced with vanilla after missing a certain gingering related commit 05/17/17 2 -disabled FS related shop content until it gets completed. Seeting it from shops may still be safe, but won't have any notable effects. -fixed saChoosesOwnJob error 1 -now working? 05/16/17 Pregmod 0.10.3.0 05/15/17 32 -fixed bugs -added large and small chest sizes to PC set up -added an option to buy both the prince and princess from the royalty event 31 -bugfixes 30 -added a new purchasable PA pack -ra tweaks 05/14/17 29 -fixes and spelling fixes 05/13/17 28 -pregmodfan's pc renaming -fixes -backwards compatibility additions 27 -bugfixes -tweaks 26 -fixed miscopied passages 25 -vanilla bulk slave purchasing -fixed bugs 24 -partial vanilla update 05/12/17 23 -fixed bad breasts and bad curatives events 22 -fix for >>87869 21 -fixed bugs 20 -vanilla fixes and tweaks 05/11/17 19 -vanilla bugfixes and tweaks 18 -fixed JS -added a new event from vanilla 17 -all the RA work from the git 16 -added some backwards compatiblity for pregmod variables -fixed >>87285 15 -more RA fixes from fcanon 14 -fcanon and stuffedanon's fixes 13 -fcanon's fixes and tweaks -stuffedanon's fixes -vanilla fixes 12 -fixes 11 -added more feedback for transformation fetishists and if implanted assets are suitably implanted -lessened thresholds for % implant bonus and malus 10 -fixded bugs -added a percent implant report to longSlaveDescription for transformation fetishist societies -added lips to lip impants beauty calcs for transformation fetishist 9 -vanilla fixes 05/10/17 8 -lots of fixes and spell checking 7 -spelling corrections 6 -massive beauty overhaul 5 -ra is likely more broken than ever -fixed some bugs -vanilla code cleanup 4 -vanilla fixes 05/09/17 3 -bugfixes 1 -now with more 0.10.2.0 content Pregmod 0.10.2.0a v0. 05/08/17 30 -fixed >>85316 05/07/17 29 -put a check on dick immobilization so that a slave must have a dick for it 28 -fixed a number of bugs 27 -possible JS fix 26 -fixes bad puberty age setting on new reproductive organs 25 -bugfixes 05/06/17 24 -bugfixes from stuffedanon 23 -added custom titles for slaves to call you -family members refering to you with a family title now optional 22 -fixed PA appearances not appearing 21 -fixed pHackerSupport </nobr> error 20 -lots of sanityCheck fixes 05/05/17 19 -fcanon's fixes 18 -added fcanon's pending assignwidgets changes from vanilla 17 -fcanon's fixes 16 -cleaned up the new hood surgery to read a little better -fixed a bug with setting hood size on a newly grafted hood 15 -bugfixes -vanilla fixes -vanilla added clit hoods -tweaked foreskin surgery to allow for the addition of said hoods since completeness doesn't seem to be a concern for cybermodder 05/04/17 14 -tons of bug fixes from everyone 05/03/17 13 -massive changes to sister and daughter setting 12 -fixed bugs -reverted changes to breeding proposal -continuing without making a choice will likely result in your proposal being rejected, so make a choice 11 -fixed apartments issue 10 -fixed JS 9 -vanilla changes to penthouse UI -revised incubator pregnant slave listing -added family trees to slave interact and manage personal affairs 8 -fixed bugs 7 -fixed new ui 6 -fixed bugs 5 -fixed up slave-slave dick and vag scenes 4 -lots of vanilla changes, most notably to the ui -4 new vanilla potential recruits 05/02/17 3 -removed restriction on slave on slave scenes -removed lingering $cum and $milk from the forcefeeding workaround 2 -tons of bugfixes, dairy inflation still under review -forgot to remove the cheatmode restriction on anon's slave interact scenes, will get on next pass 1 -actually outputted from twine this time 1010a-1 -fixed bugs -added anon's new refreshment types Pregmod updated to alpha 0.10.0.0. -good luck 05/01/17 110 -fixed bugs that aren't related to the RA 109 -the [$] that caused it all has been fixed 108 -fixes from stuffedanon 107 -lots of submitted changes and fixes 106 -removed some leftover debug scripts -fixed poorly reported custom slave balls 04/30/17 105 -intergrated >>82360 -fixed >>82371 104 -fixes >>82338 103 -minor bug fixes 102 -added >>82004 04/29/17 101 -fixed mispelled variable names. 100 -vanilla fixes 99 -lots of bugfixes -fcanon's content changes from last night 98 -fcanon's changes -bugfixes -revised ascension to arcology owner career (1 year of owning the arcology or all player skills maxed) 97 -vanilla stuff 04/28/17 96 -fixed bugs -added an old footjob scene I found to cheatmode for some testing 95 -tweaked slave passive impregnation -fixed bugs -that inculdes artWidgets 94 -added >>81072 -added another bandaid to this version's CSS 93 -more vanilla fixes -family tree now works in this version 92 -fcanon's changes -vanilla changes 04/27/17 91 -vanilla fixes 90 -even more fcanon fixes -changes to slave on slave dickriding 89 -random very minor vanilla stuff 88 -lots of little fixes by fcanon -git version will have the initial family tree system working when it gets accepted 04/26/17 87 fixed misc widgets .FSSSubjugationist bug 86 -possibly fixed pUndergroundRailroad 85 -lots of vanilla additions -fcanon's additions -stuffedgame's additions 04/25/17 84 -fcanon's fixes -tweaked family widgets to report accuratly 83 -fixed bugs -tweaked relative reporting to not report a slave as both a twin and a sibling. 82 -fixed bugs -added ability to view pregnant slave descriptions in the incubator screen 81 -bug fixes 80 -vanilla content 04/24/17 79 -fixed bugs -altered chooses own clothes for mindbroken slaves 78 -fixed bugs 77 -bugfixes -got that code block working so now you know everything that is immobilizing a slave 76 -massive vanilla color css changes 75 -fixed starting girls applying things it shouldn't be. 74 -fixed the aforementioned phantom dick bug -slaves with ages of 0 now count age in weeks -fixed bugs 04/23/17 73 -bug fixes 72 -integrated extended-extended family mod widgets fixes and cleanup 71 -whole lot of fixes 70 -fixed >>79119 -fixed some wonky $possessives in saLongTermEffects 04/22/17 69.1 -Fixed version. Accidentally copied longSlaveDescription into descWidgets. 69 -vanilla pulls -bug fixes 68 -altered accent deminishing (not reflected in slave summary) -fixed bugs 67.1 -fixed the .html version only bug >>78902 67 -fixed bugs -sided with the old vanilla code and added canTalk() to the DJ assignment check. 66 -fixed bellies sagging that shouldn't be sagging, hopefully once and for all 65 -overhauled extended-extended family mode widgets 64 -bugfixes 63 -fixes HG alt formatting bug 62 -fixed everything in >>78748 61 -fixed RESS issues -possibly fixed >>78736 (it looks vanilla) -normal corsets no longer reduce waists on inflated slaves or slaves with large belly implants 04/21/17 60 -reworked birthday event to account for chastity -schoolroom can now raise anal and vaginal skill to 30 with the skills upgrade -take classes can teach anal and vaginal skills to virgins -fixed some revealed oversights 59 -fixed wip fuck scene >>78525 -possibly fixed the slave is own niece thing 58 -incestual relationships extended to player's mother, father and sisters 57 -bugfixes 04/20/17 56 -altered hormone face change calcs to reflect .face changes 55 -more vanilla fixes 54 - Fixed >>78168 53 -vanilla fixes -nulls can now maybe be made in starting girls? -bugfixes 52 -vanilla fixes 04/19/17 51 -fixed bugs 50 -very minor fixes -changed how rival victory into initiation works 04/18/17 49 -possibly fixed undefined error in removeJob 48 -tons of vanilla changes -hopefully few vanilla bugs 04/17/17 47 -fixed bugged childgen for players carrying a slave's child 46 -couple bug fixes, mostly the rival setting bug 45 -fixed and limited madam and dj involvement in facility sex 44 -seDeath should no longer get stuck on 04/16/17 43 -integrated pregmodfan's RA work 42 -tweaked rate of arcade slave decay 41 -altered slave death -fixed bugs -added vanilla bug fixes 40 -fixed bugs -altered beauty standard laws to better mesh with other FS -added a "bald" hair description -laid foundation for slave death 04/15/17 39 -bugfixes 38 -now functional -lot of vanilla additions, hope they work right -completely forgot what I did last night, hope that I didn't break anything 04/14/17 37 -breaking raWidgets even more. 36 -fixed first error reported in raWidgets. 35 -fixes 34 -fixed bugs -added some extra nicknames 33 -fixed longSlaveDescription (<div class="imageRef lrgImg"<div class="mask">&nbsp;</div>> to <div class="imageRef lrgImg"><div class="mask">&nbsp;</div>) 32 -added a trio of medicinal enemas (curative, tightening, and aphrodisiac) -contain's vanilla 0.10.0.0 alpha changes 31 -vanilla changes, mostly to RA -added anon's image css stuff -bugfixes? 04/13/17 30 -lots of little bug fixes, nothing major -bodyswapping moved to testing but currently untested, suggesting not touching it 04/12/17 29 -fixed opening error (Absentmindedly closing widgets with <</if>> will do that.) 28 -hammered FS unsetting, it should properly unset everything now when abandoned or failed out of 04/11/17 27 -fixed enemas and forcefeeding -hairless is now an inheritable trait 26 -unfucked walkpast 25 Emergency fix. Accidentally deleted misc widgets. 24 -completed citizen hookup event variant -introduced baldness to males over 50 in slavegen -hooked up hair removal surgery -bugfixes (not slave cloning) 04/10/17 23 -reworked saChoosesOwnJob to not be potentially broken -limited saChoosesOwnJob to prevent slaves from locking themselves in industrial dairies and overfull facilities -added a new universal rule to permit or deny slaves choosing their own jobs from joining facilities, off by default -recalced underarm and pubih hair in slavegen, you should see things other than waxed consistantly now 04/09/17 22 Smart piercing improvements Removed the default smart piercing function, which was nonfunctional for almost all settings of the current implementation of the rules assistant. The existing rules for smart piercings have been broken down into four new rules, for fetishes, sexual appetite, and XY and XX attraction. The all sex smart piercing setting no longer automatically targets XY and XX attraction in addition to libido, as these can be done individually. Gave smart piercings new settings to suppress XY and XX attraction, which will have minor secondary libido suppressing effects. Heavily buffed smart piercing efficiency when improving XY and XX attraction and added minor secondary libido enhancing effects to these settings. WIP descriptions for nulls. 21 -fixes 20 -now with less forgotten passage copies 19 -fixed starting girls attraction cotrols 18 -fixed bugs -added prostates to starting girls 04/08/17 17 -hooked up body hair removal surgery 16 -fixes? -handled code duplication in salon 15 -fixed superfluous <</if>> in L40 in researchLab.tw (likely) 14 -fixed >>74516 13 -fixes 12 -applied fixes to lab report, hopefully it works now 11 -minor descriptive tweaks -bugfixes -added new JS calls hugeBelly(), hugeBellyPreg(), hyperBellyOne(), hyperPregBellyOne(), hyperBellyTwo(), and hyperPregBellyTwo() for easier size checks 04/07/17 10 -fixes 9 -fixes -neighboring slimness enthusiast arcologies now have access to its research 8 -bugfixes, not including array issues 7 -added hair dyes and contact lenses to manage personal affairs -small fixes 6 -mostly fixes 5 -added prostates and genes to male hero slaves where appropriate. -possibly enabled selfcest twins -fixed cybermod bugs -having no prostate devastates cum volume. 04/06/17 4 -fixed player surgery widget 3 -enabled prosthetics 2 -fixed age reduction surgery for the pc 0.10.0.0a v1. -fixes 03/31/17 42 -fixed bugs 03/30/17 Pregmod updated to proto-0.9.10.4. -spa bug fixed 40 -updated to array based facilities 03/29/17 38.1 -compatibility catch for the new law (Slimness Enthusiast (Flat is beauty)) to work. 38 -added Slimness Enthusiast Research (asset shrinking drugs) -added Slimness Enthusiast Law (Flat is beauty) -fixed custom slave skin nonsense -fixed bugs 37 -fixed bugs 36 -fixed bugs -tweaked descWidgets to flow a little better 03/28/17 35 -updated corp overhaul mod -tracked down missing accordian mod pulls and added them -fixed bugs and other issues -added slave on slave wips to cheatmode 03/27/17 34 -tweaked personal training -tweaked concubine rules; she may now be blind or immobile, but must have limbs. Events involving her had their conditions adjusted in accordance. -fixed bugs 03/26/17 33 -integrated filter by assignment fixes -added more flat -bugfixes 32 -disabled sort by assignment until it can be fixed -fixed a couple bugs 31 -fixed servants' quarters -fixed bugs and typos -added preg biometrics collar to RA 03/25/17 30 -added anon's filter by assignment option -added paternity information to long slave description -redid assigning children to the incubator, see the incubator for more details -fixed lots of little bugs from both here and vanilla -hopefully fixed the dairypiping having its variables swiped out from under it 03/24/17 29 -applied economy mod fixes 28 -fixed? saChoosesOwnJob -assigned a default eyeWear to custom slaves 27 -applies incubtor bugfix 26 -added economic report mod 03/23/17 25 -fixed starting fs issues, hopefully 24 -bugfixes -added smaller breast sizes to PC surgery 03/22/17 23 -bugfixes -some tweaks to things changed from single instance to week long isntances -minor FS reactions to certain player appearances 22 -fixed bugs -added nurmerous vanilla optimizations 03/21/17 21 -various bugfixes accumulated today 20 -couple fixes and tweaks 03/20/17 19 -fixed surgery cooldown 18 -fixed player surgery trapping you in manage personal affairs 17 -added player surgeries (incomplete) -updated anon's nationality weighting mod -added pregmodfan's fixes and RA improvements 03/19/17 16 -fixed bugs -added a catch to arcology acquisition that will hopefully prevent the extra FS bug 15 -fixed clinic issues 03/18/17 14 -bugfixes 13 -added anon's corp overhaul -upped max incubator age to 42 -updated accordian mod 03/17/17 Pregmod updated to 0.9.10.2. -Restricted nationalities got fixed, nationality percentage anon, please look into the changes, though most of them where just indenting. 03/16/17 7 -bugfixes -initalization of player surgery variables 6 -added metallic makeup options -fixed bugs 4 -fixed RESS, "<if" got me again Tweaked 4 with some fixes 1. Tweak: can change slave drugs and other settings while they are on assignment 2. Tweak: when devotion/trust are maxed for a slave, some of the weekly report summary text showing devotion/trust gains will be hidden. 3. Tweak: when the arcology has been fully decorated for a future society, weekly summary text showing society approval related to that future society will be suppressed. 4. Bug fix: when assigning an ID to a new slave, make sure it isn't already in use 5. Bug fix: egyptian preferentialist slave twins acquisition used incorrect relationship ID offset for second slave (-1000) … because it is coded differently from all other multi-slave acquisition events 6. Bug fix: Several $pronounCap tokens changed to $possessiveCap where appropriate. 7. Bug fix (?): When buying arcology ownership with reputation, increase value of ownership share same as when buying with cash 8. Misc. smaller fixes (typos, missing $'s) Pregmod updated to 0.9.10.1. -fixed reported bugs and typos 03/15/17 4 -many more vanilla updates -possibly broke clinic report 3 -fixed bugs -merged anon's brazil mod -lowered min player age to 14 2 -fixed .html version's accordian mod, thanks twine Updated to 0.9.10.0 03/14/17 3 -some new event tweaks pushed out for testing 2 - >>67338, >>67339 Fixed, though two of the policy bugs are more of just a guess at how they might be handled. Unfinished content and all that. 1 - >>67334 This should fix it. 0.9.10.0a 03/13/17 38 -merged pregmodfan's pregnancy speed mod -merged anon's swapable prosthetics and face mod 03/12/17 37 -added descriptive elements reflecting player age -fixed $PC.birthWeek -bugfixes 36 -tweaked $PC variable compatibility 35 -revamped player age and aging -fixed some bugs 34 -fixed bugs and typos -added an upgrade to the clinic to quickly cleanse slaves of genome damage at the cost of health for the duration 33 -some little tweaks to incubator content -hopefully fixed frailty rendering some slaves immobilized by their imaginary penises 03/11/17 32 -fixed starting girls bug -tossed in some vanilla bugfixes 31 -fixed bugs -added a, hopefully functional, override to handle starting girls custom origins -added gender settings constrants to enteded family mode family recruiting 30 -fixed bugs -incubator slaves now start with lower language skills 29 -touched genetics more and possibly rebroke everything -added more naming options, though the PA will still select FS names if available with that naming option -fixed custom starting slave descriptions and the add custom descriptions -added a toggle for inbreeding 28 -fixed >>66378 27 -fixed saRelationships -lost temper at saRelationships 26 -bugfixes -more vanilla changes to saRelationships, hope family mode takes it well 03/10/17 25 -fixed childgen -vanilla bug fixes -repop law can now apply to player 24 -completed new child intro -spread frailty around -fixed bugs -added vanilla bug fixes 03/09/17 22 -fixed a number of bugs and oversights 20 -child naming looks fully functional -small tweaks from vanilla 03/08/17 0.9.9.5. 18 -incubator bug fixes -naming closer to finalization 17 -fixed saRelationships harder 16 -unrolled back saRelationships 15 -rolled back saRelationships 13 -quick fix for slave careers, will only affect children generated after this patch. Mostly just effects and descriptions, nothing huge. 03/07/17 12 -incubator moved to beta, no longer restricted by cheatmode 03/06/17 11 -many bug fixes and tweaks -added ability to buy additional transfer slots for ng+ 03/05/17 10 -slight improvements to assistant events, nothing major and fully compatible with saves 03/04/17 9 -fixed bugs -tweaked some RESS events 03/03/17 0.9.9.4 -added some more options for a slave to choose from when selecting her own clothes -made a toggle for eugenics society devoted slaves to choose their own level of chastity, since that did need work. Also removed it from normal clothes selection. -fixed bugs -updated some slavegen -fixed >>64439 0.9.9.3 7 0.9.9.2 6 -fixed >>64194 5 -small improvements 03/02/17 4 -fixed, extended families 3 -fixed >>63968 0.9.9.1 0.9.9.0 -many changes to ng+ and how the pc is handled -adjusted 6 & 7 FS unlock values 02/26/17 27 -fixed many bugs -however >>63027 and >>63096 are still at large 02/25/17 26 -fixed, "DairyRestraintsSetting(2)" should not be visible in front of the description of my dairy. 25 -experimental fix for >>62727 02/24/17 24 -fixed slaveInteract.tw @@ -620,6 +620,7 @@ Contraception: <span id="fertility"><strong><<if $activeSlave.preg is -1>><< <</if>> <</if>> <</if>> +<</if>> </span> <<if $propOutcome == 1>> -fixed, all my slaves. it says "She is not fertile with Error: cannot find a closing tag for macro <<if>> in <<if $incubator > 0 >> 23 -fixed reported bugs except for >>62509 02/20/17 19 -commenting is hard 18 -temporarily disabled brother checks to prevent duplication 17 -fixed introduced extended-extended family mode bugs -moved said descriptions from long slave description to pregmod widgets to prevent issues with vanilla updates. 02/19/17 16 -fixes parental id's 15 -added some compatibility hooks -fixed some bugs -added extended-extended family mod -added vanilla bug fixes 14 -fixed bugs, but need to look at relative recruiters still 13 -fixed, can't impregnate a slave with another. Just a wall of Red text "Error: <<if>>: bad conditional expression in <<if>> clause: slave is not defined" 12 -fixed erroneous $familyTest fixing slave interact issues and enabling two dSlaveDatabase additions -felt stupid -fixed new bug in fRelation 11 -bugfixes -implemented new javascript to hopefully fix existing issues 02/18/17 10 -tweaked saRecruitGirls more 02/17/17 9 -fixed recruiting harder 8 -fixed bugs -implemented genetics tracking system 7 -fixed contraceptive bug 6 -various bugfixes 02/16/17 5 -fixed some bugs -more compatability for vanilla to pregmod ng+ 02/15/17 4 -possibly fixed $rep bug 3 -fixed >>60110 0.9.8.1 -preliminary integration of anon's animal pregnancy mod, not funcitonal yet 02/14/17 0.9.8.0 02/13/14 9 -added incubation facility -integrated anon's HG impregnation exclusion toggle -fixed bugs inclding >>59683 and >>59598 02/12/17 8 -fixed many reported bugs, save for the walkpast bug that is still eluding me -added several vanilla bugfixes -added >>59368 02/11/17 7 -fixed relative recruits cloning over their recruiter -fixed that futa starting girls bug again, and this time it's synced I swear 4 -added >>59138 6 -Fixed >>59174 ( missing a $ when setting headgirl to soften). 0.9.7.2 0.9.7.1 02/10/17 6 -updated to vanilla github -fixed more bugs 2 -fixed bugs -fuckdolls can now use pregmod added diets 1 -fixed >>58858 0.9.7.0 -vanilla content only 02/09/17 5 -updated with vanilla bugfixes 4 -fixed bugs -did extra fixing to fAbuse 3 -added new two slave recruitment events -fixed bugs 2 -fixed randomize attraction widget bug 1 -updated to vanilla github -fixed bugs 02/07/17 13 -completed and enabled relative recruiter events for extended family mode -made extended family mode ng+ compatible -bugfixes 02/06/17 12 -fixed bugs -included starting herm fertility fix 02/05/17 11 -added organ farm upgrades to decrease time it takes to grow organs 10 -tweaked butt beauty values -hopefully fixed egyptian revivalist issues 02/04/17 9 0.9.6.5 02/03/17 8 -couple bugfixes -added the new pube style to the RA 02/02/17 7 -fixed bugs 6 -fixed typos and bugs -reenabled self impregnation 02/01/17 5 -waged war against starting girls and managed to make a button to resync height with age -added origins for all careers if the slave is your child -and had to bar players from being both their father and mother -added lolimode toggle to game start summary -fixed a bunch of improper slave name calls in the recruiter content 0.9.6.2 -added a pair of hero slaves under extended family mode that I found tucked away in a passage. Odds are they were never implemented due to an inability to make sibling hero slaves. -completey forgot to make lolimode a start menu toggle 01/31/17 9 -extended family mode now allows for full control of starting slaves mother ID and father ID. -bug fixes 3 -added a bushy in the front, clean in the back pubic hair style -fixed bugs 0.9.6.1 -updated matchmaking to pregmod's content 0.9.6.0 01/30/17 8 - family test -beta version of the new family system 01/28/17 7 -bugfixes, including anon's fixes 0.9.5.4 -integrated >>56001 -more work on relations, not ready for play yet 01/27/17 0.9.5.3 -fixes $rep issues, -added, able to play matchmaker and take two emotionally bonded slaves to you and put them in a relationship with each other. 01/26/17 4 -updated milk quantity calcs -nerfed flesh heap -kidnappers market now requires 500 rep to access 3 -fixed reported bugs 01/25/17 2 -most new 0.9.5.0 changes are now accounted for -20% chance of white girls coming out of zimbabwe 0.9.5.2 -integrated anon's japan start mod 01/23/17 17 -fixed bugs 16 -fixed missing RA defaults 15 -fixed bugs -applied youth pref research to neighbor youth pref societies 01/19/17 14 -fixed age related issues in some hero slaves -autosurgery now correctly lowers visual age when applying an age lift -reduced visual on event slaves that have age lifts, all two of them. 01/18/17 13 -restricted minimum reitrement age at game start to 25 01/17/17 12 -quick bugfixes 11 -implanted reproductive organs now work immediatly if precocious puberty is off, otherwise the slave will go through the appropriate puberty within a year if relevant. 10 -tweaked libidos and nymphomania 01/16/17 9 -added starting option to set initial retirement age 01/15/17 8 -added a new slave market -removed age limiters on other slave markets -added a new partially subterranean arcology location 01/14/17 7 -more event/desc tweaks 0.9.4.3 -various little tweaks and fixes 01/13/17 4 -fixed SE Birth and slavemarkets 0.9.4.2 -fixed $cash bug 01/12/17 0.9.4.1 0.9.4.0 -integrated >>53201 -added first half of the youth pref research (anti-aging cream) 01/09/17 14 -bugfixes 01/07/17 13 -finished new age descriptions -added a new physical age retirement -increased upper bounds on age/birth retirements -age surgery now lowers .visualAge 01/06/17 12 -various age bugfixes 01/05/17 Pregmod beta 2 -fixed hero slaves 01/02/17 10 -fixed bad condtinal expression in <<if>> clause Unpexted token with a slave who has P-Limbs/ 01/01/17 9 -fixed bugs, oversights and typos 12/31/16 8 -fixed, which anal addicts wont be satisfied with long, huge butt plugs, only huge plugs. -fixed, Error: <<CorsetPiercingDescription>>: errors within widget contents (Error: cannot find a closing tag for macro <<if>>; Error: child tag <<else>> was found outside of a call to its parent macro <<if>>) 7 -some event tweaks 12/30/16 6 -fixed bugs -more efforts to wrangle "Long Slave Description" 12/29/16 0.9.3.1 -added prostate implant to increase load size -implemented phase one of cleaning "Long Slave Description" 12/28/16 4 -tweaks to some slave intro scenes to accommodate amp slaves -bugfixes 3 -fixed bugs 12/27/16 2 -connected new corp changes with Repop and Eugenics neighbors 0.9.3.0 12/26/16 17 -added more player customization for future additions -fixed bugs and typos -corrected amp armpit hair descriptions 16 -fixed eugenics bugs and oversights -added underarm hair 12/25/16 15 -bugfixes 14 -added a couple more slave acquisition event loli variants -fixed bugs 13 -small tweaks -fixed the RA diets that got lost between updates 12/24/16 12 -added puberty controls to starting girls -expanded refreshments -fixed oversights, bugs, etc 12/23/16 11 -fixed, >>49934 10 -fixed reported bugs 9 -completed Eugenics Breeding Proposal -added femPC involvement in eugenics -fixed some bugs and typos 12/22/16 8 -fixed >>49650 12/21/16 7 -integrated bugfix patch into main branch -fixed some more bugs 5 -added basic scar framework -added some of Qotsafan's improvements 4 -fixed bugs 0.9.2.1 -added anon's gang leader start 12/20/16 2 -finished adding missing content 0.9.2.0 12/18/16 11 -fixed market assisntant event 10 -integrated supplied changes -tweaked hips surgery 12/19/16 13 -fixed, increased the costs when the policy is implemented, but kept the original costs in the reductions. That means that in the event that someone cancels one of these policies, they'll end up with a permanent increase in prices. e.g. Activating Quality Beaty increases costs by 10,000, but cancelling it drops the cost by only 2,000. 12 -integrated new policies -added seven new accessories of rather long sizes -tweaked several things 12/16/16 8 -fixed some bugs, including twins purchasing bug 0.9.1.3 -completed player birth 0.9.1.4 12/15/16 6 -intergrated >>48519 -tweaked pregmod related $seeDicks calls to be in line with new system 5 -added additional security to prevent $traitor.slaveName from getting you (fixed the bug) -fixed >>48449 4 -fxied, >>48436 and >>48438 - Both should be fixed now. Though snatch and grab needs to be updated a bit. 3 -bugfixes 0.9.1.2 12/14/16 0.9.1.1 -added player pregnancy -merged >>48171 -merged the FAbuse bodygaurd changes provided earlier -bunch of typos fixed 12/11/16 20 -possibly fixed >>47447 -added >>47416 >>47417 's flavor text with some tweaking. 12/10/16 19 -fixed the horribly broken glossary -fixed a bug with transformation fetishist FS that has been around since the teeth changes -fixed a few grammer things and missing descriptions. 18 -added abdominal implants -refactored belly sag gain/loss -optimized "Surgery Degradation" -added in more calls in scenes for inflated slaves -tossed in my old custom title lisp input that works -fixed bugs and things 12/07/16 17 -added breast lifts for fixing saggy tits -added breast reconstructiion for making them more attractive 16 -added new belly descriptions for fatties -added XX, XY, and XXY diets to RA -fixed bugs 12/01/16 4 -fixed >>45601 3 -fixed bugs -finished recruiter FS things 0.9.0.0 -added slave puberty -added several new rival types 11/25/16 33 -integrated >>44195 -fixed bugs 11/24/16 32 -fixed some bugs -fxied >>44069 31 -fixed a potentially dire bug with baby number generation 30 -fixed advertisements 29 -added conception condition for your concubine, she will only randomly cenceive your children, if appropriate -fixed bugs 11/23/16 28 -hopefully fixed overaged slaves once and for all -forgot to mention that several patches ago added hyper drug compatability to dairy growth if they are available 27 -added compatabilty for saves from versions below v24, should default the your FS max to 4. 26 -fixed reported bugs -fixed multiple issues with dairy cum inflation 24 -added dairy resrictions for slaves with pregnancy blocking/causing implants -added starting option to choose between a final count of 4-7 future societies 11/22/16 23 -added hyper drug support to industrial dairy -fixed bugs 22 -added hyperpreg settings for industrial dairy -added to the options menu the ability to change your custom title -fixed many little bugs 11/20/16 21 -added spa options to forbid an Attendant from trying to fix mindbroken and/or flaws -fixed bugs 20 -fixed more reported bugs and oddities -fixed some of the "hero slaves" -found more places to implement new birth counting variable 19 -fixed reported bugs 18 -reworked slave births tracking, though it might not work with starting slaves. -fixed some minor bugs 11/18/16 17 -slaves no longer give birth to the end of days -also fixed male lactation bugs that have been a thing for who knows how long 16 -fixes -now doesn't require a new save 15 -more inflation catches -fixed loli advertising bug -added pregnancy advertisement options to the club/brothel, I think they work -re-readded SE coursing blind calls because they disappeared again 11/16/16 14 -tweaked some breast descriptions and belly descriptions for consistancy -patched oversights and other things with the inflation framework 11/15/16 13 -fixed more bugs 12 -fixed inflation oversights -expanded age ranges for club/brothel advertisements -added player aging 11/14/16 11 -fixed inconsitant recruitment events >>42249 -replaced all overlooked calls for the removed "Clothing Birth" -several other small fixes 11/13/16 10 -fixed bugs -forcefeeding scene is half done, only works for milk right now 11/12/16 9 -bugfixes - >>42010 Integrated this. 7 -overhauled fertility checks (major change) -added more variety to slave careers, especially younger -changed how $agePenalty works, instead of just removing the age check from headgirls, it now allows educated careers to generate at slightly lower ages as opposed to 24+ only. -more clothing descriptions for larger busts, also fixed inconsistancies with some pregnancy descriptions -slaves can now become recognized for starring in porn while pregnant 0.8.12.5 11/11/16 0.8.12.4 -expanded potential gifts from that gift event as well as altered how it selects shape -RESS preg + blind work completed -breeders now get pissy about wearing fake bellies 11/10/16 0.8.12.3 -fixed bugs and more typos -made sure to cover slave graves in cement to prevent slaves that died in chldbirth from roaming your penthouse 0.8.12.2 -just bugfixes 11/09/16 3 -recalculated cum quantities needed for slave on slave inflation -fixed more bugs and typos 2 -paraphilias hooked up to pregmod content -servant background's upkeep reduction now functional -fixed some bugs and typos 0.8.12.1 -framework for using another slave as the inflation source implemented, scene is still WIP 11/07/16 7 -added some flavor text to concubines in the end week report if they won a legendary slave event. -attached the recently added custom title lisping feature to the starting options because what is the point of having it scattered throughout the entire game without hooking it up? 11/06/16 6 -added forcefeeding scene in place of WIP -began laying foundation for using another slave as inflation source -made induce clear that is doing something. 10/28/16 6 -Integrated anon's new nationalities and nicknames -repop law now does something other than cost you money -eugenics now increases prosperity gains -implented a brothel assignment scene that I found in the code -fixed bugs 0.8.10.3 10/27/16 4 -fixed aging bug, also fixed a short blurb about it being her birthday that never procs. -fixed rogue slave interact $slaves[$i] that were causing trouble. 0.8.10.2 -fixed bugs and got annoyed by the sheer lack of custom title support. 10/26/16 2 -fixed prosthetics and hostage event. 0.8.10.1 -extended FS research to neighboring arcologies, they can now develop said reearch and begin selling slaves using it. -added another new PC career choice -added other things that I completely forgot about after losing roughly 15 passages in the update and having to sort out the desync that caused. 10/23/16 12 -fixed >>37626 . 11 -fixed overlooked slave interact conditions for testicle enhancement and impregnation 10 -you should now be able to preemptively craft artificial limbs -your nurse can now prevent pregnancy generator removal from breaking pregnancy fetishists -testicle and hyper testicle enhancement can now be left on to enhance cum production 10/22/16 9 -integrated anon's clit surgeries -completed and allowed gender radicalist research (implantable anal womb) 8 -fixes >>37147 . 0.8.9.3 -added anon's fairy assistant 10/20/16 5 -readded semi-aging option from old options mod; if your slaves experience multiple birthdays in a row, it's a vanilla bug I think. 0.8.9.2 -seperated male and female fertility -SE birth is broken in vanilla so expect 0.8.9.3 tomorrow. -may have added some femdom scenes for femPCs 10/19/16 3.1 -less testing labels. 3 -SE birth doesn't need to loop back into scheduled events anymore since it is now combining all the births into a single event, thus I can just attach AS Dump to $nextLink and pretend SE birth hasn't become something beyond understanding. -Though that still doesn't explain how $activeSlave can hold more than one slave, but hey, at least random events shouldn't possibly be able to interfere with its changes maybe. 0.8.9.1 10/18/16 0.8.9.0 -biggest change will be a rough draft of the loli aging code 10/16/16 11 -fixed reported bugs 10 -Fixed broodmother bug and removed impregnation devotion exploit. -Fixing the limbs is going to be a peice of work, for what ever their weeks to completion won't move so I'm going to have to track what isn't updating right. 9 -fixed >>35509 (bowties and Egyptian necklaces too). 8 -SE Birth v4 10/15/16 7 -yet more bug fixes including >>35400 and >>35291 0.8.8.2 -A lot of rollbacks in 0.8.8.2 and as such some of the content added with 0.8.8.0 got lost. Also tons of conditional expressions changed back that I have a feeling are going to get swapped right back. -Almost feels like all the content modders aren't on the same page. 10/14/16 5 -mostly just bug fixes again, though good work finding them -also updated the documentation I use for slaves 4 -more bug fixes 3 -added some more birth scenes -spellchecked things, boy they needed it -added physical/mental birth/pregnancy effects -bug fixes 2 -Mostly just bug fixes. 10/13/16 0.8.8.1 -added new nicknames -cleaned up SE birth some more -changed around 20000 conditional expressions when I could have just left them as is. 10/10/16 Pregmod WIP. -reenabled immobilization after getting it working right -SE birth v2, note there are now birth complications -added a new player origin, currently undergoing balancing as the rep loss may be too high 10/07/16 5 -Added more to hostage corruption -rebalanced the war again (more favorable to you) -fixed retirement collars -fixed dispensary bugs -fixed spa, clinic, and cellblock not swapping to bought in manage arcology 4 -Hopefully this one fixes things, though it can not undo the age issue. -Also learned that I should never use variables in random(), ever. 10/06/16 3 -Hostage corruption should now work correctly. 2 -Fixed forgotten age description code. 0.8.7.1 -You know it's a slow week when your biggest patch note is XY slaves now have scrotum generation. 10/03/16 Pregmod WIP -Reworked rival-hostage event to center around corruption, the hostage will become more degenerate/broken as the war drags on. -fixed eugenics ball bug -fixed doubled surgery 09/30/16 0.8.6.7 -hopefully fixed rival age bug 09/28/16 0.8.6.5 -added hyper butt drugs -added additional immobile conditions, which may cause trouble for now -added more content to "Eugenics" FS 09/25/16 9 -Fixed dairy and an infinite loop in slave impregnation. 7 -fixed "new slave intro", removed accidentally added canSee(), and added summary exceptions for slaves younger than fertility age. 09/24/16 6 -fixed, selling a slave causes every event to trigger. 5 -birth should now, hopefully, work right. 0.8.6.3 -Biggest change is most likely just birth tinkering so immobile slaves don't pop the amp birth scenes. 09/23/16 0.8.6.2 -added a new FS focused on eugenics and society's top citizens. -added the random father impregnation code, your slaves will now randomly impregnate each other when appropriate. 09/19/16 Pregmod + lolimod 0.8.5.3 WIP -support for blind slaves -support for larger tits in fondle boobs and fuck boobs 09/17/16 4 -fixed more bugs 09/15/16 3 -fixed shit 0.8.5.3 09/14/16 0.8.5.2 -added full broodmother support to the new birth system, complete with their own variants -added missing PA appearances in some events -other things I forgot after the update failed last weel 09/03/16 0.8.3.4 2 -fixed missing <</nobr>> in new birth code -fixed potential conflicts with dairy births 08/28/16 6 -All forms of impregnation now adhere to fertility effects. 08/27/16 5 -Birth count tattoo and FS recuitement event fixed. 4 -now with less PA appearance being replaced with events. 08/25/16 0.8.2.2 -a new type of breast implant. -disabled the penitent nun's habit in the walk past code as it refused to not throw errors, traced it to <<case>> not tolerating '. 08/21/16 0.8.1.4 -rules assistant should be able to handle any degree of fertility -layed framework for pregnancy accessability 2 -fixed pregnancy libido spam -added pregnancy accessibility improvement akin to the huge breast accessibility 08/11/16 0.8.0.2 -Personal assistant will now take after a supremacist FS's choosen race. -Added libido gain/loss during pregnancy. 3 -fixed pregnancy libido. 08/04/16 0.7.11.2 -FS assistant appearances now selectable via assistant appearance options -implemented provided rules assistant fix -fixed concubine not receiveing master suite drug settings -made sure everything adheres to indenture restrictions 07/30/16 Experimental build -Fixed penis enhancement bug -Fixed slaves wearing fake bellies and then bitching about said belly. -Deployed experimental "choose which FS your assistant takes after" feature. 07/28/16 0.7.10.3 07/21/16 0.7.9.4 -Added interactions between facility heads and relatives/relations/rivals/legendary slaves -fixed several bugs and more typos 07/20/16 0.7.9.3 -fixed some bugs and typos while updating Slave Documentation: -added new hair and eye colors from 0.7.9.0 07/18/16 Pregmod first release! -pregnancy clothing descriptions -hyperpregnancy (avoidable)(extreme content) -future society focused on pregnancy -2 new clothing options -1 new accessory -3 new assistant appearences -2 new brothel upgrades for expansionist societies -new slave descriptions (optional) -reworked master suite to report on your harem (optional) -Added a means to buy FS exclusive clothes and accessories -fixed some bugs -added my own bugs -Fixed master suite -Fixed a bug where a vaginaless slave would wear a fake belly leaving you with no way to remove it. Security Expansion (Officaly intergated into Pregmod since 0.10.7.1 v153) PregmodBase v139 11/20/17 14.2 -fixes -balance -very satisfying version number. 11/18/17 14.1 -fixes 14 -fixes -spell checked attack report. My god was is bad. PregmodBase v137 13.9 -fixes (couple of) 13.8 -(maybe) fixed >>142732 13.7 -balance -(maybe) fix for battle terrain not showing up. 11/17/17 PregmodBase v136 13.6 -fixes PregmodBase v135 13.4 -fixes -balance -difficulty settings 11/16/17 13.4 -fixed >>142293 (Attack value NaN during major battle) 13.3 -fixes 13.1 -fixes -balance 11/15/17 13 -fixes -balance 11/14/17 PregmodBase v132 12.9 -fixes 12.8 -fixes -balance 12.6 -fixes -anon's stuff PregmodBase v130 12.5 -fixes -SFanon stuff -balance 11/13/17 PregmodBase v126 12.4 PregmodBase v125 12.3 -fixes -SFanon additions -balance 11/12/17 12 -fixes -transport hub and trade -balance PregmodBase v124 11.6 -fixed reported issues -balance 11.5 -fixes -balance 11/11/17 PregmodBase v122 11.2 -fixes -extra options 11.1 11 -fixes -proclamations -balance PregmodBase v121 10.2 -fixes 11/10/17 10 -fixes -weapons manufacturing -balance 11/09/17 PregmodBase v119 9.6 -small fixes 11/07/17 PregmodBase v115 9.6 -fixes -loyalty work PregmodBase v114/Pregmod v114.1 9.2 -small fixes -new edicts -new units upgrade -new barracks upgrade 8.8 -fixes 11/06/17 PregmodBase v113 8.7 -fixed reported issue maybe pretty please? 8.6 -fixes 11/05/17 8.5 -fixes -rebellions 11/03/17 8 -various fixes -balance -rebellions 11/01/17 7.7 7.6 -fixed reported issue -balance adjustments (run backward compatibility to apply them) 7.5 10/29/17 7.1 -fixes -couple of balance adjustments. 10/28/17 7 -SFanon additions -fixes -balance 10/24/17 6 -balance adjustments -fixed improper name assignment -added renaming of units -reworked casualties logic -added statistics to arcology management screen -various other fixes 10/22/17 5 10/18/17 3 1 Lolimod (may have some pregmod and optionsmod stuff mixed with it) New Lolimod - not incorporated 10/06/16 0.8.7.1 10/03/16 0.8.6.7 In this update, loli nicknames are back, retirement age can be set lower in policies, and you can now pursue up to 6 FS directions! 09/21/16 2 With the 2 bugfixes applied 0.8.6.1 09/18/16 0.8.5.3 last known lolimod merge - 08/30/16 0.8.3.1 08/23/16 0.8.2.1 0.8.2.0 08/19/16 0.8.1.4 08/16/16 0.8.1.3 - The "disable age penalties for jobs" submod now has a mechanical effect rather than just changing messages. - The long-standing change that allows slaves without balls but with artificial male hormone injections to experience erections has been added in some places where it was missing. In the process a vanilla bug in "SA serve your other slaves" where the wrong slave's attributes were being checked was corrected. - Fixed the "flaws her mouth" silliness that somehow snuck back in from the base game. (It should be "quirks her mouth" so it was probably the victim of Replace All.) - Incorporates a fix posted on halfchan for the "force her to rape herself" option for new slaves not appearing. - Fixed one place in the game where a slave could refer to young slave as a "teenager" although she might be preteen. 0.8.1.3.1 -Fix for a variable name in "ask her about her feelings." 08/09/16 0.8.0.2 -with correct high adjustments. 08/03/16 0.7.11.2 07/28/16 0.7.10.2 -Also includes a temporary fix for a bug that I expect will be corrected in the next hot fix 07/27/16 0.7.10.1 -Redisigned buying other FS clothing, it is now found under a new subsection of Manage Arcology. -fixed bugs and typos - >>20506, >>20508 Okay, this bug should finally be fixed. Also tweaked loli nicknames a bit. 0.7.10.0 -making the new recruitment events use the age settings. 07/21/16 0.7.9.4 07/19/16 0.7.9.3 0.7.9.2 0.7.9.1 07/13/16 0.7.8.1 07/12/16 0.7.8.0 07/07/16 0.7.7.3 0.7.7.2 07/05/16 0.7.7.0 07/04/16 0.7.6.2 06/28/16 0.7.5.1 0.7.5.0 06/22/16 0.7.4.1 06/14/16 0.7.3.1 06/09/16 0.7.2.3 06/07/16 0.7.2.2 05/24/16 0.7.1.1 0.7.1.0 05/11/16 0.6.12.2 05/18/16 0.7.0.2 04/28/16 0.6.10.1 04/19/16 0.6.9.4 0.6.9.0 04/17/16 0.6.8.1 04/12/16 0.6.7.0 0.6.7.2 03/31/16 0.6.5.1 0.6.5.2 03/30/16 0.6.5.0 03/18/16 0.6.3.2 03/17/16 0.6.3.0 03/12/16 0.6.2.3 02/20/16 0.6.1.0
amomynous0/fc
devNotes/VersionChangeLog-Premod+LoliMod.txt
Text
bsd-3-clause
133,724
:: AssayJS [script] window.slimCount = function(slaves) { var slim = 0; var ArcologyZero = State.variables.arcologies[0]; for (var i = 0; i < slaves.length; i++) { var slave = slaves[i]; if ((slave.boobs < 500) && (slave.butt < 3)) { if ((slave.muscles <= 30) && (ArcologyZero.FSPhysicalIdealist == "unset") && (slave.weight <= 10) && (ArcologyZero.FSHedonisticDecadence == "unset")) { slim += 1; } else if (ArcologyZero.FSPhysicalIdealist != "unset") { if ((ArcologyZero.FSPhysicalIdealistStrongFat == 1) && (slave.weight <= 30)) { slim += 1; } } else if ((ArcologyZero.FSHedonisticDecadence != "unset") && (slave.weight <= 30)) { if (ArcologyZero.FSHedonisticDecadenceStrongFat == 1) { slim += 1; } else if (slave.muscles <= 30) { slim += 1; } } } } return slim; } window.stackedCount = function(slaves) { var stacked = 0; for (var i = 0; i < slaves.length; i++) { var slave = slaves[i]; if ((slave.butt > 4) && (slave.boobs > 800)) { stacked += 1; } } return stacked; } window.moddedCount = function(slaves) { var modded = 0; for (var i = 0; i < slaves.length; i++) { var slave = slaves[i]; var modScore = ModScore(slave); var tatScore = TatScore(slave); var piercingScore = PiercingScore(slave); if ((modScore > 15) || (piercingScore > 8) && (tatScore > 5)) { modded += 1; } } return modded; } window.unmoddedCount = function(slaves) { var unmodded = 0; for (var i = 0; i < slaves.length; i++) { var slave = slaves[i]; var modScore = ModScore(slave); var tatScore = TatScore(slave); var piercingScore = PiercingScore(slave); if ((modScore > 15) || (piercingScore > 8) && (tatScore > 5)) ; else { unmodded += 1; } } return unmodded; } window.XYCount = function(slaves) { var XY = 0; for (var i = 0; i < slaves.length; i++) { var slave = slaves[i]; if (slave.vagina == -1) { XY += 1; } } return XY; } window.XXCount = function(slaves) { var XX = 0; for (var i = 0; i < slaves.length; i++) { var slave = slaves[i]; if (slave.vagina != -1) { State.variables.XX += 1; } } return XX; } window.youngCount = function(slaves) { var young = 0; for (var i = 0; i < slaves.length; i++) { var slave = slaves[i]; if (slave.visualAge < 30) { State.variables.young += 1; } } return young; } window.oldCount = function(slaves) { var old = 0; for (var i = 0; i < slaves.length; i++) { var slave = slaves[i]; if (slave.visualAge >= 30) { State.variables.old += 1; } } return old; } window.pregYesCount = function(slaves) { var pregYes = 0; for (var i = 0; i < slaves.length; i++) { var slave = slaves[i]; if ((slave.bellyPreg >= 5000) || (slave.bellyImplant >= 5000)) { pregYes += 1; } } return pregYes; } window.pregNoCount = function(slaves) { var pregNo = 0; for (var i = 0; i < slaves.length; i++) { var slave = slaves[i]; if ((slave.bellyPreg >= 5000) || (slave.bellyImplant >= 5000)) ; else if ((slave.belly < 100) && (slave.weight < 30) && (!setup.fakeBellies.includes(slave.bellyAccessory))) { pregNo += 1; } } return pregNo; } window.implantedCount = function(slaves) { var implanted = 0; for (var i = 0; i < slaves.length; i++) { var slave = slaves[i]; if ((slave.boobsImplant == 0) && (slave.buttImplant == 0) && (slave.waist >= -95) && (slave.lipsImplant == 0) && (slave.faceImplant < 30) && (slave.bellyImplant == -1) && (Math.abs(slave.shouldersImplant) < 2) && (Math.abs(slave.hipsImplant) < 2)) ; else { implanted += 1; } } return implanted; } window.pureCount = function(slaves) { var pure = 0; for (var i = 0; i < slaves.length; i++) { var slave = slaves[i]; if ((slave.boobsImplant == 0) && (slave.buttImplant == 0) && (slave.waist >= -95) && (slave.lipsImplant == 0) && (slave.faceImplant < 30) && (slave.bellyImplant == -1) && (Math.abs(slave.shouldersImplant) < 2) && (Math.abs(slave.hipsImplant) < 2)) { pure += 1; } } return pure; }
amomynous0/fc
devNotes/assayJS.txt
Text
bsd-3-clause
4,006
Passages that require a go over for adding clothing and accessories. Hair: Definite: descriptionWidgetsStyle.tw salon.tw cosmeticRulesAssistant.tw Possible: generateXXSlave.tw generateXYSlave.tw artWidgets.tw saLiveWithHG.tw (mostly shaved/bald hairstyle checks, probably not worth checking) fPat.tw remoteSurgery.tw suregeryDegradation.tw saLongTermEffects.tw saAgent.tw rulesAutosurgery.tw autoSurgerySettings.tw ptWorkaround.tw newSlaveIntro.tw newChildIntro.tw RESS.tw Clothes: Definite: descriptionWidgetsStyle.tw descriptionWidgetsFlesh.tw descriptionWidgetsPiercing.tw fAbuse.tw walkPast.tw slaveInteract.tw wardrobeUse.tw slaveSummaryWidgets.tw rulesAssistantOptions.tw toyChest.tw useGuard.tw birthWidgets.tw peConcubineInterview.tw PESS.tw RESS.tw Possible: artWidgets.tw saChoosesOwnClothes.tw eventSelectionJS.tw saLiveWithHG.tw setupVars.tw longSlaveDescription.tw Shoes: Definite: descriptionWidgetsStyle.tw descriptionWidgetsFlesh.tw slaveInteract.tw walkPast.tw wardrobeUse.tw slaveSummaryWidgets.tw rulesAssistant.tw Possible: saLongTermEffects.tw saChoosesOwnClothes.tw eventSelectionJS.tw RESS.tw REFI.tw saServeThePublic.tw saWhore.tw saLiveWithHG.tw artWidgets.tw reStandardPunishment.tw setupVars.tw fAnus.tw seBirthWidgets.tw raWidgets.tw Collars: Definite: descriptionWidgetsStyle.tw fLips.tw walkPast.tw slaveInteract.tw fKiss.tw wardrobeUse.tw rulesAssistant.tw RESS.tw Possible: saLongTermEffects.tw saDevotion.tw raWidgets.tw artWidgets.tw reStandardPunishment.tw saChoosesOwnClothes.tw eventSelectionJS.tw assayWidgets.tw -------------------------------------------------------------------------------------- OUTFITS BY TYPE - FOR REFERENCE ONLY SEXUAL/EROTIC ============= Kitty Lingerie Slutty Jewelry Fallen Nun Chattel Habit Body Oil Pregnant Lingerie Nice Lingerie Latex Catsuit Bodysuit Skimpy Loincloth [Not in-game yet] BDSM Pony outfit [Not in-game yet] FESTIVE/ENTERTAINMENT/TRADITIONAL/CULTURAL ================================= Kimono Qipao nice/slutty Biyelgee Costume Harem Gauze Dirndl Klan Robes Lederhosen Western Clothing Toga Huipil Bunny Outfit Succubus Costume Ballgown Slavegown Minidress Haltertop Dress Clubslut Netting Hanbok [Not in-game yet] Gothic Lolita [Not in-game yet] EXERCISE/ATHLETICS ================== Leotard Monokini Stretch pants + croptop Spats and tank-top String Bikini Scalemail Bikini Cheerleader CASUAL/DAILY ============ Shimapan panties Hijab and Abaya Hijab and Blouse Niqab and Abaya Burqa Burkini Conservative Clothing Maternity Dress Schoolgirl Cutoffs + T-shirt Apron PROFESSIONAL/OTHER ================== Maid Nice/Maid Slutty Suit nice/slutty Nurse nice/slutty MILITARY/LAW ENFORCEMENT ======================== Mounty Schutzstaffel Uniform nice/slutty Red Army Uniform Battledress Military Uniform Battlearmor Cybersuit Police outfit [Not in-game yet]
amomynous0/fc
devNotes/clothing hair and accessory passages.txt
Text
bsd-3-clause
3,085
Induced NCS: The idea is a genetic change that you can't undo, once done. It is an expensive damaging process, and the first time it is run many of the secondary sexual characteristics development will reverse strongly: including height, hips width, shoulders width, dick or clit size, labia or scrotum size, and breast size. In addition, from then on, every week a small chance of shrinking any of these items. In addition, growth features (drugs, hormones, food) work at a disadvantage, while growth-reversal features (drugs, hormones, food) work at an advantage. Finally, precocious puberty is generically incremented, such that drugs, hormones or treatments that advance puberty are heightened while simultaneously drugs, hormones or treatements that work against puberty are lowered, with the exception of hormone blockers, which work as advertised. Slaves generated with .inducedNCS set to 0, and added to the backwards compatibility. Purchased only in the black market. Implemented a skeleton 'illegal goods' black market patterning it after the existing FS shopping in the black market. Added description in the Encyclopedia. Updated Surgery, unlike most surgery, can't be applied to unhealthy slaves (health > 0). Updated Surgery Degradation. Updated sa Drugs. Updated sa Hormones. Updated sa Long Term Effects. Added NCS youthening. NCS youthening, NCS will youthen slave appearances towards 8 years old if older, while younger slaves will simply, not apear to age at all. 1: every slave visually appearing less than 9 will not be affected. 2: visually 45 yrs and over will always look 1 year younger each week. 3: from 44 down to 9, the slave accumulates NCSyouthening points every week building towards a sliding youthening value which starts at 2 weeks for 44, and evenly progresses towards 10 weeks for slaves 12 and under. Formula, slaves <= 8 are ignored. Caluclate _youtheningDifference the slaves visual age less 8, yielding 0 to say 38 or so, more than that will be dealt with further down the line. Take the _youthDifference devide by four and add .25 to evenly break into 0 below 9, and 10 at 45, round to int to get the _youtheningLevel. Subtract _youtheningLevel from 11 to find out the _youtheningRequirement Every week, slaves that appear older than 8 year old lolis or shotas will have their NCSyouthening incremented. Then this youthening is tested against the _youtheningRequirement, if at or better, the NCS youthens the slave, and resets the NCSyouthening. Slaves generated with .NCSyouthening set to 0, and added to the backwards compatibility.
amomynous0/fc
devNotes/inducedNCS.txt
Text
bsd-3-clause
2,917
:: art widgets [nobr widget] /% Call as <<AssistantArt>> Displays assistant images. Currently passage-based. $args[0]: Image size/center. 3: Large, right. Example: description. 2: Medium, right. Example: random events. %/ <<widget "AssistantArt">> <<if $imageChoice == 0>> /* RENDERED IMAGES BY SHOKUSHU */ <<switch $assistantAppearance>> <<case "monstergirl">> <<set _fileName = "'resources/renders/assistant monstergirl.png' ">> <<case "shemale">> <<set _fileName = "'resources/renders/assistant shemale.png' ">> <<case "amazon">> <<set _fileName = "'resources/renders/assistant amazon.png' ">> <<case "businesswoman">> <<set _fileName = "'resources/renders/assistant businesswoman.png' ">> <<case "goddess">> <<set _fileName = "'resources/renders/assistant goddess.png' ">> <<case "schoolgirl">> <<set _fileName = "'resources/renders/assistant schoolgirl.png' ">> <<default>> <<set _fileName = "'resources/renders/assistant default.png' ">> <</switch>> <<if $args[1] == 3>> <<print "<img src=" + _fileName + "style='float:right; border:3px hidden'/>">> <<else>> <<print "<img src=" + _fileName + "style='float:right; border:3px hidden' width='300' height='300'/>">> <</if>> <</if>> /* CLOSES IMAGE CHOICE */ <</widget>> /% Call as <<SlaveArt>> Displays slave images. Currently passage-based. $args[0]: Slave. $args[1]: Image size/center. 3: Large, right. Example: long slave description. 2: Medium, right. Example: random events. 1: Small, left. Example: lists. 0: Tiny, left. Example: facilities $args[2]: icon UI Display for vector art, 1 for on. %/ <<widget "SlaveArt">> /* This is a nasty workaround for Chrome not rendering overlaid SVG images properly */ <<run jQuery(function() { jQuery('.imageRef').imagesLoaded().always(function() { jQuery('.imageRef').fadeTo(1, 0.999); }); })>> <<if ndef $args[0].customImage>><<set $args[0].customImage = 0>><</if>> <<if $args[0].customImage != 0>> <<set _fileFormat = ($args[0].customImageFormat || "png"), _fileName = "'resources/" + $args[0].customImage + "." + _fileFormat + "' ", _fileTypeStart = (_fileFormat === "webm" ? "video loop autoplay" : "img"), _fileTypeEnd = (_fileFormat === "webm" ? "</video>" : "")>> <<if $args[1] == 3>> <<print "<" + _fileTypeStart + " src=" + _fileName + "style='float:right; border:3px hidden'>" + _fileTypeEnd>> <<elseif $args[1] == 2>> <<print "<" + _fileTypeStart + " src=" + _fileName + "style='float:right; border:3px hidden' width='300' height='300'>" + _fileTypeEnd>> <<elseif $args[1] == 1>> <<print "<" + _fileTypeStart + " src=" + _fileName + "style='float:left; border:3px hidden' width='150' height='150'>" + _fileTypeEnd>> <<else>> <<print "<" + _fileTypeStart + " src=" + _fileName + "style='float:left; border:3px hidden' width='120' height='120'>" + _fileTypeEnd>> <</if>> <<elseif $imageChoice == 1>> /* VECTOR ART BY NOX */ <<SVGFilters>> /* 000-250-006 */ /* <div class="imageRef"> */ /* 000-250-006 */ <<set _folderLoc = "'resources/vector">> <<if $args[2] == 1>> <<print "<img class='paperdoll' src=" + _folderLoc + "/test ui.svg'" + "/>">> <</if>> /% Set skin colour %/ <<set _skinFilter = "filter: url(#skin-" + _.kebabCase($args[0].skin) + ");">> /% Set hair colour %/ <<set _hairFilter = "filter: url(#hair-" + _.kebabCase($args[0].hColor) + ");">> <<set _pubesFilter = "filter: url(#hair-" + _.kebabCase($args[0].pubicHColor) + ");">> <<set _axillaryFilter = "filter: url(#hair-" + _.kebabCase($args[0].underArmHColor) + ");">> <<if $args[0].customHairVector>> <<set _hairStyle = $args[0].customHairVector>> <<else>> <<set _hairStyle = ["neat", "ponytail", "messy"].includes($args[0].hStyle) ? $args[0].hStyle : "neat">> <</if>> <<set _imgSkinLoc = _folderLoc + "/body/white">> /% Shoulder width and arm or no arm %/ <<if $args[0].amp != 1>> <<if $args[0].devotion > 50>> <<set _leftArmType = "high">> <<set _rightArmType = "high">> <<elseif $args[0].trust >= -20>> <<if $args[0].devotion < -20>> <<set _leftArmType = "rebel">> <<set _rightArmType = "low">> <<elseif $args[0].devotion <= 20>> <<set _leftArmType = "low">> <<set _rightArmType = "low">> <<else>> <<set _leftArmType = "mid">> <<set _rightArmType = "high">> <</if>> <<else>> <<set _leftArmType = "mid">> <<set _rightArmType = "mid">> <</if>> <<if $args[0].fuckdoll == 0 && $args[0].clothes != "restrictive latex" && $args[0].clothes != "a latex catsuit">> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/arm left " + _leftArmType + ".svg'" + " style='"+ _skinFilter + "'>">> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/arm right " + _rightArmType + ".svg'" + " style='"+ _skinFilter + "'>">> <<else>> <<if $args[0].fuckdoll != 0>> <<set _leftArmType = "mid">> <<set _rightArmType = "mid">> <</if>> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/arm left " + _leftArmType + " latex.svg'" + "/>">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/arm right " + _rightArmType + " latex.svg'" + "/>">> <</if>> <</if>> /% Hair Aft %/ <<if $args[0].hStyle != "shaved" && $args[0].fuckdoll == 0>> <<= "<img class='paperdoll' src=" + _folderLoc + "/hair/" + _hairStyle + " back.svg'" + " style='" + _hairFilter + "'/>">> <</if>> /% Butt %/ <<if $args[0].amp != 1>> <<if $args[0].butt > 6>> <<set _buttSize = 3>> <<elseif $args[0].butt > 4>> <<set _buttSize = 2>> <<elseif $args[0].butt > 2>> <<set _buttSize = 1>> <<else>> <<set _buttSize = 0>> <</if>> <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> <<set _buttSize = _buttSize + " latex">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/butt " + _buttSize + ".svg'" + " style='"+ _skinFilter + "'>">> <<else>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/butt " + _buttSize + ".svg'" + " style='"+ _skinFilter + "'>">> <</if>> <</if>> /% Leg + 1 size up when chubby or fat%/ <<if $args[0].hips < 0>> <<if $args[0].weight <= 95>>/%Chubby%/ <<set _legSize = "normal">> <<else>> <<set _legSize = "narrow">> <</if>> <<elseif $args[0].hips == 0>> <<if $args[0].weight <= 95>>/%Chubby%/ <<set _legSize = "wide">> <<else>> <<set _legSize = "normal">> <</if>> <<elseif $args[0].hips > 0>> <<set _legSize = "wide">> <</if>> <<if $args[0].amp == 1>> <<set _legSize = "stump " + _legSize>> <</if>> <<if ($args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit") && $args[0].amp != 1>> <<set _legSize = _legSize + " latex">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/leg " + _legSize + ".svg'" + "/>">> <<else>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/leg " + _legSize + ".svg'" + " style='"+ _skinFilter + "'>">> <</if>> /% Feet %/ <<if $args[0].amp != 1>> <<if $args[0].shoes == "heels">> <<set _shoesType = "heel">> <<elseif $args[0].shoes == "extreme heels">> <<if $args[0].weight <= 95>>/%Chubby%/ <<set _shoesType = "extreme heel wide">> <<else>> <<set _shoesType = "extreme heel">> <</if>> <<elseif $args[0].shoes == "boots">> <<if $args[0].weight <= 95>>/%Chubby%/ <<set _shoesType = "boot wide">> <<else>> <<set _shoesType = "boot">> <</if>> <<elseif $args[0].shoes == "flats">> <<set _shoesType = "flat">> <<else>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/feet.svg'" + " style='"+ _skinFilter + "'>">> <</if>> <<if $args[0].shoes == "extreme heels" or $args[0].shoes == "boots">> <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> <<set _shoesType = _shoesType + " latex">> <</if>> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/" + _shoesType + ".svg'" + "/>">> <</if>> <<if $args[0].shoes == "heels" or $args[0].shoes == "flats">> <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> <<set _shoesType = _shoesType + " latex">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/" + _shoesType + ".svg'" + "/>">> <<else>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/" + _shoesType + ".svg'" + " style='"+ _skinFilter + "'>">> <</if>> <</if>> <</if>> /% Torso %/ <<if $args[0].waist < -40>>/*Unnatural*/ <<if $args[0].weight <= 30>>/%Chubby%/ <<set _torsoSize = "hourglass">> <<else>> <<set _torsoSize = "unnatural">> <</if>> <<elseif $args[0].waist <= 10>>/%Hour glass%/ <<if $args[0].weight <= 30>>/%Chubby%/ <<set _torsoSize = "normal">> <<else>> <<set _torsoSize = "hourglass">> <</if>> <<else>>/*Normal*/ <<set _torsoSize = "normal">> <</if>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/torso " + _torsoSize + ".svg'" + " style='"+ _skinFilter + "'>">> <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> <<set _torsoOutfit = " latex">> <<elseif $args[0].clothes == "uncomfortable straps">> <<set _torsoOutfit = " straps">> <</if>> <<if _torsoOutfit>> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/torso " + _torsoSize + _torsoOutfit + ".svg'" + "/>">> <</if>> /*Navel Piercing*/ <<if $args[0].navelPiercing >= 1>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/navel piercing.svg'" + "/>">> <</if>> <<if $args[0].navelPiercing == 2>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/navel piercing heavy.svg'" + "/>">> <</if>> /% Vagina %/ <<if $args[0].vagina >= 0>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/vagina.svg'" + " style='"+ _skinFilter + "'>">> <<if $args[0].clitPiercing == 1>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/clit piercing.svg'" + "/>">> <<elseif $args[0].clitPiercing == 2>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/clit piercing heavy.svg'" + "/>">> <<elseif $args[0].clitPiercing == 3>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/clit piercing smart.svg'" + "/>">> <</if>> <<if $args[0].vaginaPiercing == 1>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/pussy piercing.svg'" + "/>">> <<elseif $args[0].vaginaPiercing == 2>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/pussy piercing heavy.svg'" + "/>">> <</if>> <</if>> /% Collar %/ <<switch $args[0].collar>> <<case "bowtie">> <<case "ancient Egyptian">> <<case "nice retirement counter" "cruel retirement counter" "leather with cowbell" "pretty jewelry" "heavy gold" "satin choker" "stylish leather" "neck corset" "shock punishment" "tight steel" "uncomfortable leather" "dildo gag">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/" + $args[0].collar + ".svg'" + "/>">> <</switch>> /% Head base image %/ <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/head latex.svg'" + "/>">> <<else>> <<print "<img class='paperdoll' src=" +_imgSkinLoc + "/head.svg'" + " style='"+ _skinFilter + "'>">> <</if>> /% Glasses %/ <<if $args[0].eyewear == "corrective glasses" or $args[0].eyewear == "glasses" or $args[0].eyewear == "blurring glasses">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/glasses.svg'" + "/>">> <</if>> /% Chastity belt or Pubic hair %/ <<if $args[0].dickAccessory == "chastity" || $args[0].dickAccessory == "anal chastity" || $args[0].dickAccessory == "combined chastity" || $args[0].vaginalAccessory == "chastity belt" || $args[0].vaginalAccessory == "anal chastity" || $args[0].vaginalAccessory == "combined chastity">> <<if $args[0].dickAccessory == "chastity" || $args[0].dickAccessory == "combined chastity">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/chastity male aft.svg'" + "/>">> <</if>> <<if $args[0].vaginalAccessory == "chastity belt" || $args[0].vaginalAccessory == "combined chastity">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/chastity female.svg'" + "/>">> <</if>> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/chastity base.svg'" + "/>">> <<else>> <<if $args[0].pubicHStyle != "waxed">> <<set _pubicHStyle = ($args[0].pubicHStyle == "in a strip" ? "strip" : $args[0].pubicHStyle)>> <<= "<img class='paperdoll' src=" + _folderLoc + "/hair/pubes " + _pubicHStyle + ".svg' style='" + _pubesFilter + "'/>">> <</if>> <</if>> /%if pregnant%/ <<if $args[0].preg > 0>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/preg belly.svg'" + " style='"+ _skinFilter + "'>">> <<if $args[0].navelPiercing >= 1>>/*Navel Piercing*/ <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/preg navel piercing.svg'" + "/>">> <</if>> <<if $args[0].navelPiercing == 2>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/preg navel piercing heavy.svg'" + "/>">> <</if>> <</if>> /% Boob %/ <<if $args[0].boobs < 250>> <<set _boobSize = 0>> <<elseif $args[0].boobs < 500>> <<set _boobSize = 1>> <<elseif $args[0].boobs < 800>> <<set _boobSize = 2>> <<elseif $args[0].boobs < 1600>> <<set _boobSize = 3>> <<elseif $args[0].boobs < 3200>> <<set _boobSize = 4>> <<elseif $args[0].boobs < 6400>> <<set _boobSize = 5>> <<elseif $args[0].boobs < 12000>> <<set _boobSize = 6>> <<else>> <<set _boobSize = 7>> <</if>> /% Scrotum %/ <<if $args[0].scrotum > 0>> <<if $args[0].scrotum >= 6>> <<set _ballSize = 4>> <<elseif $args[0].scrotum >= 4>> <<set _ballSize = 3>> <<elseif $args[0].scrotum >= 3>> <<set _ballSize = 2>> <<elseif $args[0].scrotum >= 2>> <<set _ballSize = 1>> <<else>> <<set _ballSize = 0>> <</if>> <</if>> /% Penis %/ <<if $args[0].dick > 0>> <<if $args[0].dick >= 8>> <<set _penisSize = 6>> <<elseif $args[0].dick >= 7>> <<set _penisSize = 5>> <<elseif $args[0].dick >= 6>> <<set _penisSize = 4>> <<elseif $args[0].dick >= 5>> <<set _penisSize = 3>> <<elseif $args[0].dick >= 4>> <<set _penisSize = 2>> <<elseif $args[0].dick >= 2>> <<set _penisSize = 1>> <<else>> <<set _penisSize = 0>> <</if>> <</if>> /% Boob %/ <<set _needBoobs = 1>> <<if $args[0].dick > 0>> <<if canAchieveErection($args[0])>> <<if _boobSize < 6>> <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> /* normal case: outfit hides boobs */ <<set _boobOutfit = " latex" >> <</if>> <<if _boobOutfit >> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/boob " +_boobSize + _boobOutfit + ".svg'" + "/>">> <<if $args[0].lactation > 0>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize + " areola.svg'" + " style='"+ _skinFilter + "'>">> <</if>> <<else>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize +".svg'" + " style='"+ _skinFilter + "'>">> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize + " areola.svg'" + " style='"+ _skinFilter + "'>">> <</if>> /* special case: straps are actually dawn over the boobs */ <<if $args[0].clothes == "uncomfortable straps">> <<set _boobOutfit = " straps" >> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/boob " +_boobSize + _boobOutfit + ".svg'" + "/>">> <</if>> <<set _needBoobs = 0>> <</if>> <</if>> <</if>> <<if $args[0].vagina > 0>> <<if $args[0].dick > 0>> <div class="highPenis"> <<if $args[0].scrotum > 0>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/ball " + _ballSize + ".svg'" + " style='"+ _skinFilter + "'>">> <</if>> <<if canAchieveErection($args[0])>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/penis " + _penisSize + ".svg'" + " style='"+ _skinFilter + "'>">> <<else>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/flaccid " + _penisSize + ".svg'" + " style='"+ _skinFilter + "'>">> <<if $args[0].dickAccessory == "chastity" || $args[0].dickAccessory == "combined chastity">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/chastity male fore " + _penisSize + ".svg'" + "/>">> <</if>> <</if>> </div> <</if>> <<else>> <<if $args[0].dick > 0>> <div class="lowPenis"> <<if $args[0].scrotum > 0>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/ball " + _ballSize + ".svg'" + " style='"+ _skinFilter + "'>">> <</if>> <<if canAchieveErection($args[0])>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/penis " + _penisSize + ".svg'" + " style='"+ _skinFilter + "'>">> <<else>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/flaccid " + _penisSize + ".svg'" + " style='"+ _skinFilter + "'>">> <<if $args[0].dickAccessory == "chastity" || $args[0].dickAccessory == "combined chastity">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/chastity male fore " + _penisSize + ".svg'" + "/>">> <</if>> <</if>> </div> <</if>> <</if>> <<if _needBoobs>> <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/boob " +_boobSize +" latex.svg'" + "/>">> <<if $args[0].lactation > 0>><<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize + " areola.svg'" + " style='"+ _skinFilter + "'>">><</if>> <<else>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize +".svg'" + " style='"+ _skinFilter + "'>">> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize + " areola.svg'" + " style='"+ _skinFilter + "'>">> <</if>> /* special case: straps are actually dawn over the boobs */ <<if $args[0].clothes == "uncomfortable straps">> <<set _boobOutfit = " straps" >> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/boob " +_boobSize + _boobOutfit + ".svg'" + "/>">> <</if>> <</if>> /% piercings %/ <<if $args[0].nipplesPiercing == 1>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/boob " +_boobSize +" piercing.svg'" + "/>">> <<elseif $args[0].nipplesPiercing == 2>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/boob " +_boobSize +" piercing heavy.svg'" + "/>">> <</if>> <<if $args[0].areolaePiercing == 1>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/boob " +_boobSize +" areola piercing.svg'" + "/>">> <</if>> /% clavicle %/ <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/clavicle.svg'" + "/>">> /% Hair Foreground %/ <<if $args[0].hStyle != "shaved" && $args[0].fuckdoll == 0>> <<= "<img class='paperdoll' src=" + _folderLoc + "/hair/" + _hairStyle + " front.svg'" + " style='" + _hairFilter + "'/>">> <</if>> <<else>> /* RENDERED IMAGES BY SHOKUSHU */ <<if $args[0].vagina > -1>> <<if $args[0].dick > 0>> <<if $args[0].balls > 0>> <<set _fileName = "futanari">> <<else>> <<set _fileName = "herm">> <</if>> <<else>> <<set _fileName = "female">> <</if>> <<else>> <<if $args[0].balls > 0>> <<set _fileName = "shemale">> <<else>> <<set _fileName = "gelding">> <</if>> <</if>> <<if $args[0].preg > 10>> <<set _fileName = "preg " + _fileName>> <</if>> <<if $args[0].boobs < 400>> <<set _fileName = _fileName + " small">> <<elseif $args[0].boobs < 800>> <<set _fileName = _fileName + " big">> <<elseif $args[0].boobs < 6000>> <<set _fileName = _fileName + " huge">> <<else>> <<set _fileName = _fileName + " hyper">> <</if>> <<if $args[0].muscles > 30>> <<set _fileName = _fileName + " muscle">> <<else>> <<set _fileName = _fileName + " soft">> <</if>> <<if $args[0].fuckdoll > 0>> <<set _fileName = _fileName + " rebellious">> <<elseif $args[0].devotion <= 20>> <<if $args[0].trust < -20>> <<set _fileName = _fileName + " reluctant">> <<else>> <<set _fileName = _fileName + " rebellious">> <</if>> <<elseif $args[0].fetish == "mindbroken">> <<set _fileName = _fileName + " reluctant">> <<elseif $args[0].devotion <= 50 || $args[0].fetishKnown != 1 || ($seeMainFetishes == 0 && $args[1] < 2)>> <<set _fileName = _fileName + " obedient">> <<else>> <<if $args[0].fetish == "none">> <<set _fileName = _fileName + " obedient">> <<else>> <<set _fileName = _fileName + " " + $args[0].fetish>> <</if>> <</if>> <<set _fileName = "'resources/renders/" + _fileName + ".png' ">> <<if $args[1] == 3>> <<print "<img src=" + _fileName + "style='float:right; border:3px hidden'/>">> <<elseif $args[1] == 2>> <<print "<img src=" + _fileName + "style='float:right; border:3px hidden' width='300' height='300'/>">> <<elseif $args[1] == 1>> <<print "<img src=" + _fileName + "style='float:left; border:3px hidden' width='150' height='150'/>">> <<else>> <<print "<img src=" + _fileName + "style='float:left; border:3px hidden' width='120' height='120'/>">> <</if>> <</if>> /* CLOSES IMAGE CHOICE */ <</widget>>
amomynous0/fc
devNotes/legacy files/artWidgets-legacy
none
bsd-3-clause
20,774
<<if $activeSlave.preg > 30>> <<if $activeSlave.pregType == 100>> The only thing keeping $possessive from bursting are $possessive belly restraints, <<elseif $activeSlave.pregType >= 20>> $pronounCap is close to bursting, <<elseif $activeSlave.pregType >= 10>> $pronounCap is dangerously pregnant, <<else>> $pronounCap is enormously pregnant, <</if>> <<if $activeSlave.pregType == 100>> <<if $activeSlave.amp == 1>> with no arms and legs $pronoun is effectively a giant womb. <<else>> and $possessive thinning arms and legs rest helpless atop $possessive supermassive belly. <</if>> <<elseif $activeSlave.physicalAge <= 3>> <<if $activeSlave.pregType >= 20>> and $pronoun is nearly spherical. $possessiveCap toddlerish form is utterly dwarfed by $possessive pregnancy, all $pronoun can do is lay on top of it. Despite being taut, $possessive belly visibly bulges and squirms from all the babies writhing within $object. $possessiveCap womb is so full you can see the babies forced up against $possessive uterus, even the slightest provocation could cause $possessive to burst.<<if $saleDescription == 0>> $pronounCap requires multiple slaves to move $possessive bulk when $pronoun must go somewhere.<</if>> <<elseif $activeSlave.pregType >= 10>> and $possessive belly pins $possessive to the ground. $possessiveCap toddlerish form is dwarfed by $possessive pregnancy, and try as $pronoun might $pronoun can not even drag the massive thing. $pronounCap is so pregnant you can barely see the babies within $possessive bulging $possessive stomach.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet<<if $saleDescription == 0>>, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere<</if>>.<</if>> <<else>> and $possessive toddlerish body is absolutely filled by $possessive womb. $pronounCap can barely move herself and resembles an over inflated blow-up doll. <</if>> <<elseif $activeSlave.physicalAge <= 12>> <<if $activeSlave.pregType >= 20>> and $pronoun is more belly than girl. $possessiveCap absolutely gigantic, overfilled womb keeps $possessive pinned to the ground. $possessiveCap belly visibly bulges and squirms from all the babies within $possessive. $pronounCap is so full you can see the babies forced up against the walls of $possessive uterus. $possessiveCap skin is so taut that even the slightest provocation could cause $possessive to burst.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet<<if $saleDescription == 0>>, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere<</if>>.<</if>> <<elseif $activeSlave.pregType >= 10>> and $pronoun can barely function with $possessive enormous belly. $pronounCap is so full you can barely see the babies bulging out of $possessive stomach. <<else>> and $possessive massive, drum-taut belly dominates $possessive poor little frame. <</if>> <<elseif $activeSlave.weight > 190>> <<if $activeSlave.pregType >= 20>> and $possessive massively fat belly is stretched considerably, so much so $possessive folds are pulled flat. $possessiveCap pregnancy is covered in a thick layer of fat, save for the grotesquely bulging upper portion where $possessive fat is thinnest. $possessiveCap womb is so full that every motion within it translates to $possessive soft body. <<elseif $activeSlave.pregType >= 10>> and $possessive massively fat belly is stretched considerably; $possessive folds are nearly pulled flat from the strain. $possessiveCap pregnancy is covered in a thick layer of fat, save for the bulging upper portion where $possessive fat is thinnest. <<else>> but $pronoun's so massively fat that it's not obvious. Only the firmness at its top gives away $possessive pregnancy. <</if>> <<elseif $activeSlave.height >= 185>> <<if $activeSlave.pregType >= 20>> but $possessive tall frame barely keeps $possessive grotesque, splitting belly off the ground. Despite being taut, $possessive belly visibly bulges and squirms from all the babies writhing within $object. $possessiveCap womb is so full you can see the babies forced up against $possessive uterus, even the slightest provocation could cause $object to burst. <<elseif $activeSlave.pregType >= 10>> but $possessive tall frame barely bears $possessive obscene, drum-taut belly. $pronounCap is so pregnant you can barely see the babies within $possessive bulging stomach. <<else>> but $possessive tall frame bears $possessive massive, drum-taut belly well. <</if>> <<elseif $activeSlave.height < 150>> <<if $activeSlave.pregType >= 20>> and $pronoun is more belly than girl. $possessiveCap absolutely gigantic, overfilled womb keeps $object pinned to the ground. $possessiveCap belly visibly bulges and squirms from all the babies within $object. $pronounCap is so full you can see the babies forced up against the walls of $possessive uterus. $possessiveCap skin is so taut that even the slightest provocation could cause $object to burst.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet<<if $saleDescription == 0>>, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere<</if>>.<</if>> <<elseif $activeSlave.pregType >= 10>> and $pronoun can barely function with $possessive enormous belly. $pronounCap is so full you can barely see the babies bulging out of $possessive stomach. <<else>> and $possessive massive, drum-taut belly dominates $possessive poor little frame. <</if>> <<elseif $activeSlave.muscles > 30>> <<if $activeSlave.pregType >= 20>> and $pronoun can barely hold $possessive overfilled belly upright. $possessiveCap enormous brood greatly protrudes $possessive belly covering it in writhing bulges where they are forced up against $possessive uterus. While $possessive strong body spares $object from the fear of bursting, it does nothing to stop everyone from seeing how many children $pronoun's having. <<elseif $activeSlave.pregType >= 10>> and $possessive fit body allows $object to carry $possessive obscene belly without too much trouble. $possessiveCap large brood gently bulges $possessive belly. <<else>> and $possessive fit body bears $possessive massive, drum-taut belly well. <</if>> <<else>> <<if $activeSlave.pregType >= 20>> and $pronoun is more belly than girl. $possessiveCap gigantic, overfilled womb keeps $object pinned to the ground. $possessiveCap belly visibly bulges and squirms from all the babies within $object. $pronounCap is so full you can see the babies forced up against the walls of $possessive womb through $possessive taut skin. $possessiveCap bulgy belly is at risk of rupturing.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet<<if $saleDescription == 0>>, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere<</if>>.<</if>> <<elseif $activeSlave.pregType >= 10>> and $pronoun can barely function with $possessive enormous belly. $possessiveCap womb is so full you can see the babies gently bulging the walls of $possessive uterus. <<else>> and $possessive massive, drum-taut belly dominates $possessive frame. <</if>> <</if>> <<elseif $activeSlave.preg > 20>> <<if $activeSlave.pregType >= 20>> $pronounCap is dangerously pregnant, <<elseif $activeSlave.pregType >= 10>> $pronounCap is obscenely pregnant, <<else>> $pronounCap is heavily pregnant, <</if>> <<if $activeSlave.physicalAge <= 3>> <<if $activeSlave.pregType >= 20>> and $possessive hugely distended belly is bigger than $pronoun is.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet<<if $saleDescription == 0>>, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere<</if>>.<</if>> <<elseif $activeSlave.pregType >= 10>> and $possessive bulging belly is as big as $pronoun is.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet<<if $saleDescription == 0>>, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere<</if>>.<</if>> <<else>> and $possessive swollen belly is nearly as big as $possessive toddlerish body. <</if>> <<elseif $activeSlave.physicalAge <= 12>> <<if $activeSlave.pregType >= 20>> and $possessive hugely distended belly is nearly as big as $pronoun is.<<if $activeSlave.amp == 0>> $pronounCap requires assistance to get to $possessive feet<<if $saleDescription == 0>>, and uses a wheeled stand to support $possessive pregnancy when $pronoun must walk anywhere<</if>>.<</if>> <<elseif $activeSlave.pregType >= 10>> and $possessive bulging belly looks absolutely huge on $possessive poor little frame. <<else>> and $possessive swollen belly dominates $possessive poor little frame. <</if>> <<elseif $activeSlave.weight > 130>> <<if $activeSlave.pregType >= 20>> and $possessive big fat belly is absolutely enormous when coupled with $possessive filled womb. <<elseif $activeSlave.pregType >= 10>> but $pronoun's so fat that $pronoun appears to merely be carrying a giant gut. Only the firmness at its top gives away $possessive pregnancy. <<else>> but $pronoun's so fat that it's not obvious. Only the firmness at its top gives away $possessive pregnancy. <</if>> <<elseif $activeSlave.height >= 185>> <<if $activeSlave.pregType >= 20>> but $possessive tall frame keeps $possessive huge belly off the ground. <<elseif $activeSlave.pregType >= 10>> but $possessive tall frame lets $possessive keep $possessive posture despite $possessive large belly. <<else>> but $possessive tall frame bears $possessive swollen belly well. <</if>> <<elseif $activeSlave.height < 150>> <<if $activeSlave.pregType >= 20>> and $possessive hugely distended belly is nearly as big as $pronoun is. <<elseif $activeSlave.pregType >= 10>> and $possessive bulging belly looks absolutely huge on $possessive poor little frame. <<else>> and $possessive swollen belly dominates $possessive poor little frame. <</if>> <<elseif $activeSlave.muscles > 30>> <<if $activeSlave.pregType >= 20>> and $possessive fit body allows $object to carry $possessive huge belly with only the occasional accident. <<elseif $activeSlave.pregType >= 10>> and $possessive fit body carries $possessive bulging belly without much trouble. <<else>> and $possessive fit body bears $possessive swollen belly well. <</if>> <<else>> <<if $activeSlave.pregType >= 20>> and $possessive hugely distended belly juts far out from $possessive front and widely from $possessive sides. <<elseif $activeSlave.pregType >= 10>> and $possessive large bulging belly draws all attention away from the rest of $possessive. <<else>> and $possessive swollen belly dominates $possessive frame. <</if>> <</if>> <<elseif $activeSlave.preg > 9>> $pronounCap is visibly pregnant, <<if $activeSlave.physicalAge <= 3>> <<if $activeSlave.pregType >= 20>> $possessiveCap huge belly resembles an over-inflated beach ball compared to $possessive toddlerish frame. It bulges out from $possessive sides considerably. <<elseif $activeSlave.pregType >= 10>> and it looks like $pronoun is ready to birth triplets due to $possessive toddlerish body. <<else>> and $possessive swelling belly looks obscene on $possessive toddlerish body. <</if>> <<elseif $activeSlave.physicalAge <= 10>> <<if $activeSlave.pregType >= 20>> $possessiveCap huge belly resembles an over-inflated beach ball compared to $possessive tiny frame. <<elseif $activeSlave.pregType >= 10>> and $possessive swelling belly appears full term on $possessive tiny frame. <<else>> and $possessive swelling belly already looks huge on $possessive tiny frame. <</if>> <<elseif $activeSlave.weight > 95>> <<if $activeSlave.pregType >= 20>> $possessive fat belly considerably juts out with $possessive rapid growth. <<elseif $activeSlave.pregType >= 10>> but $pronoun's sufficiently overweight that $pronoun appears to merely be carrying a large gut. <<else>> but $pronoun's sufficiently overweight that it's not obvious. <</if>> <<elseif $activeSlave.height < 150>> <<if $activeSlave.pregType >= 20>> $possessiveCap huge belly resembles an over-inflated beach ball compared to $possessive tiny frame. <<elseif $activeSlave.pregType >= 10>> and $possessive swelling belly appears full term on $possessive tiny frame. <<else>> and $possessive swelling belly already looks huge on $possessive tiny frame. <</if>> <<elseif $activeSlave.weight < -10>> <<if $activeSlave.pregType >= 20>> $possessive enormous stomach juts far forward and lewdly extends far past $possessive sides. <<elseif $activeSlave.pregType >= 10>> $possessive bulging stomach fills $possessive thin frame obscenely. <<else>> $possessive thin form making $possessive swelling belly very obvious. <</if>> <<else>> <<if $activeSlave.pregType >= 20>> and $possessive obvious pregnancy appears full-term. <<elseif $activeSlave.pregType >= 10>> $possessive distended stomach makes $possessive look to be in $possessive last trimester. <<else>> the life growing within $possessive beginning to swell $possessive belly. <<if $activeSlave.bellySag > 0>> $possessiveCap new pregnancy reduces the amount of sag to $possessive overstretched middle. <</if>> <</if>> <</if>> <<if ($activeSlave.preg == -2) && ($activeSlave.vagina < 0) && ($activeSlave.mpreg == 0)>> <<elseif ($activeSlave.preg <= -2) && ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1)>> $pronounCap is sterile. <<elseif $activeSlave.preg == 0 && $activeSlave.vagina > -1>> <<if $activeSlave.pregType > 30>> $possessiveCap lower belly is noticeably bloated, $possessive breasts bigger and more sensitive, and $possessive pussy swollen and leaking fluids. $pronoun desperately needs a dick in $object and reminds you of a bitch in heat. <<elseif $activeSlave.pregType > 20>> $possessiveCap lower belly is noticeably bloated and $possessive pussy swollen and leaking fluids. $pronounCap is very ready to be seeded. <<elseif $activeSlave.pregType > 2>> $possessiveCap lower belly is slightly bloated and $possessive pussy swollen and leaking fluids. $pronounCap is ready to be seeded. <</if>> <<elseif $activeSlave.preg > 30>> <<if $activeSlave.pregType >= 20>> $pronounCap is @@.red;on the brink of bursting!@@ $possessiveCap belly is painfully stretched, the slightest provocation could cause $object to rupture. <<elseif $activeSlave.pregType >= 10>> $pronounCap is @@.pink;dangerously pregnant,@@ $possessive overburdened womb is filled with $activeSlave.pregType babies. <<elseif $activeSlave.pregType > 4>> $pronounCap is @@.pink;obscenely pregnant:@@ $pronoun's carrying quintuplets. <<elseif $activeSlave.pregType > 2>> $pronounCap is @@.pink;massively pregnant:@@ $pronoun's carrying <<if $activeSlave.pregType == 4>> quadruplets. <<else>> triplets. <</if>> <<else>> $pronounCap is @@.pink;hugely pregnant:@@ <<if $activeSlave.pregType == 2>> $pronoun's carrying twins. <<else>> $pronoun's almost ready to give birth. <</if>> <</if>> <<elseif $activeSlave.preg > 20>> <<if $activeSlave.pregType >= 20>> $pronounCap is @@.pink;dangerously pregnant,@@ despite how early in $possessive pregnancy $pronoun is: $pronoun's carrying far too many children. <<elseif $activeSlave.pregType >= 10>> $pronounCap is @@.pink;obscenely pregnant,@@ despite how early in $possessive pregnancy $pronoun is: $pronoun's carrying $activeSlave.pregType children. <<elseif $activeSlave.pregType > 4>> $pronounCap is @@.pink;massively pregnant,@@ despite how early in $possessive pregnancy $pronoun is: $pronoun's carrying quintuplets. <<elseif $activeSlave.pregType > 2>> $pronounCap is @@.pink;hugely pregnant,@@ despite how early in $possessive pregnancy $pronoun is: $pronoun's carrying <<if $activeSlave.pregType == 4>> quadruplets. <<else>> triplets. <</if>> <<else>> $pronounCap is @@.pink;very pregnant:@@ <<if $activeSlave.pregType == 2>> $pronoun's carrying twins. <<else>> the baby inside $object is growing rapidly. <</if>> <</if>> <<if $activeSlave.waist > 95>> a badly @@.red;masculine waist@@ that ruins her figure<<if $activeSlave.weight > 30>> and greatly exaggerates how fat $pronoun is<<elseif $activeSlave.weight < -30>> despite how thin $pronoun is<</if>>. <<if hyperBellyTwo($activeSlave)>> $possessiveCap titanic belly lewdly bulges out the sides of $possessive thick waist.<<if $activeSlave.preg > 3>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>> <<elseif hyperBellyOne($activeSlave)>> $possessiveCap gigantic belly barely distends her $possessive thick waist. <<elseif hugeBelly($activeSlave)>> $possessiveCap huge belly is hidden by $possessive thick waist. <<elseif bigBelly($activeSlave)>> $possessiveCap belly is hidden by $possessive thick waist. <</if>> <<elseif $activeSlave.waist > 40>> a broad, @@.red;ugly waist@@ that makes her look mannish<<if $activeSlave.weight > 30>> and exaggerates how fat $pronoun is<<elseif $activeSlave.weight < -30>> despite how thin $pronoun is<</if>>. <<if hyperBellyTwo($activeSlave)>> $possessiveCap titanic belly lewdly bulges out the sides of $possessive chunky waist.<<if $activeSlave.preg > 3>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>> <<elseif hyperBellyOne($activeSlave)>> $possessiveCap gigantic belly barely distends her $possessive chunky waist. <<elseif hugeBelly($activeSlave)>> $possessiveCap huge belly is barely hidden by $possessive chunky waist. <<elseif bigBelly($activeSlave)>> $possessiveCap belly is hidden by $possessive chunky waist. <</if>> <<elseif $activeSlave.waist > 10>> an @@.red;unattractive waist@@ that conceals $possessive <<if $activeSlave.visualAge > 25>>girlish<<else>>womanly<</if>> figure<<if $activeSlave.weight > 30>> and accentuates how fat $pronoun is<<elseif $activeSlave.weight < -30>> despite how thin $pronoun is<</if>>. <<if hyperBellyTwo($activeSlave)>> $possessiveCap titanic belly lewdly bulges out the sides of $possessive waist.<<if $activeSlave.preg > 3>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>> <<elseif hyperBellyOne($activeSlave)>> $possessiveCap gigantic belly barely distends her $possessive waist. <<elseif hugeBelly($activeSlave)>> $possessiveCap huge belly is barely visible to either side of $possessive waist. <<elseif bigBelly($activeSlave)>> $possessiveCap belly is barely hidden by $possessive waist. <</if>> <<elseif $activeSlave.waist >= -10>> an average waist for a <<if $activeSlave.visualAge > 25>>girl<<else>>woman<</if>><<if $activeSlave.weight > 30>>, though it looks broader since $pronoun's fat<<elseif $activeSlave.weight < -30>>, though it looks narrower since $pronoun's thin<</if>>. <<if hyperBellyTwo($activeSlave)>> $possessiveCap titanic belly lewdly bulges out the sides of $possessive waist.<<if $activeSlave.preg > 3>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>> <<elseif hyperBellyOne($activeSlave)>> $possessiveCap gigantic belly barely distends her $possessive waist. <<elseif hugeBelly($activeSlave)>> $possessiveCap huge belly is barely visible to either side of $possessive waist. <<elseif bigBelly($activeSlave)>> $possessiveCap belly is barely hidden by $possessive waist. <</if>> <<elseif $activeSlave.waist >= -40>> a nice @@.pink;feminine waist@@ that gives $object a <<if $activeSlave.visualAge > 25>>girlish<<else>>womanly<</if>> figure<<if $activeSlave.weight > 30>> despite $possessive extra weight<<elseif $activeSlave.weight < -30>> and accentuates how thin $pronoun is<</if>>. <<if hyperBellyTwo($activeSlave)>> $possessiveCap titanic belly lewdly bulges out the sides of $possessive feminine waist.<<if $activeSlave.preg > 3>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>> <<elseif hyperBellyOne($activeSlave)>> $possessiveCap gigantic belly lewdly distends her $possessive feminine waist. <<elseif hugeBelly($activeSlave)>> $possessiveCap huge belly juts out slightly to either side of $possessive feminine waist. <<elseif bigBelly($activeSlave)>> $possessiveCap belly is barely visible around $possessive feminine waist. <</if>> <<elseif $activeSlave.waist >= -95>> a hot @@.pink;wasp waist@@ that gives $possessive an hourglass figure<<if $activeSlave.weight > 30>> despite $possessive extra weight<<elseif $activeSlave.weight < -30>> further accentuated by how thin $pronoun is<</if>>. <<if hyperBellyTwo($activeSlave)>> $possessiveCap titanic belly lewdly bulges out the sides of $possessive narrow waist and continues nearly half a meter farther to either side.<<if $activeSlave.preg > 3>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>> <<elseif hyperBellyOne($activeSlave)>> $possessiveCap gigantic belly lewdly distends massively to either side of $possessive narrow waist. <<elseif hugeBelly($activeSlave)>> $possessiveCap huge belly bulges to either side of $possessive narrow waist. <<elseif bigBelly($activeSlave)>> $possessiveCap belly is visible around $possessive narrow waist. <</if>> <<else>> an @@.pink;absurdly narrow waist@@ that gives $possessive a cartoonishly hourglass figure<<if $activeSlave.weight > 30>> made even more ludicrous by $possessive extra weight<<elseif $activeSlave.weight < -30>> made even more ludicrous by how thin $pronoun is<</if>>. <<if hyperBellyTwo($activeSlave)>> $possessiveCap titanic belly lewdly bulges out the sides of $possessive very narrow waist and continues nearly half a meter farther to either side.<<if $activeSlave.preg > 3>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>> <<elseif hyperBellyOne($activeSlave)>> $possessiveCap gigantic belly lewdly distends massively to either side of $possessive very narrow waist. <<elseif hugeBelly($activeSlave)>> $possessiveCap huge belly bulges lewdly to either side of $possessive very narrow waist. <<elseif bigBelly($activeSlave)>> $possessiveCap belly is visible to either side of $possessive very narrow waist. <</if>> <</if>>
amomynous0/fc
devNotes/legacy files/oldPregDesc
none
bsd-3-clause
22,811
:: SA hormone effects [nobr] <<set $hormones = $slaves[$i].hormones>> <<if ($hormones > -2)>> <<if ($slaves[$i].balls != 0)>> <<if ($hormones != 0) || ($hormoneUpgradePower < 2)>> <<set $hormones -= 1>> <</if>> <</if>> <</if>> <<if ($hormones < 2)>> <<if ($slaves[$i].ovaries != 0)>> <<if ($hormones != 0) || ($hormoneUpgradePower < 2)>> <<set $hormones += 1>> <</if>> <</if>> <</if>> <<if ($hormones > 1)>> $possessiveCap hormonal balance is heavily feminine. <<elseif ($hormones < -1)>> $possessiveCap hormonal balance is heavily masculine. <<elseif ($hormones > 0)>> $possessiveCap hormonal balance is feminine. <<elseif ($hormones < 0)>> $possessiveCap hormonal balance is masculine. <<else>> $pronounCap has a neutral hormonal balance. <</if>> <<if $hormoneUpgradeMood == 0>> <<if $slaves[$i].hormones > 0>> <<if $slaves[$i].balls != 0>> $possessiveCap <<if $hormoneUpgradeMood == 0>>feminine treatments have to fight<<else>>advanced treatments brutally overpower<</if>> $possessive natural hormones, <<if $slaves[$i].devotion > 50>> but $pronoun's a good enough slave to suppress the occasional moodiness. <<else>> causing @@.mediumorchid;occasional moodiness.@@ <<set $slaves[$i].devotion -= 1>> <</if>> <</if>> <</if>> <<if $slaves[$i].hormones < 0>> <<if $slaves[$i].ovaries != 0>> $possessiveCap <<if $hormoneUpgradeMood == 0>>masculine treatments have to fight<<else>>advanced treatments brutally overpower<</if>> $possessive natural hormones, <<if $slaves[$i].devotion > 50>> but $pronoun's a good enough slave to suppress the occasional moodiness. <<else>> causing @@.mediumorchid;occasional moodiness.@@ <<set $slaves[$i].devotion -= 1>> <</if>> <</if>> <</if>> <</if>> <<set _Effects = []>> <<if ($hormones >= 2)>> <<if ($hormoneUpgradeShrinkage == 0)>> <<if ($slaves[$i].dick > 1)>> <<set _Effects.push("DickShrink")>> <</if>> <<if ($slaves[$i].balls > 1)>> <<set _Effects.push("BallsShrink")>> <</if>> <<if ($slaves[$i].clit > 0)>> <<set _Effects.push("ClitSmaller")>> <</if>> <</if>> <<if ($slaves[$i].voice < 3) && ($slaves[$i].voice > 0)>> <<set _Effects.push("VoiceHigher")>> <</if>> <<if ($slaves[$i].vagina > -1) && ($slaves[$i].ovaries != 0) && ($slaves[$i].vaginaLube < 2)>> <<set _Effects.push("VaginaWetter")>> <</if>> <<if (($slaves[$i].butt-$slaves[$i].buttImplant) < 2)>> <<set _Effects.push("ButtBigger")>> <</if>> <<if (($slaves[$i].boobs-$slaves[$i].boobsImplant) < 500)>> <<set _Effects.push("BoobsBigger")>> <</if>> <<if ($slaves[$i].face-$slaves[$i].faceImplant < 0) && ($slaves[$i].face <= 95)>> <<set _Effects.push("FaceSofter")>> <</if>> <<if ($slaves[$i].faceShape == "masculine")>> <<set _Effects.push("FaceSofterAndrogynous")>> <<elseif ($slaves[$i].faceShape == "androgynous")>> <<set _Effects.push("FaceNormal")>> <</if>> <<if ($slaves[$i].physicalAge < 25)>> <<if ($slaves[$i].shoulders > -1)>> <<set _Effects.push("ShouldersNarrower")>> <</if>> <<if (($slaves[$i].hips-$slaves[$i].hipsImplant) < 1)>> <<set _Effects.push("HipsBroader")>> <</if>> <</if>> <<if ($slaves[$i].muscles > 30) && ($slaves[$i].diet != "muscle building")>> <<set _Effects.push("MusclesSofter")>> <</if>> <<if ($slaves[$i].nipples == "tiny")>> <<set _Effects.push("NipplesBigger")>> <</if>> <<if ($slaves[$i].height > 180)>> <<set _Effects.push("Shorter")>> <</if>> <<if ($slaves[$i].devotion <= 20)>> <<set _Effects.push("Devoted")>> <</if>> <<if ($slaves[$i].trust <= 20)>> <<set _Effects.push("Trusting")>> <</if>> <<if ($slaves[$i].attrXY < 95)>> <<set _Effects.push("MaleAttracted")>> <</if>> <<if ($slaves[$i].waist > 10)>> <<set _Effects.push("WaistNarrower")>> <</if>> <<elseif ($hormones > 0) && ($slaves[$i].ovaries == 0)>> <<if ($hormoneUpgradeShrinkage == 0)>> <<if ($slaves[$i].dick > 2)>> <<set _Effects.push("DickShrink")>> <</if>> <<if ($slaves[$i].balls > 2)>> <<set _Effects.push("BallsShrink")>> <</if>> <<if ($slaves[$i].clit > 1)>> <<set _Effects.push("ClitSmaller")>> <</if>> <</if>> <<if ($slaves[$i].voice < 2) && ($slaves[$i].voice > 0)>> <<set _Effects.push("VoiceHigher")>> <</if>> <<if ($slaves[$i].vagina > -1) && ($slaves[$i].ovaries != 0) && ($slaves[$i].vaginaLube < 1)>> <<set _Effects.push("VaginaWetter")>> <</if>> <<if (($slaves[$i].butt-$slaves[$i].buttImplant) < 2)>> <<set _Effects.push("ButtBigger")>> <</if>> <<if (($slaves[$i].boobs-$slaves[$i].boobsImplant) < 300)>> <<set _Effects.push("BoobsBigger")>> <</if>> <<if ($slaves[$i].face-$slaves[$i].faceImplant < 0) && ($slaves[$i].face < 40)>> <<set _Effects.push("FaceSofter")>> <</if>> <<if ($slaves[$i].faceShape == "masculine")>> <<set _Effects.push("FaceSofterAndrogynous")>> <</if>> <<if ($slaves[$i].physicalAge < 22)>> <<if ($slaves[$i].shoulders > 0)>> <<set _Effects.push("ShouldersNarrower")>> <</if>> <<if (($slaves[$i].hips - $slaves[$i].hipsImplant) < 0)>> <<set _Effects.push("HipsBroader")>> <</if>> <</if>> <<if ($slaves[$i].muscles > 30) && ($slaves[$i].diet != "muscle building")>> <<set _Effects.push("MusclesSofter")>> <</if>> <<if ($slaves[$i].attrXY < 80)>> <<set _Effects.push("MaleAttracted")>> <</if>> <<if ($slaves[$i].waist > 40)>> <<set _Effects.push("WaistNarrower")>> <</if>> <<elseif ($hormones <= -2)>> <<if ($slaves[$i].dick > 0) && ($slaves[$i].dick < 4)>> <<set _Effects.push("DickGrow")>> <</if>> <<if ($slaves[$i].balls > 0) && ($slaves[$i].balls < 4)>> <<set _Effects.push("BallsGrow")>> <</if>> <<if ($slaves[$i].clit < 2) && ($slaves[$i].dick == 0)>> <<set _Effects.push("ClitBigger")>> <</if>> <<if ($slaves[$i].voice > 1)>> <<set _Effects.push("VoiceLower")>> <</if>> <<if ($slaves[$i].vagina > -1) && ($slaves[$i].vaginaLube > 0)>> <<set _Effects.push("VaginaDrier")>> <</if>> <<if ($hormoneUpgradeShrinkage == 0)>> <<if (($slaves[$i].butt-$slaves[$i].buttImplant) > 2)>> <<set _Effects.push("ButtSmaller")>> <</if>> <<if (($slaves[$i].boobs-$slaves[$i].boobsImplant) > 500)>> <<set _Effects.push("BoobsSmaller")>> <</if>> <</if>> <<if ($slaves[$i].face-$slaves[$i].faceImplant < 0) && ($slaves[$i].face > 10)>> <<set _Effects.push("FaceHarder")>> <</if>> <<if ($slaves[$i].faceShape == "androgynous")>> <<set _Effects.push("FaceMasculine")>> <<elseif ($slaves[$i].faceShape != "masculine")>> <<set _Effects.push("FaceHarderAndrogynous")>> <</if>> <<if ($slaves[$i].physicalAge < 25)>> <<if ($slaves[$i].shoulders < 1)>> <<set _Effects.push("ShouldersBroader")>> <</if>> <<if ($slaves[$i].hips > -1)>> <<set _Effects.push("HipsNarrower")>> <</if>> <</if>> <<if ($slaves[$i].muscles <= 95) && ($slaves[$i].diet != "slimming")>> <<set _Effects.push("MusclesHarder")>> <</if>> <<if ($slaves[$i].nipples == "huge")>> <<set _Effects.push("NipplesSmaller")>> <</if>> <<if ($slaves[$i].height < 155)>> <<set _Effects.push("Taller")>> <</if>> <<if ($slaves[$i].devotion > 20)>> <<set _Effects.push("Rebellious")>> <</if>> <<if ($slaves[$i].attrXY < 95)>> <<set _Effects.push("FemaleAttracted")>> <</if>> <<if ($slaves[$i].waist <= 40)>> <<set _Effects.push("WaistBroader")>> <</if>> <<elseif ($hormones < 0) && ($slaves[$i].balls == 0)>> <<if ($slaves[$i].dick > 0) && ($slaves[$i].dick < 2)>> <<set _Effects.push("DickGrow")>> <</if>> <<if ($slaves[$i].balls > 0) && ($slaves[$i].balls < 2)>> <<set _Effects.push("BallsGrow")>> <</if>> <<if ($slaves[$i].clit < 1) && ($slaves[$i].dick == 0)>> <<set _Effects.push("ClitBigger")>> <</if>> <<if ($slaves[$i].voice > 2)>> <<set _Effects.push("VoiceLower")>> <</if>> <<if ($slaves[$i].vagina > -1) && ($slaves[$i].vaginaLube > 1)>> <<set _Effects.push("VaginaDrier")>> <</if>> <<if ($hormoneUpgradeShrinkage == 0)>> <<if (($slaves[$i].butt-$slaves[$i].buttImplant) > 2)>> <<set _Effects.push("ButtSmaller")>> <</if>> <<if (($slaves[$i].boobs-$slaves[$i].boobsImplant) > 800)>> <<set _Effects.push("BoobsSmaller")>> <</if>> <</if>> <<if ($slaves[$i].face-$slaves[$i].faceImplant < 0) && ($slaves[$i].face > 40)>> <<set _Effects.push("FaceHarder")>> <</if>> <<if ($slaves[$i].faceShape == "androgynous")>> <<set _Effects.push("FaceMasculine")>> <</if>> <<if ($slaves[$i].physicalAge < 22)>> <<if ($slaves[$i].shoulders < 0)>> <<set _Effects.push("ShouldersBroader")>> <</if>> <<if ($slaves[$i].hips > 0)>> <<set _Effects.push("HipsNarrower")>> <</if>> <</if>> <<if ($slaves[$i].muscles <= 5) && ($slaves[$i].diet != "slimming")>> <<set _Effects.push("MusclesHarder")>> <</if>> <<if ($slaves[$i].height < 155)>> <<set _Effects.push("Taller")>> <</if>> <<if ($slaves[$i].attrXY < 80)>> <<set _Effects.push("FemaleAttracted")>> <</if>> <<if ($slaves[$i].waist <= 10)>> <<set _Effects.push("WaistBroader")>> <</if>> <</if>> <<if _Effects.length < 1>> $possessiveCap body has fully adapted to its hormones. <<if $slaves[$i].drugs == "hormone enhancers">> <<set $slaves[$i].drugs = "none">> <</if>> <<elseif (_Effects.length < random(-10,10)) && ($hormoneUpgradePower == 0)>> $pronounCap does not experience significant hormone effects this week. <<else>> <<set _Effects = _Effects.random()>> <<switch _Effects>> <<case "DickShrink">> Hormonal effects cause @@.orange;$possessive dick to atrophy.@@ <<set $slaves[$i].dick -= 1>> <<case "DickGrow">> Hormonal effects cause @@.lime;$possessive micropenis to return to a more normal size.@@ <<set $slaves[$i].dick += 1>> <<case "BallsShrink">> Hormonal effects cause @@.orange;$possessive testicles to atrophy.@@ <<set $slaves[$i].balls -= 1>> <<case "BallsGrow">> Hormonal effects cause @@.lime;$possessive balls to drop.@@ <<set $slaves[$i].balls += 1>> <<case "VoiceHigher">> Hormonal effects cause @@.lime;$possessive voice to become higher and more feminine.@@ <<set $slaves[$i].voice += 1>> <<case "VoiceLower">> Hormonal effects cause @@.orange;$possessive voice to become deeper and less feminine.@@ <<set $slaves[$i].voice -= 1>> <<case "VaginaWetter">> Hormonal effects cause @@.lime;$possessive vagina to produce more copious natural lubricant.@@ <<set $slaves[$i].vaginaLube += 1>> <<case "VaginaDrier">> Hormonal effects cause @@.orange;$possessive vagina to produce less natural lubricant.@@ <<set $slaves[$i].vaginaLube -= 1>> <<case "ButtBigger">> Hormonal effects cause @@.lime;the natural size of $possessive butt to increase.@@ <<set $slaves[$i].butt += 1>> <<if $slaves[$i].weight >= -80>> <<set $slaves[$i].weight -= 10>> <</if>> <<case "ButtSmaller">> Hormonal effects cause @@.orange;the natural size of $possessive butt to decrease.@@ <<set $slaves[$i].butt -= 1>> <<if $slaves[$i].weight < 190>> <<set $slaves[$i].weight += 10>> <</if>> <<case "BoobsBigger">> Hormonal effects cause @@.lime;the natural size of $possessive tits to increase.@@ <<set $slaves[$i].boobs += 100>> <<if $slaves[$i].weight >= -90>> <<set $slaves[$i].weight -= 1>> <</if>> <<case "BoobsSmaller">> Hormonal effects cause @@.orange;the natural size of $possessive tits to shrink.@@ <<set $slaves[$i].boobs -= 100>> <<if $slaves[$i].weight < 200>> <<set $slaves[$i].weight += 1>> <</if>> <<case "FaceSofter">> Hormonal effects cause @@.lime;$possessive facial structure to soften and become less unattractive.@@ <<FaceIncrease $slaves[$i] 20>> <<case "FaceHarder">> Hormonal effects cause @@.orange;$possessive facial structure to harden and become less attractive.@@ <<set $slaves[$i].face = Math.trunc($slaves[$i].face-20,-100,100)>> <<case "FaceSofterAndrogynous">> Hormonal effects cause @@.lime;$possessive face to soften into androgyny.@@ <<set $slaves[$i].faceShape = "androgynous">> <<case "FaceHarderAndrogynous">> Hormonal effects cause @@.orange;$possessive face to harden into androgyny.@@ <<set $slaves[$i].faceShape = "androgynous">> <<case "FaceNormal">> Hormonal effects cause @@.lime;$possessive face to soften into femininity.@@ <<set $slaves[$i].faceShape = "normal">> <<case "FaceMasculine">> Hormonal effects cause @@.orange;$possessive face to harden into masculinity.@@ <<set $slaves[$i].faceShape = "masculine">> <<case "ClitSmaller">> Hormonal effects cause @@.orange;$possessive clit to shrink significantly.@@ <<set $slaves[$i].clit -= 1>> <<case "ClitBigger">> Hormonal effects cause @@.lime;$possessive clit to grow significantly.@@ <<set $slaves[$i].clit += 1>> <<case "ShouldersNarrower">> $possessiveCap body has not yet found its final bone structure, which typically happens in the mid-twenties. Hormonal effects cause @@.lime;$possessive shoulders to develop into a more feminine narrowness@@ than they would have done naturally. <<set $slaves[$i].shoulders -= 1>> <<case "ShouldersBroader">> $possessiveCap body has not yet found its final bone structure, which typically happens in the mid-twenties. Hormonal effects cause @@.orange;$possessive shoulders to develop more broadly@@ than they would have done naturally. <<set $slaves[$i].shoulders += 1>> <<case "HipsBroader">> $possessiveCap body has not yet found its final bone structure, which typically happens in the mid-twenties. Hormonal effects cause @@.lime;$possessive hips to develop more broadly@@ than they would have done naturally. <<set $slaves[$i].hips += 1>> <<case "HipsNarrower">> $possessiveCap body has not yet found its final bone structure, which typically happens in the mid-twenties. Hormonal effects cause @@.orange;$possessive hips to develop more narrowly@@ than they would have done naturally. <<set $slaves[$i].hips -= 1>> <<case "MusclesSofter">> Hormonal effects @@.orange;reduce $possessive musculature.@@ <<set $slaves[$i].muscles -= 2>> <<case "MusclesHarder">> Hormonal effects @@.lime;build up $possessive musculature.@@ <<set $slaves[$i].muscles += 2>> <<case "NipplesBigger">> Hormonal effects cause $possessive tiny @@.lime;nipples to grow to a more normal size.@@ <<set $slaves[$i].nipples = "cute">> <<case "NipplesSmaller">> Hormonal effects cause $possessive huge @@.orange;nipples to shrink to a more reasonable size.@@ <<set $slaves[$i].nipples = "cute">> <<case "Shorter">> $pronounCap has not yet reached the age at which height becomes fixed. Hormonal effects cause @@.orange;$object to lose a bit of height@@ that $pronoun would naturally have maintained. <<set $slaves[$i].height -= 1>> <<case "Taller">> $pronounCap has not yet reached the age at which height becomes fixed. Hormonal effects cause @@.lime;$object to gain a slight height advantage@@ that $pronoun would not naturally have reached. <<set $slaves[$i].height += 1>> <<case "Devoted">> Hormonal effects make $object a bit more @@.hotpink;docile.@@ <<set $slaves[$i].devotion += 1>> <<case "Rebellious">> Hormonal effects @@.mediumorchid;make $object a bit less docile.@@ <<set $slaves[$i].devotion -= 1>> <<case "Trusting">> Hormonal effects make $object a bit more @@.mediumaquamarine;trusting.@@ <<set $slaves[$i].trust += 1>> <<case "MaleAttracted">> Hormonal effects cause $object to become @@.green;more attracted to men.@@ <<set $slaves[$i].attrXY += 2+$hormoneUpgradePower>> <<case "FemaleAttracted">> Hormonal effects cause $object to become @@.green;more attracted to women.@@ <<set $slaves[$i].attrXX += 2+$hormoneUpgradePower>> <<case "WaistNarrower">> Hormonal effects cause $possessive @@.green;waist to narrow.@@ <<set $slaves[$i].waist -= 2+$hormoneUpgradePower>> <<case "WaistBroader">> Hormonal effects cause $possessive @@.orange;waist to broaden.@@ <<set $slaves[$i].waist += 2+$hormoneUpgradePower>> <<default>> ERROR: bad hormone effect: _Effects <</switch>> <</if>> <<if ($hormones < 0)>> <<if ($slaves[$i].dick > 0)>> <<if ($slaves[$i].devotion > 0)>> <<if ($slaves[$i].career == "a Futanari Sister")>> $pronounCap wishes $pronoun were more feminine, but isn't unhappy to be off hormones, since $pronoun likes being a stiff dicked futa. <<elseif ($slaves[$i].fetish == "buttslut") && ($slaves[$i].fetishStrength > 60) && ($slaves[$i].fetishKnown == 1)>> $pronounCap wishes $pronoun were more feminine, but $pronoun loves getting fucked in the butt so much that it doesn't much bother $object. <<elseif ($slaves[$i].fetish == "sadist") && ($slaves[$i].fetishStrength > 60) && ($slaves[$i].fetishKnown == 1)>> Life is easier for effeminate slaves, but $pronoun loves abusing other slaves so much that $pronoun likes being able to get hard. <<elseif ($slaves[$i].fetish == "dom") && ($slaves[$i].fetishStrength > 60) && ($slaves[$i].fetishKnown == 1)>> Life is easier for effeminate slaves, but $pronoun loves dominating other girls so much that $pronoun likes being able to get hard. <<elseif ($slaves[$i].energy > 95)>> $pronounCap wishes $pronoun were more feminine, but $pronoun loves getting fucked like a good little sex slave so much that $pronoun doesn't think about it much. <<elseif ($slaves[$i].devotion <= 20)>> Life is easier for effeminate slaves, so @@.mediumorchid;$pronoun's a little unhappy@@ that $pronoun isn't getting hormones to make $object more feminine. <<set $slaves[$i].devotion -= 2>> <<elseif ($slaves[$i].devotion <= 50)>> $pronounCap wants to be a good slave girl, so @@.mediumorchid;$pronoun's a little unhappy@@ that $pronoun isn't getting hormones to make $object look more feminine. <<set $slaves[$i].devotion -= 2>> <<else>> $pronounCap wishes $pronoun were more feminine, but $pronoun accepts your judgment in not giving $object hormones to make that happen. <</if>> <</if>> <</if>> <</if>> <<if Math.abs($slaves[$i].hormones) > 1>> <<set $slaves[$i].chem += 0.5>> <</if>>
amomynous0/fc
devNotes/legacy files/saHormoneEffects (old).txt
Text
bsd-3-clause
17,649
:: SA rest [nobr] takes the week off. <<if $slaves[$i].fuckdoll > 0>>It has nothing to do but <<if $slaves[$i].amp == 0>>lie<<else>>stand<</if>> in place.<</if>> <<if $slaves[$i].health > 90>> $possessiveCap health is so outstanding that rest does not improve it. <<elseif $slaves[$i].health > -100>> $possessiveCap @@.green;health recovers@@ with rest. <<set $slaves[$i].health += 10>> <</if>> <<if $slaves[$i].fuckdoll == 0, $slaves[$i].fetish != "mindbroken">> <<if $slaves[$i].devotion > 20>> <<if $slaves[$i].trust <= 20>> Being allowed to rest @@.mediumaquamarine;reduces $possessive fear@@ of you. <<set $slaves[$i].trust += 4>> <<elseif $slaves[$i].trust <= 50>> Being allowed to rest @@.mediumaquamarine;builds $possessive trust@@ in you. <<set $slaves[$i].trust += 2>> <<else>> Being allowed to rest @@.mediumaquamarine;confirms $possessive trust@@ in you. <<set $slaves[$i].trust += 2>> <</if>> <<else>> <<if $slaves[$i].trust < -20>> Being allowed to rest @@.mediumaquamarine;reduces $possessive fear@@ of you. <<set $slaves[$i].trust += 4>> <</if>> <</if>> <</if>>
amomynous0/fc
devNotes/legacy files/saRest.txt
Text
bsd-3-clause
1,123
:: SA servant [nobr] <<SlavePronouns $slaves[$i]>> works as a servant. $pronounCap performs the lowest jobs in your penthouse, cleaning up after your other slaves, bathing them, helping them dress, and giving them sexual relief. <<if $servantsQuarters > 0>> <<if (($universalRulesFacilityWork == 1) && ($slaves[$i].assignment == "be a servant") && ($servantsQuartersSpots > 0)) || ($slaves[$i].assignment == "work as a servant")>> <<if ($slaves[$i].assignment == "be a servant")>> Since there's extra space in the servants' quarters, $assistantName attaches $object to the cadre of maids there. <<set $servantsQuartersSpots -= 1>> <</if>> <<if ($Stewardess != 0)>> This brings $object under $Stewardess.slaveName's supervision. The Stewardess <<if $slaves[$i].devotion < -20>>subjects $object to corrective rape when $possessive service is imperfect, or when the Stewardess feels like raping $object, forcing the poor slave to @@.yellowgreen;find refuge in work.@@<<elseif $slaves[$i].devotion <= 20>>molests $object, encouraging the poor slave to keep $possessive head down and @@.yellowgreen;work harder.@@<<else>>uses sex as a reward, getting $object off when $pronoun @@.yellowgreen;works harder.@@<</if>> <<set $cash += $stewardessBonus>> <</if>> <</if>> <</if>> <<if ($slaves[$i].trust < -20)>> $pronounCap is frightened of punishment and works very hard, @@.yellowgreen;reducing the upkeep@@ of your slaves. <<elseif ($slaves[$i].devotion < -20)>> $pronounCap is reluctant, requiring your other slaves to force $possessive services, and does not @@.yellowgreen;reduce upkeep@@ of your slaves much. <<elseif ($slaves[$i].devotion <= 20)>> $pronounCap is hesitant, requiring your other slaves to demand $possessive services, and only slightly @@.yellowgreen;reduces upkeep@@ of your slaves. <<elseif ($slaves[$i].devotion <= 50)>> $pronounCap is obedient, offering your other slaves $possessive services, and moderately @@.yellowgreen;reduces the upkeep@@ of your slaves. <<elseif ($slaves[$i].devotion <= 95)>> $pronounCap is devoted, happily giving your other slaves $possessive services, and @@.yellowgreen;reduces the upkeep@@ of your slaves. <<else>> $pronounCap is so happy to serve your other slaves that $pronoun often sees to their needs before they know they have them, and greatly @@.yellowgreen;reduces the upkeep@@ of your slaves. <</if>> <<set _oral = random(5,10)>> <<set $slaves[$i].oralCount += _oral>> <<set $oralTotal += _oral>> <<if ($slaves[$i].relationship == -2)>> $pronounCap does $possessive best to perfect your domesticity due to $possessive emotional bond to you. <<elseif ($slaves[$i].relationship == -3) && $slaves[$i].devotion > 50>> $pronounCap does $possessive very best to be the perfect housewife, making $possessive an outstanding servant. <</if>> <<if !setup.servantCareers.includes($slaves[$i].career) && $slaves[$i].skillS < $masteredXP>> <<set $slaves[$i].skillS += random(1,($slaves[$i].intelligence+4)*2)>> <</if>> <<if setup.servantCareers.includes($slaves[$i].career)>> She has experience with house keeping from her life before she was a slave, making her more effective. <<elseif $slaves[$i].skillS >= $masteredXP>> She has experience with house keeping from working for you, making her more effective. <</if>> <<if ($slaves[$i].fetishStrength > 60)>> <<if ($slaves[$i].fetish == "submissive") && ($slaves[$i].fetishKnown == 1)>> $possessiveCap natural affinity for submission increases $possessive effectiveness. <<elseif ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetish == "dom")>> $possessiveCap sexual appetite for domination reduces $possessive effectiveness. <</if>> <</if>> <<if ($slaves[$i].energy < 20)>> $possessiveCap frigidity allows $object to ignore the intercourse all around $object, making $object very efficient. <<elseif ($slaves[$i].energy < 40)>> $possessiveCap low sex drive keeps $object from becoming too distracted by the intercourse all around $object, making $object more efficient. <</if>> <<if (($slaves[$i].eyes <= -1) && ($slaves[$i].eyewear != "corrective glasses") && ($slaves[$i].eyewear != "corrective contacts")) || ($slaves[$i].eyewear == "blurring glasses") || ($slaves[$i].eyewear == "blurring contacts")>> $possessiveCap bad vision makes $object a worse servant. <</if>> <<if ($slaves[$i].lactation > 0)>> Since $pronoun is <<if ($slaves[$i].devotion > 20) || ($slaves[$i].trust < -20)>> lactating, $pronoun serves <<else>> lactating, and disobedient, $pronoun is restrained to serve <</if>> as a drink dispenser at mealtimes, and makes a meaningful contribution to $possessive fellow slaves' nutrition in concert with the feeding systems. <</if>>
amomynous0/fc
devNotes/legacy files/saServant.txt
Text
bsd-3-clause
4,692
:: Walk Past [nobr] // <<set _target = "">> <<if $familyTesting == 1 && totalRelatives($activeSlave) > 0 && random(1,100) > 80>> <<set $relation = randomRelatedSlave($activeSlave)>> <<if $relation.mother == $activeSlave.ID || $relation.father == $activeSlave.ID>> <<set $relationType = "daughter">> <<elseif $activeSlave.mother == $relation.ID>> <<set $relationType = "mother">> <<elseif $activeSlave.father == $relation.ID>> <<set $relationType = "father">> <<else>> <<switch areSisters($activeSlave, $relation)>> <<case 1>> <<set $relationType = "twin">> <<case 2>> <<set $relationType = "sister">> <<case 3>> <<set $relationType = "half-sister">> <</switch>> <</if>> <<set _seed = 110, $partner = "relation">> <<elseif $familyTesting == 0 && ($activeSlave.relation !== 0) && (random(1,100) > 80)>> <<set _seed = 110, $partner = "relation">> <<elseif ($activeSlave.relationship > 0) && (random(1,100) > 70)>> <<set _seed = 120, $partner = "relationship">> <<elseif ($activeSlave.rivalry !== 0) && ($activeSlave.amp !== 1) && (random(1,100) > 70)>> <<set _seed = 130, $partner = "rivalry">> <<else>> <<set _seed = random(1,100), $partner = "">> <</if>> <<SlavePronouns $activeSlave>> <<setLocalPronouns $activeSlave>> <span id="walk"> <<if ($partner !== "relationship") || ($activeSlave.relationship == 1) || ($activeSlave.relationship == 2) || ($activeSlave.releaseRules == "restrictive")>> $activeSlave.slaveName <<switch $activeSlave.assignment>> <<case "work in the dairy">> <<if ($dairyRestraintsSetting > 1)>> is strapped to a milking machine in $dairyName. <<elseif ($activeSlave.lactation == 0) && ($activeSlave.balls > 0)>> is working in $dairyName, and is having $his cock milked. As you watch, $his balls tighten as the phallus up $his butt brings $him closer to a copious ejaculation. <<elseif _seed > 50>> is working in $dairyName, and is having $his tits milked, but you have a good view of $his <<if $seeRace == 1>>$activeSlave.race <</if>>body on the feeds. <<else>> is working in $dairyName, and is massaging $his sore tits, but you have a good view of $his <<if $seeRace == 1>>$activeSlave.race <</if>>body on the feeds. <</if>> <<case "work in the brothel">> <<Beauty $activeSlave>> is working in $brothelName, and is <<if ($beauty > 100) && (random(1,2) == 1)>> <<if (_seed > 80)>> riding one customer's dick while $he gives another a blowjob. <<elseif (_seed > 60)>> sucking one customer's cock while giving another a handjob. <<elseif (_seed > 40)>> eating out one customer's cunt while another uses a strap-on on $him. <<elseif (_seed > 20)>> getting pounded by two women wearing strap-ons. <<else>> being double penetrated by a pair of customers. <</if>> <<elseif (_seed > 80)>> riding a customer's dick. <<elseif (_seed > 60)>> sucking a customer's cock. <<elseif (_seed > 40)>> pleasuring a customer's cunt. <<elseif (_seed > 20)>> getting pounded by a woman wearing a strap-on. <<else>> being held down and buttfucked by a customer. <</if>> You have a voyeuristic view of $his <<if $seeRace == 1>>$activeSlave.race <</if>>body on the feeds. <<case "serve the public">> <<Beauty $activeSlave>> is serving the public, and is <<if ($beauty > 100) && (random(1,2) == 1)>> <<if (_seed > 80)>> riding one citizen's dick while $he gives another a blowjob. <<elseif (_seed > 60)>> sucking one citizen's cock while giving another a handjob. <<elseif (_seed > 40)>> eating out one citizen's cunt while another uses a strap-on on $him. <<elseif (_seed > 20)>> getting pounded by two women wearing strap-ons. <<else>> being double penetrated by a pair of citizens. <</if>> <<elseif (_seed > 80)>> riding a citizen's dick. <<elseif (_seed > 60)>> sucking a citizen's cock. <<elseif (_seed > 40)>> pleasuring a citizen's cunt. <<elseif (_seed > 20)>> getting pounded by a citizen wearing a strap-on. <<else>> being held down and buttfucked by a citizen. <</if>> You have a voyeuristic view of $his <<if $seeRace == 1>>$activeSlave.race <</if>>body on the feeds. <<case "serve in the club">> is working in $clubName, <<if _seed > 50>> displaying $his <<if $seeRace == 1>>$activeSlave.race <</if>>body, keeping citizens company, and flirting with anyone who shows interest. <<else>> or rather just off it, having taken a prominent citizen back to a discreet room <<if $seeRace == 1>> so he can use $his $activeSlave.race <</if>>body. <</if>> <<case "work as a servant">> <<if _seed > 50>> was scrubbing the penthouse floor, until another slave requested oral service. <<else>> is scrubbing the penthouse floor. <</if>> <<case "serve in the master suite">> <<if $activeSlave.fuckdoll > 0>> waiting for use in $masterSuiteName, next to a display case full of other sex toys. <<elseif $masterSuiteUpgradeLuxury == 1>> <<if _seed > 50>> is kneeling on the big bed in $masterSuiteName, awaiting your return. <<else>> is beautifying $himself in $masterSuiteName so $he'll be pretty when you return. <</if>> <<elseif $masterSuiteUpgradeLuxury == 2>> is in $masterSuiteName's fuckpit, <<if (_seed > 80)>> with a pair of $his fellow fucktoys industriously sucking on $his nipples. <<elseif (_seed > 60)>> <<if $activeSlave.anus > 0>> taking double penetration from <<else>> being spitroasted by <</if>> a pair of $his fellow fucktoys. <<elseif (_seed > 40)>> <<if canAchieveErection($activeSlave)>> with $his dick inside <<elseif $activeSlave.dick > 0>> getting $his soft dick sucked by <<else>> getting eaten out by <</if>> a fellow fucktoy. <<elseif (_seed > 20)>> <<if $activeSlave.anus > 0>> getting $his ass pounded <<else>> getting eaten out <</if>> by a fellow fucktoy. <<else>> performing oral sex on a fellow fucktoy. <</if>> <<else>> <<if ($activeSlave.energy > 95)>> is having enthusiastic sex with your other pets while waiting for your cock. <<else>> is having idle sex with several of your other toys while they await your pleasure. <<if ($activeSlave.fetishKnown == 1)>> <<switch $activeSlave.fetish>> <<case "buttslut">> $He's happily taking a strap-on up $his asspussy. <<case "cumslut">> $He's happily performing oral on another slave. <<case "dom">> $He's holding another slave down while $he fucks $him. <<case "submissive">> $He's letting another slave hold $his down as $he fucks $him. <<case "sadist">> $He's spanking another slave with one hand and giving $his a handjob with the other. <<case "masochist">> Another slave is spanking $him and giving $him a handjob at the same time. <<case "boobs">> $He has a slave sucking on each of $his nipples while $he gives each a handjob. <<case "pregnancy">> <<if $activeSlave.belly >= 5000>> $He's sighing contentedly as $his rounded belly is sensually rubbed. <<else>> $He's happily roleplaying conceiving a child as $he gets fucked. <</if>> <</switch>> <</if>> <</if>> <</if>> <<case "stay confined">> is confined, but you have a fine view of $his <<if $seeRace == 1>>$activeSlave.race <</if>>body on the feed from $his cell. <<case "be confined in the cellblock">> is confined in $cellblockName, but you have a fine view of $his <<if $seeRace == 1>>$activeSlave.race <</if>>body on the feed from $his cell. <<case "be confined in the arcade" "work a glory hole">> is confined in <<if $activeSlave.assignment == "be confined in the arcade">>$arcadeName<<else>>a glory hole<</if>>; <<if (_seed > 80)>> $possessive ass is held out at cock height, and a customer is using $possessive fuckhole. <<elseif (_seed > 60)>> $possessive mouth is held open at cock height, and a customer is fucking $possessive throat. <<elseif (_seed > 40)>> a woman is abusing $possessive with a couple of dildos. <<elseif (_seed > 20)>> a customer is cruelly spanking $possessive helpless butt. <<else>> a customer is harshly using $possessive defenseless anus. <</if>> <<case "be the Madam">> is managing $brothelName: $he is making sure all the customers are satisfied and all the whores are working hard. <<case "be your Concubine">> <<if random(1,2) == 1>> is looking after $himself; $he spends many hours every day on $his beauty regimen. <<else>> is checking over the appearance of your harem, making sure everyone looks perfect. <</if>> <<case "be the Wardeness">> is looking after the cells: $he is <<if _seed > 50>> forcing a resistant slave to orally service $him. <<else>> beating a rebellious slave across the buttocks. <</if>> <<case "live with your Head Girl">> <<if $HeadGirl != 0>> is getting the Head Girl's suite cleaned up while $HeadGirl.slaveName is out working. <<else>> is making sure the Head Girl's suite is in order for your next Head Girl. <</if>> <<case "be the Stewardess">> is managing the house servants in $servantsQuartersName: $he overseeing the laboring house slaves and punishing any that step out of line. <<case "be the Schoolteacher">> is teaching classes in $schoolroomName: $he is leading the slave students in rote recitation. <<case "be the DJ">> is right where $he belongs, in the DJ booth in $clubName $he leads. $He's bouncing in time with the beat to show off $his tits. <<case "be the Milkmaid">> is working in $dairyName, looking after your stock. /% <<case "guard you">> is standing discreetly behind your left shoulder, watching for threats. $He has a straight ceramic sword strapped to $his back and a machine pistol at $his hip. %/ <<default>> /* WALKPASTS START HERE */ <<if ($activeSlave.heels == 1) && !["flats", "none"].includes($activeSlave.shoes)>> walks past your desk with the tiny swaying steps $he must take in order to walk on $his surgically altered legs. $He is on $his way to <<elseif ["heels", "pumps"].includes($activeSlave.shoes)>> walks past your desk with the swaying steps $he must take in $his high heels. $He is on $his way to <<elseif ($activeSlave.shoes == "boots")>> walks past your desk with the confident gait encouraged by $his high heeled boots. $He is on $his way to <<elseif ($activeSlave.shoes == "extreme heels")>> walks past your desk with the tiny swaying steps $he must take in $his ridiculous heels. $He is on $his way to <<elseif ($activeSlave.heels == 1)>> crawls past your desk on all fours, since $he has not been allowed the heels $he needs to walk upright. $He is on $his way to <<elseif ($activeSlave.amp == 1)>> is carried past your desk by one of your other slaves. $He is on $his way to <<elseif !canWalk($activeSlave)>> is helped past your desk by one of your other slaves. $He is on $his way to <<else>> walks past your desk on $his way to <</if>> <<if $activeSlave.inflation > 0 && random(1,100) > 70>> <<if $activeSlave.inflationMethod == 1>> gorge $himself with $activeSlave.inflationType; <<elseif $activeSlave.inflationMethod == 2>> fill $his rear with <<switch $activeSlave.inflationType>> <<case "water" "milk" "cum" "food">> $activeSlave.inflationType; <<default>> <<print $activeSlave.inflationType>>s; <</switch>> <<elseif $activeSlave.inflationMethod == 3>> <<if $activeSlave.inflationType == "milk">> suckle from $his assigned nipple until $he is sufficiently filled with milk; <<else>> suck $his assigned dick until $he is sufficiently filled with cum; <</if>> <</if>> <<else>> <<switch $activeSlave.assignment>> <<case "rest">> <<if _seed > 50>> bed; <<else>> eat; <</if>> <<case "get milked">> drain $his <<if ($activeSlave.lactation == 0) && ($activeSlave.balls > 0)>> cum-filled, <<if $seeRace == 1>>$activeSlave.race <</if>>balls; <<elseif ($activeSlave.lactation > 0) && ($activeSlave.balls > 0)>> cum-filled, <<if $seeRace == 1>>$activeSlave.race <</if>>balls and milky udders; <<else>> milky <<if $seeRace == 1>>$activeSlave.race <</if>>udders; <</if>> <<case "whore">> <<if _seed > 50>> sell $his <<if $seeRace == 1>>$activeSlave.race <</if>>body; <<else>> ply $his trade as a whore; <</if>> <<case "serve the public">> <<if _seed > 50>> serve the public; <<else>> be a public slut; <</if>> <<case "rest in the spa">> relax in $spaName; <<case "be a servant">> clean up after your other slaves; <<case "learn in the schoolroom">> attend classes <<if $Schoolteacher == 0>> in $schoolroomName; <<else>> under $Schoolteacher.slaveName, perhaps literally; <</if>> <<case "be a subordinate slave">> service your other slaves; <<case "be the Attendant">> look after the girls in $spaName; <<case "take classes">> attend classes with $assistantName; <<case "be your Head Girl">> oversee your other slaves; /% <<case "please you">> sit next to you and wait for <<if _seed > 50>> you to fuck $him; <<else>> $his Master to use $his<<if $seeRace == 1>> $activeSlave.race<</if>> body; <</if>> %/ <<case "recruit girls">> use $his connections to recruit slaves; <<default>> $activeSlave.assignment; <</switch>> <</if>> /* end inflation blurb */ <<if ($activeSlave.amp == 1)>> $he is carried by on $his way to $his next task. <<elseif $activeSlave.fetish == "mindbroken">> $he does not even glance at you as $he goes mindlessly to $his next task. <<elseif $activeSlave.devotion < -50>> $he directs a look of pure hatred at where you sit as $he passes. <<elseif $activeSlave.devotion < -20>> $he cannot keep the loathing from $his face as $he passes. <<elseif $activeSlave.devotion <= 20>> $he passes quickly, obviously hoping to avoid you. <<elseif $activeSlave.devotion <= 50>> $he rushes by, hurrying to $his next task. <<else>> as $he passes $he gives you a look of adoration. <</if>> <</switch>> /* WALKPASTS END */ <</if>> /* TIME TOGETHER EXCEPTION ENDS */ <<if ($partner == "rivalry")>> <<set _partnerSlave = getSlave($activeSlave.rivalryTarget)>> <<setLocalPronouns _partnerSlave 2>> <<if ndef _partnerSlave>> <<goto "Main">> <</if>> Meanwhile, <<if $activeSlave.rivalry >= 3>> _partnerSlave.slaveName, whom $he hates, <<elseif $activeSlave.rivalry >= 2>> $his rival _partnerSlave.slaveName <<else>> _partnerSlave.slaveName, whom $he dislikes, <</if>> <<switch _partnerSlave.assignment>> <<case "be your agent">> is shaping society in _his2 assigned arcology. <<case "live with your agent">> is helping _his2 lover shape society in _his2 assigned arcology. <<case "stay confined">> is confined, but you have a fine view of _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body on the feed from _his2 cell. <<case "work in the brothel">> is working in the brothel, and is <<if _seed > 80>> riding a customer's dick. <<elseif _seed > 60>> sucking a customer's cock. <<elseif _seed > 40>> pleasuring a customer's cunt. <<elseif _seed > 20>> getting pounded by a woman wearing a strap-on. <<else>> being held down and buttfucked by a customer. <</if>> You have a voyeuristic view of _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body on the feeds. <<case "serve the public">> is serving the public, and is <<if _seed > 80>> riding a citizen's dick. <<elseif _seed > 60>> sucking a citizen's cock. <<elseif _seed > 40>> pleasuring a citizen's cunt. <<elseif _seed > 20>> getting pounded by a citizen wearing a strap-on. <<else>> being held down and buttfucked by a citizen. <</if>> You have a voyeuristic view of _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body on the feeds. <<case "work in the dairy">> <<if ($dairyRestraintsSetting > 1)>> is strapped to a milking machine in $dairyName. <<elseif (_partnerSlave.lactation == 0) && (_partnerSlave.balls > 0)>> is working in $dairyName, and is having _his2 cock milked. As you watch, _his2 balls tighten as the phallus up _his2 butt brings _him2 closer to a copious ejaculation. <<elseif _seed > 50>> is working in $dairyName, having _his2 tits milked. <<else>> is working in $dairyName, massaging _his2 sore tits. <</if>> You have a good view of _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body on the feeds. <<case "serve in the club">> is working on the club, <<if _seed > 50>> displaying _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body, keeping citizens company, and flirting with anyone who shows interest. <<else>> or rather just off it, having taken a prominent citizen back to a discreet room <<if $seeRace == 1>> so he can use _his2 _partnerSlave.race <</if>>body. <</if>> <<case "work as a servant">> <<if _seed > 50>> was scrubbing the penthouse floor, until another slave requested oral service. <<else>> is scrubbing the penthouse floor. <</if>> <<case "guard you">> is standing discreetly behind your left shoulder, watching for threats. _he2 has a straight ceramic sword strapped to _his2 back and a machine pistol at _his2 hip. <<case "be the Madam">> is managing the brothel: _he2 is making sure all the customers are satisfied and all the whores are working hard. <<case "be the Stewardess">> is managing the house servants: _he2 overseeing the laboring house slaves and punishing any that step out of line. <<case "be the Schoolteacher">> is teaching classes: _he2 is leading the slave students in rote recitation. <<case "be the Attendant">> is seeing to girls in the spa: _he2 is gently soaping an exhausted slave. <<case "be the DJ">> is taking the lead on the club: _he2 greets new arrivals, flirts with them prettily, and subtly guides them towards choice sluts. <<case "be the Milkmaid">> is working in the dairy, looking after your stock. <<default>> <<if (_partnerSlave.heels == 1) && !["flats", "none"].includes(_partnerSlave.shoes)>> walks past your desk with the tiny swaying steps _he2 must take in order to walk on _his2 surgically altered legs. _he2 is on _his2 way to <<elseif ["heels", "pumps"].includes(_partnerSlave.shoes)>> walks past your desk with the swaying steps _he2 must take in _his2 high heels. _he2 is on _his2 way to <<elseif (_partnerSlave.shoes == "boots")>> walks past your desk with the confident gait encouraged by _his2 high heeled boots. _he2 is on _his2 way to <<elseif (_partnerSlave.shoes == "extreme heels")>> walks past your desk with the tiny swaying steps _he2 must take in _his2 ridiculous heels. _he2 is on _his2 way to <<elseif (_partnerSlave.heels == 1)>> crawls past your desk on all fours, since _he2 has not been allowed the heels _he2 needs to walk upright. _he2 is on _his2 way to <<elseif (_partnerSlave.amp == 1)>> is carried past your desk by one of your other slaves. _he2 is on _his2 way to <<elseif !canWalk(_partnerSlave)>> is helped past your desk by one of your other slaves. _he2 is on _his2 way to <<else>> walks past your desk on _his2 way to <</if>> <<switch _partnerSlave.assignment>> <<case "whore">> <<if _seed > 50>> whore; <<else>> sell _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body; <</if>> <<case "serve the public">> <<if _seed > 50>> serve the public; <<else>> be a public slut; <</if>> <<case "rest">> <<if _seed > 50>> eat; <<else>> bed; <</if>> <<case "get milked">> <<if _seed > 50>> milk _his2 overfull <<if $seeRace == 1>>_partnerSlave.race <</if>>tits; <<else>> drain _his2 milky <<if $seeRace == 1>>_partnerSlave.race <</if>>udders; <</if>> <<case "please you">> wait next to you and wait for you to fuck _him2; <<case "be a subordinate slave">> service your other slaves; <<case "be a servant">> clean up after your other slaves; <<case "be your Head Girl">> oversee your other slaves; <<case "recruit girls">> use _his2 connections to recruit slaves; <<default>> _partnerSlave.assignment; <</switch>> <<if (_partnerSlave.amp == 1)>> _he2 is carried by on _his2 way to _his2 next task. <<elseif _partnerSlave.fetish == "mindbroken">> _he2 does not even glance at you as _he2 goes mindlessly to _his2 next task. <<elseif _partnerSlave.devotion < -50>> _he2 directs a look of pure hatred at where you sit as _he2 passes. <<elseif _partnerSlave.devotion < -20>> _he2 cannot keep the loathing from _his2 face as _he2 passes. <<elseif _partnerSlave.devotion <= 20>> _he2 passes quickly, obviously hoping to avoid you. <<elseif _partnerSlave.devotion <= 50>> _he2 rushes by, hurrying to _his2 next task. <<else>> as _he2 passes _he2 gives you a look of adoration. <</if>> <</switch>> <<set _target = "FRival", _partnerSlave = null>> <<elseif ($partner == "relationship") && ($activeSlave.relationship >= 3) && ($activeSlave.releaseRules !== "restrictive") && ($activeSlave.releaseRules !== "masturbation")>> <<set _partnerSlave = getSlave($activeSlave.relationshipTarget)>> <<setLocalPronouns _partnerSlave 2>> <<if ndef _partnerSlave>> <<goto "Main">> <</if>> <<if $activeSlave.relationship <= 3>> <<set _activeSlaveRel = "friend with benefits">> <<elseif $activeSlave.relationship <= 4>> <<set _activeSlaveRel = "lover">> <<else>> <<set _activeSlaveRel = "slave wife">> <</if>> $activeSlave.slaveName and _partnerSlave.slaveName are <<set _seed = random(1,3)>> <<if ["be your agent", "be confined in the arcade"].includes(_partnerSlave.assignment) || (_partnerSlave.assignment == "work in the dairy" && $DairyRestraintsSetting >= 2)>> <<if _partnerSlave.assignment == "work in the dairy" && $DairyRestraintsSetting >= 2>> trying their best to maintain their relationship with _partnerSlave.slaveName being part of $dairyName. <<elseif _partnerSlave.assignment == "be your agent">> catching up with each other over a video call. Running an arcology in your stead comes with its perks. <<elseif _partnerSlave.assignment == "be confined in the arcade">> trying their best to maintain their relationship with _partnerSlave.slaveName being nothing more than holes in $arcadeName. <</if>> <<elseif _seed == 1>> /* SEXY TIMES */ <<if (($activeSlave.fetish == "dom") || ($activeSlave.fetish == "sadist")) && ($activeSlave.dick > 0) && canPenetrate($activeSlave) && ((_partnerSlave.fetish == "dom") || (_partnerSlave.fetish == "sadist")) && (_partnerSlave.dick > 0) && canPenetrate(_partnerSlave)>> performing double anal on another slave. They're face to face over their sub's shoulders, looking into each other's eyes with every appearance of enjoyment and love, since for them rubbing dicks inside another slave's butt is what constitutes healthy sexual activity. _partnerSlave.slaveName is on the bottom, and holds their victim atop _him2 with _partnerSlave.slaveName's cock already hilted in $his ass so $activeSlave.slaveName can force $himself inside as well. They enjoy the overstimulated girl's struggles. <<set $activeSlave.penetrativeCount++, _partnerSlave.penetrativeCount++, $penetrativeTotal += 2>> <<elseif ($activeSlave.energy > 95)>> having loud sex <<if $activeSlave.livingRules == "luxurious">>in the nice little room they share.<<elseif ($activeSlave.ID == $HeadGirl.ID) && ($HGSuite == 1)>>in $activeSlave.ID's suite.<<else>>out in the open in the slave dormitory.<</if>> $activeSlave.slaveName is such a sexual addict that $he wants it all the time, and _partnerSlave.slaveName does _his2 best to help $his _activeSlaveRel get off. <<if ($activeSlave.vagina > 0) || ($activeSlave.anus > 0)>> $activeSlave.slaveName is down on $his knees in front of _partnerSlave.slaveName, taking <<if (_partnerSlave.dick > 1) && canPenetrate(_partnerSlave)>> _his2 cock doggy style, <<elseif (_partnerSlave.dick > 1)>> a finger fuck, since $his _activeSlaveRel is impotent, <<else>> a strap-on, doggy style, <</if>> <<if ($activeSlave.vagina > 0) && canDoVaginal($activeSlave) && (random(1,100) > 50)>> in $his pussy. <<VaginalVCheck>> <<elseif canDoAnal($activeSlave) >> in $his ass. <<AnalVCheck>> <</if>> <<set _partnerSlave.penetrativeCount++, $penetrativeTotal++>> <<else>> They're scissoring enthusiastically and playing with each other's breasts. <<set $activeSlave.mammaryCount++, _partnerSlave.mammaryCount++, $mammaryTotal += 2>> <</if>> <<elseif ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1) && $activeSlave.fetish != "none">> <<switch $activeSlave.fetish>> <<case "boobs">> snuggling rather sexually <<if $activeSlave.livingRules == "luxurious">>in the nice little room they share.<<elseif ($activeSlave.ID == $HeadGirl.ID) && ($HGSuite == 1)>>in $activeSlave.ID's suite.<<else>>out in the open in the slave dormitory.<</if>> $activeSlave.slaveName loves having $his breasts touched and massaged, so _partnerSlave.slaveName looks after $his _activeSlaveRel's tits. <<if (_partnerSlave.amp == 1)>> Since _partnerSlave.slaveName is an amputee $activeSlave.slaveName has _him2 propped on _his2 belly so _he2 can easily suckle and nuzzle. <<else>> They're spooning in bed with _partnerSlave.slaveName forming the large spoon so _he2 can reach around and play with $activeSlave.slaveName's boobs. <</if>> <<set $activeSlave.mammaryCount++, _partnerSlave.mammaryCount++, $mammaryTotal += 2>> <<case "buttslut">> having loud buttsex <<if $activeSlave.livingRules == "luxurious">>in the nice little room they share.<<elseif ($activeSlave.ID == $HeadGirl.ID) && ($HGSuite == 1)>>in $activeSlave.ID's suite.<<else>>out in the open in the slave dormitory.<</if>> $activeSlave.slaveName is such an anal addict that $he wants it all the time, and _partnerSlave.slaveName does _his2 best to keep _his2 _activeSlaveRel satisfied. <<if ($activeSlave.anus > 0)>> $activeSlave.slaveName is down on $his knees in front of _partnerSlave.slaveName, taking <<if (_partnerSlave.dick > 1) && canPenetrate(_partnerSlave)>> _his2 cock up the butt. <<if ($activeSlave.anus > 2) && (_partnerSlave.dick > 2)>> $activeSlave.slaveName is clearly enjoying getting buttfucked by a cock big enough to make $his feel tight again. <<elseif ($activeSlave.anus > 2) && (_partnerSlave.dick > 1)>> $activeSlave.slaveName's gaping ass takes _partnerSlave.slaveName's cock easily. <<elseif ($activeSlave.anus > 2)>> $activeSlave.slaveName can barely tell _partnerSlave.slaveName's little dick is even there, but it's the thought that counts. <<elseif ($activeSlave.anus < 2) && (_partnerSlave.dick > 2)>> $activeSlave.slaveName is panting and writhing with the pain of taking $his _activeSlaveRel's massive dick. _partnerSlave.slaveName is doing _his2 best to be gentle. <<elseif ($activeSlave.anus < 2) && (_partnerSlave.dick > 1)>> $activeSlave.slaveName is writhing with the mixed pain and pleasure of having $his tight ass stretched by $his _activeSlaveRel's nice cock. <<elseif ($activeSlave.anus < 2)>> $activeSlave.slaveName's tight anus and _partnerSlave.slaveName's little dick work well together; $activeSlave.slaveName can take it easily, and _partnerSlave.slaveName gets to fuck a hole that's tight, even for $his. <</if>> <<elseif (_partnerSlave.dick > 1)>> a finger fuck, since $his _activeSlaveRel is impotent. <<if ($activeSlave.anus > 2)>> Or rather, a fist fuck, since that's what it takes to satisfy $his _activeSlaveRel's gaping hole. <<elseif ($activeSlave.anus > 1)>> _partnerSlave.slaveName is using three fingers to stretch $his _activeSlaveRel's asshole. <<else>> _partnerSlave.slaveName is using two fingers to gently fuck $his _activeSlaveRel's tight anus. <</if>> <<else>> a strap-on up the butt, doggy style. _partnerSlave.slaveName is using a <<if ($activeSlave.anus > 2)>> massive fake phallus to satisfy $hi2 _activeSlaveRel's gaping hole. <<elseif ($activeSlave.anus > 1)>> decent-sized fake phallus to stretch $his _activeSlaveRel's asshole. <<else>> small fake phallus to gently fuck $his _activeSlaveRel's tight anus. <</if>> <</if>> <<AnalVCheck>> <<set _partnerSlave.penetrativeCount++, $penetrativeTotal++>> <<else>> Since $activeSlave.slaveName is an anal virgin, _partnerSlave.slaveName is rimming $his _activeSlaveRel, who is clearly enjoying $himself. <<set $activeSlave.oralCount++, _partnerSlave.oralCount++, $oralTotal += 2>> <</if>> <<case "cumslut">> sharing oral pleasure <<if $activeSlave.livingRules == "luxurious">>in the nice little room they share.<<elseif ($activeSlave.ID == $HeadGirl.ID) && ($HGSuite == 1)>>in $activeSlave.ID's suite.<<else>>out in the open in the slave dormitory.<</if>> $activeSlave.slaveName is such an oral addict that $he wants it all the time, and _partnerSlave.slaveName certainly doesn't mind all the loving oral attention. They're lying down to 69 comfortably, <<if (_partnerSlave.dick > 1) && canPenetrate(_partnerSlave)>> with $activeSlave.slaveName hungrily sucking $his _activeSlaveRel's turgid cock. <<set _partnerSlave.penetrativeCount++, $penetrativeTotal++>> <<elseif (_partnerSlave.dick > 1) && (_partnerSlave.anus > 0)>> with $activeSlave.slaveName hungrily sucking $his _activeSlaveRel's limp cock. $He has a finger up poor impotent _partnerSlave.slaveName's butt to stimulate _his2 prostate so _he2 can cum for $his. <<set _partnerSlave.penetrativeCount++, $penetrativeTotal++>> <<elseif (_partnerSlave.dick > 1)>> with $activeSlave.slaveName hungrily sucking $his _activeSlaveRel's limp cock. $He has a finger massaging poor impotent _partnerSlave.slaveName's perineum in the hope of stimulating _him2 so _he2 can cum for $his. <<set _partnerSlave.penetrativeCount++, $penetrativeTotal++>> <<else>> and $activeSlave.slaveName is sating $his oral fixation for the moment by eagerly polishing $his _activeSlaveRel's pearl. <<set _partnerSlave.oralCount++, $oralTotal++>> <</if>> <<set $activeSlave.oralCount++, $oralTotal++>> <<case "submissive">> wrestling <<if $activeSlave.livingRules == "luxurious">>in the nice little room they share.<<elseif ($activeSlave.ID == $HeadGirl.ID) && ($HGSuite == 1)>>in $activeSlave.ID's suite.<<else>>out in the open in the slave dormitory.<</if>> $activeSlave.slaveName is such a submissive that $he wants it rough all the time, and _partnerSlave.slaveName does _his2 best to give _his2 _activeSlaveRel the constant abuse $he loves. $activeSlave.slaveName is down on $his knees in front of _partnerSlave.slaveName, worshipping <<if (_partnerSlave.dick > 1) && canPenetrate(_partnerSlave)>> _his2 cock <<set _partnerSlave.penetrativeCount++, $penetrativeTotal++>> <<elseif (_partnerSlave.dick > 1)>> _his2 asshole <<set _partnerSlave.oralCount++, $oralTotal++>> <<else>> _his2 cunt <<set _partnerSlave.oralCount++, $oralTotal++>> <</if>> while _partnerSlave.slaveName rains light slaps and loving insults down on _his2 bitch of a _activeSlaveRel. <<set $activeSlave.oralCount++, $oralTotal++>> <<case "dom">> wrestling <<if $activeSlave.livingRules == "luxurious">>in the nice little room they share.<<elseif ($activeSlave.ID == $HeadGirl.ID) && ($HGSuite == 1)>>in $activeSlave.ID's suite.<<else>>out in the open in the slave dormitory.<</if>> $activeSlave.slaveName is so dominant with other slaves that $he prefers to take what $he wants, and _partnerSlave.slaveName does _his2 best to give _his2 _activeSlaveRel the struggle fucking $he loves. $activeSlave.slaveName is on top of _partnerSlave.slaveName getting oral, though it's more of a rough facefuck as $activeSlave.slaveName forces <<if ($activeSlave.dick > 1) && canPenetrate($activeSlave)>> $his cock <<else>> a strap-on <</if>> down _partnerSlave.slaveName's throat. <<set _partnerSlave.oralCount++, $activeSlave.penetrativeCount++, $oralTotal++, $penetrativeTotal++>> <<case "sadist">> playing pain games <<if $activeSlave.livingRules == "luxurious">>in the nice little room they share.<<elseif ($activeSlave.ID == $HeadGirl.ID) && ($HGSuite == 1)>>in $activeSlave.ID's suite.<<else>>out in the open in the slave dormitory.<</if>> $activeSlave.slaveName loves hurting other slaves, even $his friends, and _partnerSlave.slaveName submits to $his agonizing ministrations as often as $activeSlave.slaveName can cajole or force _him2 into it. $activeSlave.slaveName has _partnerSlave.slaveName over $his knee and is methodically tanning _partnerSlave.slaveName's $activeSlave.skin ass. <<case "masochist">> playing pain games <<if $activeSlave.livingRules == "luxurious">>in the nice little room they share.<<elseif ($activeSlave.ID == $HeadGirl.ID) && ($HGSuite == 1)>>in $activeSlave.ID's suite.<<else>>out in the open in the slave dormitory.<</if>> $activeSlave.slaveName loves being hurt, so _partnerSlave.slaveName frequently indulges $him with spanking, slapping, pinching, and more exotic forms of abuse. _partnerSlave.slaveName has $activeSlave.slaveName over _his2 knee and is methodically tanning $activeSlave.slaveName's $activeSlave.skin ass. <<case "humiliation">> having open and visible sex <<if $activeSlave.livingRules == "luxurious">>in the doorway of the nice little room they share.<<else>>out in the hallway near the slave dormitory.<</if>> $activeSlave.slaveName pretends to hate fucking where other slaves can see $him, but _partnerSlave.slaveName knows _his2 _activeSlaveRel gets off on the mild humiliation. _partnerSlave.slaveName <<if ($activeSlave.vagina > 0) || ($activeSlave.anus > 0)>> has _his2 back propped up against a doorframe and $activeSlave.slaveName in _his2 lap, so $he can blush at any passing slave as $he shyly rides _partnerSlave.slaveName's <<if (_partnerSlave.dick > 1) && canPenetrate(_partnerSlave)>> cock <<else>> strap-on <</if>> <<if ($activeSlave.vagina > 0) && canDoVaginal($activeSlave) && (random(1,100) > 50)>> in $his pussy. <<VaginalVCheck>> <<else>> up $his ass. <<AnalVCheck>> <</if>> <<set _partnerSlave.penetrativeCount++, $penetrativeTotal++>> <<else>> is giving $activeSlave.slaveName oral out in the open so $he can blush and shiver as passing slaves see $his climax. <<set $activeSlave.oralCount++, _partnerSlave.oralCount++, $oralTotal += 2>> <</if>> <<case "pregnancy">> having intimate sex <<if $activeSlave.livingRules == "luxurious">>in the nice little room they share.<<elseif ($activeSlave.ID == $HeadGirl.ID) && ($HGSuite == 1)>>in $activeSlave.ID's suite.<<else>>out in the open in the slave dormitory.<</if>> $activeSlave.slaveName's <<if $activeSlave.belly >= 1500>>middle is heavily rounded<<else>>desire to be bred is raging<</if>>, and _partnerSlave.slaveName does _his2 best to keep _his2 _activeSlaveRel satisfied. _partnerSlave.slaveName <<if (canDoVaginal($activeSlave) && $activeSlave.vagina > 0) || (canDoAnal($activeSlave) && $activeSlave.anus > 0)>> <<if _partnerSlave.bellyPreg >= 10000 || _partnerSlave.bellyImplant >= 10000>> is <<if _partnerSlave.bellyPreg >= 1500>> heavily pregnant <<else>> hugely gravid <</if>> $himself2, so _he2 has $activeSlave.slaveName on $his back so that _he2 can penetrate $him as best _he2 can with _his2 <<elseif _partnerSlave.bellyPreg > 5000 || _partnerSlave.bellyImplant >= 10000>> is <<if _partnerSlave.bellyPreg >= 1500>> pregnant <<else>> gravid <</if>> $himself2, so _he2 has $activeSlave.slaveName on $his back so that _he2 can penetrate $him easier with _his2 <<else>> has $activeSlave.slaveName on $his back so that tease $his belly as _he2 fucks $him with _his2 <</if>> <<if (_partnerSlave.dick > 1) && canPenetrate(_partnerSlave)>> cock <<else>> strap-on <</if>> <<if ($activeSlave.vagina > 0) && canDoVaginal($activeSlave) && (random(1,100) > 50)>> in $his <<if $activeSlave.pregKnown == 1>>pregnant <</if>>pussy. <<VaginalVCheck>> <<else>> in $his ass. <<AnalVCheck>> <</if>> <<set _partnerSlave.penetrativeCount++, $penetrativeTotal++>> <<else>> is giving $activeSlave.slaveName oral to try and sate $his lust. <<set $activeSlave.oralCount++, _partnerSlave.oralCount++, $oralTotal += 2>> <</if>> <<default>> having intimate sex <<if $activeSlave.livingRules == "luxurious">>in the nice little room they share.<<elseif ($activeSlave.ID == $HeadGirl.ID) && ($HGSuite == 1)>>in $activeSlave.ID's suite.<<else>>out in the open in the slave dormitory.<</if>> <</switch>> <<elseif !$activeSlave.need>> just spooning in bed. Since $activeSlave.slaveName gets fucked at work, _partnerSlave.slaveName understands that what $he really wants from _him2 is emotional intimacy. They're cuddling quietly, offering each other silent comfort and companionship. <<elseif ($activeSlave.dick > 1) && canPenetrate($activeSlave) && (_partnerSlave.vagina > 0) && canDoVaginal(_partnerSlave) && (_partnerSlave.amp != 1) && ($activeSlave.amp != 1)>> <<if $activeSlave.livingRules == "luxurious">>in bed in the nice little room they share,<<else>>out in the open on $activeSlave.slaveName's bedroll in the slave dormitory,<</if>> making love in the missionary position. _partnerSlave.slaveName has _his2 legs wrapped around $activeSlave.slaveName's waist and _his2 arms hugging $him around the chest, and is looking deep into $his eyes as _he2 enjoys the wonderful feeling of _his2 _activeSlaveRel's cock in _his2 womanhood. <<set $activeSlave.penetrativeCount++, _partnerSlave.vaginalCount++, $vaginalTotal++, $penetrativeTotal++>> <<elseif ($activeSlave.clit > 2) && ($activeSlave.vaginalAccessory != "chastity belt") && ($activeSlave.vaginalAccessory != "combined chastity") && (_partnerSlave.vagina > 0) && canDoVaginal(_partnerSlave) && (_partnerSlave.amp != 1) && ($activeSlave.amp != 1)>> <<if $activeSlave.livingRules == "luxurious">>in bed in the nice little room they share,<<else>>out in the open on $activeSlave.slaveName's bedroll in the slave dormitory,<</if>> making love in the missionary position. _partnerSlave.slaveName has _his2 legs wrapped around $activeSlave.slaveName's waist and _his2 arms hugging $him around the chest, and is looking deep into $his eyes as _he2 enjoys the wonderful feeling of _his2 _activeSlaveRel's huge clit in _his2 womanhood. <<set _partnerSlave.vaginalCount++, $activeSlave.penetrativeCount++, $vaginalTotal++, $penetrativeTotal++>> <<elseif ($activeSlave.dick > 1) && canPenetrate($activeSlave) && canDoAnal(_partnerSlave) && (_partnerSlave.anus > 0) && (_partnerSlave.amp != 1) && ($activeSlave.amp != 1)>> <<if $activeSlave.livingRules == "luxurious">>in bed in the nice little room they share,<<else>>out in the open on $activeSlave.slaveName's bedroll in the slave dormitory,<</if>> having gentle anal sex while spooning. $activeSlave.slaveName is enjoying _partnerSlave.slaveName's ass, and is doing $his best to ensure $his _activeSlaveRel enjoys being buttfucked. $He's nibbling $his _activeSlaveRel's ears and neck, cupping a breast with one hand, and lightly stimulating _him2 with the other. <<set _partnerSlave.analCount++, $activeSlave.penetrativeCount++, $analTotal++, $penetrativeTotal++>> <<elseif ($activeSlave.clit > 2) && canDoAnal(_partnerSlave) && (_partnerSlave.anus > 0) && (_partnerSlave.amp != 1) && ($activeSlave.amp != 1)>> <<if $activeSlave.livingRules == "luxurious">>in bed in the nice little room they share,<<else>>out in the open on $activeSlave.slaveName's bedroll in the slave dormitory,<</if>> managing to have clitoral-anal sex. _partnerSlave.slaveName is face-down with _his2 ass up, spreading _his2 buttocks as wide as possible, giving _his2 _activeSlaveRel the opportunity to squat over _him2 and penetrate it with $his huge, erect clit. $activeSlave.slaveName can't thrust much, but the shocking lewdness of the act is enough for both of them. <<set _partnerSlave.analCount++, $activeSlave.penetrativeCount++, $analTotal++, $penetrativeTotal++>> <<elseif ($activeSlave.dick > 1) && canPenetrate($activeSlave) && (_partnerSlave.amp != 1) && ($activeSlave.amp != 1)>> <<if $activeSlave.livingRules == "luxurious">>in bed in the nice little room they share,<<else>>out in the open on $activeSlave.slaveName's bedroll in the slave dormitory,<</if>> spooning while $activeSlave.slaveName gently rubs $his cock between _partnerSlave.slaveName's thighs, pressed tightly together. Since _partnerSlave.slaveName is a virgin, this is the closest they can come to penetrative intercourse, but $activeSlave.slaveName is enjoying _partnerSlave.slaveName's body anyway, and is doing $his best to ensure $his _activeSlaveRel enjoys $himself. $He's nibbling $his _activeSlaveRel's ears and neck, cupping a breast with one hand, and lightly stimulating _him2 with the other. <<set $activeSlave.penetrativeCount++, $penetrativeTotal++>> <<elseif ($activeSlave.clit > 2) && ($activeSlave.vaginalAccessory != "chastity belt") && (_partnerSlave.amp != 1) && ($activeSlave.amp != 1)>> <<if $activeSlave.livingRules == "luxurious">>in the nice little room they share,<<else>>out in the open in the slave dormitory,<</if>> with _partnerSlave.slaveName down on $his knees in front of $activeSlave.slaveName. From behind _partnerSlave.slaveName it looks like $he's giving $his _activeSlaveRel a conventional, if enthusiastic, blowjob. Only on closer inspection does it become clear how unusual the oral is: $activeSlave.slaveName has such a huge clit that $his _activeSlaveRel can suck $him off just like it were a penis. <<set _partnerSlave.oralCount++, $activeSlave.penetrativeCount++, $oralTotal++, $penetrativeTotal++>> <<elseif (_partnerSlave.vagina > 0) && canDoVaginal(_partnerSlave) && (_partnerSlave.amp != 1) && ($activeSlave.amp != 1)>> <<if $activeSlave.livingRules == "luxurious">>in bed in the nice little room they share,<<else>>out in the open on $activeSlave.slaveName's bedroll in the slave dormitory,<</if>> making love in the missionary position. _partnerSlave.slaveName has _his2 legs wrapped around $activeSlave.slaveName's waist and _his2 arms hugging $him around the chest, and is looking deep into $his eyes as _he2 enjoys the feeling of _his2 _activeSlaveRel fucking _him2 with a strap-on. <<set _partnerSlave.vaginalCount++, $activeSlave.penetrativeCount++, $vaginalTotal++, $penetrativeTotal++>> <<elseif (_partnerSlave.anus > 0) && (_partnerSlave.amp != 1) && ($activeSlave.amp != 1) && canDoAnal(_partnerSlave)>> <<if $activeSlave.livingRules == "luxurious">>in bed in the nice little room they share,<<else>>out in the open on $activeSlave.slaveName's bedroll in the slave dormitory,<</if>> having gentle anal sex while spooning. $activeSlave.slaveName is enjoying penetrating _partnerSlave.slaveName's ass with a strap-on, and is doing $his best to ensure $his _activeSlaveRel enjoys being buttfucked. $He's nibbling $his _activeSlaveRel's ears and neck, cupping a breast with one hand, and lightly stimulating $him with the other. <<set _partnerSlave.analCount++, $activeSlave.penetrativeCount++, $analTotal++, $penetrativeTotal++>> <<elseif (_partnerSlave.amp != 1) && ($activeSlave.amp != 1)>> <<if $activeSlave.livingRules == "luxurious">>in bed in the nice little room they share,<<else>>out in the open on $activeSlave.slaveName's bedroll in the slave dormitory,<</if>> enjoying some mutual masturbation. <<elseif (_partnerSlave.amp == 1)>> just cuddling <<if $activeSlave.livingRules == "luxurious">>in bed in the nice little room they share.<<else>>on $activeSlave.slaveName's bedroll in the slave dormitory.<</if>> $activeSlave.slaveName is using _partnerSlave.slaveName's limbless torso as a pillow, which _partnerSlave.slaveName seems to be enjoying, by _his2 contented expression. <<else>> just cuddling <<if $activeSlave.livingRules == "luxurious">>in bed in the nice little room they share.<<else>>on $activeSlave.slaveName's bedroll in the slave dormitory.<</if>> They're lying quietly, offering each other silent comfort and companionship. <</if>> <<elseif _seed == 2>> /* CUDDLE TIME */ <<if ($activeSlave.energy > 95) && (random(0,2) == 0)>> lying in bed together. _partnerSlave.slaveName has somehow managed to exhaust _his2 _activeSlaveRel, and the sexually sated nympho is curled up with $his head on _partnerSlave.slaveName's chest, snoring lightly. _partnerSlave.slaveName is smiling fondly at $him. <<elseif (_partnerSlave.dick > 6) && ($activeSlave.amp !== 1)>> sleeping in bed together. $activeSlave.slaveName is cuddled up close to _partnerSlave.slaveName, and is cradling $his _activeSlaveRel's enormous, soft cock with one hand. <<elseif ($activeSlave.fetishKnown == 1) && $activeSlave.fetish != "none">> <<switch $activeSlave.fetish>> <<case "boobs">> sleeping in bed together. $activeSlave.slaveName is using _partnerSlave.slaveName's <<if _partnerSlave.boobs > 2000>>enormous breasts<<elseif _partnerSlave.boobs > 1000>>huge boobs<<elseif _partnerSlave.boobs > 300>>healthy tits<<else>>flat chest<</if>>, which $he loves, as a pillow. <<case "buttslut">> sleeping in bed together. _partnerSlave.slaveName is sleeping face down so $activeSlave.slaveName can use $his <<if _partnerSlave.butt > 5>>enormous posterior<<elseif _partnerSlave.butt > 2>>big butt<<elseif _partnerSlave.butt > 1>>trim behind<<else>>skinny ass<</if>>, which $activeSlave.slaveName loves, as a pillow. <<case "cumslut">> sleeping in bed together. $activeSlave.slaveName is spooning $his _activeSlaveRel, $his head nestled alongside _partnerSlave.slaveName's, $his <<if $activeSlave.lips > 70>>enormous<<elseif $activeSlave.lips > 40>>pillowlike<<elseif $activeSlave.lips > 10>>plush<<else>>pretty<</if>> lips wet from kissing $him to sleep. <<case "submissive" "masochist" "humiliation">> sleeping in bed together. $activeSlave.slaveName is being spooned by $his _activeSlaveRel, smiling peacefully at being held. <<case "dom" "sadist">> sleeping in bed together. $activeSlave.slaveName is spooning $his _activeSlaveRel possessively<<if $activeSlave.amp !== 1>>, and even in $his sleep, has a proprietary hand on _partnerSlave.slaveName's <<if _partnerSlave.balls > 0>>balls<<elseif _partnerSlave.balls > 0>>soft cock<<else>>pussy<</if>><</if>>. <<case "pregnancy">> sleeping in bed together. <<if $activeSlave.belly >= 5000 && _activeSlaveRel.belly >= 50000>> They are pressed as close as they can be with their rounded middles in the way. <<elseif $activeSlave.belly >= 5000>> $activeSlave.slaveName is spooning $his _activeSlaveRel possessively, $his rounded belly pushing into _his2 back. <<elseif _activeSlaveRel.belly >= 50000>> $activeSlave.slaveName is spooning $his _activeSlaveRel possessively<<if $activeSlave.amp != 1>>, and even in $his sleep, has a proprietary hand on _partnerSlave.slaveName's belly<</if>>. <<else>> $activeSlave.slaveName is being spooned by $his _activeSlaveRel, smiling peacefully at being held. <</if>> <</switch>> <<elseif $activeSlave.height > _partnerSlave.height>> sleeping in bed together, with the taller $activeSlave.slaveName curled around $his little _activeSlaveRel. <<elseif $activeSlave.amp == 1>> sleeping in bed together; _partnerSlave.slaveName is using $his limbless _activeSlaveRel as a pillow. <<elseif _partnerSlave.amp !== 1>> resting in bed together, holding hands in their sleep. <<else>> sleeping quietly in bed together. <</if>> <<else>> /* TOGETHER TIME */ <<if ($activeSlave.actualAge >= _partnerSlave.actualAge+10) && canTalk(_partnerSlave)>> tidying up their room together. _partnerSlave.slaveName is chattering about _his2 day, while $activeSlave.slaveName listens quietly, smiling fondly at $his _activeSlaveRel's prattle. <<elseif ($activeSlave.amp !== 1) && !canTalk($activeSlave)>> getting ready for bed. $activeSlave.slaveName is using gestures to tell $his $activeSlave.slaveName about $his day; _partnerSlave.slaveName is very patient and does _his2 best to follow. <<elseif ($activeSlave.behavioralQuirk == "confident") && canTalk($activeSlave)>> finishing up a meal together. $activeSlave.slaveName is concluding a story, $his clear confident voice ringing as $he relates a slight. <<elseif ($activeSlave.behavioralQuirk == "cutting") && canTalk($activeSlave)>> seeing to their chores together. $activeSlave.slaveName is making biting remarks about another one of your other slaves, with which $his _activeSlaveRel agrees tolerantly. <<elseif ($activeSlave.behavioralQuirk == "funny") && canTalk(_partnerSlave)>> seeing to their chores together. $activeSlave.slaveName has just produced some unintentional slapstick humor, and $his _activeSlaveRel is giggling helplessly at $his antics. <<elseif ($activeSlave.behavioralQuirk == "fitness")>> have just woken up. $activeSlave.slaveName is doing $his morning crunches, and $his _activeSlaveRel is sleepily sitting on $his feet to help. <<elseif ($activeSlave.behavioralQuirk == "insecure") && canTalk(_partnerSlave)>> have just woken up. $activeSlave.slaveName is getting dressed when $his _activeSlaveRel pays $him a compliment; $activeSlave.slaveName blushes and gives _partnerSlave.slaveName a kiss. <<elseif ($activeSlave.behavioralQuirk == "sinful") && canTalk($activeSlave)>> have just woken up. $activeSlave.slaveName appears to be praying, but to go by $his _activeSlaveRel's quiet mirth, $he seems to be substituting in some lewd words. <<elseif ($activeSlave.behavioralQuirk == "advocate") && canTalk($activeSlave)>> starting a meal together. A third, less well trained slave has asked $activeSlave.slaveName an innocent question, and is getting enthusiastic slave dogma in return. $His _activeSlaveRel smiles tolerantly. <<elseif ($activeSlave.amp == 1) && (_partnerSlave.amp !== 1)>> using some of their free time to watch the weather; _partnerSlave.slaveName carried _his2 _activeSlaveRel to a window so $he could look out with _him2. <<elseif ($activeSlave.amp !== 1) && (_partnerSlave.amp == 1)>> using some of their free time to watch the weather; $activeSlave.slaveName carried $his _activeSlaveRel to a window so _he2 could look out with $him. <<elseif $cockFeeder == 1>> taking in a meal together; they've chosen dispensers next to each other and are slurping away. <<elseif $suppository == 1>> taking their drugs together; they've chosen fuckmachines next to each other and are chatting quietly as they're sodomized. <<else>> eating a quiet meal together. <</if>> <</if>> /* CLOSE SEXY/CUDDLE/TOGETHER TIME */ <<set $slaves[$slaveIndices[_partnerSlave.ID]] = _partnerSlave>> <<set $slaves[$slaveIndices[$activeSlave.ID]] = $activeSlave>> <<set _target = "FRelation", _partnerSlave = null>> <<elseif ($partner == "relationship") || ($partner == "relation")>> <<set _partnerSlave = null>> <<if ($partner == "relation")>> <<if $familyTesting == 1>> <<set _partnerSlave = $relation>> <<setLocalPronouns _partnerSlave 2>> <<else>> <<set _partnerSlave = getSlave($activeSlave.relationTarget)>> <<setLocalPronouns _partnerSlave 2>> <</if>> <<else>> <<set _partnerSlave = getSlave($activeSlave.relationshipTarget)>> <<setLocalPronouns _partnerSlave 2>> <<if $activeSlave.relationship <= 1>> <<set _activeSlaveRel = "friend", _partnerRel = "friend">> <<elseif $activeSlave.relationship <= 2>> <<set _activeSlaveRel = "best friend", _partnerRel = "best friend">> <<elseif $activeSlave.relationship <= 3>> <<set _activeSlaveRel = "friend with benefits", _partnerRel = "friend with benefits">> <<elseif $activeSlave.relationship <= 4>> <<set _activeSlaveRel = "lover", _partnerRel = "lover">> <<elseif $activeSlave.relationship > 4>> <<set _activeSlaveRel = "slave wife", _partnerRel = "slave wife">> <</if>> <</if>> <<if ndef _partnerSlave || _partnerSlave == null>> <<goto "Main">> <</if>> $His <<if ($partner == "relation")>> <<if $familyTesting == 1>> $relationType <<else>> _partnerSlave.relation <</if>> <<else>> _activeSlaveRel <</if>> _partnerSlave.slaveName <<switch _partnerSlave.assignment>> <<case "be your agent">> is off managing an arcology in your stead, but you can call _him2 back for a visit if you were inclined. <<case "be confined in the arcade">> is nothing more than holes in $arcadeName, but you have a fine view of _his2 <<if $seeRace == 1>>_partnerSlave.race rear <</if>>on the feed from the facility. <<case "stay confined">> is confined, but you have a fine view of _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body on the feed from _his2 cell. <<case "work in the brothel">> is working in the brothel, and is <<if (_seed > 80)>> riding a customer's dick. <<elseif (_seed > 60)>> sucking a customer's cock. <<elseif (_seed > 40)>> pleasuring a customer's cunt. <<elseif (_seed > 20)>> getting pounded by a woman wearing a strap-on. <<else>> being held down and buttfucked by a customer. You have a voyeuristic view of _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body on the feeds. <</if>> You have a voyeuristic view of _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body on the feeds. <<case "serve the public">> is serving the public, and is <<if (_seed > 80)>> riding a citizen's dick. <<elseif (_seed > 60)>> sucking a citizen's cock. <<elseif (_seed > 40)>> pleasuring a citizen's cunt. <<elseif (_seed > 20)>> getting pounded by a citizen wearing a strap-on. <<else>> being held down and buttfucked by a citizen. <</if>> You have a voyeuristic view of _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body on the feeds. <<case "work in the dairy">> <<if ($dairyRestraintsSetting > 1)>> is strapped to a milking machine in $dairyName. <<elseif (_partnerSlave.lactation == 0) && (_partnerSlave.balls > 0)>> is working in $dairyName, and is having _his2 cock milked. As you watch, _his2 balls tighten as the phallus up _his2 butt brings _him2 closer to a copious ejaculation. <<elseif _seed > 50>> is working in $dairyName, having _his2 tits milked. <<else>> is working in $dairyName, massaging _his2 sore tits. <</if>> You have a good view of _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body on the feeds. <<case "serve in the club">> is working on the club, <<if _seed > 50>> displaying _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body, keeping citizens company, and flirting with anyone who shows interest. <<else>> or rather just off it, having taken a prominent citizen back to a discreet room <<if $seeRace == 1>> so he can use _his2 _partnerSlave.race <</if>>body. <</if>> <<case "work as a servant">> <<if _seed > 50>> was scrubbing the penthouse floor, until another slave requested oral service. <<else>> is scrubbing the penthouse floor. <</if>> <<case "guard you">> is standing discreetly behind your left shoulder, watching for threats. _he2 has a straight ceramic sword strapped to _his2 back and a machine pistol at _his2 hip. <<case "be the Madam">> is managing the brothel: _he2 is making sure all the customers are satisfied and all the whores are working hard. <<case "be the Attendant">> is seeing to girls in the spa: _he2 is gently soaping an exhausted slave. <<case "be the Stewardess">> is managing the house servants: _he2 overseeing the laboring house slaves and punishing any that step out of line. <<case "be the DJ">> is taking the lead on the club: _he2 greets new arrivals, flirts with them prettily, and subtly guides them towards choice sluts. <<case "be the Schoolteacher">> is teaching classes: _he2 is leading the slave students in rote recitation. <<case "be the Milkmaid">> is working in the dairy, looking after your stock. <<default>> <<if (_partnerSlave.heels == 1) && !["flats", "none"].includes(_partnerSlave.shoes)>> walks past your desk with the tiny swaying steps $he must take in order to walk on _his2 surgically altered legs. _he2 is on _his2 way to <<elseif ["heels", "pumps"].includes(_partnerSlave.shoes)>> walks past your desk with the swaying steps _he2 must take in _his2 high heels. _he2 is on _his2 way to <<elseif (_partnerSlave.shoes == "boots")>> walks past your desk with the confident gait encouraged by _his2 high heeled boots. _he2 is on _his2 way to <<elseif (_partnerSlave.shoes == "extreme heels")>> walks past your desk with the tiny swaying steps _he2 must take in _his2 ridiculous heels. _he2 is on _his2 way to <<elseif (_partnerSlave.heels == 1)>> crawls past your desk on all fours, since _he2 has not been allowed the heels _he2 needs to walk upright. _he2 is on _his2 way to <<elseif (_partnerSlave.amp == 1)>> is carried past your desk by one of your other slaves. _he2 is on _his2 way to <<else>> walks past your desk on _his2 way to <</if>> <<switch _partnerSlave.assignment>> <<case "whore">> <<if _seed > 50>> whore; <<else>> sell _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body; <</if>> <<case "serve the public">> <<if _seed > 50>> serve the public; <<else>> be a public slut; <</if>> <<case "rest">> <<if _seed > 50>> eat; <<else>> bed; <</if>> <<case "get milked">> <<if _seed > 50>> milk _his2 overfull <<if $seeRace == 1>>_partnerSlave.race <</if>>tits; <<else>> drain _his2 milky <<if $seeRace == 1>>_partnerSlave.race <</if>>udders; <</if>> <<case "please you">> sit next to you and wait for <<if _seed > 50>> you to fuck _him2; <<else>> _his2 Master to use _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body; <</if>> <<case "be a subordinate slave">> service your other slaves; <<case "be a servant">> clean up after your other slaves; <<case "be your Head Girl">> oversee your other slaves; <<case "recruit girls">> use _his2 connections to recruit slaves; <</switch>> <<if (_partnerSlave.amp == 1)>> _he2 is carried by on _his2 way to _his2 next task. <<elseif _partnerSlave.fetish == "mindbroken">> _he2 does not even glance at you as _he2 goes mindlessly to _his2 next task. <<elseif _partnerSlave.devotion < -50>> _he2 directs a look of pure hatred at where you sit as _he2 passes. <<elseif _partnerSlave.devotion < -20>> _he2 cannot keep the loathing from _his2 face as _he2 passes. <<elseif _partnerSlave.devotion <= 20>> _he2 passes quickly, obviously hoping to avoid you. <<elseif _partnerSlave.devotion <= 50>> _he2 rushes by, hurrying to _his2 next task. <<else>> as _he2 passes _he2 gives you a look of adoration. <</if>> <</switch>> <<set _target = "FRelation", _partnerSlave = null>> <<elseif (_seed > 80) && ($activeSlave.fuckdoll == 0)>> <<BoobsDescription>> <<switch $activeSlave.clothes>> <<case "uncomfortable straps">> <<if $activeSlave.boobs < 300>> The rings constantly rub against $his chest and force $his nipples to stick out. <<else>> The strap over $his tits presses the soft flesh, and the ring around each nipple <<if $activeSlave.nipples == "fuckable">> forces them open. <<else>> forces them to stick out. <</if>> <</if>> <<case "shibari ropes">> <<if $activeSlave.boobs < 300>> The ropes binding $his chest shift slightly with every step, since $he lacks any breasts to hold them in place. <<else>> The ropes binding $his chest dig into the soft flesh as $he moves. <</if>> <<case "attractive lingerie for a pregnant women">> <<if $activeSlave.boobs < 300>> The bulge of $his $activeSlave.nipples nipples can be seen under the taut silk. <<else>> $His silken bra causes $his breasts to bulge around them. <</if>> <<case "a maternity dress">> <<if $activeSlave.boobs < 300>> $His low cut dress was made with breasts in mind; every stop $he takes risks it sliding down and revealing $his $activeSlave.nipples nipples. <<else>> $His low cut dress shows ample cleavage and is made to be easy to pull down. <</if>> <<case "stretch pants and a crop-top">> <<if $activeSlave.boobs < 300>> $His flat chest makes the perfect canvas to read $his crop-top. <<else>> $His crop-top tightly clings to $his breasts and moves along with them. $His jiggling cleavage distracts from the writing on $his tits. <</if>> <<case "restrictive latex">> <<if $activeSlave.boobs < 300>> $His lack of breasts draws your eyes straight to $his exposed nipples. <<else>> $His tits stick out through $his latex outfit. <</if>> <<case "attractive lingerie">> $His pretty white lace bra has thoughtful cuts that tastefully let $his nipples stick through. <<case "a succubus outfit">> <<if $activeSlave.boobs < 300>> $His succubus outfit presents this sex demon's flat chest, inviting a damning fondle. <<else>> $His succubus outfit presents this sex demon's breasts, inviting a damning fondle. <</if>> <<case "a slutty maid outfit">> <<if $activeSlave.boobs < 300>> $His maid outfit covers $his flat chest with a thin white blouse designed to be easy to pull down. <<else>> $His maid outfit covers $his breasts with a thin white blouse designed to be easy to pull down. <</if>> <<case "a nice maid outfit">> <<if $activeSlave.boobs < 300>> $His maid outfit covers $his flat chest demurely, offering the diverting task of pulling it off $him. <<else>> $His maid outfit covers $his breasts demurely, offering the diverting task of pulling it off $him. <</if>> <<case "a monokini">> The straps of $his monokini cross in the center of $his chest, leaving the rest of $his <<if $activeSlave.boobs < 300>>flat <</if>>breasts naked. <<case "a cybersuit">> $His bodysuit is tight enough to show off <<if $activeSlave.boobs < 300>>just how flat $he is<<else>>every contour of $his chest<</if>>. <<case "a string bikini">> $His string bikini covers only $his nipples, leaving the remainder of $his <<if $activeSlave.boobs < 300>>flat chest<<else>>breasts<</if>> naked. <<case "a scalemail bikini">> $His scalemail bikini covers <<if $activeSlave.boobs < 300>>all of $his flat chest.<<elseif $activeSlave.boobs < 700>>$his breasts entirely.<<elseif $activeSlave.boobs <1500>>much of $his breasts, while still emphasizing them.<<else>>the front of $his breasts.<</if>> . <<case "clubslut netting">> As $he moves, the weave of the netting over $his chest slips back and forth across $his nipples. <<case "a cheerleader outfit">> <<if $activeSlave.boobs < 300>> As $he moves, the tight fabric rubs across $his obvious nipples. <<else>> As $he moves, $his chest threatens to fall out of $his cheerleader top. <</if>> <<case "an apron">> <<if $activeSlave.boobs < 300>> As $he moves, $his apron threatens to bounce off $his flat chest and expose $his nipples. <<else>> As $he moves, $his apron provides excellent views of the sides of $his breasts. <</if>> <<case "cutoffs and a t-shirt">> <<if $activeSlave.boobs < 300>> $His non-existent breasts are bare under $his t-shirt; not that you can really tell since they lack motion completely. <<else>> $His tits are bare under $his t-shirt, so movement gives delicious hints of their motion. <</if>> <<case "spats and a tank top">> <<if $activeSlave.boobs < 300>> $His flat chest makes $his form-fitting tank top look as if it's clinging to a tube. <<else>> $His breasts bounce slightly under $his tank top as $he moves. <</if>> <<case "a slutty outfit">> <<if (random(1,100) > 50)>> For today's slutty outfit $he's chosen a handkerchief top that occasionally comes untied and <<if $activeSlave.boobs < 300>>reveals $his flat chest<<else>>spills $his breasts out naked<</if>>. <<else>> For today's slutty outfit $he's chosen a halter top cut so low that <<if $activeSlave.boobs < 300>>it occasionally slips down $his flat chest to reveal a nipple<<else>>$his breasts occasionally pop out<</if>>. <</if>> <<case "a slave gown">> $His gorgeous dress has thoughtful cuts that tastefully bares $his <<if $activeSlave.boobs < 300>>non-existent <</if>>breasts. <<case "slutty business attire">> $His suit jacket and blouse are low enough to show off a lot of boob<<if $activeSlave.boobs < 300>>, or they would, had $he had any<</if>>. <<case "nice business attire">> $His suit jacket and blouse are businesslike, but they could be removed easily enough. <<case "a halter top dress">> $His beautiful halter top dress almost seems to be sculpted around $his body. <<case "a ball gown">> $His fabulous silken ball gown is tailored to accentuate the shape of $his <<if $activeSlave.boobs < 300>>flat chest<<else>>breasts<</if>>. <<case "a slutty nurse outfit">> $His jacket presents $his <<if $activeSlave.boobs < 300>>nipples<<else>>breasts<</if>> to be ogled. <<case "a schoolgirl outfit">> $His blouse lewdly displays $his <<if $activeSlave.boobs < 300>>$activeSlave.nipples nipples<<else>>breasts<</if>>. <<case "a kimono">> $His kimono is clearly designed to accentuate $his <<if $activeSlave.boobs < 300>>flat chest<<else>>breasts<</if>>. <<case "a hijab and abaya">> $His abaya covers $his <<if $activeSlave.boobs < 300>>flat chest<<else>>breasts<</if>> totally. <<case "a huipil">> $His huipil hugs the curves of $his <<if $activeSlave.boobs < 300>>$activeSlave.nipples nipples<<else>>breasts<</if>>. <<case "battledress">> <<if $activeSlave.boobs < 300>> As $he moves, you can occasionally spot $his lack of undergarments. <<else>> $His tank top and sports bra support rather than flatter $his breasts. <</if>> <<case "a fallen nuns habit">> $His slutty nun outfit leaves $his <<if $activeSlave.boobs < 300>>flat <</if>>tits sinfully bare. <<case "a chattel habit">> $His chattel habit leaves $his <<if $activeSlave.boobs < 300>>flat <</if>>tits virtuously bare. <<case "a penitent nuns habit">> $His habit chafes $his nipples so harshly that it would probably be a relief to $his to have it stripped off $his. <<case "a comfortable bodysuit">> $His bodysuit is tight enough to show off <<if $activeSlave.boobs < 300>>just how flat $he is<<else>>every contour of $his chest<</if>>. <<case "a latex catsuit">> $His latex catsuit is tight enough to show off <<if $activeSlave.boobs < 300>>just how flat $he is<<else>>every contour of $his chest<</if>>. <<case "a military uniform">> $His uniform tunic and shirt are formal, but they could be removed easily enough. <<case "a schutzstaffel uniform">> $His uniform tunic and shirt are formal, but they could be removed easily enough. <<case "a slutty schutzstaffel uniform">> $His uniform tunic and shirt are formal, but they could be removed easily enough. <<case "a red army uniform">> $His uniform tunic and shirt are formal, but they could be removed easily enough. <<case "a nice nurse outfit">> $His nurse's outfit is functional, but they could be removed easily enough. <<case "a mini dress">> $His mini dress is tight enough to show off <<if $activeSlave.boobs < 300>>just how flat $he is<<else>>every contour of $his chest<</if>>. <<case "a leotard">> <<if $activeSlave.boobs < 300>> $His leotard draws the eye straight to $his obvious nipples, since it lacks anything else to show off. <<else>> $His leotard is tight enough that it not only hugs $his breasts, but shows off $his nipples. <</if>> <<case "a bunny outfit">> <<if $activeSlave.boobs < 300>> With no breasts to speak of, $his strapless corset teddy manages to look rather slutty. <<else>> $His strapless corset teddy presents $his boobs while still managing to look a bit classy. <</if>> <<case "harem gauze">> $His <<if $activeSlave.boobs < 300>>non-existent <</if>>breasts are clearly visible through the thin gauze that covers them. <<case "slutty jewelry">> <<if $activeSlave.boobs < 300>> The light chain across $his non-existent breasts is the only thing on $his chest capable of moving as $he walks. <<else>> The light chain under $his breasts accentuates their natural movement. <</if>> <<default>> <<if ($activeSlave.vaginalAccessory == "chastity belt")>> Since $he's wearing nothing but a chastity belt, $his <<if $activeSlave.boobs < 300>>non-existent <</if>>breasts are delightfully naked. <<else>> $His naked <<if $activeSlave.boobs < 300>> flat chest and nipples<<else>>breasts<</if>> catch your eye. <</if>> <</switch>> <<set _target = "FBoobs">> <<elseif (_seed > 60)>> <<ButtDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> Its suit is expressly designed to encourage use of its rear hole. <<case "uncomfortable straps">> A strap passes between $his <<if ($activeSlave.amp !== 1 )>> legs, giving $his gait an awkward sway. <<else>> leg stumps, pressing against $his genitals. <</if>> <<case "shibari ropes">> <<if ($activeSlave.amp !== 1 )>> Ropes bind $his legs, giving $his gait an awkward sway. <<else>> A rope passes between $his leg stumps, pressing against $his genitals. <</if>> <<case "attractive lingerie for a pregnant woman">> As $he moves, $his silken panties are very inviting. <<case "a maternity dress">> $His dress covers $his legs, but it will lift easily enough. <<case "stretch pants and a crop-top">> <<if $activeSlave.butt > 10>> $His stretch pants tightly cling to $his rear as $he moves. While the writing adorning it may catch your eye, the huge expanse of wobbling ass cleavage is far more distracting. <<else>> $His stretch pants tightly cling to $his rear as $he moves; the writing on $his bottom gives you plenty of excuses to oggle it. <</if>> <<case "restrictive latex">> As some of the only islands in the sea of black latex, $his holes are eye-catching. <<case "a fallen nuns habit">> $His slutty nun outfit invites sin. <<case "a chattel habit">> $His chattel habit is designed for sex without being removed. <<case "a penitent nuns habit">> $His habit chafes $him so cruelly that it would probably be a relief to $him to have it pulled off, even if $he's roughly fucked afterward. <<case "attractive lingerie">> As $he moves, $his pretty white garter belt holds $his stockings high up on $his thighs. <<case "a succubus outfit">> $His succubus outfit's tail holds $his skirt up high in back, inviting a damning fuck. <<case "a slutty maid outfit">> $His maid's skirt is cut extremely short, so that the slightest movement reveals a glimpse of $his ass. <<case "a nice maid outfit">> $His maid's skirt is cut conservatively, but it will lift easily enough. <<case "a monokini">> $His monokini contours to the size and shape of $his bottom. <<case "an apron">> $His apron leaves $his buttocks totally exposed. <<case "a cybersuit">> $His bodysuit prominently displays the curves of $his butt. <<case "a string bikini">> As $he moves, $his string lingerie leaves the entire line of $his hips naked and enticing. <<case "a scalemail bikini">> As $he moves, $his scaly lingerie leaves almost the entire line of $his hips naked and enticing. <<case "clubslut netting">> As $he moves, $his clubslut netting moves with $his, leaving nothing to the imagination. <<case "a cheerleader outfit">> As $he moves, $his pleated cheerleader bounces up and down flirtily. <<case "cutoffs and a t-shirt">> As $he moves, $his cutoffs hug $his butt. <<case "spats and a tank top">> $His spats show off every curve of $his ass. <<case "a slutty outfit">> For today's slutty outfit $he's chosen <<if (random(1,100) > 50) && ($activeSlave.amp !== 1)>> yoga pants so sheer that everything $he's got is clearly visible. <<elseif ($activeSlave.dick > 0)>> a miniskirt so brief that $his ass is hanging out the back, and $his dick is occasionally visible from the front. <<else>> a miniskirt so brief that $his ass is hanging out the back, and $his naked cunt is occasionally visible from the front. <</if>> <<case "a slave gown">> <<if ($activeSlave.amp == 1)>> $His gorgeous dress is specially designed for $his limbless form, but without legs to support it, it can hardly conceal the outline of everything $he has. <<else>> $His gorgeous dress has a thoughtful cut that runs all the way from $his ankle to over $his hip, baring a leg all the way up. <</if>> <<case "a halter top dress">> $His beautiful halter top dress seems to be sculpted around $his bottom. <<case "a ball gown">> $His fabulous silken ball gown is tailored to fit $his and accentuates the shape of $his butt. <<case "a slutty nurse outfit">> $His tight skirt flatters $his ass. <<case "a schoolgirl outfit">> <<if $activeSlave.anus == 0>> This schoolgirl clearly needs to lose $his anal virginity. <<elseif $activeSlave.vagina == 0>> This schoolgirl clearly takes it up the ass; that way, $he can remain a virgin, and be, like, totally pure and innocent. <<else>> This schoolgirl clearly takes it up the ass. <</if>> <<case "a kimono">> <<if ($activeSlave.butt > 5)>> $His kimono demurely covers $his behind, though it cannot conceal its massive shape. <<else>> $His kimono demurely covers $his behind. <</if>> <<case "a hijab and abaya">> <<if ($activeSlave.butt > 5)>> $His abaya totally covers $his behind, though it cannot conceal its massive shape. <<else>> $His abaya totally conceals $his behind. <</if>> <<case "battledress">> $His fatigue trousers are not particularly flattering to $his butt. <<case "nice business attire">> $His attractive skirt is nevertheless tight enough to show off $his derriere. <<case "slutty business attire">> $His skirt is so short it'll barely be necessary to lift it. <<case "a comfortable bodysuit">> $His bodysuit displays the curves of $his butt. <<case "a latex catsuit">> $His latex catsuit displays the curves of $his butt. <<case "a military uniform">> $His uniform skirt is nevertheless tight enough to show off $his derriere. <<case "a schutzstaffel uniform">> $His uniform trousers are nevertheless tight enough to show off $his derriere. <<case "a slutty schutzstaffel uniform">> $His uniform miniskirt is nevertheless tight enough to show off the enticing curves of $his butt. <<case "a red army uniform">> $His uniform skirt is nevertheless tight enough to show off $his derriere. <<case "a nice nurse outfit">> $His nurse's trousers demurely cover $his behind. <<case "a mini dress">> $His mini dress displays the curves of $his butt. <<case "a leotard">> $His leotard leaves $his buttocks gloriously bare. <<case "a bunny outfit">> $His teddy covers $his rear, but in tight satin that flatters its curves. <<case "harem gauze">> $His hips are clearly visible through the thin gauze that covers it. <<case "a toga">> $His stellar behind is accented by the light material of $his toga. <<case "a huipil ">> $His huipil is so short that $his butt is on display. <<case "slutty jewelry">> $His belt of light chain accentuates $his hips. <<default>> <<if ($activeSlave.vaginalAccessory == "chastity belt")>> $His chastity belt protects $him from vanilla intercourse. <<else>> You run your eye over $his naked hips. <</if>> <</switch>> <<set _target = "FButt">> <<elseif (_seed > 40)>> <<if $activeSlave.inflation == 0>> <<if $activeSlave.bellyImplant < 2000>> <<if $activeSlave.belly >= 600000>> <<BellyDescription>> <<switch $activeSlave.clothes>> <<case "a very tight corset">> $His corset struggles to contain $his enormous belly. <<case "chains">> $His enormous belly bulges in between $his tight chains. <<case "uncomfortable straps">> A steel ring rests around $his navel, held in place by tight straps. $His enormous belly bulges around them. <<case "shibari ropes">> $His enormous belly bulges out from between $his ropes. <<case "restrictive latex" "a latex catsuit">> $His enormous belly makes $him look like a giant balloon under the tight latex, $his popped navel breaks the smoothness. <<case "a nice nurse outfit">> $He's decided to become the maternity ward, judging by the enormous squirming pregnant belly $he sports. <<case "a maternity dress">> $His tight dress is strained by $his enormous belly. <<case "a nice maid outfit">> $His enormous belly is covered only by an apron. <<case "a penitent nuns habit">> $His enormous belly strains $his habit, it looks absolutely sinful. <<case "a ball gown">> Your gaze is drawn to $his enormous squirming pregnant belly by $his striking silken ball gown. <<case "harem gauze">> $His silken garb and enormous pregnant belly makes $him look like a belly dancer. <<case "a comfortable bodysuit">> $His enormous belly lewdly fills $his bodysuit. You swear you can see $his babies kicking underneath the form fitting material. <<case "a schoolgirl outfit">> The school blimp is waddling by. <<case "a hijab and abaya">> $His enormous belly pushes out $his abaya. <<case "a leotard">> $His enormous belly lewdly stretches $his leotard. You swear you can see $his babies kicking under the material. <<case "a toga">> $His loose fitted toga dangles pathetically to either side of $his enormous belly. <<case "a huipil">> $His pregnant belly is so enormous that the huipil barely covers any of it. <<default>> $His bare enormous squirming pregnant belly catches your eye. <</switch>> <<elseif $activeSlave.belly >= 300000>> <<BellyDescription>> <<switch $activeSlave.clothes>> <<case "a very tight corset">> $His corset struggles to contain $his giant belly. <<case "chains">> $His giant belly bulges in between $his tight chains. <<case "uncomfortable straps">> A steel ring rests around $his navel, held in place by tight straps. $His giant belly bulges around them. <<case "shibari ropes">> $His giant belly bulges out from between $his ropes. <<case "restrictive latex" "a latex catsuit">> $His giant belly makes $him look like a balloon under the tight latex, $his popped navel breaks the smoothness. <<case "a nice nurse outfit">> $His giant belly makes $him resemble a maternity ward patient rather than a nurse. <<case "attractive lingerie for a pregnant woman">> $His giant belly is gently framed by $his silken vest. <<case "a maternity dress">> $His loose dress is completely filled by $his giant belly. <<case "a nice maid outfit">> $His maid outfit struggles to contain $his giant belly, $his popped navel is visible under $his apron. <<case "a penitent nuns habit">> $His giant belly fills $his habit, it looks absolutely sinful. <<case "a halter top dress">> $His giant belly fills $his halter top dress, it struggles to contain $his belly. <<case "a ball gown">> Your gaze is drawn to $his giant pregnant belly by $his struggling fabulous silken ball gown. <<case "harem gauze">> $His silken garb and giant pregnant belly makes $him look like a belly dancer. <<case "a comfortable bodysuit">> $His giant belly lewdly fills $his bodysuit. You swear you can see $his babies kicking underneath the form fitting material. <<case "a schoolgirl outfit">> The school bicycle is waddling by. <<case "a hijab and abaya">> $His giant belly fills $his abaya. <<case "a leotard">> $His giant belly lewdly stretches $his leotard. You swear you can see $his babies kicking under the material. <<case "a toga">> $His loose fitted toga dangles to either side of $his giant belly. <<case "a huipil">> $His pregnant belly is so giant that the huipil barely makes it half-way to $his protruding navel. <<default>> $His bare giant pregnant belly catches your eye. <</switch>> <<elseif $activeSlave.weight > 190>> <<BellyDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> $His massive gut is alluringly smooth under the tight suit. <<case "conservative clothing">> $His conservative clothing stands no chance of stilling $his massive, jiggling gut. <<case "chains">> $His massive gut jiggles lewdly around $his tight chains. <<case "a slutty qipao">> The front of $his qipao rests atop $his massive gut. <<case "uncomfortable straps">> $His massive gut jiggles lewdly around $his tight straps. <<case "shibari ropes">> $His massive gut jiggles lewdly around $his tight cords. <<case "restrictive latex" "a latex catsuit">> $His massive gut resembles a large beachball under $his tight latex. <<case "a nice nurse outfit">> $His scrub top jiggles along with $his massive gut as $he moves. <<case "a mini dress">> $His tearing minidress shows every jiggle in $his massive gut as $he moves. <<case "a nice maid outfit">> As $he moves, barely any jiggling can be seen within $his straining maid's dress. <<case "a penitent nuns habit">> $His habit does nothing to stop $his massive gut from jiggling against the coarse cloth as $he moves. <<case "clubslut netting">> $His clubslut netting jiggles lewdly along with $his massive gut as $he moves. Every so often, another section gives out allowing a roll of fat to spring free; it's quite entertaining to watch. <<case "a cheerleader outfit">> $His massive gut jiggles its own cheer with $his every motion. <<case "a slave gown">> $His massive jiggly gut is gently caressed by $his gown. <<case "an apron">> $His apron rests upon $his massive gut, which jiggles as $he moves. <<case "harem gauze">> $His silken garb and massive, jiggly gut makes $him look like a belly dancer. <<case "a comfortable bodysuit">> The taut material of $his bodysuit shows every jiggle in $his massive gut as $he moves. <<case "a schoolgirl outfit">> The school blimp is jiggling by and ripe for abuse with $his ill-fitting clothes. <<case "a kimono">> $His massive gut threatens to pop out of $his kimono with every motion. <<case "a hijab and abaya">> $His massive gut has no room left to move within $his overstuffed abaya. <<case "a halter top dress">> $His strained halter top dress shows every jiggle in $his massive gut as $he moves. Every little motion threatens to burst $his seams and free the soft mass to the world. <<case "a ball gown">> Your gaze is drawn to $his massive gut by $his fabulous silken ball gown. Every little motion has a chance for it to pop out and jiggle free for all to see clearly. <<case "a leotard">> The taut material of $his leotard shows every jiggle in $his massive gut as $he moves. A pair of small ridges adorn $his sides where they have managed to push through the leotard's failing seams. <<case "a bunny outfit">> $He is a sight in $his bunny outfit. The front of $his massive gut is held still by $his overworked teddy, but everything else of it jiggles obscenely with $his every motion. <<case "attractive lingerie for a pregnant woman">> $His massive gut is gently framed by $his silken vest. <<case "a maternity dress">> $His once loose dress bulges with $his massive gut. <<default>> $His massive bare jiggling gut catches your eye. <</switch>> <<elseif $activeSlave.belly >= 10000 || ($activeSlave.bellyAccessory == "a huge empathy belly") || ($activeSlave.bellyAccessory == "a large empathy belly")>> <<BellyDescription>> <<switch $activeSlave.clothes>> <<case "conservative clothing">> $His taut blouse shows off $his huge belly. <<case "attractive lingerie for a pregnant woman">> $His huge belly is gently framed by $his silken vest. <<case "a maternity dress">> $His loose dress is completely filled by $his huge belly. <<case "chains">> $His huge belly bulges between $his tight chains. <<case "a slutty qipao">> The front of $his qipao rests atop $his huge belly. <<case "uncomfortable straps">> A steel ring rests around $his navel, held in place by tight straps. $His huge belly bulges around them. <<case "shibari ropes">> $His huge belly bulges out from between $his ropes. <<case "restrictive latex" "a latex catsuit">> $His huge belly looks like a large beach ball under $his tight latex, $his popped navel breaks the smoothness. <<case "a military uniform">> $His huge belly threatens to pop the buttons off $his tunic. <<case "a schutzstaffel uniform">> $His huge belly threatens to pop the buttons off $his tunic. <<case "a slutty schutzstaffel uniform">> $His huge belly threatens to pop the buttons off $his tunic. <<case "a red army uniform">> $His huge belly threatens to pop the buttons off $his tunic. <<case "a nice nurse outfit">> $His huge belly strains against $his scrub top, making $him resemble more a maternity ward patient than a nurse. <<case "a mini dress">> $His huge belly threatens to tear apart $his mini dress. <<case "a slutty maid outfit">> $His huge belly is partially covered by a thin white blouse. <<case "a nice maid outfit">> $His huge belly threatens to tear $his maid outfit open, $his popped navel is visible under $his apron. <<case "a penitent nuns habit">> $His huge belly bulges $his habit, it looks absolutely sinful. <<case "clubslut netting">> $His huge belly threatens to tear apart $his clubslut netting. <<case "a cheerleader outfit">> $His huge belly is partly covered by $his cheerleader's top. <<case "a halter top dress">> $His huge belly fills out $his halter top dress, the seams straining to contain it. <<case "a ball gown">> Your gaze is drawn to $his huge pregnant belly by $his fabulous silken ball gown. <<case "a slave gown">> $His huge belly is gently caressed by $his gown. <<case "nice business attire">> $His huge belly threatens to pop the buttons off $his jacket. <<case "harem gauze">> $His silken garb and huge pregnant belly makes $him look like a belly dancer. <<case "a toga">> $His loose fitted toga leaves plenty of space for $his swollen belly. <<case "a huipil">> $His pregnant belly is so huge that the huipil won't even come close to reaching $his protruding navel. <<case "a comfortable bodysuit">> $His huge belly lewdly fills $his bodysuit. <<if ($activeSlave.bellyAccessory !== "a huge empathy belly") && ($activeSlave.bellyAccessory !== "a large empathy belly")>>You swear you can see $his babies kicking underneath the form fitting material.<</if>> <<case "a schoolgirl outfit">> $His huge belly is only partly covered by $his blouse. <<case "a kimono">> $His kimono demurely covers the sides of $his huge belly. <<case "a hijab and abaya">> $His huge belly tents $his abaya. <<case "a leotard">> $His huge belly lewdly stretches $his leotard. <<if ($activeSlave.bellyAccessory !== "a huge empathy belly") && ($activeSlave.bellyAccessory !== "a large empathy belly")>>You swear you can see $his babies kicking underneath the form fitting material.<</if>> <<case "a chattel habit">> $His huge belly shoves the strip of cloth on $his front to $his side. <<case "a bunny outfit">> $His huge belly is threatening to tear $his teddy, the seams along the side are already splitting. <<default>> $His bare huge pregnant belly catches your eye. <</switch>> <<elseif $activeSlave.weight > 160>> <<BellyDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> $His giant gut is alluringly smooth under the tight suit. <<case "conservative clothing">> $His conservative clothing stands no chance of stilling $his giant, jiggling gut. <<case "chains">> $His giant gut jiggles lewdly around $his tight chains. <<case "a slutty qipao">> The front of $his qipao rests atop $his giant gut. <<case "uncomfortable straps">> $His giant gut jiggles lewdly around $his tight straps. <<case "shibari ropes">> $His giant gut jiggles lewdly around $his tight cords. <<case "restrictive latex" "a latex catsuit">> $His giant gut resembles a beachball under $his tight latex. <<case "a military uniform">> The buttons on $his staining jacket threaten to pop off with every motion of $his giant jiggling gut. <<case "a schutzstaffel uniform">> The buttons on $his staining jacket threaten to pop off with every motion of $his giant jiggling gut. <<case "a slutty schutzstaffel uniform">> The buttons on $his staining jacket threaten to pop off with every motion of $his giant jiggling gut. <<case "a red army uniform">> The buttons on $his staining jacket threaten to pop off with every motion of $his giant jiggling gut. <<case "a nice nurse outfit">> $His scrub top jiggles along with $his giant gut as $he moves. <<case "a mini dress">> $His strained minidress shows every jiggle in $his giant gut as $he moves. <<case "a nice maid outfit">> As $he moves, noticeable jiggling can be seen within $his maid's dress. <<case "a penitent nuns habit">> $His habit does nothing to stop $his giant gut from jiggling against the coarse cloth as $he moves. <<case "clubslut netting">> $His clubslut netting jiggles lewdly along with $his giant gut as $he moves. <<case "a cheerleader outfit">> $His giant gut is partially covered by $his cheerleader's top, which happily jiggles along with every motion. <<case "a slave gown">> $His giant jiggly gut is gently caressed by $his gown. <<case "nice business attire">> $His giant gut has no room to move under $his strained jacket. <<case "harem gauze">> $His silken garb and giant, jiggly gut makes $him look like a belly dancer. <<case "a comfortable bodysuit">> The taut material of $his bodysuit shows every jiggle in $his giant gut as $he moves. <<case "a schoolgirl outfit">> The school fatty is jiggling by and ripe for abuse with $his ill-fitting clothes. <<case "a kimono">> Tons of jiggling can be seen through $his kimono whenever $he moves. <<case "a hijab and abaya">> Tons of jiggling can be seen through $his abaya whenever $he moves. <<case "a halter top dress">> $His stretched halter top dress shows every jiggle in $his giant gut as $he moves. <<case "a ball gown">> Your gaze is drawn to $his giant gut by $his fabulous silken ball gown. <<case "a leotard">> The taut material of $his leotard shows every jiggle in $his giant gut as $he moves. <<case "a chattel habit">> $His giant gut jiggles around the strip of cloth down $his front as $he moves. <<case "a bunny outfit">> $He is a sight in $his bunny outfit. $His teddy not only covers $his giant gut, but draws your gaze right to it, though it can't help but jiggle along with $his every motion. <<case "attractive lingerie for a pregnant woman">> $His giant gut is gently framed by $his silken vest. <<case "a maternity dress">> $His loose dress bulges with $his giant gut. <<default>> $His giant bare jiggling gut catches your eye. <</switch>> <<elseif $activeSlave.weight > 130>> <<BellyDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> $His big gut is perfectly smoothed by the tight latex. <<case "conservative clothing">> $His conservative clothing stands no chance of stilling $his big, jiggling gut. <<case "chains">> $His big gut jiggles lewdly between $his tight chains. <<case "a huipil">> $His huipil jiggles along with $his big gut. <<case "a slutty qipao">> The front of $his qipao rests atop $his big gut. <<case "uncomfortable straps">> $His big gut jiggles lewdly between $his tight straps. <<case "shibari ropes">> $His big gut jiggles lewdly between $his tight cords. <<case "restrictive latex" "a latex catsuit">> $His big gut has no room to move under $his tight latex. <<case "a military uniform">> The buttons on $his staining jacket struggle to hold back $his big jiggling gut. <<case "a schutzstaffel uniform">> The buttons on $his staining jacket struggle to hold back $his big jiggling gut. <<case "a slutty schutzstaffel uniform">> The buttons on $his staining jacket struggle to hold back $his big jiggling gut. <<case "a red army uniform">> The buttons on $his staining jacket struggle to hold back $his big jiggling gut. <<case "a nice nurse outfit">> $His scrub top jiggles along with $his big gut as $he moves. <<case "a mini dress">> $His stretched minidress shows every jiggle in $his big gut as $he moves. <<case "a slutty maid outfit">> $His big gut is barely covered by a thin white blouse that happily jiggles along with every motion. <<case "a nice maid outfit">> As $he moves, a slight jiggle can be seen within $his maid's dress. <<case "a penitent nuns habit">> $His habit does nothing to stop $his big gut from jiggling against the coarse cloth as $he moves. <<case "clubslut netting">> $His clubslut netting jiggles lewdly along with $his big gut as $he moves. <<case "a cheerleader outfit">> $His big gut is partially covered by $his cheerleader's top, which happily jiggles along with every motion. <<case "a slave gown">> $His big jiggly gut is gently caressed by $his gown. <<case "nice business attire">> Noticeable jiggling from $his big gut can be seen under $his jacket. <<case "harem gauze">> $His silken garb and big, jiggly gut makes $him look like a belly dancer. <<case "a comfortable bodysuit">> The taut material of $his bodysuit shows every jiggle in $his big gut as $he moves. <<case "a schoolgirl outfit">> $His big gut is partially covered by $his blouse, which happily jiggles along with every motion. <<case "a kimono">> Noticeable jiggling can be seen through $his kimono whenever $he moves. <<case "a hijab and abaya">> Noticeable jiggling can be seen through $his abaya whenever $he moves. <<case "a halter top dress">> $His stretched halter top dress shows every jiggle in $his big gut as $he moves. <<case "a ball gown">> Your gaze is drawn to $his big gut by $his fabulous silken ball gown. <<case "a leotard">> The taut material of $his leotard shows every jiggle in $his big gut as $he moves. <<case "an apron">> As $he moves, $his apron jostles just as $his big gut jiggles. <<case "a bunny outfit">> $He is a sight in $his bunny outfit. $His teddy not only controls $his big gut, but draws your gaze right to it. <<case "attractive lingerie for a pregnant woman">> $His big gut is gently framed by $his silken vest. <<case "a maternity dress">> $His loose dress bulges with $his big gut. <<default>> $His big bare jiggling gut catches your eye. <</switch>> <<elseif $activeSlave.bellyPreg >= 5000 || ($activeSlave.bellyAccessory == "a medium empathy belly")>> <<BellyDescription>> <<switch $activeSlave.clothes>> <<case "conservative clothing">> $His taut blouse shows off $his big belly. <<case "attractive lingerie for a pregnant woman">> $His big belly is gently framed by $his silken vest. <<case "a maternity dress">> $His loose dress is filled out by $his big belly. <<case "chains">> $His big belly bulges between $his tight chains. <<case "a slutty qipao">> The front of $his qipao rests atop $his big belly. <<case "uncomfortable straps">> A steel ring rests around $his navel, held in place by tight straps. $His big belly bulges around them. <<case "shibari ropes">> $His big belly bulges out from between $his ropes. <<case "restrictive latex" "a latex catsuit">> $His big belly looks like a beach ball under $his tight latex, $his popped navel breaks the smoothness. <<case "a military uniform">> $His big belly strains the buttons on $his jacket. <<case "a schutzstaffel uniform">> $His big belly strains the buttons on $his jacket. <<case "a slutty schutzstaffel uniform">> $His big belly strains the buttons on $his jacket. <<case "a red army uniform">> $His big belly strains the buttons on $his jacket. <<case "a nice nurse outfit">> $His large belly strains against $his scrub top, making $him resemble more a maternity ward patient than a nurse. <<case "a mini dress">> $His large belly strains against $his mini dress. <<case "a slutty maid outfit">> $His big belly is partially covered by a thin white blouse. <<case "a nice maid outfit">> $His big belly strains $his maid outfit, $his popped navel is visible under $his apron. <<case "a penitent nuns habit">> $His big belly bulges $his habit, it looks absolutely sinful. <<case "clubslut netting">> $His big belly strains $his clubslut netting. <<case "a cheerleader outfit">> $His big belly is partly covered by $his cheerleader's top. <<case "a halter top dress">> $His big belly fills out $his halter top dress. <<case "a ball gown">> Your gaze is drawn to $his big pregnant belly by $his fabulous silken ball gown. <<case "a slave gown">> $His big belly is gently caressed by $his gown. <<case "nice business attire">> $His big belly strains the buttons on $his jacket. <<case "harem gauze">> $His silken garb and big pregnant belly makes $him look like a belly dancer. <<case "a toga">> $His loose fitted toga leaves plenty of space for $his swollen belly. <<case "a huipil">> $His pregnant belly is so big that the huipil won't even reach $his protruding navel. <<case "a comfortable bodysuit">> $His big belly fills $his bodysuit. <<if ($activeSlave.bellyAccessory !== "a medium empathy belly")>>You swear you can see $his babies kicking underneath the form fitting material.<</if>> <<case "a schoolgirl outfit">> $His big belly is only partly covered by $his blouse. <<case "a kimono">> $His kimono demurely covers $his big belly. <<case "a hijab and abaya">> $His big belly tents $his abaya. <<case "a leotard">> $His big belly stretches $his leotard. <<if ($activeSlave.bellyAccessory !== "a medium empathy belly")>>You swear you can see $his babies kicking underneath the form fitting material.<</if>> <<case "a chattel habit">> $His big belly shoves the strip of cloth on $his front to $his side. <<case "a bunny outfit">> $His big belly strains $his teddy; the seams along the side are showing signs of wear. <<default>> $His bare pregnant belly catches your eye. <</switch>> <<elseif $activeSlave.weight >= 95>> <<BellyDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> Its suit is expressly designed to encourage use of its holes. <<case "conservative clothing">> $His taut blouse shows every jiggle in $his fat gut as $he moves. <<case "attractive lingerie for a pregnant woman">> $His fat gut is gently framed by $his silken vest. <<case "a maternity dress">> $His loose dress bulges with $his fat gut. <<case "chains">> $His fat gut jiggles lewdly between $his tight chains. <<case "a slutty qipao">> The front of $his qipao rests atop, and jiggles with, $his fat gut as $he moves. <<case "uncomfortable straps">> $His fat gut jiggles lewdly between $his tight straps. <<case "shibari ropes">> $His fat gut jiggles lewdly between the binding ropes. <<case "restrictive latex" "a latex catsuit">> $His fat gut barely has any room to move under $his tight latex. <<case "a military uniform">> The buttons on $his staining jacket can barely hold back $his fat, jiggling gut. <<case "a schutzstaffel uniform">> The buttons on $his staining jacket can barely hold back $his fat, jiggling gut. <<case "a slutty schutzstaffel uniform">> The buttons on $his staining jacket can barely hold back $his fat, jiggling gut. <<case "a red army uniform">> The buttons on $his staining jacket can barely hold back $his fat, jiggling gut. <<case "a nice nurse outfit">> $His scrub top jiggles along with $his fat gut as $he moves. <<case "a mini dress">> $His stretched minidress shows every jiggle in $his fat gut as $he moves. <<case "a slutty maid outfit">> $His fat gut is partially covered by a thin white blouse, that happily jiggles along with every motion. <<case "a nice maid outfit">> As $he moves, a slight jiggle can be seen within $his maid's dress. <<case "a penitent nuns habit">> $His habit does nothing to stop $his fat gut from jiggling against the coarse cloth as $he moves. <<case "clubslut netting">> $His clubslut netting jiggles lewdly along with $his fat gut as $he moves. <<case "a cheerleader outfit">> $His fat gut is partially covered by $his cheerleader's top, which happily jiggles along with every motion. <<case "a halter top dress">> $His stretched halter top dress shows every jiggle in $his fat gut as $he moves. <<case "a ball gown">> Your gaze is drawn to $his fat gut by $his fabulous silken ball gown. <<case "a slave gown">> $His fat, jiggly gut is gently caressed by $his gown. <<case "nice business attire">> Slight jiggling from $his fat gut can be seen under $his jacket. <<case "harem gauze">> $His silken garb and fat, jiggly gut makes $him look like a belly dancer. <<case "a toga">> $His toga swerves loosely from side to side as $his chubby body moves inside it. <<case "a huipil">> $His lithe huipil can't hide $his voluptuous shape unless $he stands completely still. <<case "a comfortable bodysuit">> The taut material of $his bodysuit shows every jiggle in $his fat gut as $he moves. <<case "a schoolgirl outfit">> $His fat gut is partially covered by $his blouse, which happily jiggles along with every motion. <<case "a kimono">> Slight jiggling can be seen through $his kimono whenever $he moves. <<case "a hijab and abaya">> Slight jiggling can be seen through $his abaya whenever $he moves. <<case "an apron">> $His apron provides some covering to the jiggling of $his fat gut. <<case "a leotard">> The taut material of $his leotard shows every jiggle in $his fat gut as $he moves. <<case "a chattel habit">> $His fat gut jiggles around the strip of cloth down $his front as $he moves. <<case "a bunny outfit">> $He is a sight in $his bunny outfit. The front of $his fat gut is held still by $his teddy, but everything else of it jiggles obscenely with $his every motion. <<default>> $His bare, jiggling, fat gut catches your eye. <</switch>> <<elseif $activeSlave.bellyPreg >= 1500 || ($activeSlave.bellyAccessory == "a small empathy belly")>> <<BellyDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> Its suit is expressly designed to encourage use of its holes. <<case "conservative clothing">> $His blouse bulges with $his growing belly. <<case "chains">> $His growing belly bulges between $his tight chains. <<case "a slutty qipao">> The front of $his qipao rests atop $his growing belly. <<case "uncomfortable straps">> A steel ring rests around $his navel, held in place by tight straps. $His growing belly bulges around them. <<case "shibari ropes">> $His growing belly bulges out from between $his ropes. <<case "restrictive latex" "a latex catsuit">> $His growing belly bulges beneath $his tight latex. <<case "a military uniform">> $His growing belly bulges $his uniform tunic. <<case "a schutzstaffel uniform">> $His growing belly bulges $his uniform tunic. <<case "a slutty schutzstaffel uniform">> $His growing belly bulges $his uniform tunic. <<case "a red army uniform">> $His growing belly bulges $his uniform tunic. <<case "a nice nurse outfit">> $His growing belly is clearly visible through $his scrub top. <<case "a mini dress">> $His growing belly bulges $his tight mini dress. <<case "a slutty maid outfit">> $His growing belly bulges $his thin white blouse. <<case "a nice maid outfit">> $His growing belly is concealed by $his maid outfit. <<case "a penitent nuns habit">> $His growing belly bulges $his habit. <<case "attractive lingerie for a pregnant woman">> $His growing belly is gently framed by $his silken vest. <<case "a maternity dress">> $His loose dress conceals $his growing belly. <<case "clubslut netting">> $His growing belly fills out $his clubslut netting. <<case "a cheerleader outfit">> $His growing belly peeks out from under $his cheerleader's top. <<case "a halter top dress">> $His growing belly bulges $his halter top dress. <<case "a ball gown">> Your gaze is drawn to $his growing pregnant belly by $his fabulous silken ball gown. <<case "a slave gown">> $His growing belly is gently caressed by $his gown. <<case "nice business attire">> $His growing belly bulges $his suit jacket. <<case "harem gauze">> $His silken garb and growing pregnant belly makes $him look like a belly dancer. <<case "a toga">> $His toga is so loose that you can barely notice $his growing belly. <<case "a huipil">> $His growing belly can be seen from the sides of $his huipil. <<case "a comfortable bodysuit">> $His growing belly fills $his bodysuit. <<case "a schoolgirl outfit">> $His growing belly peeks out from under $his blouse. <<case "a kimono">> $His kimono demurely covers $his growing belly. <<case "a hijab and abaya">> $His growing belly gently tents $his abaya. <<case "a leotard">> $His growing belly fills $his leotard. <<case "a chattel habit">> $His growing belly shows under the strip of cloth on $his front. <<case "a bunny outfit">> $His growing belly fills $his teddy. <<default>> $His barely visible pregnancy catches your eye. <</switch>> <<else>> <<BellyDescription>> <<if $activeSlave.weight >= 30>> Slight jiggling can be seen in $his chubby belly as $he moves. <</if>> <<crotchDescription>> <<dickDescription>> <<vaginaDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> Its suit is expressly designed to encourage use of its holes. <<case "uncomfortable straps">> <<if ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>> A strap passes between $his legs, and the big ring over $his hermaphroditic genitalia gleams from between them. <<elseif ($activeSlave.dick != 0)>> A strap passes between $his legs, and the ring around the base of $his cock gleams from between them. <<else>> A strap passes between $his legs, and the ring over $his pussy gleams from between them. <</if>> <<case "shibari ropes">> $His ropes run tightly between $his legs, pressing $him closely as $he moves. <<case "restrictive latex">> <<if ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>> $His cock and pussy stick out through a big hole in the latex. <<elseif ($activeSlave.dick != 0)>> $His cock sticks out through a hole in the latex. <<else>> As one of the only islands in the sea of black latex, $his pussy is eye-catching. <</if>> <<case "attractive lingerie for a pregnant woman">> <<if ($activeSlave.dick > 4) && ($activeSlave.balls > 3)>> As $he moves, $his pretty white panties totally fail to restrain $his huge cock and balls, which bounce around lewdly in mockery of $his lovely appearance. <<elseif $activeSlave.dick > 4>> As $he moves, $his pretty white panties totally fail to restrain $his huge penis, which flops around lewdly in mockery of $his lovely appearance. <<elseif $activeSlave.dick != 0>> As $he moves, $his pretty white panties struggle to restrain $his penis. <<else>> As $he moves, $his pretty white panties daintily cover $his womanhood. <</if>> <<case "a maternity dress">> <<if $activeSlave.dick > 2>> As $he moves, something occasionally tents the front of $his dress. <<else>> $His loose dress gives no hints to what's inside it. <</if>> <<case "stretch pants and a crop-top">> <<if $activeSlave.dick > 2>> As $he moves, something occasionally tents the front of $his pants. <<else>> $His tight pants don't leave much to the imagination. <</if>> <<case "attractive lingerie">> <<if ($activeSlave.dick > 4) && ($activeSlave.balls > 3)>> As $he moves, $his pretty white g-string totally fails to restrain $his huge cock and balls, which bounce around lewdly in mockery of $his lovely appearance. <<elseif ($activeSlave.dick > 4)>> As $he moves, $his pretty white g-string totally fails to restrain $his huge penis, which flops around lewdly in mockery of $his lovely appearance. <<elseif ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>> As $he moves, $his pretty white g-string struggles to restrain $his hermaphroditic genitalia. <<elseif ($activeSlave.dick != 0)>> As $he moves, $his pretty white g-string struggles to restrain $his penis. <<else>> As $he moves, $his pretty white g-string daintily covers $his womanhood. <</if>> <<case "a slutty maid outfit">> <<if ($activeSlave.dick > 4) && ($activeSlave.balls > 3)>> $His apron is cut very short in front. $His cock and balls are so big that $he hangs out beyond the hem of $his apron. <<elseif ($activeSlave.dick > 4)>> $His apron is cut very short in front. $His dick is so big that its lower half dangles out of $his clothing. <<elseif ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>> $His apron is cut very short in front, revealing frequent glimpses of $his dangling cock, and occasional hints of something more. <<elseif ($activeSlave.dick != 0)>> $His apron is cut very short in front, revealing frequent glimpses of $his dangling cock. <<else>> $His apron is cut very short in front, revealing occasional glimpses of $his womanhood. <</if>> <<case "a nice maid outfit">> <<if ($activeSlave.dick > 4)>> As $he moves, something massive bulges against the front of $his apron. <<elseif ($activeSlave.dick > 1)>> As $he moves, something presses against the front of $his apron. <<else>> $His apron gives no hint of what's behind it. <</if>> <<case "a monokini">> <<if ($activeSlave.dick > 4) && ($activeSlave.vagina != -1)>> $His hermaphroditic genitalia tents out the front of $his monokini as $he moves. <<elseif ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>> $His hermaphroditic genitalia sometimes bulges $his monokini as $he moves. <<elseif ($activeSlave.dick > 4)>> $His penis tents out the front of $his monokini as $he moves. <<elseif ($activeSlave.dick != 0)>> $His penis sometimes bulges $his monokini as $he moves. <<elseif ($activeSlave.vagina != -1)>> $His monokini clings to $his pussylips as $he moves. <<else>> $His monokini clings to $his featureless groin as $he moves. <</if>> <<case "an apron">> <<if $activeSlave.dick > 3>> $His dick sometimes creates a bulge in $his apron as $he moves. <<elseif ($activeSlave.dick > 0) && ($activeSlave.vagina > -1)>> $His apron exposes $his hemaphroditic genitalia if $he moves too quickly. <<elseif $activeSlave.dick > 0>> $His apron exposes $his cock if $he moves too quickly. <<elseif $activeSlave.vagina > -1>> $His apron exposes $his featureless groin if $he moves too quickly. <<else>> $His apron exposes $his pussy if $he moves too quickly. <</if>> <<case "a cybersuit">> <<if ($activeSlave.dick > 4) && ($activeSlave.vagina != -1)>> $His hermaphroditic genitalia tents out the front of $his bodysuit as $he moves. <<elseif ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>> $His hermaphroditic genitalia sometimes bulges $his bodysuit as $he moves. <<elseif ($activeSlave.dick > 4)>> $His penis tents out the front of $his bodysuit as $he moves. <<elseif ($activeSlave.dick != 0)>> $His penis sometimes bulges $his bodysuit as $he moves. <<elseif ($activeSlave.vagina != -1)>> $His bodysuit clings to $his pussylips as $he moves. <<else>> $His bodysuit clings to $his featureless crotch as $he moves. <</if>> <<case "a string bikini">> <<if ($activeSlave.dick > 4) && ($activeSlave.vagina != -1)>> As $he moves, $his g-string totally fails to restrain $his hermaphroditic genitalia. <<elseif ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>> As $he moves, $his g-string struggles to restrain $his hermaphroditic genitalia. <<elseif ($activeSlave.dick > 4) && ($activeSlave.balls > 3)>> As $he moves, $his g-string totally fails to restrain $his huge penis, and occasionally gives $his huge scrotum a painful pinch. <<elseif ($activeSlave.dick > 4)>> As $he moves, $his g-string totally fails to restrain $his huge penis. <<elseif ($activeSlave.dick != 0)>> As $he moves, $his pretty white g-string struggles to restrain $his penis, which adds to $his sluttiness as it escapes. <<else>> As $he moves, $his g-string rides up between $his pussylips. <</if>> <<case "a scalemail bikini">> <<if ($activeSlave.dick > 4) && ($activeSlave.vagina != -1)>> As $he moves, $his scalemail bottom fails to conceal $his hermaphroditic genitalia. <<elseif ($activeSlave.dick > 4)>> As $he moves, $his scalemail bottom fails to conceal $his huge penis. <<elseif ($activeSlave.dick != 0)>> As $he moves, $his scalemail bottom covers $his penis. <<else>> As $he moves, $his scalemail bottom conceals all. <</if>> <<case "clubslut netting">> <<if ($activeSlave.dick != 0)>> As $he moves, $his bare cock flops around, sticking through its hole in $his netting. <<else>> As $he moves, $his bare pussy beckons from its hole in $his netting. <</if>> <<case "a cheerleader outfit">> <<if ($activeSlave.dick != 0)>> As $he moves, $his short pleated cheerleader skirt is bounced forward by something between $his legs. <<else>> As $he moves, $his short pleated cheerleader skirt shows off $his butt. <</if>> <<case "cutoffs and a t-shirt">> <<if ($activeSlave.dick > 4) && ($activeSlave.balls > 3)>> There's a huge bulge in the front of $his cutoffs. <<elseif ($activeSlave.dick > 1)>> There's a bulge in the front of $his cutoffs. <<else>> $His cutoffs conceal $his front enticingly. <</if>> <<case "spats and a tank top">> <<if ($activeSlave.dick > 4)>> $His spats have a large, attention-drawing bulge that looks uncomfortable as $he moves around. <<elseif ($activeSlave.dick > 1)>> Something bulges against the tight fit of $his spats as $he moves. <<else>> $His spats snugly fit to $his crotch as $he moves. <</if>> <<case "a slutty outfit">> <<if ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>> For today's slutty outfit $he's chosen ripped jean shorts whose holes tantalizingly hint that $he's very unusual between the legs. <<elseif ($activeSlave.dick > 2)>> For today's slutty outfit $he's chosen ripped jean shorts so brief that $his huge dick occasionally escapes and flops free. <<elseif ($activeSlave.dick != 0)>> For today's slutty outfit $he's chosen ripped jean shorts whose holes tantalizingly hint that $he's got something other than a pussy between $his legs. <<else>> For today's slutty outfit $he's chosen ripped jean shorts so tight that $he sports a raging cameltoe. <</if>> <<case "a slave gown">> <<if ($activeSlave.amp == 1) && ($activeSlave.vagina != -1)>> $He's wearing a lovely 'dress' designed specifically for an amputee. <<elseif ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>> $His gorgeous dress leaves little to the imagination; there's little doubt $his pussy is bare beneath it, and $his cock tents the fabric as $he moves. <<elseif ($activeSlave.dick != 0)>> $His gorgeous dress leaves little to the imagination; $his cock tents the fabric as $he moves. <<else>> $His gorgeous dress leaves little to the imagination; there's little doubt $his pussy is bare beneath it. <</if>> <<case "a halter top dress">> <<if ($activeSlave.amp == 1) && ($activeSlave.vagina != -1)>> $He's wearing a 'beautiful halter top dress' designed specifically for an amputee. <<elseif ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>> $His beautiful halter top dress is almost sculpted around $his, but $his cock tents the fabric as $he moves. <<elseif ($activeSlave.dick != 0)>> $His beautiful halter top dress is almost sculpted around $his; but $his cock tents the fabric as $he moves. <<else>> $His beautiful halter top dress is almost sculpted around $his. <</if>> <<case "a ball gown">> <<if ($activeSlave.amp == 1) && ($activeSlave.vagina != -1)>> $He's wearing a 'fabulous silken ball gown' designed specifically for an amputee. <<elseif ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>> $His fabulous silken ball gown is draped around $his, but $his cock tents the fabric as $he moves. <<elseif ($activeSlave.dick != 0)>> $His fabulous silken ball gown is draped around $his; but $his cock tents the fabric as $he moves. <<else>> $His fabulous silken ball gown is draped around $his. <</if>> <<case "slutty business attire">> <<if ($activeSlave.dick > 4)>> As $he moves, something massive tents the front of $his short skirt. <<elseif ($activeSlave.dick > 1)>> As $he moves, something presses against the front of $his short skirt. <<else>> $His short skirt gives no hint of what's behind it. <</if>> <<case "a fallen nuns habit">> <<if ($activeSlave.dick > 0)>> $His slutty nun outfit leaves $his cock to swing sacrilegiously. <<else>> $His slutty nun outfit leaves $his pussy totally and sacrilegiously bare. <</if>> <<case "a chattel habit">> $His chattel habit makes $his sexual status immediately and encouragingly obvious. <<case "a penitent nuns habit">> <<if ($activeSlave.dick > 0)>> $He moves with painful caution, desperately trying to keep $his coarse habit from chafing $his dick raw. <<else>> $He moves with painful caution, desperately trying to keep $his coarse habit from chafing $his pussy raw. <</if>> <<case "nice business attire">> <<if ($activeSlave.dick > 4)>> As $he moves, something massive tents the front of $his skirt. <<elseif ($activeSlave.dick > 1)>> As $he moves, something presses against the front of $his skirt. <<else>> Unusually, $his businesslike skirt gives no hint of what's behind it. <</if>> <<case "a slutty nurse outfit">> $His tight skirt constantly threatens to ride up in front. <<case "a schoolgirl outfit">> $His schoolgirl skirt is so short that it constantly threatens to ride up in front. <<case "a kimono">> $His obi demurely covers $his front. <<case "a hijab and abaya">> $His abaya billows somewhat as $he moves. <<case "battledress">> $His fatigue trousers are utilitarian and unflattering. <<case "a comfortable bodysuit">> <<if ($activeSlave.dick != 0)>> $His bodysuit displays every inch of $his member as $he moves. <<else>> $His bodysuit shows off $his womanhood as $he moves. <</if>> <<case "a leotard">> <<if ($activeSlave.dick > 0) && canAchieveErection($activeSlave)>> $He's got $his erection tucked vertically upward under the tight material of $his leotard. <<elseif ($activeSlave.dick > 0)>> The tight material of $his leotard hugs and minimizes the size of $his soft member as $he moves. <<else>> The thin crotch piece of $his leotard occasionally threatens to ride up between $his pussylips as $he moves. <</if>> <<case "a bunny outfit">> <<if ($activeSlave.dick > 0) && canAchieveErection($activeSlave)>> $He's moving uncomfortably, as though $his teddy isn't tailored quite perfectly for what $he's got going on in front. <<elseif ($activeSlave.dick > 0)>> $His teddy is tailored well enough to minimize the fact that $he isn't a natural woman. <<else>> As $he moves, the satin material of $his bunny outfit flashes just a hint of inviting pussy. <</if>> <<case "harem gauze">> <<if ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>> $His hermaphroditic genitals are clearly visible through the thin gauze that covers them. <<elseif ($activeSlave.dick != 0)>> $His dick is clearly visible through the thin gauze that covers it. <<else>> $His pussy is clearly visible through the thin gauze that covers it. <</if>> <<case "slutty jewelry">> <<if ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>> $His belt of light chain has a lewd bauble over $his stomach; its weight pulls it down towards $his hermaphroditic genitalia with each step. <<elseif ($activeSlave.dick != 0)>> $His belt of light chain has a lewd bauble over $his stomach; its weight pulls it down towards the base of $his penis with each step. <<else>> $His belt of light chain has a lewd bauble over $his stomach; its weight pulls it down towards $his mons with each step. <</if>> <<default>> <<if ($activeSlave.vaginalAccessory == "chastity belt")>> $His chastity belt protects $him from vanilla intercourse. <<elseif ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>> You get a good view of $his cock and pussy: a marvel of modern surgery. <<elseif ($activeSlave.dick != 0)>> You get a good view of $his cock. <<else>> You get a good view of $his pussy. <</if>> <</switch>> <<if ($activeSlave.vaginalAccessory == "long dildo") || ($activeSlave.vaginalAccessory == "long, large dildo") || ($activeSlave.vaginalAccessory == "long, huge dildo")>> With every motion $he makes; $his dildo shifts, bulging out $his stomach. <<if ($activeSlave.buttPlug == "long plug") || ($activeSlave.buttPlug == "long, large plug") || ($activeSlave.buttPlug == "long, huge plug")>> Beside it, a second bulge caused by $his extra long buttplug. <</if>> <<elseif ($activeSlave.buttPlug == "long plug") || ($activeSlave.buttPlug == "long, large plug") || ($activeSlave.buttPlug == "long, huge plug")>> With every motion $he makes; $his buttplug shifts, bulging out $his stomach. <</if>> <</if>> <<else>> /* implant descs */ <<if $activeSlave.bellyImplant >= 32000>> <<BellyImplantDescription>> <<switch $activeSlave.clothes>> <<case "a very tight corset">> $His corset struggles to contain $his enormous belly. <<case "chains">> $His enormous belly bulges in between $his tight chains. <<case "uncomfortable straps">> A steel ring rests around $his navel, held in place by tight straps. $His enormous belly bulges around them. <<case "shibari ropes">> $His enormous belly bulges out from between $his ropes. <<case "restrictive latex" "a latex catsuit">> $His enormous belly makes $him look like a giant balloon under the tight latex, $his popped navel breaks the smoothness. <<case "a nice nurse outfit">> $He's decided to become the maternity ward, judging by the enormous belly $he sports. <<case "a maternity dress">> $His tight dress is strained by $his enormous belly. <<case "a nice maid outfit">> $His enormous belly is covered only by an apron. <<case "a penitent nuns habit">> $His enormous belly strains $his habit, it looks absolutely sinful. <<case "a ball gown">> Your gaze is drawn to $his enormous belly by $his striking silken ball gown. <<case "harem gauze">> $His silken garb and enormous belly makes $him look like a belly dancer. <<case "a comfortable bodysuit">> $His enormous belly lewdly fills $his bodysuit. <<case "a schoolgirl outfit">> The school blimp is waddling by. <<case "a monokini">> $His monokini only covers the lower quarter of $his enormous belly. <<case "an apron">> $His apron covers only a fraction of $his enormous belly. <<case "a cybersuit">> $His enormous belly lewdly stretches $his bodysuit. <<case "a hijab and abaya">> $His enormous belly pushes out $his abaya. <<case "a leotard">> $His enormous belly lewdly stretches $his leotard. <<case "a toga">> $His loose fitted toga dangles pathetically to either side of $his enormous belly. <<case "a huipil">> $His taut belly is so enormous that the huipil barely covers any of it. <<default>> $His bare enormous stomach catches your eye. <</switch>> <<elseif $activeSlave.bellyImplant >= 16000>> <<BellyImplantDescription>> <<switch $activeSlave.clothes>> <<case "a very tight corset">> $His corset struggles to contain $his giant belly. <<case "chains">> $His giant belly bulges in between $his tight chains. <<case "uncomfortable straps">> A steel ring rests around $his navel, held in place by tight straps. $His giant belly bulges around them. <<case "shibari ropes">> $His giant belly bulges out from between $his ropes. <<case "restrictive latex" "a latex catsuit">> $His giant belly makes $him look like a balloon under the tight latex, $his popped navel breaks the smoothness. <<case "a nice nurse outfit">> $His giant belly makes $him resemble a maternity ward patient rather than a nurse. <<case "attractive lingerie for a pregnant woman">> $His giant belly is gently framed by $his silken vest. <<case "a maternity dress">> $His loose dress is completely filled by $his giant belly. <<case "a nice maid outfit">> $His maid outfit struggles to contain $his giant belly, $his popped navel is visible under $his apron. <<case "a penitent nuns habit">> $His giant belly fills $his habit, it looks absolutely sinful. <<case "a halter top dress">> $His giant belly fills $his halter top dress, it struggles to contain $his belly. <<case "a ball gown">> Your gaze is drawn to $his giant belly by $his struggling fabulous silken ball gown. <<case "harem gauze">> $His silken garb and giant belly makes $him look like a belly dancer. <<case "a comfortable bodysuit">> $His giant belly lewdly fills $his bodysuit. <<case "a schoolgirl outfit">> The school bicycle is waddling by. <<case "a monokini">> $His monokini only covers the lower half of $his giant belly. <<case "an apron">> $His apron struggles to cover most of $his giant belly. <<case "a cybersuit">> $His giant belly lewdly stretches $his bodysuit. <<case "a hijab and abaya">> $His giant belly fills $his abaya. <<case "a leotard">> $His giant belly lewdly stretches $his leotard. <<case "a toga">> $His loose fitted toga dangles to either side of $his giant belly. <<case "a huipil">> $His belly is so giant that the huipil barely makes it half-way to $his protruding navel. <<default>> $His bare giant belly catches your eye. <</switch>> <<elseif $activeSlave.weight > 190>> <<BellyDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> $His massive gut is alluringly smooth under the tight suit. <<case "conservative clothing">> $His conservative clothing stands no chance of stilling $his massive, jiggling gut. <<case "chains">> $His massive gut jiggles lewdly around $his tight chains. <<case "a slutty qipao">> The front of $his qipao rests atop $his massive gut. <<case "uncomfortable straps">> $His massive gut jiggles lewdly around $his tight straps. <<case "shibari ropes">> $His massive gut jiggles lewdly around $his tight cords. <<case "restrictive latex" "a latex catsuit">> $His massive gut resembles a large beachball under $his tight latex. <<case "a nice nurse outfit">> $His scrub top jiggles along with $his massive gut as $he moves. <<case "a mini dress">> $His tearing minidress shows every jiggle in $his massive gut as $he moves. <<case "a monokini">> $His massive gut spills out over the front of $his monokini. <<case "an apron">> $His apron rests upon $his massive gut, which jiggles as $he moves. <<case "a cybersuit">> The taut material of $his bodysuit shows every jiggle in $his massive gut as $he moves. <<case "a nice maid outfit">> As $he moves, barely any jiggling can be seen within $his straining maid's dress. <<case "a penitent nuns habit">> $His habit does nothing to stop $his massive gut from jiggling against the coarse cloth as $he moves. <<case "clubslut netting">> $His clubslut netting jiggles lewdly along with $his massive gut as $he moves. Every so often, another section gives out allowing a roll of fat to spring free; it's quite entertaining to watch. <<case "a cheerleader outfit">> $His massive gut jiggles its own cheer with $his every motion. <<case "a slave gown">> $His massive jiggly gut is gently caressed by $his gown. <<case "harem gauze">> $His silken garb and massive, jiggly gut makes $him look like a belly dancer. <<case "a comfortable bodysuit">> The taut material of $his bodysuit shows every jiggle in $his massive gut as $he moves. <<case "a schoolgirl outfit">> The school blimp is jiggling by and ripe for abuse with $his ill-fitting clothes. <<case "a kimono">> $His massive gut threatens to pop out of $his kimono with every motion. <<case "a hijab and abaya">> $His massive gut has no room left to move within $his overstuffed abaya. <<case "a halter top dress">> $His strained halter top dress shows every jiggle in $his massive gut as $he moves. Every little motion threatens to burst $his seams and free the soft mass to the world. <<case "a ball gown">> Your gaze is drawn to $his massive gut by $his fabulous silken ball gown. Every little motion has a chance for it to pop out and jiggle free for all to see clearly. <<case "a leotard">> The taut material of $his leotard shows every jiggle in $his massive gut as $he moves. A pair of small ridges adorn $his sides where they have managed to push through the leotard's failing seams. <<case "a bunny outfit">> $He is a sight in $his bunny outfit. The front of $his massive gut is held still by $his overworked teddy, but everything else of it jiggles obscenely with $his every motion. <<case "attractive lingerie for a pregnant woman">> $His massive gut is gently framed by $his silken vest. <<case "a maternity dress">> $His once loose dress bulges with $his massive gut. <<default>> $His massive bare jiggling gut catches your eye. <</switch>> <<elseif $activeSlave.bellyImplant >= 8000>> <<BellyImplantDescription>> <<switch $activeSlave.clothes>> <<case "conservative clothing">> $His taut blouse shows off $his huge belly. <<case "attractive lingerie for a pregnant woman">> $His huge belly is gently framed by $his silken vest. <<case "a maternity dress">> $His loose dress is completely filled by $his huge belly. <<case "chains">> $His huge belly bulges between $his tight chains. <<case "a slutty qipao">> The front of $his qipao rests atop $his huge belly. <<case "uncomfortable straps">> A steel ring rests around $his navel, held in place by tight straps. $His huge belly bulges around them. <<case "shibari ropes">> $His huge belly bulges out from between $his ropes. <<case "restrictive latex" "a latex catsuit">> $His huge belly looks like a large beach ball under $his tight latex, $his popped navel breaks the smoothness. <<case "a military uniform">> $His huge belly threatens to pop the buttons off $his tunic. <<case "a schutzstaffel uniform">> $His huge belly threatens to pop the buttons off $his tunic. <<case "a slutty schutzstaffel uniform">> $His huge belly threatens to pop the buttons off $his tunic. <<case "a red army uniform">> $His huge belly threatens to pop the buttons off $his tunic. <<case "a nice nurse outfit">> $His huge belly strains against $his scrub top, making $him resemble more a maternity ward patient than a nurse. <<case "a mini dress">> $His huge belly threatens to tear apart $his mini dress. <<case "a slutty maid outfit">> $His huge belly is partially covered by a thin white blouse. <<case "a nice maid outfit">> $His huge belly threatens to tear $his maid outfit open, $his popped navel is visible under $his apron. <<case "a penitent nuns habit">> $His huge belly bulges $his habit, it looks absolutely sinful. <<case "clubslut netting">> $His huge belly threatens to tear apart $his clubslut netting. <<case "a cheerleader outfit">> $His huge belly is partly covered by $his cheerleader's top. <<case "a halter top dress">> $His huge belly fills out $his halter top dress, the seams straining to contain it. <<case "a ball gown">> Your gaze is drawn to $his huge belly by $his fabulous silken ball gown. <<case "a slave gown">> $His huge belly is gently caressed by $his gown. <<case "nice business attire">> $His huge belly threatens to pop the buttons off $his jacket. <<case "harem gauze">> $His silken garb and huge belly makes $him look like a belly dancer. <<case "a comfortable bodysuit">> $His huge belly lewdly fills $his bodysuit. <<case "a schoolgirl outfit">> $His huge belly is only partly covered by $his blouse. <<case "a monokini">> $His monokini only covers the lower three quarters of $his huge belly. <<case "a cybersuit">> $His huge belly lewdly stretches $his bodysuit. <<case "a kimono">> $His kimono demurely covers the sides of $his huge belly. <<case "a hijab and abaya">> $His huge belly tents $his abaya. <<case "a leotard">> $His huge belly lewdly stretches $his leotard. <<case "an apron">> $His apron is filled out by $his huge belly. <<case "a chattel habit">> $His huge belly shoves the strip of cloth on $his front to $his side. <<case "a bunny outfit">> $His huge belly is threatening to tear $his teddy, the seams along the side are already splitting. <<case "a toga">> $His loose fitted toga leaves plenty of space for $his swollen belly. <<case "a huipil">> $His belly is so huge that the huipil won't even come close to reaching $his protruding navel. <<default>> $His bare huge belly catches your eye. <</switch>> <<elseif $activeSlave.weight > 160>> <<BellyDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> $His giant gut is alluringly smooth under the tight suit. <<case "conservative clothing">> $His conservative clothing stands no chance of stilling $his giant, jiggling gut. <<case "chains">> $His giant gut jiggles lewdly around $his tight chains. <<case "a slutty qipao">> The front of $his qipao rests atop $his giant gut. <<case "uncomfortable straps">> $His giant gut jiggles lewdly around $his tight straps. <<case "shibari ropes">> $His giant gut jiggles lewdly around $his tight cords. <<case "restrictive latex" "a latex catsuit">> $His giant gut resembles a beachball under $his tight latex. <<case "a military uniform">> The buttons on $his staining jacket threaten to pop off with every motion of $his giant jiggling gut. <<case "a schutzstaffel uniform">> The buttons on $his staining jacket threaten to pop off with every motion of $his giant jiggling gut. <<case "a slutty schutzstaffel uniform">> The buttons on $his staining jacket threaten to pop off with every motion of $his giant jiggling gut. <<case "a red army uniform">> The buttons on $his staining jacket threaten to pop off with every motion of $his giant jiggling gut. <<case "a nice nurse outfit">> $His scrub top jiggles along with $his giant gut as $he moves. <<case "a mini dress">> $His strained minidress shows every jiggle in $his giant gut as $he moves. <<case "a monokini">> $His monokini struggles to reign in $his giant gut. <<case "an apron">> $His apron offers no cover to the jiggles of $his giant gut as $he moves. <<case "a cybersuit">> The taut material of $his bodysuit shows every jiggle in $his giant gut as $he moves. <<case "a nice maid outfit">> As $he moves, noticeable jiggling can be seen within $his maid's dress. <<case "a penitent nuns habit">> $His habit does nothing to stop $his giant gut from jiggling against the coarse cloth as $he moves. <<case "clubslut netting">> $His clubslut netting jiggles lewdly along with $his giant gut as $he moves. <<case "a cheerleader outfit">> $His giant gut is partially covered by $his cheerleader's top, which happily jiggles along with every motion. <<case "a slave gown">> $His giant jiggly gut is gently caressed by $his gown. <<case "nice business attire">> $His giant gut has no room to move under $his strained jacket. <<case "harem gauze">> $His silken garb and giant, jiggly gut makes $him look like a belly dancer. <<case "a comfortable bodysuit">> The taut material of $his bodysuit shows every jiggle in $his giant gut as $he moves. <<case "a schoolgirl outfit">> The school fatty is jiggling by and ripe for abuse with $his ill-fitting clothes. <<case "a kimono">> Tons of jiggling can be seen through $his kimono whenever $he moves. <<case "a hijab and abaya">> Tons of jiggling can be seen through $his abaya whenever $he moves. <<case "a halter top dress">> $His stretched halter top dress shows every jiggle in $his giant gut as $he moves. <<case "a ball gown">> Your gaze is drawn to $his giant gut by $his fabulous silken ball gown. <<case "a leotard">> The taut material of $his leotard shows every jiggle in $his giant gut as $he moves. <<case "a chattel habit">> $His giant gut jiggles around the strip of cloth down $his front as $he moves. <<case "a bunny outfit">> $He is a sight in $his bunny outfit. $His teddy not only covers $his giant gut, but draws your gaze right to it, though it can't help but jiggle along with $his every motion. <<case "attractive lingerie for a pregnant woman">> $His giant gut is gently framed by $his silken vest. <<case "a maternity dress">> $His loose dress bulges with $his giant gut. <<default>> $His giant bare jiggling gut catches your eye. <</switch>> <<elseif $activeSlave.weight > 130>> <<BellyDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> $His big gut is perfectly smoothed by the tight latex. <<case "conservative clothing">> $His conservative clothing stands no chance of stilling $his big, jiggling gut. <<case "chains">> $His big gut jiggles lewdly between $his tight chains. <<case "a huipil">> $His huipil jiggles along with $his big gut. <<case "a slutty qipao">> The front of $his qipao rests atop $his big gut. <<case "uncomfortable straps">> $His big gut jiggles lewdly between $his tight straps. <<case "shibari ropes">> $His big gut jiggles lewdly between $his tight cords. <<case "restrictive latex" "a latex catsuit">> $His big gut has no room to move under $his tight latex. <<case "a military uniform">> The buttons on $his staining jacket struggle to hold back $his big jiggling gut. <<case "a schutzstaffel uniform">> The buttons on $his staining jacket struggle to hold back $his big jiggling gut. <<case "a slutty schutzstaffel uniform">> The buttons on $his staining jacket struggle to hold back $his big jiggling gut. <<case "a red army uniform">> The buttons on $his staining jacket struggle to hold back $his big jiggling gut. <<case "a nice nurse outfit">> $His scrub top jiggles along with $his big gut as $he moves. <<case "a mini dress">> $His stretched minidress shows every jiggle in $his big gut as $he moves. <<case "a monokini">> $His big gut stretches out the fabric of $his monokini. <<case "an apron">> As $he moves, $his apron jostles just as $his big gut jiggles. <<case "a cybersuit">> The taut material of $his bodysuit shows every jiggle in $his big gut as $he moves. <<case "a slutty maid outfit">> $His big gut is barely covered by a thin white blouse that happily jiggles along with every motion. <<case "a nice maid outfit">> As $he moves, a slight jiggle can be seen within $his maid's dress. <<case "a penitent nuns habit">> $His habit does nothing to stop $his big gut from jiggling against the coarse cloth as $he moves. <<case "clubslut netting">> $His clubslut netting jiggles lewdly along with $his big gut as $he moves. <<case "a cheerleader outfit">> $His big gut is partially covered by $his cheerleader's top, which happily jiggles along with every motion. <<case "a slave gown">> $His big jiggly gut is gently caressed by $his gown. <<case "nice business attire">> Noticeable jiggling from $his big gut can be seen under $his jacket. <<case "harem gauze">> $His silken garb and big, jiggly gut makes $him look like a belly dancer. <<case "a comfortable bodysuit">> The taut material of $his bodysuit shows every jiggle in $his big gut as $he moves. <<case "a schoolgirl outfit">> $His big gut is partially covered by $his blouse, which happily jiggles along with every motion. <<case "a kimono">> Noticeable jiggling can be seen through $his kimono whenever $he moves. <<case "a hijab and abaya">> Noticeable jiggling can be seen through $his abaya whenever $he moves. <<case "a halter top dress">> $His stretched halter top dress shows every jiggle in $his big gut as $he moves. <<case "a ball gown">> Your gaze is drawn to $his big gut by $his fabulous silken ball gown. <<case "a leotard">> The taut material of $his leotard shows every jiggle in $his big gut as $he moves. <<case "a bunny outfit">> $He is a sight in $his bunny outfit. $His teddy not only controls $his big gut, but draws your gaze right to it. <<case "attractive lingerie for a pregnant woman">> $His big gut is gently framed by $his silken vest. <<case "a maternity dress">> $His loose dress bulges with $his big gut. <<default>> $His big bare jiggling gut catches your eye. <</switch>> <<elseif $activeSlave.bellyImplant >= 4000>> <<BellyImplantDescription>> <<switch $activeSlave.clothes>> <<case "conservative clothing">> $His taut blouse shows off $his big belly. <<case "chains">> $His big belly bulges between $his tight chains. <<case "a slutty qipao">> The front of $his qipao rests atop $his big belly. <<case "uncomfortable straps">> A steel ring rests around $his navel, held in place by tight straps. $His big belly bulges around them. <<case "shibari ropes">> $His big belly bulges out from between $his ropes. <<case "restrictive latex" "a latex catsuit">> $His big belly looks like a beach ball under $his tight latex, $his popped navel breaks the smoothness. <<case "a military uniform">> $His big belly strains the buttons on $his jacket. <<case "a schutzstaffel uniform">> $His big belly strains the buttons on $his jacket. <<case "a slutty schutzstaffel uniform">> $His big belly strains the buttons on $his jacket. <<case "a red army uniform">> $His big belly strains the buttons on $his jacket. <<case "a nice nurse outfit">> $His large belly strains against $his scrub top, making $him resemble more a maternity ward patient than a nurse. <<case "a mini dress">> $His large belly strains against $his mini dress. <<case "a monokini">> $His monokini is rounded out by $his large belly. <<case "an apron">> $His apron is rounded out by $his large belly. <<case "a cybersuit">> $His big belly stretches $his bodysuit. <<case "a slutty maid outfit">> $His big belly is partially covered by a thin white blouse. <<case "a nice maid outfit">> $His big belly strains $his maid outfit, $his popped navel is visible under $his apron. <<case "a penitent nuns habit">> $His big belly bulges $his habit, it looks absolutely sinful. <<case "clubslut netting">> $His big belly strains $his clubslut netting. <<case "a cheerleader outfit">> $His big belly is partly covered by $his cheerleader's top. <<case "a halter top dress">> $His big belly fills out $his halter top dress. <<case "a ball gown">> Your gaze is drawn to $his big belly by $his fabulous silken ball gown. <<case "a slave gown">> $His big belly is gently caressed by $his gown. <<case "nice business attire">> $His big belly strains the buttons on $his jacket. <<case "harem gauze">> $His silken garb and big belly makes $him look like a belly dancer. <<case "a comfortable bodysuit">> $His big belly fills $his bodysuit. <<case "a schoolgirl outfit">> $His big belly is only partly covered by $his blouse. <<case "a kimono">> $His kimono demurely covers $his big belly. <<case "a hijab and abaya">> $His big belly tents $his abaya. <<case "a leotard">> $His big belly stretches $his leotard. <<case "a chattel habit">> $His big belly shoves the strip of cloth on $his front to $his side. <<case "a bunny outfit">> $His big belly is strains $his teddy, the seams along the side are showing signs of wear. <<case "a toga">> $His loose fitted toga leaves plenty of space for $his swollen belly. <<case "a huipil">> $His pregnant belly is so big that the huipil won't even reach $his protruding navel. <<default>> $His bare belly catches your eye. <</switch>> <<elseif $activeSlave.weight >= 95>> <<BellyImplantDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> Its suit is expressly designed to encourage use of its holes. <<case "conservative clothing">> $His taut blouse shows every jiggle in $his fat gut as $he moves. <<case "chains">> $His fat gut jiggles lewdly between $his tight chains. <<case "a slutty qipao">> The front of $his qipao rests atop, and jiggles with, $his fat gut as $he moves. <<case "uncomfortable straps">> $His fat gut jiggles lewdly between $his tight straps. <<case "shibari ropes">> $His fat gut jiggles lewdly between the binding ropes. <<case "restrictive latex" "a latex catsuit">> $His fat gut barely has any room to move under $his tight latex. <<case "a military uniform">> The buttons on $his staining jacket can barely hold back $his fat, jiggling gut. <<case "a schutzstaffel uniform">> The buttons on $his staining jacket can barely hold back $his fat, jiggling gut. <<case "a slutty schutzstaffel uniform">> The buttons on $his staining jacket can barely hold back $his fat, jiggling gut. <<case "a red army uniform">> The buttons on $his staining jacket can barely hold back $his fat, jiggling gut. <<case "a nice nurse outfit">> $His scrub top jiggles along with $his fat gut as $he moves. <<case "a mini dress">> $His stretched minidress shows every jiggle in $his fat gut as $he moves. <<case "a monokini">> $His monokini clings to the size and shape of $his fat gut. <<case "an apron">> $His apron provides some covering to the jiggling of $his fat gut. <<case "a cybersuit">> The taut material of $his bodysuit shows every jiggle in $his fat gut as $he moves. <<case "a slutty maid outfit">> $His fat gut is partially covered by a thin white blouse, that happily jiggles along with every motion. <<case "a nice maid outfit">> As $he moves, a slight jiggle can be seen within $his maid's dress. <<case "a penitent nuns habit">> $His habit does nothing to stop $his fat gut from jiggling against the coarse cloth as $he moves. <<case "clubslut netting">> $His clubslut netting jiggles lewdly along with $his fat gut as $he moves. <<case "a cheerleader outfit">> $His fat gut is partially covered by $his cheerleader's top, which happily jiggles along with every motion. <<case "a halter top dress">> $His stretched halter top dress shows every jiggle in $his fat gut as $he moves. <<case "a ball gown">> Your gaze is drawn to $his fat gut by $his fabulous silken ball gown. <<case "a slave gown">> $His fat, jiggly gut is gently caressed by $his gown. <<case "nice business attire">> Slight jiggling from $his fat gut can be seen under $his jacket. <<case "harem gauze">> $His silken garb and fat, jiggly gut makes $him look like a belly dancer. <<case "a comfortable bodysuit">> The taut material of $his bodysuit shows every jiggle in $his fat gut as $he moves. <<case "a schoolgirl outfit">> $His fat gut is partially covered by $his blouse, which happily jiggles along with every motion. <<case "a kimono">> Slight jiggling can be seen through $his kimono whenever $he moves. <<case "a hijab and abaya">> Slight jiggling can be seen through $his abaya whenever $he moves. <<case "a leotard">> The taut material of $his leotard shows every jiggle in $his fat gut as $he moves. <<case "a chattel habit">> $His fat gut jiggles around the strip of cloth down $his front as $he moves. <<case "a bunny outfit">> $He is a sight in $his bunny outfit. The front of $his fat gut is held still by $his teddy, but everything else of it jiggles obscenely with $his every motion. <<case "a toga">> $His toga swerves loosely from side to side as $his chubby body moves inside it. <<case "a huipil">> $His lithe huipil can't hide $his voluptuous shape unless $he stands completely still. <<default>> $His bare, jiggling, fat gut catches your eye. <</switch>> <<elseif $activeSlave.bellyImplant >= 2000>> <<BellyImplantDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> Its suit is expressly designed to encourage use of its holes. <<case "conservative clothing">> $His blouse bulges with $his distended belly. <<case "chains">> $His distended belly bulges between $his tight chains. <<case "a slutty qipao">> The front of $his qipao rests atop $his distended belly. <<case "uncomfortable straps">> A steel ring rests around $his navel, held in place by tight straps. $His distended belly bulges around them. <<case "shibari ropes">> $His distended belly bulges out from between $his ropes. <<case "restrictive latex" "a latex catsuit">> $His distended belly bulges beneath $his tight latex. <<case "a military uniform">> $His distended belly bulges $his uniform tunic. <<case "a schutzstaffel uniform">> $His distended belly bulges $his uniform tunic. <<case "a slutty schutzstaffel uniform">> $His distended belly bulges $his uniform tunic. <<case "a red army uniform">> $His distended belly bulges $his uniform tunic. <<case "a nice nurse outfit">> $His distended belly is clearly visible through $his scrub top. <<case "a mini dress">> $His distended belly bulges $his tight mini dress. <<case "a monokini">> $His monokini bulges from $his distended belly. <<case "an apron">> $His apron is rounded out by $his distended belly. <<case "a cybersuit">> $His distended belly fills $his bodysuit. <<case "a slutty maid outfit">> $His distended belly bulges $his thin white blouse. <<case "a nice maid outfit">> $His distended belly is concealed by $his maid outfit. <<case "a penitent nuns habit">> $His distended belly bulges $his habit. <<case "attractive lingerie for a pregnant woman">> $His distended belly is gently framed by $his silken vest. <<case "a maternity dress">> $His loose dress conceals $his distended belly. <<case "clubslut netting">> $His distended belly fills out $his clubslut netting. <<case "a cheerleader outfit">> $His distended belly peeks out from under $his cheerleader's top. <<case "a halter top dress">> $His distended belly bulges $his halter top dress. <<case "a ball gown">> Your gaze is drawn to $his distended belly by $his fabulous silken ball gown. <<case "a slave gown">> $His distended belly is gently caressed by $his gown. <<case "nice business attire">> $His distended belly bulges $his suit jacket. <<case "harem gauze">> $His silken garb and distended belly makes $him look like a belly dancer. <<case "a comfortable bodysuit">> $His distended belly fills $his bodysuit. <<case "a schoolgirl outfit">> $His distended belly peeks out from under $his blouse. <<case "a kimono">> $His kimono demurely covers $his distended belly. <<case "a hijab and abaya">> $His distended belly gently tents $his abaya. <<case "a leotard">> $His distended belly fills $his leotard. <<case "a chattel habit">> $His distended belly shows under the strip of cloth on $his front. <<case "a bunny outfit">> $His distended belly fills $his teddy. <<case "a toga">> $His toga is so loose that you can barely notice $his growing belly. <<case "a huipil">> $His distended belly can be seen from the sides of $his huipil. <<default>> $His slightly rounded belly catches your eye. <</switch>> <</if>> <</if>> <<else>> /* inflation descs */ <<if $activeSlave.weight > 190>> <<BellyDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> $His massive gut is alluringly smooth under the tight suit. <<case "conservative clothing">> $His conservative clothing stands no chance of stilling $his massive, jiggling gut. <<case "chains">> $His massive gut jiggles lewdly around $his tight chains. <<case "a slutty qipao">> The front of $his qipao rests atop $his massive gut. <<case "uncomfortable straps">> $His massive gut jiggles lewdly around $his tight straps. <<case "shibari ropes">> $His massive gut jiggles lewdly around $his tight cords. <<case "restrictive latex" "a latex catsuit">> $His massive gut resembles a large beachball under $his tight latex. <<case "a nice nurse outfit">> $His scrub top jiggles along with $his massive gut as $he moves. <<case "a mini dress">> $His tearing minidress shows every jiggle in $his massive gut as $he moves. <<case "a monokini">> $His massive gut spills out from the top of $his monokini as $he moves. <<case "an apron">> $His apron rests upon $his massive gut, which jiggles as $he moves. <<case "a cybersuit">> The taut material of $his bodysuit shows every jiggle in $his massive gut as $he moves. <<case "a nice maid outfit">> As $he moves, barely any jiggling can be seen within $his straining maid's dress. <<case "a penitent nuns habit">> $His habit does nothing to stop $his massive gut from jiggling against the coarse cloth as $he moves. <<case "clubslut netting">> $His clubslut netting jiggles lewdly along with $his massive gut as $he moves. Every so often, another section gives out allowing a roll of fat to spring free; it's quite entertaining to watch. <<case "a cheerleader outfit">> $His massive gut jiggles its own cheer with $his every motion. <<case "a slave gown">> $His massive jiggly gut is gently caressed by $his gown. <<case "harem gauze">> $His silken garb and massive, jiggly gut makes $him look like a belly dancer. <<case "a comfortable bodysuit">> The taut material of $his bodysuit shows every jiggle in $his massive gut as $he moves. <<case "a schoolgirl outfit">> The school blimp is jiggling by and ripe for abuse with $his ill-fitting clothes. <<case "a kimono">> $His massive gut threatens to pop out of $his kimono with every motion. <<case "a hijab and abaya">> $His massive gut has no room left to move within $his overstuffed abaya. <<case "a halter top dress">> $His strained halter top dress shows every jiggle in $his massive gut as $he moves. Every little motion threatens to burst $his seams and free the soft mass to the world. <<case "a ball gown">> Your gaze is drawn to $his massive gut by $his fabulous silken ball gown. Every little motion has a chance for it to pop out and jiggle free for all to see clearly. <<case "a leotard">> The taut material of $his leotard shows every jiggle in $his massive gut as $he moves. A pair of small ridges adorn $his sides where they have managed to push through the leotard's failing seams. <<case "a bunny outfit">> $He is a sight in $his bunny outfit. The front of $his massive gut is held still by $his overworked teddy, but everything else of it jiggles obscenely with $his every motion. <<case "attractive lingerie for a pregnant woman">> $His massive gut is gently framed by $his silken vest. <<case "a maternity dress">> $His once loose dress bulges with $his massive gut. <<default>> $His massive bare jiggling gut catches your eye. <</switch>> <<elseif $activeSlave.inflation == 3>> <<BellyInflationDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> Its suit is expressly designed to encourage use of its holes. <<case "conservative clothing">> $His taut blouse shows off $his taut, sloshing belly. <<case "attractive lingerie for a pregnant woman">> $His taut, sloshing belly is gently framed by $his silken vest. <<case "a maternity dress">> $His loose dress is completely filled by $his taut, sloshing belly. <<case "chains">> $His taut, sloshing belly bulges between $his tight chains. <<case "a slutty qipao">> The front of $his qipao rests atop $his taut, sloshing belly. <<case "uncomfortable straps">> A steel ring rests around $his navel, held in place by tight straps. $His taut, sloshing belly bulges around them. <<case "shibari ropes">> $His taut, sloshing belly bulges out from between $his ropes. <<case "restrictive latex" "a latex catsuit">> $His taut, sloshing belly looks like a large beach ball under $his tight latex, $his popped navel breaks the smoothness. <<case "a military uniform">> $His taut, sloshing belly threatens to pop the buttons off $his tunic. $His belly bulges out between them. <<case "a schutzstaffel uniform">> $His taut, sloshing belly threatens to pop the buttons off $his tunic. $His belly bulges out between them. <<case "a slutty schutzstaffel uniform">> $His taut, sloshing belly threatens to pop the buttons off $his tunic. $His belly bulges out between them. <<case "a red army uniform">> $His taut, sloshing belly threatens to pop the buttons off $his tunic. $His belly bulges out between them. <<case "a nice nurse outfit">> $His taut, sloshing belly strains against $his scrub top, making $him resemble more a maternity ward patient than a nurse. <<case "a mini dress">> $His taut, sloshing belly threatens to tear apart $his mini dress. <<case "a slutty maid outfit">> $His taut, sloshing belly is partially covered by a thin white blouse. <<case "a nice maid outfit">> $His taut, sloshing belly threatens to tear $his maid outfit open, $his popped navel is visible under $his apron. <<case "a penitent nuns habit">> $His taut, sloshing belly bulges $his habit, it looks absolutely sinful. <<case "clubslut netting">> $His taut, sloshing belly threatens to tear apart $his clubslut netting. $His belly bulges obscenely through the mesh. <<case "a cheerleader outfit">> $His taut, sloshing belly is partly covered by $his cheerleader's top. <<case "a halter top dress">> $His taut, sloshing belly fills out $his halter top dress, the seams straining to contain it. $His belly bulges between the gaps. <<case "a ball gown">> Your gaze is drawn to $his taut, sloshing belly by $his fabulous silken ball gown. <<case "a slave gown">> $His taut, sloshing belly is gently caressed by $his gown. <<case "nice business attire">> $His taut, sloshing belly threatens to pop the buttons off $his jacket. $His belly bulges between the buttons. <<case "harem gauze">> $His silken garb and taut, sloshing belly makes $him look like a belly dancer. That'd be a show. <<case "a comfortable bodysuit">> $His taut, sloshing belly lewdly fills $his bodysuit. The form fitting material jiggling obscenely with $his body's contents. <<case "a schoolgirl outfit">> $His taut, sloshing belly is only partly covered by $his blouse. <<case "a kimono">> $His kimono demurely covers the sides of $his taut, sloshing belly. <<case "a monokini">> $His monokini fails to fully cover $his taut, sloshing belly. <<case "an apron">> $His apron struggles to wrap around $his taut, sloshing belly. <<case "a cybersuit">> $His taut, sloshing belly lewdly stretches $his bodysuit. The form fitting material jiggling obscenely with $his body's contents. <<case "a hijab and abaya">> $His taut, sloshing belly tents $his abaya. <<case "a leotard">> $His taut, sloshing belly lewdly stretches $his leotard. The form fitting material jiggling obscenely with $his body's contents. <<case "a chattel habit">> $His taut, sloshing belly shoves the strip of cloth on $his front to $his side. <<case "a bunny outfit">> $His taut, sloshing belly is threatening to tear $his teddy, the seams along the side are already splitting. $His belly is bulging out the gaps. <<case "a toga">> $His loose fitted toga leaves plenty of space for $his taut, sloshing belly. <<case "a huipil">> $His taut, sloshing belly is so huge that the huipil doesn't even come close to covering it. <<default>> $His bare, taut, sloshing belly catches your eye. <</switch>> <<elseif $activeSlave.weight > 160>> <<BellyDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> $His giant gut is alluringly smooth under the tight suit. <<case "conservative clothing">> $His conservative clothing stands no chance of stilling $his giant, jiggling gut. <<case "chains">> $His giant gut jiggles lewdly around $his tight chains. <<case "a slutty qipao">> The front of $his qipao rests atop $his giant gut. <<case "uncomfortable straps">> $His giant gut jiggles lewdly around $his tight straps. <<case "shibari ropes">> $His giant gut jiggles lewdly around $his tight cords. <<case "restrictive latex" "a latex catsuit">> $His giant gut resembles a beachball under $his tight latex. <<case "a military uniform">> The buttons on $his staining jacket threaten to pop off with every motion of $his giant jiggling gut. <<case "a schutzstaffel uniform">> The buttons on $his staining jacket threaten to pop off with every motion of $his giant jiggling gut. <<case "a slutty schutzstaffel uniform">> The buttons on $his staining jacket threaten to pop off with every motion of $his giant jiggling gut. <<case "a red army uniform">> The buttons on $his staining jacket threaten to pop off with every motion of $his giant jiggling gut. <<case "a nice nurse outfit">> $His scrub top jiggles along with $his giant gut as $he moves. <<case "a mini dress">> $His strained minidress shows every jiggle in $his giant gut as $he moves. <<case "a monokini">> $His giant gut causes $his monokini to jiggle alongside it as $he moves. <<case "an apron">> $His apron offers no cover to the jiggles of $his giant gut as $he moves. <<case "a cybersuit">> The taut material of $his bodysuit shows every jiggle in $his giant gut as $he moves. <<case "a nice maid outfit">> As $he moves, noticeable jiggling can be seen within $his maid's dress. <<case "a penitent nuns habit">> $His habit does nothing to stop $his giant gut from jiggling against the coarse cloth as $he moves. <<case "clubslut netting">> $His clubslut netting jiggles lewdly along with $his giant gut as $he moves. <<case "a cheerleader outfit">> $His giant gut is partially covered by $his cheerleader's top, which happily jiggles along with every motion. <<case "a slave gown">> $His giant jiggly gut is gently caressed by $his gown. <<case "nice business attire">> $His giant gut has no room to move under $his strained jacket. <<case "harem gauze">> $His silken garb and giant, jiggly gut makes $him look like a belly dancer. <<case "a comfortable bodysuit">> The taut material of $his bodysuit shows every jiggle in $his giant gut as $he moves. <<case "a schoolgirl outfit">> The school fatty is jiggling by and ripe for abuse with $his ill-fitting clothes. <<case "a kimono">> Tons of jiggling can be seen through $his kimono whenever $he moves. <<case "a hijab and abaya">> Tons of jiggling can be seen through $his abaya whenever $he moves. <<case "a halter top dress">> $His stretched halter top dress shows every jiggle in $his giant gut as $he moves. <<case "a ball gown">> Your gaze is drawn to $his giant gut by $his fabulous silken ball gown. <<case "a leotard">> The taut material of $his leotard shows every jiggle in $his giant gut as $he moves. <<case "a chattel habit">> $His giant gut jiggles around the strip of cloth down $his front as $he moves. <<case "a bunny outfit">> $He is a sight in $his bunny outfit. $His teddy not only covers $his giant gut, but draws your gaze right to it, though it can't help but jiggle along with $his every motion. <<case "attractive lingerie for a pregnant woman">> $His giant gut is gently framed by $his silken vest. <<case "a maternity dress">> $His loose dress bulges with $his giant gut. <<default>> $His giant bare jiggling gut catches your eye. <</switch>> <<elseif $activeSlave.weight > 130>> <<BellyDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> $His big gut is perfectly smoothed by the tight latex. <<case "conservative clothing">> $His conservative clothing stands no chance of stilling $his big, jiggling gut. <<case "chains">> $His big gut jiggles lewdly between $his tight chains. <<case "a huipil">> $His huipil jiggles along with $his big gut. <<case "a slutty qipao">> The front of $his qipao rests atop $his big gut. <<case "uncomfortable straps">> $His big gut jiggles lewdly between $his tight straps. <<case "shibari ropes">> $His big gut jiggles lewdly between $his tight cords. <<case "restrictive latex" "a latex catsuit">> $His big gut has no room to move under $his tight latex. <<case "a military uniform">> The buttons on $his staining jacket struggle to hold back $his big jiggling gut. <<case "a schutzstaffel uniform">> The buttons on $his staining jacket struggle to hold back $his big jiggling gut. <<case "a red army uniform">> The buttons on $his staining jacket struggle to hold back $his big jiggling gut. <<case "a nice nurse outfit">> $His scrub top jiggles along with $his big gut as $he moves. <<case "a mini dress">> $His stretched minidress shows every jiggle in $his big gut as $he moves. <<case "a monokini">> $His monokini struggles to stop $his big gut from jiggling as $he moves. <<case "an apron">> As $he moves, $his apron jostles just as $his big gut jiggles. <<case "a cybersuit">> The taut material of $his bodysuit shows every jiggle in $his big gut as $he moves. <<case "a slutty maid outfit">> $His big gut is barely covered by a thin white blouse that happily jiggles along with every motion. <<case "a nice maid outfit">> As $he moves, a slight jiggle can be seen within $his maid's dress. <<case "a penitent nuns habit">> $His habit does nothing to stop $his big gut from jiggling against the coarse cloth as $he moves. <<case "clubslut netting">> $His clubslut netting jiggles lewdly along with $his big gut as $he moves. <<case "a cheerleader outfit">> $His big gut is partially covered by $his cheerleader's top, which happily jiggles along with every motion. <<case "a slave gown">> $His big jiggly gut is gently caressed by $his gown. <<case "nice business attire">> Noticeable jiggling from $his big gut can be seen under $his jacket. <<case "harem gauze">> $His silken garb and big, jiggly gut makes $him look like a belly dancer. <<case "a comfortable bodysuit">> The taut material of $his bodysuit shows every jiggle in $his big gut as $he moves. <<case "a schoolgirl outfit">> $His big gut is partially covered by $his blouse, which happily jiggles along with every motion. <<case "a kimono">> Noticeable jiggling can be seen through $his kimono whenever $he moves. <<case "a hijab and abaya">> Noticeable jiggling can be seen through $his abaya whenever $he moves. <<case "a halter top dress">> $His stretched halter top dress shows every jiggle in $his big gut as $he moves. <<case "a ball gown">> Your gaze is drawn to $his big gut by $his fabulous silken ball gown. <<case "a leotard">> The taut material of $his leotard shows every jiggle in $his big gut as $he moves. <<case "a bunny outfit">> $He is a sight in $his bunny outfit. $His teddy not only controls $his big gut, but draws your gaze right to it. <<case "attractive lingerie for a pregnant woman">> $His big gut is gently framed by $his silken vest. <<case "a maternity dress">> $His loose dress bulges with $his big gut. <<default>> $His big bare jiggling gut catches your eye. <</switch>> <<elseif $activeSlave.inflation == 2>> <<BellyInflationDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> Its suit is expressly designed to encourage use of its holes. <<case "conservative clothing">> $His taut blouse shows off $his rounded, sloshing belly. <<case "chains">> $His rounded, sloshing belly bulges between $his tight chains. <<case "a slutty qipao">> The front of $his qipao rests atop $his rounded, sloshing belly. <<case "uncomfortable straps">> A steel ring rests around $his navel, held in place by tight straps. $His rounded, sloshing belly bulges around them. <<case "attractive lingerie for a pregnant woman">> $His rounded, sloshing belly is gently framed by $his silken vest. <<case "a maternity dress">> $His loose dress is filled by $his rounded, sloshing belly. <<case "shibari ropes">> $His rounded, sloshing belly bulges out from between $his ropes. <<case "restrictive latex" "a latex catsuit">> $His rounded, sloshing belly looks like a beach ball under $his tight latex, $his popped navel breaks the smoothness. <<case "a military uniform">> $His rounded, sloshing belly strains the buttons on $his jacket. It bulges slightly between them. <<case "a schutzstaffel uniform">> $His rounded, sloshing belly strains the buttons on $his jacket. It bulges slightly between them. <<case "a slutty schutzstaffel uniform">> $His rounded, sloshing belly strains the buttons on $his jacket. It bulges slightly between them. <<case "a red army uniform">> $His rounded, sloshing belly strains the buttons on $his jacket. It bulges slightly between them. <<case "a nice nurse outfit">> $His rounded, sloshing belly strains against $his scrub top, making $him resemble more a maternity ward patient than a nurse. <<case "a mini dress">> $His rounded, sloshing belly strains against $his mini dress. <<case "a slutty maid outfit">> $His rounded, sloshing belly is partially covered by a thin white blouse. <<case "a nice maid outfit">> $His rounded, sloshing belly strains $his maid outfit, $his popped navel is visible under $his apron. <<case "a penitent nuns habit">> $His rounded, sloshing belly bulges $his habit, it looks absolutely sinful. <<case "clubslut netting">> $His rounded, sloshing belly strains $his clubslut netting. <<case "a cheerleader outfit">> $His rounded, sloshing belly is partly covered by $his cheerleader's top. <<case "a halter top dress">> $His rounded, sloshing belly fills out $his halter top dress. <<case "a ball gown">> Your gaze is drawn to $his rounded, sloshing belly by $his fabulous silken ball gown. <<case "a slave gown">> $His rounded, sloshing belly is gently caressed by $his gown. <<case "nice business attire">> $His rounded, sloshing belly strains the buttons on $his jacket. It bulges slightly between them. <<case "harem gauze">> $His silken garb and rounded, sloshing belly makes $him look like a belly dancer. That'd be a show. <<case "a comfortable bodysuit">> $His rounded, sloshing belly fills $his bodysuit. Every movement of the liquid within $his is very visible. <<case "a schoolgirl outfit">> $His rounded, sloshing belly is only partly covered by $his blouse. <<case "a kimono">> $His kimono demurely covers $his rounded, sloshing belly. <<case "a monokini">> $His monokini struggles to cover ger rounded, sloshing belly. <<case "a cybersuit">> $His rounded, sloshing belly fills $his bodysuit. Every movement of the liquid within $his is very visible. <<case "a hijab and abaya">> $His rounded, sloshing belly tents $his abaya. <<case "a leotard">> $His rounded, sloshing belly stretches $his leotard. Every movement of the liquid within $his is very visible. <<case "a chattel habit">> $His rounded, sloshing belly shoves the strip of cloth on $his front to $his side. <<case "a bunny outfit">> $His rounded, sloshing belly is strains $his teddy, the seams along the side are showing signs of wear. <<case "a toga">> $His loose fitted toga leaves plenty of space for $his rounded, sloshing belly. <<case "a huipil">> $His rounded, sloshing belly is so big that the huipil can barely cover it. <<default>> $His bare, rounded, sloshing belly catches your eye. <</switch>> <<elseif $activeSlave.weight >= 95>> <<BellyDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> Its suit is expressly designed to encourage use of its holes. <<case "conservative clothing">> $His taut blouse shows every jiggle in $his fat gut as $he moves. <<case "chains">> $His fat gut jiggles lewdly between $his tight chains. <<case "a slutty qipao">> The front of $his qipao rests atop, and jiggles with, $his fat gut as $he moves. <<case "uncomfortable straps">> $His fat gut jiggles lewdly between $his tight straps. <<case "shibari ropes">> $His fat gut jiggles lewdly between the binding ropes. <<case "restrictive latex" "a latex catsuit">> $His fat gut barely has any room to move under $his tight latex. <<case "a military uniform">> The buttons on $his staining jacket can barely hold back $his fat, jiggling gut. <<case "a schutzstaffel uniform">> The buttons on $his staining jacket can barely hold back $his fat, jiggling gut. <<case "a slutty schutzstaffel uniform">> The buttons on $his staining jacket can barely hold back $his fat, jiggling gut. <<case "a red army uniform">> The buttons on $his staining jacket can barely hold back $his fat, jiggling gut. <<case "a nice nurse outfit">> $His scrub top jiggles along with $his fat gut as $he moves. <<case "a mini dress">> $His stretched minidress shows every jiggle in $his fat gut as $he moves. <<case "a monokini">> $His fat gut bulges out $his monokini, which stops $his from jiggling as $he moves. <<case "an apron">> $His apron provides some covering to the jiggling of $his fat gut. <<case "a cybersuit">> The taut material of $his bodysuit shows every jiggle in $his fat gut as $he moves. <<case "a slutty maid outfit">> $His fat gut is partially covered by a thin white blouse, that happily jiggles along with every motion. <<case "a nice maid outfit">> As $he moves, a slight jiggle can be seen within $his maid's dress. <<case "a penitent nuns habit">> $His habit does nothing to stop $his fat gut from jiggling against the coarse cloth as $he moves. <<case "clubslut netting">> $His clubslut netting jiggles lewdly along with $his fat gut as $he moves. <<case "a cheerleader outfit">> $His fat gut is partially covered by $his cheerleader's top, which happily jiggles along with every motion. <<case "a halter top dress">> $His stretched halter top dress shows every jiggle in $his fat gut as $he moves. <<case "a ball gown">> Your gaze is drawn to $his fat gut by $his fabulous silken ball gown. <<case "a slave gown">> $His fat, jiggly gut is gently caressed by $his gown. <<case "nice business attire">> Slight jiggling from $his fat gut can be seen under $his jacket. <<case "harem gauze">> $His silken garb and fat, jiggly gut makes $him look like a belly dancer. <<case "a comfortable bodysuit">> The taut material of $his bodysuit shows every jiggle in $his fat gut as $he moves. <<case "a schoolgirl outfit">> $His fat gut is partially covered by $his blouse, which happily jiggles along with every motion. <<case "a kimono">> Slight jiggling can be seen through $his kimono whenever $he moves. <<case "a hijab and abaya">> Slight jiggling can be seen through $his abaya whenever $he moves. <<case "a leotard">> The taut material of $his leotard shows every jiggle in $his fat gut as $he moves. <<case "a chattel habit">> $His fat gut jiggles around the strip of cloth down $his front as $he moves. <<case "a bunny outfit">> $He is a sight in $his bunny outfit. The front of $his fat gut is held still by $his teddy, but everything else of it jiggles obscenely with $his every motion. <<case "a toga">> $His toga swerves loosely from side to side as $his chubby body moves inside it. <<case "a huipil">> $His lithe huipil can't hide $his voluptuous shape unless $he stands completely still. <<default>> $His bare, jiggling, fat gut catches your eye. <</switch>> <<elseif $activeSlave.inflation == 1>> <<BellyInflationDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> Its suit is expressly designed to encourage use of its holes. <<case "conservative clothing">> $His blouse bulges with $his distended belly. <<case "chains">> $His distended belly bulges between $his tight chains. <<case "a slutty qipao">> The front of $his qipao rests atop $his distended belly. <<case "uncomfortable straps">> A steel ring rests around $his navel, held in place by tight straps. $His distended belly bulges around them. <<case "shibari ropes">> $His distended belly bulges out from between $his ropes. <<case "restrictive latex" "a latex catsuit">> $His distended belly bulges beneath $his tight latex. <<case "a military uniform">> $His distended belly bulges $his uniform tunic. <<case "a schutzstaffel uniform">> $His distended belly bulges $his uniform tunic. <<case "a slutty schutzstaffel uniform">> $His distended belly bulges $his uniform tunic. <<case "a red army uniform">> $His distended belly bulges $his uniform tunic. <<case "a nice nurse outfit">> $His distended belly is clearly visible through $his scrub top. <<case "a mini dress">> $His distended belly bulges $his tight mini dress. <<case "a slutty maid outfit">> $His distended belly bulges $his thin white blouse. <<case "a nice maid outfit">> $His distended belly is concealed by $his maid outfit. <<case "a penitent nuns habit">> $His distended belly bulges $his habit. <<case "attractive lingerie for a pregnant woman">> $His distended belly is gently framed by $his silken vest. <<case "a maternity dress">> $His loose dress conceals $his distended belly. <<case "clubslut netting">> $His distended belly fills out $his clubslut netting. <<case "a cheerleader outfit">> $His distended belly peeks out from under $his cheerleader's top. <<case "a halter top dress">> $His distended belly bulges $his halter top dress. <<case "a ball gown">> Your gaze is drawn to $his distended belly by $his fabulous silken ball gown. <<case "a slave gown">> $His distended belly is gently caressed by $his gown. <<case "nice business attire">> $His distended belly bulges $his suit jacket. <<case "harem gauze">> $His silken garb and distended belly makes $him look like a belly dancer. <<case "a comfortable bodysuit">> $His distended belly fills $his bodysuit. <<case "a schoolgirl outfit">> $His distended belly peeks out from under $his blouse. <<case "a kimono">> $His kimono demurely covers $his distended belly. <<case "a monokini">> $His monokini manages to cover $his distended belly. <<case "a cybersuit">> $His distended belly fills $his bodysuit. <<case "a hijab and abaya">> $His distended belly gently tents $his abaya. <<case "a leotard">> $His distended belly fills $his leotard. <<case "a chattel habit">> $His distended belly shows under the strip of cloth on $his front. <<case "a bunny outfit">> $His distended belly fills $his teddy. <<case "a toga">> $His toga is so loose that you can barely notice $his distended belly. <<case "a huipil">> $His distended belly can be seen from the sides of $his huipil. <<default>> $His distended belly catches your eye. <</switch>> <</if>> <</if>> <<set _target = "FVagina">> <<elseif (_seed > 20)>> <<AnusDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> Its suit is expressly designed to encourage use of its rear hole. <<case "uncomfortable straps">> The ring over $his asshole beckons. <<case "shibari ropes">> The rope between $his buttocks presses lewdly against $his anus as $he moves. <<case "restrictive latex">> As one of the only islands in the sea of black latex, $his asshole is eye catching. <<case "a fallen nuns habit">> $His slutty nun outfit leaves $his butthole bare and available for anal sin. <<case "a chattel habit">> $His chattel habit covers $his anus with a strip of cloth, but it's designed to be lifted readily. <<case "a penitent nuns habit">> $His habit chafes $his rear end so cruelly that it would probably be a relief to $him to have it pulled up for a rough buttfuck. <<case "attractive lingerie">> <<if ($activeSlave.anus > 1) && ($activeSlave.amp == 1)>> $His pretty g-string frequently fails to cover $his big butthole. <<elseif ($activeSlave.anus > 1)>> As $he moves, $his pretty g-string frequently fails to cover $his big butthole. <<else>> As $he moves, $his pretty g-string draws your attention to $his ass. <</if>> <<case "a succubus outfit">> $His succubus outfit's tail holds $his skirt up high in back, inviting a damning buttfuck. <<case "a nice maid outfit">> $His long maid's skirt will have to be gotten out of the way to permit access to $his ass. <<case "a slutty maid outfit">> $His short maid's skirt can be lifted to reveal $his bare buttocks. <<case "a slutty nurse outfit">> $His tight skirt flatters $his ass as $he moves. <<case "a schoolgirl outfit">> <<if $activeSlave.anus == 0>> This schoolgirl clearly needs to lose $his anal virginity. <<elseif $activeSlave.vagina == 0>> This schoolgirl clearly takes it up the ass; that way, $he can remain a virgin, and be, like, totally pure and innocent. <<else>> This schoolgirl clearly takes it up the ass. <</if>> <<case "a kimono">> <<if ($activeSlave.butt > 5)>> $His kimono demurely covers $his behind, though it cannot conceal its massive shape. <<else>> $His kimono demurely covers $his behind. <</if>> <<case "attractive lingerie for a pregnant woman">> $His silken panties are just begging to be torn off. <<case "a maternity dress">> <<if $activeSlave.butt > 5>> $His dress covers $his behind, though it cannot conceal its massive size. <<else>> $His dress demurely covers $his behind. <</if>> <<case "stretch pants and a crop-top">> $He can easily be pantsed to reveal $his bare buttocks. <<case "a hijab and abaya">> <<if ($activeSlave.butt > 5)>> $His abaya totally covers $his behind, though it cannot conceal its massive shape. <<else>> $His abaya totally conceals $his behind. <</if>> <<case "battledress">> $His fatigue trousers are not particularly flattering to $his butt. <<case "a monokini">> The bottom of $his monokini is practically sculpted to fit $his ass. <<case "a cybersuit">> As $his buttocks work naturally with $his movement, $his tight bodysuit gives hints of $his asshole. <<case "a string bikini">> <<if ($activeSlave.anus > 1)>> As $he moves, $his big butthole is clearly visible behind $his tiny g-string. <<else>> As $he moves, $his tiny g-string draws your attention to $his ass. <</if>> <<case "a scalemail bikini">> $His scalemail bottom draws attention to $his ass cheeks, while concealing $his rear hole. <<case "clubslut netting">> As $he moves, the hole in $his netting right over $his butthole looks inviting. <<case "a cheerleader outfit">> As $he moves, $his short pleated cheerleader skirt shows off $his butt. <<case "cutoffs and a t-shirt">> As $he moves, $his tight cutoffs flatter $his butt. <<case "spats and a tank top">> $His spats show off every curve of $his ass. <<case "a slutty outfit">> <<if ($activeSlave.butt > 5)>> For today's slutty outfit $he's chosen a leather skirt with zippers that permit ready access to $his butt. <<else>> For today's slutty outfit $he's chosen fishnets with a hole cut over $his asshole so $he can be sodomized without removing or damaging $his clothing. <</if>> <<case "a slave gown">> $His gorgeous dress leaves little to the imagination; there's little doubt $his butt is bare beneath it. <<case "a halter top dress">> $His dress should slide up over $his butt to reveal $his backdoor. <<case "a ball gown">> $His ballgown and its petticoats could easily be flipped up to bare $his butt. <<case "slutty business attire">> $His short skirt will easily slide up to bare $his asshole. <<case "nice business attire">> $His conservative skirt can be slid up over $his hips to bare $his butthole. <<case "a comfortable bodysuit">> $His bodysuit demands attention for $his tightly clad backdoor. <<case "a latex catsuit">> $His latex catsuit's crotch zipper offer ready access to $his backdoor. <<case "a military uniform">> $His uniform skirt can be slid up over $his hips to bare $his butthole. <<case "a schutzstaffel uniform">> $His uniform's trousers can be easily slid down to expose $his butthole. <<case "a slutty schutzstaffel uniform">> $His uniform miniskirt can be easily slid up over $his hips to bare $his butthole. <<case "a red army uniform">> $His uniform skirt can be slid up over $his hips to bare $his butthole. <<case "a nice nurse outfit">> $His nurse's trousers can be easily slid down to expose $his butthole. <<case "a mini dress">> $His mini dress can be easily slid up to expose $his butthole. <<case "an apron">> $His apron leaves $his asshole completely exposed. <<case "a leotard">> As $his buttocks work naturally with $his movement, $his tight leotard gives hints of $his asshole. <<case "a bunny outfit">> $His fluffy white cottontail draws attention to $his butt, inevitably bringing anal to mind. <<case "harem gauze">> $His ass is clearly visible through the thin gauze that covers it. <<case "a toga">> $His toga is so transparent it can't hide $his asscrack, which looks very seductive. <<case "a huipil">> $His huipil can be easily lifted to access $his naked butt. <<case "slutty jewelry">> $His belt of light chain threatens to dip into $his asscrack with each step. <<default>> <<if ($activeSlave.vaginalAccessory == "chastity belt")>> $His chastity belt leaves $his ass available. <<else>> You run your eye over $his naked ass. <</if>> <</switch>> <<set _target = "FAnus">> <<elseif (_seed > 0)>> <<faceDescription>> <<mouthDescription>> <<switch $activeSlave.collar>> <<case "a Fuckdoll suit">> Its suit is expressly designed to encourage use of its face hole. <<case "uncomfortable leather">> $His uncomfortable leather collar makes $him swallow and lick $his lips periodically, making it look like $he's offering oral even though $he's just trying to relieve the discomfort. <<case "tight steel" "cruel retirement counter">> $His tight steel collar makes $him swallow and lick $his lips periodically, making it look like $he's offering oral even though $he's just trying to relieve the discomfort. <<case "preg biometrics">> $His collar reveals everything about $his womb, bringing eyes straight to $his belly before drawing them back to $his neck. <<case "dildo gag">> $His ring gag would make $him ready for oral service, as soon as the formidable dildo it secures down $his throat is removed. <<case "massive dildo gag">> Your eyes are drawn to the distinct bulge in $his throat caused by the enormous dildo in it, though $his mouth would only be suitable for the largest of cocks right now. <<case "shock punishment">> $His shock collar rests threateningly at $his throat, ready to compel $him to do anything you wish. <<case "neck corset">> $His fitted neck corset keeps $his breaths shallow, and $his head posture rigidly upright. <<case "stylish leather">> $His stylish leather collar is at once a fashion statement, and a subtle indication of $his enslavement. <<case "satin choker">> $His elegant satin choker is at once a fashion statement, and a subtle indication of $his enslavement. <<case "silk ribbon">> $His delicate, fitted silken ribbon is at once a fashion statement, and a subtle indication of $his enslavement. <<case "heavy gold">> $His heavy gold collar draws attention to the sexual decadence of $his mouth. <<case "pretty jewelry" "nice retirement counter">> $His pretty necklace can hardly be called a collar, but it's just slavish enough to hint that the throat it rests on is available. <<case "leather with cowbell">> $His cowbell tinkles merrily whenever $he moves, instantly dispelling any grace or gravity. <<case "bowtie">> $His black bowtie contrasts with $his white collar, drawing the eye towards $his neck and face. <<case "ancient Egyptian">> $His wesekh glints richly as $he moves, sparkling with opulence and sensuality. <<case "ball gag">> $His ball gag uncomfortably holds $his jaw apart as it fills $his mouth. <<case "bit gag">> $His bit gag uncomfortably keeps $him from closing $his jaw; drool visibly pools along the corners of $his mouth, where the rod forces back $his cheeks. <<case "porcelain mask">> $His beautiful porcelain mask hides $his unsightly facial features. <<default>> $His unadorned <<if $PC.dick == 1>>throat is just waiting to be wrapped around a thick shaft<<else>>lips are just begging for a cunt to lavish attention on<</if>>. <</switch>> <<if random(1,3) == 1>> <<set _target = "FKiss">> <<else>> <<set _target = "FLips">> <</if>> <</if>> <<if $activeSlave.fuckdoll == 0>> <<if (_seed <= 80) && (_seed > 40) && ($activeSlave.vaginalAccessory == "chastity belt")>> //If you wish to have vanilla intercourse with $him you must order $him to remove $his chastity belt.// <<elseif _seed > 100>> <<if $familyTesting == 1 && _seed == 110>> <<else>> <span id="walkpast"><<link "Summon them both">><<replace "#walk">><<include _target>><</replace>><</link>></span> <</if>> <<elseif $activeSlave.assignment == "stay confined">> <span id="walkpast"><<link "Have $him brought out of $his cell">><<replace "#walk">><<include _target>><</replace>><</link>></span> <<elseif ($activeSlave.assignment == "work in the dairy") && ($dairyRestraintsSetting > 1)>> //$He is strapped into a milking machine and cannot leave $dairyName.// <<elseif ($activeSlave.assignmentVisible == 0)>> <span id="walkpast"><<link "Have $him take a break and come up">><<replace "#walk">><<include _target>><</replace>><</link>></span> <<else>> <span id="walkpast"><<link "Call $him over">><<replace "#walk">><<include _target>><</replace>><</link>></span> <</if>> <<else>> <<switch _target>> <<case "FVagina">> <span id="walkpast"><<link "Fuck it">><<replace "#walk">><<FFuckdollVaginal>><</replace>><</link>></span> <<case "FButt" "FAnus">> <span id="walkpast"><<link "Fuck it">><<replace "#walk">><<FFuckdollAnal>><</replace>><</link>></span> <<default>> <span id="walkpast"><<link "Fuck it">><<replace "#walk">><<FFuckdollOral>><</replace>><</link>></span> <</switch>> <</if>> </span> //
amomynous0/fc
devNotes/legacy files/walkPast.txt
Text
bsd-3-clause
192,189
/* I need to be redone phase-7 */ /* keep in mind breeder paraphilia overriding mental effects */ <<if ($slaves[$i].preg > 30)>> <<if ($slaves[$i].physicalAge < 4)>> <<if ($slaves[$i].pregType >= 20)>> $His womb takes up most of $his body and puts tremendous pressure on $his skin and organs. This is @@.mediumorchid;very worrying@@ to $him. $He is in @@.red;constant pain@@ and each movement within $his straining womb causes additional discomfort. $He is @@.gold;terrified@@ that at any moment $he could burst. <<if $slaves[$i].pregControl == "slow gestation" && $slaves[$i].intelligence > -2>> $His slowed gestation rate gives $his body more time to adapt to $his hyper gravidity, easing some of $his worries. <<set $slaves[$i].devotion -= 1>> <<set $slaves[$i].trust -= 4>> <<else>> <<set $slaves[$i].devotion -= 3>> <<set $slaves[$i].trust -= 8>> <</if>> <<set $slaves[$i].health -= 20>> <<elseif ($slaves[$i].pregType >= 10)>> $His womb greatly fills $his body and compresses $his internal organs. $He is in constant @@.mediumorchid;discomfort@@ and @@.red;pain@@ and can't wait for these children to be born. <<if $slaves[$i].pregControl == "slow gestation" && $slaves[$i].intelligence > -2>> $His slowed gestation rate gives $his body more time to adapt to $his hyper gravidity, easing some of $his worries. <<set $slaves[$i].devotion -= 1>> <<else>> <<set $slaves[$i].devotion -= 2>> <</if>> <<set $slaves[$i].health -= 10>> <<else>> $His full womb puts pressure on $his organs. It is quite @@.mediumorchid;uncomfortable@@ to $him. <<set $slaves[$i].devotion -= 2>> <</if>> <<elseif ($slaves[$i].physicalAge < 13)>> <<if ($slaves[$i].pregType >= 20)>> $His bloated womb is constantly straining to hold together. This is @@.mediumorchid;very worrying@@ to $him. $He moans @@.red;painfully@@ with each movement within $him. <<if $slaves[$i].pregControl == "slow gestation" && $slaves[$i].intelligence > -2>> $His slowed gestation rate gives $his body more time to adapt to $his hyper gravidity, easing some of $his worries. <<set $slaves[$i].devotion -= 1>> <<else>> <<set $slaves[$i].devotion -= 2>> <</if>> <<set $slaves[$i].health -= 10>> <<elseif ($slaves[$i].pregType >= 10)>> <<if ($slaves[$i].muscles <= 30)>> <<if canWalk($slaves[$i])>> $His belly is very heavy and juts out quite far from $his body. Between constantly getting in the way and the discomfort of being so full, $his belly is @@.mediumorchid;very annoying@@ to $him. <<set $slaves[$i].devotion -= 2>> <</if>> <<else>> <<if canWalk($slaves[$i])>> $His belly juts out @@.mediumorchid;annoyingly@@ far. <<set $slaves[$i].devotion -= 1>> <</if>> <</if>> <<else>> <<if ($slaves[$i].muscles <= 5)>> <<if canWalk($slaves[$i])>> $His pregnant belly is quite tiring to carry around, leading $him to be @@.mediumorchid;somewhat annoyed.@@ <<set $slaves[$i].devotion -= 1>> <</if>> <</if>> <</if>> <<else>> <<if ($slaves[$i].pregType >= 20)>> $His straining womb is @@.mediumorchid;very worrying@@ to $him. $He @@.red;moans with pain@@ every time one of $his brood moves within $him. <<if $slaves[$i].pregControl == "slow gestation" && $slaves[$i].intelligence > -2>> $His slowed gestation rate gives $his body more time to adapt to $his hyper gravidity, easing some of $his worries. <<set $slaves[$i].devotion -= 1>> <<else>> <<set $slaves[$i].devotion -= 3>> <</if>> <<set $slaves[$i].health -= 15>> <<elseif ($slaves[$i].pregType >= 10)>> <<if ($slaves[$i].muscles <= 30)>> <<if canWalk($slaves[$i])>> $His belly is very heavy and juts out quite far from $his body. Between constantly getting in the way and the discomfort of being so full, $his belly is @@.mediumorchid;very annoying@@ to $him. <<set $slaves[$i].devotion -= 2>> <</if>> <</if>> <</if>> <</if>> <<elseif ($slaves[$i].preg > 20)>> <<if ($slaves[$i].physicalAge < 4)>> <<if ($slaves[$i].pregType >= 20)>> $His womb is becoming @@.mediumorchid;distressing@@ to $him. $He is in @@.red;pain@@ with each motion within $his straining womb. $He is @@.gold;terrified@@ of what awaits $him at the end of this pregnancy. <<if $slaves[$i].pregControl == "slow gestation" && $slaves[$i].intelligence > -2>> $His slowed gestation rate gives $his body more time to adapt to $his hyper gravidity, easing some of $his worries. <<set $slaves[$i].devotion -= 1>> <<set $slaves[$i].trust -= 2>> <<else>> <<set $slaves[$i].devotion -= 2>> <<set $slaves[$i].trust -= 5>> <</if>> <<set $slaves[$i].health -= 20>> <<elseif ($slaves[$i].pregType >= 10)>> $His womb is becoming quite full causing $him some @@.mediumorchid;discomfort@@. $He is eager to be free of this burden. <<set $slaves[$i].devotion -= 2>> <<else>> <<if canWalk($slaves[$i])>> $His big belly on $his small body keeps getting in $his way, @@.mediumorchid;annoying $him.@@ <<set $slaves[$i].devotion -= 1>> <</if>> <</if>> <<elseif ($slaves[$i].physicalAge < 13)>> <<if ($slaves[$i].pregType >= 20)>> $His bloated womb is beginning to get too crowded, @@.mediumorchid;worrying@@ $him. $He moans with @@.red;discomfort@@ with each movement within $him. <<set $slaves[$i].devotion -= 2>> <<if $slaves[$i].pregControl == "slow gestation" && $slaves[$i].intelligence > -2>> $His slowed gestation rate gives $his body more time to adapt to $his hyper gravidity, easing some of $his worries. <<set $slaves[$i].devotion -= 1>> <<else>> <<set $slaves[$i].devotion -= 2>> <</if>> <<set $slaves[$i].health -= 10>> <<elseif ($slaves[$i].pregType >= 10)>> <<if ($slaves[$i].muscles <= 30)>> <<if canWalk($slaves[$i])>> $His belly is getting heavy and starting to get in $his way. Between constantly bumping things and the discomfort of being full, $his belly is @@.mediumorchid;annoying@@ to $him. <<set $slaves[$i].devotion -= 1>> <</if>> <</if>> <</if>> <<else>> <<if ($slaves[$i].pregType >= 20)>> $His swelling womb is @@.mediumorchid; worrying@@ $him. <<set $slaves[$i].devotion -= 2>> <<elseif ($slaves[$i].pregType >= 10)>> <<if ($slaves[$i].muscles <= 30)>> <<if canWalk($slaves[$i])>> $His belly is getting heavy and starting to get in $his way. Between constantly bumping things and the discomfort of being full, $his belly is @@.mediumorchid;annoying@@ to $him. <<set $slaves[$i].devotion -= 1>> <</if>> <</if>> <</if>> <</if>> <</if>> <<if $slaves[$i].fuckdoll == 0>> <<if $slaves[$i].fetish != "mindbroken">> <<if canWalk($slaves[$i])>> <<if $slaves[$i].bellyImplant >= 600000>> $His belly implant takes up most of $his body cavity, is tremendously heavy, and protrudes massively from $his abdomen. Between constantly bumping things and the discomfort of being so extremely full, $his belly is @@.mediumorchid;really frustrating@@ to $him. <<set $slaves[$i].devotion -= 3>> <<elseif $slaves[$i].bellyImplant >= 150000>> $His belly implant takes up a good deal of $his body cavity, is extremely heavy, and protrudes greatly from $his abdomen. Between constantly bumping things and the discomfort of being so very full, $his belly is @@.mediumorchid;very annoying@@ to $him. <<set $slaves[$i].devotion -= 2>> <<elseif $slaves[$i].bellyImplant >= 10000>> $His belly implant is quite heavy and tends to get in $his way. Between constantly bumping things and the discomfort of being full, $his belly is @@.mediumorchid;annoying@@ to $him. <<set $slaves[$i].devotion -= 1>> <</if>> <</if>> <</if>> <</if>>
amomynous0/fc
devNotes/old preg malus.txt
Text
bsd-3-clause
7,865
Most writing is basically just plain text with branches for different cases. Important cases to remember: -Does the slave have a dick/vagina/tits? -Does the PC have a dick/tits/vagina? -If the slave has a dick and you plan to use it, can they get erect on their own? -Is the PC pregnant? -Is the slave mindbroken? -Is the slave blind? -Is the slave pregnant? -If you penetrate an orifice, is the slave a virgin in that orifice? -Can the slave move (i.e. is the slave amputated and/or have massive tits and/or a massive dick)? -Does the slave like/hate trust/fear you? -Does the slave have fetishes or personality/sexual quirks/flaws that would impact how they react? It's important to handle every RELEVANT variation of the above cases. Depending on what you're writing, other cases may also warrant consideration; e.g. a breast-play scene will probably need to account for breast size and lactation a lot more than a generic fuck scene. If a scene only applies to a specific type of slave, you can restrict the cases you account for to the ones that are only possible for that type of slave. There are, broadly speaking, two main ways to do this: 1. Write the same big block of text and then copy/paste it into each relevant case, and tweak the wording slightly. ++Less thinking required --LOTS of duplicate text; if you need to change something later, you have to change it in many places 2. Decompose the scene into smaller segments or sections that can each be swapped out for the slave type in question. ++MUCH easier maintenance --Have to figure out how to phrase the scene in a way that can be broken down into discrete chunks You can also combine the two cases. For example, you may want a complex, interleaved set of <<if>> conditions for the common cases, and then have big blobs for the corner cases that are hard to handle. It can also be easier if you split the scene into a "prep", "main", and "finish" section (these would all be the same writing block, just 2-3 <<if>> chains in sequence); that way, you could, for example, take all the various possible cases that aren't really unique, and narrate them so that, in the main section, you don't have to do so much explanatory writing for the scene to make sense overall. Then, if necessary, wrap up with the finish section. (See src/pregmod/fSlaveSelfImpreg.tw for an example of this approach) All the variables for you and the slave are, generally, held in the variables $PC and $activeSlave, respectively. When the PC and the slave have the same attributes, they usually have the same name, but exactly what they do and mean can vary a little bit. RTFM for details. To access a specific variable, you do $var.attribName, so e.g. pregnancy is checked by $activeSlave.preg or $PC.preg. In rarer cases, you'll be dealing with an indexed entry in the $slaves array; if that's the case, you'd use $slaves[_u] or $slaves[$i] (or whatever) instead of $activeSlave. If a second (or third?) slave is present, it will be stored in another variable, the name of which will depend on the scene; for example, when impregnating a slave with another slave, the sperm donor is in $impregnatrix Conditions are usually checked by <<if CONDITION>> SHOW THIS TEXT <<elseif CONDITION2>> SHOW THIS TEXT INSTEAD <<else>> IF NEITHER CONDITION IS MET, SHOW THIS <</if>> Conditions are usually comparative (i.e. $a < $b or $b == 5 or $c != $d.e) and can be chained together with && (and) or || (or) and grouped with parens () - for example: <<if($a > 1 || ($b == 2 && $c != $a))>> lets you check that either variable A is greater than one, or both B equals two and C is not equal to A. There are also a few misc functions that let you check things like whether a slave can get pregnant or whether two slaves are mutually fertile Variable names are interpolated straight into the text, so if you have a slave named "Beth" then the text "You fuck $activeSlave.slaveName" becomes "You fuck Beth" You can also explicitly print a variable by doing <<print _varName>> (for temp variables) or <<print $varName>> (for global variables) which can be useful in various situations; it also lets you print the output of code expressions, like <<print $someNumericVar * 10>>. If you want to change a variable, you do something like <<set $activeSlave.devotion += 5>> Which would, in this case, give a devotion increase of 5. Color is changed with YOUR @@.colorname;COLORED TEXT@@ HERE So a random (really stupid) example might be: <<if $activeSlave.fetish == 'mindbroken'>> Special big block of mindbroken text here. <<elseif $activeSlave.amp == 1>> Special big block of amputee text here. <<if $PC.dick > 0>> <<set _wasVirgin = ''>> <<if $activeSlave.vagina > -1>> <<set _orifice = 'vagina'>> <<if $activeSlave.vagina == 0>> <<set _wasVirgin = 'vaginal'>> <</if>> <<else>> <<set _orifice = 'ass'>> <<if $activeSlave.anus == 0>> <<set _wasVirgin = "anal">> <</if>> <</if>> You fuck $activeSlave.slaveName's _orifice. <<if _wasVirgin != ''>> <<if $activeSlave.devotion > 50>> She @@.hotpink;loves@@ losing her <<print _wasVirgin>> virginity to you. <<set $activeSlave.devotion += 5>> <<else>> She @@.mediumorchid;@@dislikes losing her <<print _wasVirgin>> virginity to you. <<set $activeSlave.devotion -= 5>> <</if>> <</if>> <<elseif $PC.vagina > 0 && $activeSlave.dick > 0>> $activeSlave.slaveName <<if $activeSlave.devotion > 50>> @@.hotpink;lovingly penetrates@@ <<set $activeSlave.devotion += 5>> <<else>> indifferently hammers <</if>> your pussy. <<elseif $activeSlave.vagina > -1>> Lesbian sex here. <<else>> ERROR - PC doesn't have dick or vagina? <</if>> If you need to set a temp variable, prefix it with _ instead of $. This way, you don't go cluttering up the world with variables that only matter inside your little writing segment. You can "hot-test" stuff by text editing your HTML copy of FC, but it's a little more tedious because you have to "escape" double quotes, <, >, and & with &quot; , &lt; &gt; and &amp; respectively. Some hints: 1. Write your logic first, so you don't forget to close tags. In other words, it's better to do <<if $cond> TODO <<else>> TODO <</if>> And then fill it in later than it is to end up with a situation where you have a dozen unclosed tags and you can't remember where they are or what they do. 2. For very simple stuff, it's fine to "inline" your stuff. For example, when penetrating a slave, doing "you fuck her <<if $activeSlave.vagina > -1>>pussy<<else>>ass<</if>>" to show "pussy" or "ass" as necessary. However, if you need to do the same comparison a bunch of times, do something like <<if $activeSlave.vagina > -1>> <<set _targetOrifice = "vagina">> <<else>> <<set _targetOrifice = "asshole">> <</if> And then, when you need it, do "you fuck her _targetOrifice" in sixteen different places without having the pain in the ass of copy/pasting the same if/else clause every time. 3. INDENT YOUR LOGIC. USE TABS. I'm serious. Don't question me. It will make EVERYONE hate you, when they have to deal with your code, if it's not indented properly. This is much easier to read: <<if $cond1>> <<if $cond2>> whatever <<elseif $cond3>> whatever <<elseif $cond4>> <<if $cond5>> whatever <<else>> <<if $cond6>> whatever <</if>> <</if>> <<else>> whatever <<if $cond7>> <<if $cond8>> whatever </if> </if>> <</if>> <</if>> than this: <<if $cond1>> <<if $cond2>> whatever <<elseif $cond3>> whatever <<elseif $cond4>> <<if $cond5>> whatever <<else>> <<if $cond6>> whatever <</if>> <</if>> <<else>> whatever <<if $cond7>> <<if $cond8>> whatever </if> </if>> <</if>> <</if>> 4. Proof-read your shit before posting it. Spell-check wouldn't hurt.
amomynous0/fc
devNotes/scene-guide.txt
Text
bsd-3-clause
7,741
There are two main changes here. CHANGE 1: Speed up loading ========================== The first is to speed up loading the file. Edit the sugarcube header and change: {key:"_serialize",value:function(e) ... return Object.freeze Into this [{key:"_serialize",value:function(e) /* look here for changes */ {return JSON.stringify(e)}},{key:"_deserialize",value:function(e){return JSON.parse((!e || e[0]=="{")?e:LZString.decompressFromUTF16(e))}}]),e}(); /* changes end here */ return Object.freeze CHANGE 2: Remember scroll position ================================== Edit the sugarcube header and change: var t=jQuery(this);t.ariaIsDisabled()||(t.is("[aria-pressed]")&&t.attr("aria-pressed","true"===t.attr("aria-pressed")?"false":"true"),e.apply(this,arguments)) into this: var t=jQuery(this); const dataPassage = t.attr('data-passage'); const initialDataPassage = window && window.SugarCube && window.SugarCube.State && window.SugarCube.State.passage; const savedYOffset = window.pageYOffset; t.is("[aria-pressed]")&&t.attr("aria-pressed","true"===t.attr("aria-pressed")?"false":"true"),e.apply(this,arguments); const doJump = function(){ window.scrollTo(0, savedYOffset); } if ( dataPassage && (window.lastDataPassageLink === dataPassage || initialDataPassage === dataPassage)) doJump(); window.lastDataPassageLink = dataPassage; This uses two separate methods to detect if we are returning to the same page. Just checking sugarcube should actually be sufficient, but no harm in this approach either.
amomynous0/fc
devNotes/sugarcube stuff/important for updating sugarcube.txt
Text
bsd-3-clause
1,562
/*:: Main stylesheet [stylesheet]*/ body { overflow-x: hidden; } /* makes HR colorflip compatible */ hr { background:#ccc; border:0; } /* clears SugarCube's default transition */ .passage { transition: none; -webkit-transition: none; } .passage-in { opacity: 1 !important; } /* default is 54em */ #passages { max-width: 100%; } /* small trick to hide broken images */ img { text-indent: -10000px; } .imageRef { display: flex; flex-direction: column; flex-wrap: wrap; align-items: flex-start; position: relative; background-color: rgba(80, 80, 80, 0.5); margin: 2px; } .tinyImg { height: 120px; width: 120px; float: left; } .smlImg { height: 150px; width: 150px; float: left; } .smlImg > img, .smlImg > video { height: auto; } .medImg { height: 300px; width: 300px; float: right; } .medImg > img, .medImg > video { height: auto; } .lrgRender { height: 531px; width: 531px; margin-right: -50px; margin-left: -50px; float: right; z-index: -1; } .lrgVector { height: 600px; width: 600px; margin-right: -125px; margin-left: -125px; float: right; z-index: -1; } .lrgRender > div.mask { width: 150px; height: 100%; background: linear-gradient(90deg, rgba(17,17,17,1), rgba(17,17,17,0.8) 60%, rgba(17,17,17,0)); z-index: 1; /*position: absolute;*/ } .lrgRender > img, .lrgRender > video { margin-left: -150px; height: 531px; width: auto; } .lrgVector > div.mask { width: 150px; height: 100%; background: linear-gradient(90deg, rgba(17,17,17,1), rgba(17,17,17,0.8) 60%, rgba(17,17,17,0)); z-index: 1; } .lrgVector > img, .lrgVector > video { margin-left: -150px; height: 600px; width: auto; } .lrgVector svg { width: 336px; height: 600px; } object { object-fit: scale-down; position: absolute; top: 0; left: 0; } img.paperdoll { position: absolute; top: 0; left: 0; margin-left: 0; } span.plusButton { display: inline-block; line-height: 25px; width: 20px; text-align: center; border: 1px solid rgba(0, 139, 0, 0.3); background: rgba(0, 139, 0, 0.2); margin: 2px 0; } span.minusButton { display: inline-block; line-height: 25px; width: 20px; text-align: center; border: 1px solid rgba(184, 0, 0, 0.3); background: rgba(184, 0, 0, 0.2); margin: 2px 0; } span.zeroButton { display: inline-block; line-height: 25px; width: 20px; text-align: center; border: 1px solid rgba(0, 0, 255, 0.3); background: rgba(0, 0, 255, 0.2); margin: 2px 0; } span.plusButton:hover { background: rgba(0, 139, 0, 0.4); } span.minusButton:hover { background: rgba(184, 0, 0, 0.4); } span.zeroButton:hover { background: rgba(0, 0, 255, 0.4); } span.plusButton > a { display: block; } span.minusButton > a { display: block; } span.zeroButton > a { display: block; } span.plusButton > a:hover { text-decoration: none; } span.minusButton > a:hover { text-decoration: none; } span.zeroButton > a:hover { text-decoration: none; } /* Colors are made as css classes, to allow them to be changed for a light color scheme (for example). */ .link { color: #68D } /* link color */ .aquamarine { color: aquamarine } .coral { color: coral } .cyan { color: cyan } .darkgoldenrod { color: darkgoldenrod } .darkred { color: darkred } .darkviolet { color: darkviolet } .deeppink { color: deeppink } .deepskyblue { color: deepskyblue } .gold { color: gold } .goldenrod { color: goldenrod } .gray { color: gray } .green { color: green } .hotpink { color: hotpink } .lawngreen { color: lawngreen } .lightblue { color: lightblue } .lightcoral { color: lightcoral } .lightgreen { color: lightgreen } .lightpink { color: lightpink } .lightsalmon { color: lightsalmon } .lime { color: lime } .limegreen { color: limegreen } .magenta { color: magenta } .mediumaquamarine { color: mediumaquamarine } .mediumorchid { color: mediumorchid } .mediumseagreen { color: mediumseagreen } .orange { color: orange } .orangered { color: orangered } .orchid { color: orchid } .pink { color: pink } .red { color: red } .seagreen { color: seagreen } .springgreen { color: springgreen } .tan { color: tan } .teal { color: teal } .yellow { color: yellow } .yellowgreen { color: yellowgreen } .link a { color: #68D } /* link color */ .aquamarine a { color: aquamarine } .coral a { color: coral } .cyan a { color: cyan } .darkgoldenrod a { color: darkgoldenrod } .darkred a { color: darkred } .darkviolet a { color: darkviolet } .deeppink a { color: deeppink } .deepskyblue a { color: deepskyblue } .gold a { color: gold } .goldenrod a { color: goldenrod } .gray a { color: gray } .green a { color: green } .hotpink a { color: hotpink } .lawngreen a { color: lawngreen } .lightblue a { color: lightblue } .lightcoral a { color: lightcoral } .lightgreen a { color: lightgreen } .lightpink a { color: lightpink } .lightsalmon a { color: lightsalmon } .lime a { color: lime } .limegreen a { color: limegreen } .magenta a { color: magenta } .mediumaquamarine a { color: mediumaquamarine } .mediumorchid a { color: mediumorchid } .mediumseagreen a { color: mediumseagreen } .orange a { color: orange } .orangered a { color: orangered } .orchid a { color: orchid } .pink a { color: pink } .red a { color: red } .seagreen a { color: seagreen } .springgreen a { color: springgreen } .tan a { color: tan } .teal a { color: teal } .yellow a { color: yellow } .yellowgreen a { color: yellowgreen } /*! <<checkvars>> macro for SugarCube 2.x */ #ui-dialog-body.checkvars{padding:1em}#ui-dialog-body.checkvars h1{font-size:1em;margin-top:0}#ui-dialog-body.checkvars table{border-collapse:collapse;border-spacing:0}#ui-dialog-body.checkvars thead tr{border-bottom:2px solid #444}#ui-dialog-body.checkvars tr:not(:first-child){border-top:1px solid #444}#ui-dialog-body.checkvars td,#ui-dialog-body.checkvars th{padding:.25em 1em}#ui-dialog-body.checkvars td:first-child,#ui-dialog-body.checkvars th:first-child{padding-left:.5em;border-right:1px solid #444}#ui-dialog-body.checkvars td:last-child,#ui-dialog-body.checkvars th:last-child{padding-right:.5em}#ui-dialog-body.checkvars th:first-child{text-align:center}#ui-dialog-body.checkvars td:first-child{font-weight:700;text-align:right}#ui-dialog-body.checkvars td{font-family:monospace,monospace;vertical-align:top;white-space:pre-wrap}#ui-dialog-body.checkvars .scroll-pad{margin:0;padding:0} /*! <<bugreport>> macro for SugarCube 2.x */ #ui-dialog-body.bugreport #bugreport-info{margin-bottom:1em}#ui-dialog-body.bugreport #bugreport-data{display:block;overflow:auto;font-family:monospace,monospace;background-color:transparent;border:1px solid #444;margin:0;padding:6px;height:auto;min-height:200px;white-space:normal}#ui-dialog-body.bugreport .scroll-pad{margin:0;padding:0} div.output{ width: 100%; width: 100vw; max-width: 100%; word-break: break-all; white-space: normal; } /* css rules for rules assistant */ .rajs-listitem { display: inline-block; color: #68D; margin-right: 1em; } .rajs-listitem:last-of-type { margin-right: 0; } .rajs-listitem:hover { cursor: pointer; text-decoration: underline; } .rajs-list strong:first-of-type, .rajs-list input { margin-right: 2em; } .rajs-listitem input { margin: 0.25em; } .rajs-section h1 { border-bottom: 1px solid white; cursor: pointer; } .rajs-section h1:hover { text-decoration: underline; } /*:: accordionStyleSheet [stylesheet]*/ /* Accordion 000-250-006 */ button.accordion { cursor: pointer; padding: 5px; width: 100%; margin-bottom: 10px; border-bottom: 3px double; border-right: 3px double; border-left: none; border-top: none; text-align: left; outline: none; transition: 0.2s; background-color: transparent; } button.accordion.active, button.accordion:hover { background-color: transparent; } button.accordion:before { content: '\002B'; color: #777; font-weight: bold; float: left; margin-right: 5px; } .unStaffed { background-color: transparent; padding: .5em .2em; margin-bottom: 1em; border-bottom: thin inset grey; } .unStaffed:before { content: '\00D7'; color: #777; font-weight: bold; color: red; float: left; margin-right: 5px; } .unStaffed:after { content: attr(data-after); float: right; margin-left: 2em; font-weight: strong; color: green; } button.accordion:after { content: attr(data-after); float: right; margin-left: 2em; font-weight: normal; color: green; } button.accordion.active:before { content: "\2212"; } .accHidden { padding: 0 18px; margin-top: 5px; margin-bottom: 5px; max-height: 0; overflow: hidden; } /* begin efmCSS */ #graph .linage { fill: none; stroke: white; } #graph .marriage { fill: none; stroke: white; } #graph .node { background-color: lightblue; border-style: solid; border-width: 1px; } #graph .nodeText{ font: 10px sans-serif; margin: 0; padding: 0; color: black; } #graph { font: 10px sans-serif; margin: -20px 0; padding: 0; color: black; } #graph div { border-style: solid; border-width: 1px; } #graph .XY { background-color: lightblue; } #graph div.XX { background-color: pink; } #graph div.unknown { background-color: gray; } #graph div.unknownXY { background-color: #808080; } #graph div.unknownXX { background-color: #808080; } #graph .you { background-color: red; } #graph .emphasis { font-style: italic; font-weight: bold; margin: 0; background: #ffffff88; border: 2px solid Gold; white-space: nowrap; } #editFamily { display: flex; flex-wrap: wrap; align-items: center; } #editFamily #familyTable { } /* end extended family css */ config.history.tracking = false; /*:: Quick List stylesheet [stylesheet]*/ .hidden { display:none; } div.quicklist.devotion button.mindbroken { background-color:red; } div.quicklist.devotion button.very-hateful { background-color:darkviolet; } div.quicklist.devotion button.hateful { background-color:darkviolet; } div.quicklist.devotion button.resistant { background-color:mediumorchid; } div.quicklist.devotion button.ambivalent { background-color: yellow; color: #444444; } div.quicklist.devotion button.accepting { background-color: hotpink; } div.quicklist.devotion button.devoted { background-color: deeppink; } div.quicklist.devotion button.worshipful { background-color: magenta; } div.quicklist.trust button.mindbroken { background-color:red; } div.quicklist.trust button.extremely-terrified { background-color: darkgoldenrod; } div.quicklist.trust button.terrified { background-color: goldenrod; } div.quicklist.trust button.frightened { background-color: gold; color: coral; } div.quicklist.trust button.fearful { background-color: yellow; color: green; } div.quicklist.trust button.hate-careful { background-color: orange; } div.quicklist.trust button.careful { background-color: mediumaquamarine; color: forestgreen; } div.quicklist.trust button.bold { background-color: orangered; } div.quicklist.trust button.trusting { background-color: mediumseagreen; } div.quicklist.trust button.defiant { background-color: darkred; } div.quicklist.trust button.profoundly-trusting { background-color: seagreen; } div.quicklist { table-layout: fixed; text-align: center; border-collapse: separate; border-spacing: 2px; border-style: hidden; empty-cells: hide; width: 70%; } div.quicklist button { margin-top: 15px; margin-right: 20px; white-space: nowrap; }
amomynous0/fc
devNotes/twine CSS
none
bsd-3-clause
11,657
#!/bin/sh Additional packages required: megatools, MEGAcmd and git V=-1 RD=FC/ LD=/tmp/FC U=anon@anon.anon P=13245 Branch=git@ssh.gitgud.io:pregmodfan/fc-pregmod.git ; echo "Fresh clone?" && read VN && clear && mega-login $U $P > /dev/null while true; do if [[ $VN == y||$VN == yes ]]; then V=2 && mkdir $LD ; git clone -q $Branch $LD elif [[ $VN == n||$VN == no||$V = 0 ]]; then cd $LD/ && git fetch -q if [ `git rev-list HEAD...origin/pregmod-master --count` != 0 ]; then git pull -q && V=1 fi #Check is a slight tweak of https://stackoverflow.com/a/17192101 fi if [[ $VN == na||$V == 2||$V == 1 ]]; then V=0 && cd $LD/ && rm bin/*.html ; ./compile > /dev/null && minify -o bin/FC_pregmod.html bin/FC_pregmod.html && mv bin/FC_pregmod.html "bin/FC-pregmod-$(git log -1 --format='%cd' --date='format:%d-%m-%Y-%H-%M')-$(git log -n1 --abbrev-commit|grep -m1 commit|sed 's/commit //')".html && mega-put bin/*.html FC/ && megals -u $U -p $P /Root/FC|sed -n '1!p'|sort -r|tail -n +11|paste -sd " " -|xargs megarm -u $U -p $P > /dev/null fi clear && sleep 15m done
amomynous0/fc
devTools/AutoGitVersionUploadBackground.sh
Shell
bsd-3-clause
1,071
#!/bin/sh # setup: # add this to crontab: # */15 * * * * cd ~/FC/fc-pregmod && git pull --ff-only origin pregmod-master > ~/FC/git_pull.log 2>&1 # and do "ln -s ~/FC/fc-pregmod/devTools/BuildAndIPFSify.sh .git/hooks/post-merge" # NOTE: you may need to define XDG_RUNTIME_DIR in your crontab # TODO: add logic to figure out if we should use ipfs-cluster instead of using the local instance directly. # if we use ipfs-cluster we probably don't need to warm ipfs.io's cache. rm bin/*.html # if this script is used as the post-merge hook then # a) git pull has pulled something # b) $PWD is fc-pregmod if [ "$(basename "$0")" != "post-merge" ]; then # cd to fc-pregmod based on where this script is cd "$(readlink -f "$(dirname "$0")")/.." || exit 1 git pull # if there are new html files then git probably pulled something and ran this script as a post-merge hook if ls bin/*.html; then exit 0 fi fi # If we've done this before then unpin the previous hash so IPFS can GC it if it needs to if [ -r ../IPFS_hash.txt ]; then ipfs pin rm --recursive=true "$(cut -d : -f 2 ../IPFS_hash.txt | tr -d ' ')" fi ./compile || exit 1 # Keep the build time from changing the hash of the file sed -Ei -e '/^ \* Built on .+$/d' bin/*.html # add the date of the last commit to the file, but don't use colons because Windows (still?) doesn't like them mv bin/*.html "bin/FC pregmod $(git log -1 --format='%cd' --date='format:%F %H-%M').html" # include the unembedded vector art ipfs_hash="$(ipfs add -w -Q -r bin/*.html resources)" echo "IPFS Folder Hash: ${ipfs_hash}" > ../IPFS_hash.txt ipfs name publish "$ipfs_hash" # when it's done it will print something like "Published to $your_pubkey: /ipfs/$ipfs_hash" # You can view the folder at http://127.0.0.1:8080/ipns/$your_pubkey # make ipfs.io cache the files # $XDG_RUNTIME_DIR SHOULD be defined, but there are cases where it wouldn't be if [ -z "${XDG_RUNTIME_DIR+x}" ]; then echo "\$XDG_RUNTIME_DIR is unset, bailing" exit 2 fi # throw it into a file so we can loop over lines, not "strings delimited by whitespace" find resources bin -print | grep -ve '.gitignore' | sed -e 's|bin/||' | grep -Ee '.+\.svg' -e '.html' > "${XDG_RUNTIME_DIR}/files.list" # ipfs PeerID, it's user specific PeerID="$(ipfs config show | grep -e 'PeerID' | cut -d: -f 2 | tr -d ' "')" while IFS= read -r item do echo "https://ipfs.io/ipns/${PeerID}/${item}" done < "${XDG_RUNTIME_DIR}/files.list" | xargs --max-procs=10 --max-args=1 --replace curl --silent --show-error --range 0-499 --output /dev/null '{}' rm "${XDG_RUNTIME_DIR}/files.list"
amomynous0/fc
devTools/BuildAndIPFSify.sh
Shell
bsd-3-clause
2,585
#!/usr/bin/env python3 import fileinput import re import sys WARNING = '\033[93m' ENDC = '\033[0m' def myprint(*args): print(WARNING, fileinput.filename() + ":", ENDC,*args) def yield_line_and_islastline(f): global filename global linenumber try: prevline = next(f) filename = fileinput.filename() linenumber = fileinput.filelineno() except StopIteration: return for line in f: yield (prevline, f.isfirstline()) filename = fileinput.filename() linenumber = fileinput.filelineno() prevline = line yield prevline, True pattern = re.compile(r'(<<(\/?) *(if|for|else|switch|case|replace|link)[^<>]*)') tagfound = [] try: for line, isLastLine in yield_line_and_islastline(fileinput.input()): for (whole,end,tag) in re.findall(pattern,line): if tag == "else" or tag == 'case': if len(tagfound) == 0: myprint("Found", tag, "but with no opening tag:") myprint(" ", linenumber,":", whole) fileinput.nextfile() lasttag = tagfound[-1] if (tag == "else" and lasttag["tag"] != "if") or (tag == "case" and lasttag["tag"] != "switch"): myprint("Mismatched else: Opening tag was:") myprint(" ",lasttag["linenumber"],":", lasttag["whole"]) myprint("But this tag was:") myprint(" ",linenumber,":", whole) fileinput.nextfile() break elif end != '/': tagfound.append({"whole": whole, "linenumber":linenumber,"tag":tag}) else: if len(tagfound) == 0: myprint("Found closing tag but with no opening tag:") myprint(" ", linenumber,":", whole) fileinput.nextfile() break lasttag = tagfound.pop() if lasttag["tag"] != tag: myprint("Mismatched tag: Opening tag was:") myprint(" ",lasttag["linenumber"],":", lasttag["whole"]) myprint("Closing tag was:") myprint(" ",linenumber,":", whole) fileinput.nextfile() break if isLastLine: if len(tagfound) != 0: myprint("End of file found but", len(tagfound), ("tag hasn't" if len(tagfound)==1 else "tags haven't"), "been closed:") for tag in tagfound: myprint(" ", tag["linenumber"],":", tag["whole"]) tagfound = [] except UnicodeDecodeError as e: myprint(e) print(" Hint: In linux, you can get more details about unicode errors by running:") print(" isutf8", fileinput.filename()) print(" :Note it might be caused by ", filename)
amomynous0/fc
devTools/check.py
Python
bsd-3-clause
2,895
@echo off pushd %~dp0 embed_favicon.py popd pause
amomynous0/fc
devTools/embed_favicon.bat
Batchfile
bsd-3-clause
55
#!/usr/bin/env python3 ''' Script for embedding favicons into the SugarCube Header. Script file is expected to reside in devTools directory. Note: This does not actually check the image file's contents for size detection. Usage: python3 embed_favicon.py ''' import sys import os import re import base64 # file extensions eligible for use as favicons and their mimetype ext2mimetype = { '.png': 'image/png', '.ico': 'image/x-icon' } # reads a file, turns it into a data uri def data_uri_from_file(filename, mimetype): data = open(filename,'rb').read() base64data = base64.b64encode(data).decode('ascii') out = 'data:%s;base64,%s'%(mimetype, base64data) return out if __name__ == "__main__": # find project root directory path # (script file is expected to reside in devTools) project_root_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # path to SugarCube's header.html header_html_path = os.path.join( project_root_path, 'devTools/tweeGo/storyFormats/sugarcube-2/header.html' ) # path to directory containing all favicons to embed favicons_source_path = os.path.join( project_root_path, 'resources/raster/favicon/' ) # walk directory for all files favicons_paths = [ os.path.join(dirpath, filename) for dirpath, dirnames, filenames in os.walk(favicons_source_path) for filename in filenames ] # ignore files with unknown extensions favicons_paths = [f for f in favicons_paths if f[-4:] in ext2mimetype.keys()] # prepare embedded data size_from_filename = re.compile(r'([0-9]+)\....$') favicons_html = [] for fp in favicons_paths: print('Found favicon source file "%s".'%(fp)) # get mimetype by file extension mimetype = ext2mimetype[fp[-4:]] if (mimetype == 'image/x-icon'): # assume sizes in ico sizes = '16x16 32x32 64x64' else: # guess icon size from file name size = size_from_filename.search(fp).group(1) sizes = '%sx%s'%(size, size) data = data_uri_from_file(fp, mimetype) favicons_html.append( # prepare html with favicon data embedded '<link rel="icon" type="%s" sizes="%s" href="%s">\n'%( mimetype, sizes, data ) ) # modify header file with open(header_html_path,'r+',encoding='utf-8') as hf: print('Rewriting "%s"...'%(header_html_path)) lines_in = hf.readlines() # read whole file lines_out = [] for line in lines_in: # embed favicons into head if (line.startswith('</head>')): lines_out.extend(favicons_html) # remove all currently embedded favicons if (not (line.startswith('<link') and 'icon' in line)): lines_out.append(line) hf.seek(0) # move to beginning of file hf.write(''.join(lines_out)) # overwrite with new data hf.truncate() # remove trailing old data print('Finished.')
amomynous0/fc
devTools/embed_favicon.py
Python
bsd-3-clause
3,104
s/\babandonned\b/abandoned/g s/\baberation\b/aberration/g s/\babilityes\b/abilities/g s/\babilties\b/abilities/g s/\babilty\b/ability/g s/\babondon\b/abandon/g s/\babbout\b/about/g s/\babotu\b/about/g s/\babouta\b/about a/g s/\baboutit\b/about it/g s/\baboutthe\b/about the/g s/\babscence\b/absence/g s/\babondoned\b/abandoned/g s/\babondoning\b/abandoning/g s/\babondons\b/abandons/g s/\baborigene\b/aborigine/g s/\baccesories\b/accessories/g s/\baccidant\b/accident/g s/\babortificant\b/abortifacient/g s/\babreviate\b/abbreviate/g s/\babreviated\b/abbreviated/g s/\babreviation\b/abbreviation/g s/\babritrary\b/arbitrary/g s/\babsail\b/abseil/g s/\babsailing\b/abseiling/g s/\babsense\b/absence/g s/\babsolutly\b/absolutely/g s/\babsorbsion\b/absorption/g s/\babsorbtion\b/absorption/g s/\babudance\b/abundance/g s/\babundacies\b/abundances/g s/\babundancies\b/abundances/g s/\babundunt\b/abundant/g s/\babutts\b/abuts/g s/\bacadamy\b/academy/g s/\bacadmic\b/academic/g s/\baccademic\b/academic/g s/\baccademy\b/academy/g s/\bacccused\b/accused/g s/\baccelleration\b/acceleration/g s/\bacceptence\b/acceptance/g s/\bacceptible\b/acceptable/g s/\baccessable\b/accessible/g s/\bacident\b/accident/g s/\baccidentaly\b/accidentally/g s/\baccidently\b/accidentally/g s/\bacclimitization\b/acclimatization/g s/\baccomadate\b/accommodate/g s/\baccomadated\b/accommodated/g s/\baccomadates\b/accommodates/g s/\baccomadating\b/accommodating/g s/\baccomadation\b/accommodation/g s/\baccomadations\b/accommodations/g s/\baccomdate\b/accommodate/g s/\baccomodate\b/accommodate/g s/\baccomodated\b/accommodated/g s/\baccomodates\b/accommodates/g s/\baccomodating\b/accommodating/g s/\baccomodation\b/accommodation/g s/\baccomodations\b/accommodations/g s/\baccompanyed\b/accompanied/g s/\baccordeon\b/accordion/g s/\baccordian\b/accordion/g s/\baccoring\b/according/g s/\baccoustic\b/acoustic/g s/\baccquainted\b/acquainted/g s/\baccrediation\b/accreditation/g s/\baccredidation\b/accreditation/g s/\baccross\b/across/g s/\baccussed\b/accused/g s/\bacedemic\b/academic/g s/\bacheive\b/achieve/g s/\bacheived\b/achieved/g s/\bacheivement\b/achievement/g s/\bacheivements\b/achievements/g s/\bacheives\b/achieves/g s/\bacheiving\b/achieving/g s/\bacheivment\b/achievement/g s/\bacheivments\b/achievements/g s/\bachievment\b/achievement/g s/\bachievments\b/achievements/g s/\bachivement\b/achievement/g s/\bachivements\b/achievements/g s/\backnowldeged\b/acknowledged/g s/\backnowledgeing\b/acknowledging/g s/\bacommodate\b/accommodate/g s/\bacomplish\b/accomplish/g s/\bacomplished\b/accomplished/g s/\bacomplishment\b/accomplishment/g s/\bacomplishments\b/accomplishments/g s/\bacording\b/according/g s/\bacordingly\b/accordingly/g s/\bacquaintence\b/acquaintance/g s/\bacquaintences\b/acquaintances/g s/\bacquiantence\b/acquaintance/g s/\bacquiantences\b/acquaintances/g s/\bacquited\b/acquitted/g s/\bactivites\b/activities/g s/\bactivly\b/actively/g s/\bactualy\b/actually/g s/\bacuracy\b/accuracy/g s/\bacused\b/accused/g s/\bacustom\b/accustom/g s/\bacustommed\b/accustomed/g s/\badavanced\b/advanced/g s/\badbandon\b/abandon/g s/\baddional\b/additional/g s/\baddionally\b/additionally/g s/\badditinally\b/additionally/g s/\badditionaly\b/additionally/g s/\badditonal\b/additional/g s/\badditonally\b/additionally/g s/\baddmission\b/admission/g s/\baddopt\b/adopt/g s/\baddopted\b/adopted/g s/\baddoptive\b/adoptive/g s/\baddresable\b/addressable/g s/\baddresed\b/addressed/g s/\baddresing\b/addressing/g s/\baddressess\b/addresses/g s/\baddtion\b/addition/g s/\baddtional\b/additional/g s/\badecuate\b/adequate/g s/\badequit\b/adequate/g s/\badhearing\b/adhering/g s/\badherance\b/adherence/g s/\badmendment\b/amendment/g s/\badmininistrative\b/administrative/g s/\badminstered\b/administered/g s/\badminstrate\b/administrate/g s/\badminstration\b/administration/g s/\badminstrative\b/administrative/g s/\badminstrator\b/administrator/g s/\badmissability\b/admissibility/g s/\badmissable\b/admissible/g s/\badmited\b/admitted/g s/\badmitedly\b/admittedly/g s/\badn\b/and/g s/\badolecent\b/adolescent/g s/\badquire\b/acquire/g s/\badquired\b/acquired/g s/\badquires\b/acquires/g s/\badquiring\b/acquiring/g s/\badres\b/address/g s/\badresable\b/addressable/g s/\badresing\b/addressing/g s/\badress\b/address/g s/\badressable\b/addressable/g s/\badressed\b/addressed/g s/\badventrous\b/adventurous/g s/\badvertisment\b/advertisement/g s/\badvertisments\b/advertisements/g s/\badvesary\b/adversary/g s/\badviced\b/advised/g s/\baeriel\b/aerial/g s/\baeriels\b/aerials/g s/\bafair\b/affair/g s/\bafficianados\b/aficionados/g s/\bafficionado\b/aficionado/g s/\bafficionados\b/aficionados/g s/\baffilate\b/affiliate/g s/\baffilliate\b/affiliate/g s/\baforememtioned\b/aforementioned/g s/\bagainnst\b/against/g s/\bagains\b/against/g s/\bagaisnt\b/against/g s/\baganist\b/against/g s/\baggaravates\b/aggravates/g s/\baggreed\b/agreed/g s/\baggreement\b/agreement/g s/\baggregious\b/egregious/g s/\baggresive\b/aggressive/g s/\bagian\b/again/g s/\bagianst\b/against/g s/\bagin\b/again/g s/\baginst\b/against/g s/\bagravate\b/aggravate/g s/\bagre\b/agree/g s/\bagred\b/agreed/g s/\bagreeement\b/agreement/g s/\bagreemnt\b/agreement/g s/\bagregate\b/aggregate/g s/\bagregates\b/aggregates/g s/\bagreing\b/agreeing/g s/\bagression\b/aggression/g s/\bagressive\b/aggressive/g s/\bagressively\b/aggressively/g s/\bagressor\b/aggressor/g s/\bagricultue\b/agriculture/g s/\bagriculure\b/agriculture/g s/\bagricuture\b/agriculture/g s/\bagrieved\b/aggrieved/g s/\bahev\b/have/g s/\bahppen\b/happen/g s/\bahve\b/have/g s/\baicraft\b/aircraft/g s/\baiport\b/airport/g s/\bairbourne\b/airborne/g s/\baircaft\b/aircraft/g s/\baircrafts\b/aircraft/g s/\baircrafts'\b/aircraft's/g s/\bairporta\b/airports/g s/\bairrcraft\b/aircraft/g s/\baisian\b/asian/g s/\balbiet\b/albeit/g s/\balchohol\b/alcohol/g s/\balchoholic\b/alcoholic/g s/\balchol\b/alcohol/g s/\balcholic\b/alcoholic/g s/\balcohal\b/alcohol/g s/\balcoholical\b/alcoholic/g s/\baledge\b/allege/g s/\baledged\b/alleged/g s/\baledges\b/alleges/g s/\balege\b/allege/g s/\baleged\b/alleged/g s/\balegience\b/allegiance/g s/\balgebraical\b/algebraic/g s/\balgorhitms\b/algorithms/g s/\balgoritm\b/algorithm/g s/\balgoritms\b/algorithms/g s/\balientating\b/alienating/g s/\balledge\b/allege/g s/\balledged\b/alleged/g s/\balledgedly\b/allegedly/g s/\balledges\b/alleges/g s/\ballegedely\b/allegedly/g s/\ballegedy\b/allegedly/g s/\ballegely\b/allegedly/g s/\ballegence\b/allegiance/g s/\ballegience\b/allegiance/g s/\ballign\b/align/g s/\balligned\b/aligned/g s/\balliviate\b/alleviate/g s/\ballopone\b/allophone/g s/\ballopones\b/allophones/g s/\ballready\b/already/g s/\ballthough\b/although/g s/\balltime\b/all-time/g s/\balltogether\b/altogether/g s/\balmsot\b/almost/g s/\balochol\b/alcohol/g s/\balomst\b/almost/g s/\balotted\b/allotted/g s/\balowed\b/allowed/g s/\balowing\b/allowing/g s/\balreayd\b/already/g s/\balse\b/else/g s/\balsot\b/also/g s/\balternitives\b/alternatives/g s/\balthought\b/although/g s/\baltough\b/although/g s/\balwasy\b/always/g s/\balwyas\b/always/g s/\bamalgomated\b/amalgamated/g s/\bamatuer\b/amateur/g s/\bamendmant\b/amendment/g s/\bAmercia\b/America/g s/\bamerliorate\b/ameliorate/g s/\bamke\b/make/g s/\bamking\b/making/g s/\bammend\b/amend/g s/\bammended\b/amended/g s/\bammendment\b/amendment/g s/\bammendments\b/amendments/g s/\bammount\b/amount/g s/\bammused\b/amused/g s/\bamoung\b/among/g s/\bamoungst\b/amongst/g s/\bamung\b/among/g s/\bamunition\b/ammunition/g s/\banalagous\b/analogous/g s/\banalitic\b/analytic/g s/\banalogeous\b/analogous/g s/\banarchim\b/anarchism/g s/\banarchistm\b/anarchism/g s/\banbd\b/and/g s/\bancestory\b/ancestry/g s/\bancilliary\b/ancillary/g s/\bandd\b/and/g s/\bandrogenous\b/androgynous/g s/\bandrogeny\b/androgyny/g s/\banihilation\b/annihilation/g s/\baniversary\b/anniversary/g s/\bannoint\b/anoint/g s/\bannointed\b/anointed/g s/\bannointing\b/anointing/g s/\bannoints\b/anoints/g s/\bannouced\b/announced/g s/\bannualy\b/annually/g s/\bannuled\b/annulled/g s/\banohter\b/another/g s/\banomolies\b/anomalies/g s/\banomolous\b/anomalous/g s/\banomoly\b/anomaly/g s/\banonimity\b/anonymity/g s/\banounced\b/announced/g s/\banouncement\b/announcement/g s/\bansalisation\b/nasalisation/g s/\bansalization\b/nasalization/g s/\bansestors\b/ancestors/g s/\bantartic\b/antarctic/g s/\banthromorphization\b/anthropomorphization/g s/\banthropolgist\b/anthropologist/g s/\banthropolgy\b/anthropology/g s/\bantiapartheid\b/anti-apartheid/g s/\banual\b/annual/g s/\banulled\b/annulled/g s/\banwsered\b/answered/g s/\banyhwere\b/anywhere/g s/\banyother\b/any other/g s/\banytying\b/anything/g s/\baparent\b/apparent/g s/\baparment\b/apartment/g s/\baplication\b/application/g s/\baplied\b/applied/g s/\bapolegetics\b/apologetics/g s/\bapparant\b/apparent/g s/\bapparantly\b/apparently/g s/\bappart\b/apart/g s/\bappartment\b/apartment/g s/\bappartments\b/apartments/g s/\bappeareance\b/appearance/g s/\bappearence\b/appearance/g s/\bappearences\b/appearances/g s/\bapperance\b/appearance/g s/\bapperances\b/appearances/g s/\bappereance\b/appearance/g s/\bappereances\b/appearances/g s/\bapplicaiton\b/application/g s/\bapplicaitons\b/applications/g s/\bappologies\b/apologies/g s/\bappology\b/apology/g s/\bapprearance\b/appearance/g s/\bapprieciate\b/appreciate/g s/\bapproachs\b/approaches/g s/\bappropiate\b/appropriate/g s/\bappropraite\b/appropriate/g s/\bappropropiate\b/appropriate/g s/\bapproproximate\b/approximate/g s/\bapproxamately\b/approximately/g s/\bapproxiately\b/approximately/g s/\bapproximitely\b/approximately/g s/\baprehensive\b/apprehensive/g s/\bapropriate\b/appropriate/g s/\baproval\b/approval/g s/\baproximate\b/approximate/g s/\baproximately\b/approximately/g s/\baquaduct\b/aqueduct/g s/\baquaintance\b/acquaintance/g s/\baquainted\b/acquainted/g s/\baquiantance\b/acquaintance/g s/\baquire\b/acquire/g s/\baquired\b/acquired/g s/\baquiring\b/acquiring/g s/\baquisition\b/acquisition/g s/\baquitted\b/acquitted/g s/\baranged\b/arranged/g s/\barangement\b/arrangement/g s/\barbitarily\b/arbitrarily/g s/\barbitary\b/arbitrary/g s/\barchaelogical\b/archaeological/g s/\barchaelogists\b/archaeologists/g s/\barchaelogy\b/archaeology/g s/\barchetect\b/architect/g s/\barchetects\b/architects/g s/\barchetectural\b/architectural/g s/\barchetecturally\b/architecturally/g s/\barchetecture\b/architecture/g s/\barchiac\b/archaic/g s/\barchictect\b/architect/g s/\barchimedian\b/archimedean/g s/\barchitecht\b/architect/g s/\barchitechturally\b/architecturally/g s/\barchitechture\b/architecture/g s/\barchitechtures\b/architectures/g s/\barchitectual\b/architectural/g s/\barchtype\b/archetype/g s/\barchtypes\b/archetypes/g s/\baready\b/already/g s/\bareodynamics\b/aerodynamics/g s/\bargubly\b/arguably/g s/\barguement\b/argument/g s/\barguements\b/arguments/g s/\barised\b/arose/g s/\barival\b/arrival/g s/\barmamant\b/armament/g s/\barmistace\b/armistice/g s/\barogant\b/arrogant/g s/\barogent\b/arrogant/g s/\baroud\b/around/g s/\barrangment\b/arrangement/g s/\barrangments\b/arrangements/g s/\barrengement\b/arrangement/g s/\barrengements\b/arrangements/g s/\barround\b/around/g s/\bartcile\b/article/g s/\bartical\b/article/g s/\bartice\b/article/g s/\barticel\b/article/g s/\bartifical\b/artificial/g s/\bartifically\b/artificially/g s/\bartillary\b/artillery/g s/\barund\b/around/g s/\basetic\b/ascetic/g s/\basfar\b/as far/g s/\basign\b/assign/g s/\baslo\b/also/g s/\basociated\b/associated/g s/\basorbed\b/absorbed/g s/\basphyxation\b/asphyxiation/g s/\bassasin\b/assassin/g s/\bassasinate\b/assassinate/g s/\bassasinated\b/assassinated/g s/\bassasinates\b/assassinates/g s/\bassasination\b/assassination/g s/\bassasinations\b/assassinations/g s/\bassasined\b/assassinated/g s/\bassasins\b/assassins/g s/\bassassintation\b/assassination/g s/\bassemple\b/assemble/g s/\bassertation\b/assertion/g s/\basside\b/aside/g s/\bassisnate\b/assassinate/g s/\bassit\b/assist/g s/\bassitant\b/assistant/g s/\bassocation\b/association/g s/\bassoicate\b/associate/g s/\bassoicated\b/associated/g s/\bassoicates\b/associates/g s/\bassosication\b/assassination/g s/\basssassans\b/assassins/g s/\bassualt\b/assault/g s/\bassualted\b/assaulted/g s/\bassymetric\b/asymmetric/g s/\bassymetrical\b/asymmetrical/g s/\basteriod\b/asteroid/g s/\basthetic\b/aesthetic/g s/\basthetical\b/aesthetical/g s/\basthetically\b/aesthetically/g s/\basume\b/assume/g s/\baswell\b/as well/g s/\batain\b/attain/g s/\batempting\b/attempting/g s/\batheistical\b/atheistic/g s/\bathenean\b/athenian/g s/\batheneans\b/athenians/g s/\bathiesm\b/atheism/g s/\bathiest\b/atheist/g s/\batorney\b/attorney/g s/\batribute\b/attribute/g s/\batributed\b/attributed/g s/\batributes\b/attributes/g s/\battemp\b/attempt/g s/\battemped\b/attempted/g s/\battemt\b/attempt/g s/\battemted\b/attempted/g s/\battemting\b/attempting/g s/\battemts\b/attempts/g s/\battendence\b/attendance/g s/\battendent\b/attendant/g s/\battendents\b/attendants/g s/\battened\b/attended/g s/\battension\b/attention/g s/\battitide\b/attitude/g s/\battributred\b/attributed/g s/\battrocities\b/atrocities/g s/\baudeince\b/audience/g s/\bauromated\b/automated/g s/\baustrailia\b/Australia/g s/\baustrailian\b/Australian/g s/\bauther\b/author/g s/\bauthobiographic\b/autobiographic/g s/\bauthobiography\b/autobiography/g s/\bauthorative\b/authoritative/g s/\bauthorites\b/authorities/g s/\bauthorithy\b/authority/g s/\bauthoritiers\b/authorities/g s/\bauthoritive\b/authoritative/g s/\bauthrorities\b/authorities/g s/\bautochtonous\b/autochthonous/g s/\bautoctonous\b/autochthonous/g s/\bautomaticly\b/automatically/g s/\bautomibile\b/automobile/g s/\bautomonomous\b/autonomous/g s/\bautor\b/author/g s/\bautority\b/authority/g s/\bauxilary\b/auxiliary/g s/\bauxillaries\b/auxiliaries/g s/\bauxillary\b/auxiliary/g s/\bauxilliaries\b/auxiliaries/g s/\bauxilliary\b/auxiliary/g s/\bavailabe\b/available/g s/\bavailablity\b/availability/g s/\bavailaible\b/available/g s/\bavailble\b/available/g s/\bavailiable\b/available/g s/\bavailible\b/available/g s/\bavalable\b/available/g s/\bavalance\b/avalanche/g s/\bavaliable\b/available/g s/\bavation\b/aviation/g s/\bavengence\b/a vengeance/g s/\baverageed\b/averaged/g s/\bavilable\b/available/g s/\bawared\b/awarded/g s/\bawya\b/away/g s/\bbaceause\b/because/g s/\bbackgorund\b/background/g s/\bbackrounds\b/backgrounds/g s/\bbakc\b/back/g s/\bbanannas\b/bananas/g s/\bbandwith\b/bandwidth/g s/\bbankrupcy\b/bankruptcy/g s/\bbanruptcy\b/bankruptcy/g s/\bbasicaly\b/basically/g s/\bbasicly\b/basically/g s/\bbcak\b/back/g s/\bbeachead\b/beachhead/g s/\bbeacuse\b/because/g s/\bbeastiality\b/bestiality/g s/\bbeatiful\b/beautiful/g s/\bbeaurocracy\b/bureaucracy/g s/\bbeaurocratic\b/bureaucratic/g s/\bbeautyfull\b/beautiful/g s/\bbecamae\b/became/g s/\bbecasue\b/because/g s/\bbeccause\b/because/g s/\bbecomeing\b/becoming/g s/\bbecomming\b/becoming/g s/\bbecouse\b/because/g s/\bbecuase\b/because/g s/\bbedore\b/before/g s/\bbeeing\b/being/g s/\bbefoer\b/before/g s/\bbegginer\b/beginner/g s/\bbegginers\b/beginners/g s/\bbeggining\b/beginning/g s/\bbegginings\b/beginnings/g s/\bbeggins\b/begins/g s/\bbegining\b/beginning/g s/\bbeginnig\b/beginning/g s/\bbeleagured\b/beleaguered/g s/\bbeleif\b/belief/g s/\bbeleive\b/believe/g s/\bbeleived\b/believed/g s/\bbeleives\b/believes/g s/\bbeleiving\b/believing/g s/\bbeligum\b/belgium/g s/\bbelive\b/believe/g s/\bbelligerant\b/belligerent/g s/\bbellweather\b/bellwether/g s/\bbemusemnt\b/bemusement/g s/\bbeneficary\b/beneficiary/g s/\bbeng\b/being/g s/\bbenificial\b/beneficial/g s/\bbenifit\b/benefit/g s/\bbenifits\b/benefits/g s/\bbergamont\b/bergamot/g s/\bBernouilli\b/Bernoulli/g s/\bbeseige\b/besiege/g s/\bbeseiged\b/besieged/g s/\bbeseiging\b/besieging/g s/\bbeteen\b/between/g s/\bbetwen\b/between/g s/\bbeween\b/between/g s/\bbewteen\b/between/g s/\bbeyound\b/beyond/g s/\bbigining\b/beginning/g s/\bbiginning\b/beginning/g s/\bbilateraly\b/bilaterally/g s/\bbillingualism\b/bilingualism/g s/\bbinominal\b/binomial/g s/\bbizzare\b/bizarre/g s/\bblaim\b/blame/g s/\bblaimed\b/blamed/g s/\bblessure\b/blessing/g s/\bBlitzkreig\b/Blitzkrieg/g s/\bbodydbuilder\b/bodybuilder/g s/\bbombardement\b/bombardment/g s/\bbombarment\b/bombardment/g s/\bbondary\b/boundary/g s/\bBonnano\b/Bonanno/g s/\bboook\b/book/g s/\bborke\b/broke/g s/\bboundry\b/boundary/g s/\bbouyancy\b/buoyancy/g s/\bbouyant\b/buoyant/g s/\bboyant\b/buoyant/g s/\bbradcast\b/broadcast/g s/\bBrasillian\b/Brazilian/g s/\bbreakthough\b/breakthrough/g s/\bbreakthroughts\b/breakthroughs/g s/\bbreif\b/brief/g s/\bbreifly\b/briefly/g s/\bbrethen\b/brethren/g s/\bbretheren\b/brethren/g s/\bbriliant\b/brilliant/g s/\bbrillant\b/brilliant/g s/\bbrimestone\b/brimstone/g s/\bBritian\b/Britain/g s/\bBrittish\b/British/g s/\bbroacasted\b/broadcast/g s/\bbroadacasting\b/broadcasting/g s/\bbroady\b/broadly/g s/\bBuddah\b/Buddha/g s/\bBuddist\b/Buddhist/g s/\bbuisness\b/business/g s/\bbuisnessman\b/businessman/g s/\bbuoancy\b/buoyancy/g s/\bburried\b/buried/g s/\bbusines\b/business/g s/\bbusness\b/business/g s/\bbussiness\b/business/g s/\bcaculater\b/calculator/g s/\bcacuses\b/caucuses/g s/\bcahracters\b/characters/g s/\bcalaber\b/caliber/g s/\bcalculater\b/calculator/g s/\bcalculs\b/calculus/g s/\bcalenders\b/calendars/g s/\bcaligraphy\b/calligraphy/g s/\bcaluclate\b/calculate/g s/\bcaluclated\b/calculated/g s/\bcaluculate\b/calculate/g s/\bcaluculated\b/calculated/g s/\bcalulate\b/calculate/g s/\bcalulated\b/calculated/g s/\bcalulater\b/calculator/g s/\bCambrige\b/Cambridge/g s/\bcamoflage\b/camouflage/g s/\bcampagin\b/campaign/g s/\bcampain\b/campaign/g s/\bcampains\b/campaigns/g s/\bcandadate\b/candidate/g s/\bcandiate\b/candidate/g s/\bcandidiate\b/candidate/g s/\bcannister\b/canister/g s/\bcannisters\b/canisters/g s/\bcannnot\b/cannot/g s/\bcan not\b/cannot/g s/\bcannonical\b/canonical/g s/\bcannotation\b/connotation/g s/\bcannotations\b/connotations/g s/\bcaost\b/coast/g s/\bcaperbility\b/capability/g s/\bCapetown\b/Cape Town/g s/\bcapible\b/capable/g s/\bcaptial\b/capital/g s/\bcaptued\b/captured/g s/\bcapturd\b/captured/g s/\bcarachter\b/character/g s/\bcaracterized\b/characterized/g s/\bcarefull\b/careful/g s/\bcareing\b/caring/g s/\bcarismatic\b/charismatic/g s/\bCarmalite\b/Carmelite/g s/\bCarnagie\b/Carnegie/g s/\bCarnagie-Mellon\b/Carnegie-Mellon/g s/\bCarnigie\b/Carnegie/g s/\bCarnigie-Mellon\b/Carnegie-Mellon/g s/\bcarreer\b/career/g s/\bcarrers\b/careers/g s/\bCarribbean\b/Caribbean/g s/\bCarribean\b/Caribbean/g s/\bcarryng\b/carrying/g s/\bcartdridge\b/cartridge/g s/\bCarthagian\b/Carthaginian/g s/\bcarthographer\b/cartographer/g s/\bcartilege\b/cartilage/g s/\bcartilidge\b/cartilage/g s/\bcartrige\b/cartridge/g s/\bcasette\b/cassette/g s/\bcasion\b/caisson/g s/\bcassawory\b/cassowary/g s/\bcassowarry\b/cassowary/g s/\bcasue\b/cause/g s/\bcasued\b/caused/g s/\bcasues\b/causes/g s/\bcasuing\b/causing/g s/\bcasulaties\b/casualties/g s/\bcasulaty\b/casualty/g s/\bcatagories\b/categories/g s/\bcatagorized\b/categorized/g s/\bcatagory\b/category/g s/\bcatapillar\b/caterpillar/g s/\bcatapillars\b/caterpillars/g s/\bcatapiller\b/caterpillar/g s/\bcatapillers\b/caterpillars/g s/\bcatepillar\b/caterpillar/g s/\bcatepillars\b/caterpillars/g s/\bcatergorize\b/categorize/g s/\bcatergorized\b/categorized/g s/\bcaterpilar\b/caterpillar/g s/\bcaterpilars\b/caterpillars/g s/\bcaterpiller\b/caterpillar/g s/\bcaterpillers\b/caterpillars/g s/\bcathlic\b/catholic/g s/\bcatholocism\b/catholicism/g s/\bcatterpilar\b/caterpillar/g s/\bcatterpilars\b/caterpillars/g s/\bcatterpillar\b/caterpillar/g s/\bcatterpillars\b/caterpillars/g s/\bcattleship\b/battleship/g s/\bcausalities\b/casualties/g s/\bCeasar\b/Caesar/g s/\bCelcius\b/Celsius/g s/\bcellpading\b/cellpadding/g s/\bcementary\b/cemetery/g s/\bcemetarey\b/cemetery/g s/\bcemetaries\b/cemeteries/g s/\bcemetary\b/cemetery/g s/\bcencus\b/census/g s/\bcententenial\b/centennial/g s/\bcentruies\b/centuries/g s/\bcentruy\b/century/g s/\bcentuties\b/centuries/g s/\bcentuty\b/century/g s/\bcerimonial\b/ceremonial/g s/\bcerimonies\b/ceremonies/g s/\bcerimonious\b/ceremonious/g s/\bcerimony\b/ceremony/g s/\bceromony\b/ceremony/g s/\bcertainity\b/certainty/g s/\bcertian\b/certain/g s/\bchalenging\b/challenging/g s/\bchallange\b/challenge/g s/\bchallanged\b/challenged/g s/\bchallege\b/challenge/g s/\bChampange\b/Champagne/g s/\bchangable\b/changeable/g s/\bcharachter\b/character/g s/\bcharachters\b/characters/g s/\bcharactersistic\b/characteristic/g s/\bcharactor\b/character/g s/\bcharactors\b/characters/g s/\bcharasmatic\b/charismatic/g s/\bcharaterized\b/characterized/g s/\bchariman\b/chairman/g s/\bcharistics\b/characteristics/g s/\bcheif\b/chief/g s/\bcheifs\b/chiefs/g s/\bchemcial\b/chemical/g s/\bchemcially\b/chemically/g s/\bchemestry\b/chemistry/g s/\bchemicaly\b/chemically/g s/\bchildbird\b/childbirth/g s/\bchilden\b/children/g s/\bchoclate\b/chocolate/g s/\bchoosen\b/chosen/g s/\bchracter\b/character/g s/\bchuch\b/church/g s/\bchurchs\b/churches/g s/\bCincinatti\b/Cincinnati/g s/\bCincinnatti\b/Cincinnati/g s/\bcirculaton\b/circulation/g s/\bcircumsicion\b/circumcision/g s/\bcircut\b/circuit/g s/\bciricuit\b/circuit/g s/\bciriculum\b/curriculum/g s/\bcivillian\b/civilian/g s/\bclaer\b/clear/g s/\bclaerer\b/clearer/g s/\bclaerly\b/clearly/g s/\bclaimes\b/claims/g s/\bclas\b/class/g s/\bclasic\b/classic/g s/\bclasical\b/classical/g s/\bclasically\b/classically/g s/\bcleareance\b/clearance/g s/\bclincial\b/clinical/g s/\bclinicaly\b/clinically/g s/\bcmo\b/com/g s/\bcmoputer\b/computer/g s/\bco-incided\b/coincided/g s/\bCoca Cola\b/Coca-Cola/g s/\bcoctail\b/cocktail/g s/\bcoform\b/conform/g s/\bcognizent\b/cognizant/g s/\bcoincedentally\b/coincidentally/g s/\bcolaborations\b/collaborations/g s/\bcolateral\b/collateral/g s/\bcolelctive\b/collective/g s/\bcollaberative\b/collaborative/g s/\bcollecton\b/collection/g s/\bcollegue\b/colleague/g s/\bcollegues\b/colleagues/g s/\bcollonade\b/colonnade/g s/\bcollonies\b/colonies/g s/\bcollony\b/colony/g s/\bcollosal\b/colossal/g s/\bcolonizators\b/colonizers/g s/\bcomando\b/commando/g s/\bcomandos\b/commandos/g s/\bcomany\b/company/g s/\bcomapany\b/company/g s/\bcomback\b/comeback/g s/\bcombanations\b/combinations/g s/\bcombinatins\b/combinations/g s/\bcombusion\b/combustion/g s/\bcomdemnation\b/condemnation/g s/\bcomemmorates\b/commemorates/g s/\bcomemoretion\b/commemoration/g s/\bcomision\b/commission/g s/\bcomisioned\b/commissioned/g s/\bcomisioner\b/commissioner/g s/\bcomisioning\b/commissioning/g s/\bcomisions\b/commissions/g s/\bcomission\b/commission/g s/\bcomissioned\b/commissioned/g s/\bcomissioner\b/commissioner/g s/\bcomissioning\b/commissioning/g s/\bcomissions\b/commissions/g s/\bcomited\b/committed/g s/\bcomiting\b/committing/g s/\bcomitted\b/committed/g s/\bcomittee\b/committee/g s/\bcomitting\b/committing/g s/\bcommandoes\b/commandos/g s/\bcommedic\b/comedic/g s/\bcommemerative\b/commemorative/g s/\bcommemmorate\b/commemorate/g s/\bcommemmorating\b/commemorating/g s/\bcommerical\b/commercial/g s/\bcommerically\b/commercially/g s/\bcommericial\b/commercial/g s/\bcommericially\b/commercially/g s/\bcommerorative\b/commemorative/g s/\bcomming\b/coming/g s/\bcomminication\b/communication/g s/\bcommision\b/commission/g s/\bcommisioned\b/commissioned/g s/\bcommisioner\b/commissioner/g s/\bcommisioning\b/commissioning/g s/\bcommisions\b/commissions/g s/\bcommited\b/committed/g s/\bcommitee\b/committee/g s/\bcommiting\b/committing/g s/\bcommitte\b/committee/g s/\bcommittment\b/commitment/g s/\bcommittments\b/commitments/g s/\bcommmemorated\b/commemorated/g s/\bcommongly\b/commonly/g s/\bcommonweath\b/commonwealth/g s/\bcommuications\b/communications/g s/\bcommuinications\b/communications/g s/\bcommunciation\b/communication/g s/\bcommuniation\b/communication/g s/\bcommunites\b/communities/g s/\bcompability\b/compatibility/g s/\bcomparision\b/comparison/g s/\bcomparisions\b/comparisons/g s/\bcomparitive\b/comparative/g s/\bcomparitively\b/comparatively/g s/\bcompatabilities\b/compatibilities/g s/\bcompatability\b/compatibility/g s/\bcompatable\b/compatible/g s/\bcompatablities\b/compatibilities/g s/\bcompatablity\b/compatibility/g s/\bcompatiable\b/compatible/g s/\bcompatiblities\b/compatibilities/g s/\bcompatiblity\b/compatibility/g s/\bcompeitions\b/competitions/g s/\bcompensantion\b/compensation/g s/\bcompetance\b/competence/g s/\bcompetant\b/competent/g s/\bcompetative\b/competitive/g s/\bcompetitiion\b/competition/g s/\bcompetive\b/competitive/g s/\bcompetiveness\b/competitiveness/g s/\bcomphrehensive\b/comprehensive/g s/\bcompitent\b/competent/g s/\bcompletedthe\b/completed the/g s/\bcompletelyl\b/completely/g s/\bcompletetion\b/completion/g s/\bcomplier\b/compiler/g s/\bcomponant\b/component/g s/\bcomprable\b/comparable/g s/\bcomprimise\b/compromise/g s/\bcompulsary\b/compulsory/g s/\bcompulsery\b/compulsory/g s/\bcomputarized\b/computerized/g s/\bconcensus\b/consensus/g s/\bconcider\b/consider/g s/\bconcidered\b/considered/g s/\bconcidering\b/considering/g s/\bconciders\b/considers/g s/\bconcieted\b/conceited/g s/\bconcieved\b/conceived/g s/\bconcious\b/conscious/g s/\bconciously\b/consciously/g s/\bconciousness\b/consciousness/g s/\bcondamned\b/condemned/g s/\bcondemmed\b/condemned/g s/\bcondidtion\b/condition/g s/\bcondidtions\b/conditions/g s/\bconditionsof\b/conditions of/g s/\bconected\b/connected/g s/\bconection\b/connection/g s/\bconesencus\b/consensus/g s/\bconfidental\b/confidential/g s/\bconfidentally\b/confidentially/g s/\bconfids\b/confides/g s/\bconfigureable\b/configurable/g s/\bconfortable\b/comfortable/g s/\bcongradulations\b/congratulations/g s/\bcongresional\b/congressional/g s/\bconived\b/connived/g s/\bconjecutre\b/conjecture/g s/\bconjuction\b/conjunction/g s/\bConneticut\b/Connecticut/g s/\bconotations\b/connotations/g s/\bconquerd\b/conquered/g s/\bconquerer\b/conqueror/g s/\bconquerers\b/conquerors/g s/\bconqured\b/conquered/g s/\bconscent\b/consent/g s/\bconsciouness\b/consciousness/g s/\bconsdider\b/consider/g s/\bconsdidered\b/considered/g s/\bconsdiered\b/considered/g s/\bconsectutive\b/consecutive/g s/\bconsenquently\b/consequently/g s/\bconsentrate\b/concentrate/g s/\bconsentrated\b/concentrated/g s/\bconsentrates\b/concentrates/g s/\bconsept\b/concept/g s/\bconsequentually\b/consequently/g s/\bconsequeseces\b/consequences/g s/\bconsern\b/concern/g s/\bconserned\b/concerned/g s/\bconserning\b/concerning/g s/\bconservitive\b/conservative/g s/\bconsiciousness\b/consciousness/g s/\bconsicousness\b/consciousness/g s/\bconsiderd\b/considered/g s/\bconsideres\b/considered/g s/\bconsious\b/conscious/g s/\bconsistant\b/consistent/g s/\bconsistantly\b/consistently/g s/\bconsituencies\b/constituencies/g s/\bconsituency\b/constituency/g s/\bconsituted\b/constituted/g s/\bconsitution\b/constitution/g s/\bconsitutional\b/constitutional/g s/\bconsolodate\b/consolidate/g s/\bconsolodated\b/consolidated/g s/\bconsonent\b/consonant/g s/\bconsonents\b/consonants/g s/\bconsorcium\b/consortium/g s/\bconspiracys\b/conspiracies/g s/\bconspiriator\b/conspirator/g s/\bconstaints\b/constraints/g s/\bconstanly\b/constantly/g s/\bconstarnation\b/consternation/g s/\bconstatn\b/constant/g s/\bconstinually\b/continually/g s/\bconstituant\b/constituent/g s/\bconstituants\b/constituents/g s/\bconstituion\b/constitution/g s/\bconstituional\b/constitutional/g s/\bconsttruction\b/construction/g s/\bconstuction\b/construction/g s/\bcontstruction\b/construction/g s/\bconsulant\b/consultant/g s/\bconsumate\b/consummate/g s/\bconsumated\b/consummated/g s/\bcontaiminate\b/contaminate/g s/\bcontaines\b/contains/g s/\bcontamporaries\b/contemporaries/g s/\bcontamporary\b/contemporary/g s/\bcontempoary\b/contemporary/g s/\bcontemporaneus\b/contemporaneous/g s/\bcontempory\b/contemporary/g s/\bcontendor\b/contender/g s/\bcontian\b/contain/g s/\bcontians\b/contains/g s/\bcontibute\b/contribute/g s/\bcontibuted\b/contributed/g s/\bcontibutes\b/contributes/g s/\bcontigent\b/contingent/g s/\bcontined\b/continued/g s/\bcontinential\b/continental/g s/\bcontinous\b/continuous/g s/\bcontinously\b/continuously/g s/\bcontinueing\b/continuing/g s/\bcontravercial\b/controversial/g s/\bcontraversy\b/controversy/g s/\bcontributer\b/contributor/g s/\bcontributers\b/contributors/g s/\bcontritutions\b/contributions/g s/\bcontroled\b/controlled/g s/\bcontroling\b/controlling/g s/\bcontroll\b/control/g s/\bcontrolls\b/controls/g s/\bcontrovercial\b/controversial/g s/\bcontrovercy\b/controversy/g s/\bcontroveries\b/controversies/g s/\bcontroversal\b/controversial/g s/\bcontroversey\b/controversy/g s/\bcontrovertial\b/controversial/g s/\bcontrovery\b/controversy/g s/\bcontruction\b/construction/g s/\bconveinent\b/convenient/g s/\bconvenant\b/covenant/g s/\bconvential\b/conventional/g s/\bconvertables\b/convertibles/g s/\bconvertion\b/conversion/g s/\bconviced\b/convinced/g s/\bconvienient\b/convenient/g s/\bcoordiantion\b/coordination/g s/\bcoorperations\b/corporations/g s/\bcopmetitors\b/competitors/g s/\bcoputer\b/computer/g s/\bcopywrite\b/copyright/g s/\bcoridal\b/cordial/g s/\bcornmitted\b/committed/g s/\bcorosion\b/corrosion/g s/\bcorparate\b/corporate/g s/\bcorperations\b/corporations/g s/\bcorrecters\b/correctors/g s/\bcorreponding\b/corresponding/g s/\bcorreposding\b/corresponding/g s/\bcorrespondant\b/correspondent/g s/\bcorrespondants\b/correspondents/g s/\bcorridoors\b/corridors/g s/\bcorrispond\b/correspond/g s/\bcorrispondant\b/correspondent/g s/\bcorrispondants\b/correspondents/g s/\bcorrisponded\b/corresponded/g s/\bcorrisponding\b/corresponding/g s/\bcorrisponds\b/corresponds/g s/\bcostitution\b/constitution/g s/\bcoucil\b/council/g s/\bcounries\b/countries/g s/\bcountains\b/contains/g s/\bcountires\b/countries/g s/\bcreaeted\b/created/g s/\bcreche\b/crèche/g s/\bcreedence\b/credence/g s/\bcritereon\b/criterion/g s/\bcriterias\b/criteria/g s/\bcriticists\b/critics/g s/\bcritisising\b/criticising/g s/\bcritisism\b/criticism/g s/\bcritisisms\b/criticisms/g s/\bcritized\b/criticized/g s/\bcritizing\b/criticizing/g s/\bcrockodiles\b/crocodiles/g s/\bcrowm\b/crown/g s/\bcrtical\b/critical/g s/\bcrticised\b/criticised/g s/\bcrucifiction\b/crucifixion/g s/\bcrusies\b/cruises/g s/\bcrutial\b/crucial/g s/\bcrystalisation\b/crystallisation/g s/\bculiminating\b/culminating/g s/\bcumulatative\b/cumulative/g s/\bcurch\b/church/g s/\bcurcuit\b/circuit/g s/\bcurrenly\b/currently/g s/\bcurriculem\b/curriculum/g s/\bcxan\b/cyan/g s/\bcyclinder\b/cylinder/g s/\bdacquiri\b/daiquiri/g s/\bdaed\b/dead/g s/\bdalmation\b/dalmatian/g s/\bdamenor\b/demeanor/g s/\bdammage\b/damage/g s/\bDardenelles\b/Dardanelles/g s/\bdaugher\b/daughter/g s/\bdebateable\b/debatable/g s/\bdecendant\b/descendant/g s/\bdecendants\b/descendants/g s/\bdecendent\b/descendant/g s/\bdecendents\b/descendants/g s/\bdecideable\b/decidable/g s/\bdecidely\b/decidedly/g s/\bdecieved\b/deceived/g s/\bdecison\b/decision/g s/\bdecomissioned\b/decommissioned/g s/\bdecomposit\b/decompose/g s/\bdecomposited\b/decomposed/g s/\bdecompositing\b/decomposing/g s/\bdecomposits\b/decomposes/g s/\bdecress\b/decrees/g s/\bdecribe\b/describe/g s/\bdecribed\b/described/g s/\bdecribes\b/describes/g s/\bdecribing\b/describing/g s/\bdectect\b/detect/g s/\bdefendent\b/defendant/g s/\bdefendents\b/defendants/g s/\bdeffensively\b/defensively/g s/\bdeffine\b/define/g s/\bdeffined\b/defined/g s/\bdefinance\b/defiance/g s/\bdefinate\b/definite/g s/\bdefinately\b/definitely/g s/\bdefinatly\b/definitely/g s/\bdefinetly\b/definitely/g s/\bdefinining\b/defining/g s/\bdefinit\b/definite/g s/\bdefinitly\b/definitely/g s/\bdefiniton\b/definition/g s/\bdefintion\b/definition/g s/\bdegrate\b/degrade/g s/\bdelagates\b/delegates/g s/\bdelapidated\b/dilapidated/g s/\bdelerious\b/delirious/g s/\bdelevopment\b/development/g s/\bdeliberatly\b/deliberately/g s/\bdelusionally\b/delusively/g s/\bdemenor\b/demeanor/g s/\bdemographical\b/demographic/g s/\bdemolision\b/demolition/g s/\bdemorcracy\b/democracy/g s/\bdemostration\b/demonstration/g s/\bdenegrating\b/denigrating/g s/\bdensly\b/densely/g s/\bdeparment\b/department/g s/\bdeparmental\b/departmental/g s/\bdeparments\b/departments/g s/\bdependance\b/dependence/g s/\bdependancy\b/dependency/g s/\bderiviated\b/derived/g s/\bderivitive\b/derivative/g s/\bderogitory\b/derogatory/g s/\bdescendands\b/descendants/g s/\bdescibed\b/described/g s/\bdescision\b/decision/g s/\bdescisions\b/decisions/g s/\bdescriibes\b/describes/g s/\bdescripters\b/descriptors/g s/\bdescripton\b/description/g s/\bdesctruction\b/destruction/g s/\bdescuss\b/discuss/g s/\bdesgined\b/designed/g s/\bdeside\b/decide/g s/\bdesigining\b/designing/g s/\bdesinations\b/destinations/g s/\bdesintegrated\b/disintegrated/g s/\bdesintegration\b/disintegration/g s/\bdesireable\b/desirable/g s/\bdesitned\b/destined/g s/\bdesktiop\b/desktop/g s/\bdesorder\b/disorder/g s/\bdesoriented\b/disoriented/g s/\bdespict\b/depict/g s/\bdespiration\b/desperation/g s/\bdessicated\b/desiccated/g s/\bdessigned\b/designed/g s/\bdestablized\b/destabilized/g s/\bdestory\b/destroy/g s/\bdetailled\b/detailed/g s/\bdetatched\b/detached/g s/\bdeteoriated\b/deteriorated/g s/\bdeteriate\b/deteriorate/g s/\bdeterioriating\b/deteriorating/g s/\bdeterminining\b/determining/g s/\bdetremental\b/detrimental/g s/\bdevasted\b/devastated/g s/\bdevelope\b/develop/g s/\bdevelopement\b/development/g s/\bdevelopped\b/developed/g s/\bdevelpment\b/development/g s/\bdevels\b/delves/g s/\bdevestated\b/devastated/g s/\bdevestating\b/devastating/g s/\bdevide\b/divide/g s/\bdevided\b/divided/g s/\bdevistating\b/devastating/g s/\bdevolopement\b/development/g s/\bdiablical\b/diabolical/g s/\bdiamons\b/diamonds/g s/\bdiaster\b/disaster/g s/\bdichtomy\b/dichotomy/g s/\bdiconnects\b/disconnects/g s/\bdicover\b/discover/g s/\bdicovered\b/discovered/g s/\bdicovering\b/discovering/g s/\bdicovers\b/discovers/g s/\bdicovery\b/discovery/g s/\bdictionarys\b/dictionaries/g s/\bdicussed\b/discussed/g s/\bdidnt\b/didn't/g s/\bdieties\b/deities/g s/\bdiety\b/deity/g s/\bdiferent\b/different/g s/\bdiferrent\b/different/g s/\bdifferentiatiations\b/differentiations/g s/\bdiffernt\b/different/g s/\bdifficulity\b/difficulty/g s/\bdiffrent\b/different/g s/\bdificulties\b/difficulties/g s/\bdificulty\b/difficulty/g s/\bdimenions\b/dimensions/g s/\bdimention\b/dimension/g s/\bdimentional\b/dimensional/g s/\bdimentions\b/dimensions/g s/\bdimesnional\b/dimensional/g s/\bdiminuitive\b/diminutive/g s/\bdimunitive\b/diminutive/g s/\bdiosese\b/diocese/g s/\bdiphtong\b/diphthong/g s/\bdiphtongs\b/diphthongs/g s/\bdiplomancy\b/diplomacy/g s/\bdipthong\b/diphthong/g s/\bdipthongs\b/diphthongs/g s/\bdirectoty\b/directory/g s/\bdirived\b/derived/g s/\bdisagreeed\b/disagreed/g s/\bdisapeared\b/disappeared/g s/\bdisapointing\b/disappointing/g s/\bdisappearred\b/disappeared/g s/\bdisaproval\b/disapproval/g s/\bdisasterous\b/disastrous/g s/\bdisatisfaction\b/dissatisfaction/g s/\bdisatisfied\b/dissatisfied/g s/\bdisatrous\b/disastrous/g s/\bdiscontentment\b/discontent/g s/\bdiscribe\b/describe/g s/\bdiscribed\b/described/g s/\bdiscribes\b/describes/g s/\bdiscribing\b/describing/g s/\bdisctinction\b/distinction/g s/\bdisctinctive\b/distinctive/g s/\bdisemination\b/dissemination/g s/\bdisenchanged\b/disenchanted/g s/\bdisiplined\b/disciplined/g s/\bdisobediance\b/disobedience/g s/\bdisobediant\b/disobedient/g s/\bdisolved\b/dissolved/g s/\bdisover\b/discover/g s/\bdispair\b/despair/g s/\bdisparingly\b/disparagingly/g s/\bdispence\b/dispense/g s/\bdispenced\b/dispensed/g s/\bdispencing\b/dispensing/g s/\bdispicable\b/despicable/g s/\bdispite\b/despite/g s/\bdispostion\b/disposition/g s/\bdisproportiate\b/disproportionate/g s/\bdisputandem\b/disputandum/g s/\bdisricts\b/districts/g s/\bdissagreement\b/disagreement/g s/\bdissapear\b/disappear/g s/\bdissapearance\b/disappearance/g s/\bdissapeared\b/disappeared/g s/\bdissapearing\b/disappearing/g s/\bdissapears\b/disappears/g s/\bdissappear\b/disappear/g s/\bdissappears\b/disappears/g s/\bdissappointed\b/disappointed/g s/\bdissarray\b/disarray/g s/\bdissobediance\b/disobedience/g s/\bdissobediant\b/disobedient/g s/\bdissobedience\b/disobedience/g s/\bdissobedient\b/disobedient/g s/\bdistiction\b/distinction/g s/\bdistingish\b/distinguish/g s/\bdistingished\b/distinguished/g s/\bdistingishes\b/distinguishes/g s/\bdistingishing\b/distinguishing/g s/\bdistingquished\b/distinguished/g s/\bdistrubution\b/distribution/g s/\bdistruction\b/destruction/g s/\bdistructive\b/destructive/g s/\bditributed\b/distributed/g s/\bdivice\b/device/g s/\bdivinition\b/divination/g s/\bdivison\b/division/g s/\bdivisons\b/divisions/g s/\bdum\b/dumb/g s/\bdoccument\b/document/g s/\bdoccumented\b/documented/g s/\bdoccuments\b/documents/g s/\bdocrines\b/doctrines/g s/\bdoctines\b/doctrines/g s/\bdocumenatry\b/documentary/g s/\bdoens\b/does/g s/\bdoesnt\b/doesn't/g s/\bdoign\b/doing/g s/\bdominaton\b/domination/g s/\bdominent\b/dominant/g s/\bdominiant\b/dominant/g s/\bdonig\b/doing/g s/\bdosen't\b/doesn't/g s/\bdoulbe\b/double/g s/\bdowloads\b/downloads/g s/\bdramtic\b/dramatic/g s/\bdraughtman\b/draughtsman/g s/\bDravadian\b/Dravidian/g s/\bdreasm\b/dreams/g s/\bdriectly\b/directly/g s/\bdrnik\b/drink/g s/\bdruming\b/drumming/g s/\bdrummless\b/drumless/g s/\bdupicate\b/duplicate/g s/\bdurig\b/during/g s/\bdurring\b/during/g s/\bduting\b/during/g s/\bdyas\b/dryas/g s/\beahc\b/each/g s/\bealier\b/earlier/g s/\bearlies\b/earliest/g s/\bearnt\b/earned/g s/\becclectic\b/eclectic/g s/\beceonomy\b/economy/g s/\becidious\b/deciduous/g s/\beclispe\b/eclipse/g s/\becomonic\b/economic/g s/\bect\b/etc/g s/\beearly\b/early/g s/\befel\b/evil/g s/\beffeciency\b/efficiency/g s/\beffecient\b/efficient/g s/\beffeciently\b/efficiently/g s/\befficency\b/efficiency/g s/\befficent\b/efficient/g s/\befficently\b/efficiently/g s/\beffulence\b/effluence/g s/\beiter\b/either/g s/\belction\b/election/g s/\belectrial\b/electrical/g s/\belectricly\b/electrically/g s/\belectricty\b/electricity/g s/\belementay\b/elementary/g s/\beleminated\b/eliminated/g s/\beleminating\b/eliminating/g s/\beles\b/eels/g s/\beletricity\b/electricity/g s/\belicided\b/elicited/g s/\beligable\b/eligible/g s/\belimentary\b/elementary/g s/\bellected\b/elected/g s/\belphant\b/elephant/g s/\bembarass\b/embarrass/g s/\bembarassed\b/embarrassed/g s/\bembarassing\b/embarrassing/g s/\bembarassment\b/embarrassment/g s/\bembargos\b/embargoes/g s/\bembarras\b/embarrass/g s/\bembarrased\b/embarrassed/g s/\bembarrasing\b/embarrassing/g s/\bembarrasment\b/embarrassment/g s/\bembezelled\b/embezzled/g s/\bemblamatic\b/emblematic/g s/\beminate\b/emanate/g s/\beminated\b/emanated/g s/\bemision\b/emission/g s/\bemited\b/emitted/g s/\bemiting\b/emitting/g s/\bemmediately\b/immediately/g s/\bemminently\b/eminently/g s/\bemmisaries\b/emissaries/g s/\bemmisarries\b/emissaries/g s/\bemmisarry\b/emissary/g s/\bemmisary\b/emissary/g s/\bemmision\b/emission/g s/\bemmisions\b/emissions/g s/\bemmited\b/emitted/g s/\bemmiting\b/emitting/g s/\bemmitted\b/emitted/g s/\bemmitting\b/emitting/g s/\bemnity\b/enmity/g s/\bemperical\b/empirical/g s/\bemphaised\b/emphasised/g s/\bemphsis\b/emphasis/g s/\bemphysyma\b/emphysema/g s/\bemporer\b/emperor/g s/\bemprisoned\b/imprisoned/g s/\benameld\b/enameled/g s/\benchancement\b/enhancement/g s/\bencouraing\b/encouraging/g s/\bencryptiion\b/encryption/g s/\bencylopedia\b/encyclopedia/g s/\bendevors\b/endeavors/g s/\bendevour\b/endeavour/g s/\bendig\b/ending/g s/\bendolithes\b/endoliths/g s/\benduce\b/induce/g s/\bened\b/need/g s/\benforceing\b/enforcing/g s/\bengagment\b/engagement/g s/\bengeneer\b/engineer/g s/\bengeneering\b/engineering/g s/\bengieneer\b/engineer/g s/\bengieneers\b/engineers/g s/\benlargment\b/enlargement/g s/\benlargments\b/enlargements/g s/\benourmous\b/enormous/g s/\benourmously\b/enormously/g s/\bensconsed\b/ensconced/g s/\bentaglements\b/entanglements/g s/\benteratinment\b/entertainment/g s/\benthusiatic\b/enthusiastic/g s/\bentitity\b/entity/g s/\bentitlied\b/entitled/g s/\bentrepeneur\b/entrepreneur/g s/\bentrepeneurs\b/entrepreneurs/g s/\benviorment\b/environment/g s/\benviormental\b/environmental/g s/\benviormentally\b/environmentally/g s/\benviorments\b/environments/g s/\benviornment\b/environment/g s/\benviornmental\b/environmental/g s/\benviornmentalist\b/environmentalist/g s/\benviornmentally\b/environmentally/g s/\benviornments\b/environments/g s/\benviroment\b/environment/g s/\benviromental\b/environmental/g s/\benviromentalist\b/environmentalist/g s/\benviromentally\b/environmentally/g s/\benviroments\b/environments/g s/\benvolutionary\b/evolutionary/g s/\benvrionments\b/environments/g s/\benxt\b/next/g s/\bepidsodes\b/episodes/g s/\bepsiode\b/episode/g s/\bequialent\b/equivalent/g s/\bequilibium\b/equilibrium/g s/\bequilibrum\b/equilibrium/g s/\bequiped\b/equipped/g s/\bequippment\b/equipment/g s/\bequitorial\b/equatorial/g s/\bequivelant\b/equivalent/g s/\bequivelent\b/equivalent/g s/\bequivilant\b/equivalent/g s/\bequivilent\b/equivalent/g s/\bequivlalent\b/equivalent/g s/\beratic\b/erratic/g s/\beratically\b/erratically/g s/\beraticly\b/erratically/g s/\berrupted\b/erupted/g s/\besential\b/essential/g s/\besitmated\b/estimated/g s/\besle\b/else/g s/\bespecialy\b/especially/g s/\bessencial\b/essential/g s/\bessense\b/essence/g s/\bessentail\b/essential/g s/\bessentialy\b/essentially/g s/\bessentual\b/essential/g s/\bessesital\b/essential/g s/\bestabishes\b/establishes/g s/\bestablising\b/establishing/g s/\bethnocentricm\b/ethnocentrism/g s/\bEuropian\b/European/g s/\bEuropians\b/Europeans/g s/\bEurpean\b/European/g s/\bEurpoean\b/European/g s/\bevenhtually\b/eventually/g s/\beventally\b/eventually/g s/\beventhough\b/even though/g s/\beventially\b/eventually/g s/\beventualy\b/eventually/g s/\beverthing\b/everything/g s/\beverytime\b/every time/g s/\beveryting\b/everything/g s/\beveyr\b/every/g s/\bevidentally\b/evidently/g s/\bexagerate\b/exaggerate/g s/\bexagerated\b/exaggerated/g s/\bexagerates\b/exaggerates/g s/\bexagerating\b/exaggerating/g s/\bexagerrate\b/exaggerate/g s/\bexagerrated\b/exaggerated/g s/\bexagerrates\b/exaggerates/g s/\bexagerrating\b/exaggerating/g s/\bexaminated\b/examined/g s/\bexampt\b/exempt/g s/\bexapansion\b/expansion/g s/\bexcact\b/exact/g s/\bexcange\b/exchange/g s/\bexcecute\b/execute/g s/\bexcecuted\b/executed/g s/\bexcecutes\b/executes/g s/\bexcecuting\b/executing/g s/\bexcecution\b/execution/g s/\bexcedded\b/exceeded/g s/\bexcelent\b/excellent/g s/\bexcell\b/excel/g s/\bexcellance\b/excellence/g s/\bexcellant\b/excellent/g s/\bexcells\b/excels/g s/\bexcercise\b/exercise/g s/\bexchanching\b/exchanging/g s/\bexcisted\b/existed/g s/\bexculsivly\b/exclusively/g s/\bexecising\b/exercising/g s/\bexection\b/execution/g s/\bexectued\b/executed/g s/\bexeedingly\b/exceedingly/g s/\bexelent\b/excellent/g s/\bexellent\b/excellent/g s/\bexemple\b/example/g s/\bexept\b/except/g s/\bexeptional\b/exceptional/g s/\bexerbate\b/exacerbate/g s/\bexerbated\b/exacerbated/g s/\bexerciese\b/exercises/g s/\bexerpt\b/excerpt/g s/\bexerpts\b/excerpts/g s/\bexersize\b/exercise/g s/\bexerternal\b/external/g s/\bexhalted\b/exalted/g s/\bexhibtion\b/exhibition/g s/\bexibition\b/exhibition/g s/\bexibitions\b/exhibitions/g s/\bexicting\b/exciting/g s/\bexinct\b/extinct/g s/\bexistance\b/existence/g s/\bexistant\b/existent/g s/\bexistince\b/existence/g s/\bexliled\b/exiled/g s/\bexludes\b/excludes/g s/\bexmaple\b/example/g s/\bexonorate\b/exonerate/g s/\bexoskelaton\b/exoskeleton/g s/\bexpalin\b/explain/g s/\bexpatriot\b/expatriate/g s/\bexpeced\b/expected/g s/\bexpecially\b/especially/g s/\bexpeditonary\b/expeditionary/g s/\bexpeiments\b/experiments/g s/\bexpell\b/expel/g s/\bexpells\b/expels/g s/\bexperiance\b/experience/g s/\bexperianced\b/experienced/g s/\bexpiditions\b/expeditions/g s/\bexpierence\b/experience/g s/\bexplaination\b/explanation/g s/\bexplaning\b/explaining/g s/\bexplictly\b/explicitly/g s/\bexploititive\b/exploitative/g s/\bexplotation\b/exploitation/g s/\bexpropiated\b/expropriated/g s/\bexpropiation\b/expropriation/g s/\bexressed\b/expressed/g s/\bextemely\b/extremely/g s/\bextention\b/extension/g s/\bextentions\b/extensions/g s/\bextered\b/exerted/g s/\bextermist\b/extremist/g s/\bextradiction\b/extradition/g s/\bextraterrestial\b/extraterrestrial/g s/\bextraterrestials\b/extraterrestrials/g s/\bextravagent\b/extravagant/g s/\bextrememly\b/extremely/g s/\bextremeophile\b/extremophile/g s/\bextremly\b/extremely/g s/\bextrordinarily\b/extraordinarily/g s/\bextrordinary\b/extraordinary/g s/\bfaciliate\b/facilitate/g s/\bfaciliated\b/facilitated/g s/\bfaciliates\b/facilitates/g s/\bfacilites\b/facilities/g s/\bfacillitate\b/facilitate/g s/\bfacinated\b/fascinated/g s/\bfacist\b/fascist/g s/\bfamiles\b/families/g s/\bfamilliar\b/familiar/g s/\bfamoust\b/famous/g s/\bfanatism\b/fanaticism/g s/\bFarenheit\b/Fahrenheit/g s/\bfatc\b/fact/g s/\bfaught\b/fought/g s/\bfavoutrable\b/favourable/g s/\bfeasable\b/feasible/g s/\bFebuary\b/February/g s/\bFeburary\b/February/g s/\bfedreally\b/federally/g s/\bfemminist\b/feminist/g s/\bferomone\b/pheromone/g s/\bfertily\b/fertility/g s/\bfianite\b/finite/g s/\bfianlly\b/finally/g s/\bficticious\b/fictitious/g s/\bfictious\b/fictitious/g s/\bfidn\b/find/g s/\bfiercly\b/fiercely/g s/\bfightings\b/fighting/g s/\bfiliament\b/filament/g s/\bfimilies\b/families/g s/\bfinacial\b/financial/g s/\bfinaly\b/finally/g s/\bfinancialy\b/financially/g s/\bfirends\b/friends/g s/\bfisionable\b/fissionable/g s/\bflamable\b/flammable/g s/\bflawess\b/flawless/g s/\bFlemmish\b/Flemish/g s/\bflorescent\b/fluorescent/g s/\bflourescent\b/fluorescent/g s/\bflourine\b/fluorine/g s/\bfluorish\b/flourish/g s/\bflourishment\b/flourishing/g s/\bfollwoing\b/following/g s/\bfolowing\b/following/g s/\bfomed\b/formed/g s/\bfonetic\b/phonetic/g s/\bfontrier\b/fontier/g s/\bfoootball\b/football/g s/\bforbad\b/forbade/g s/\bforbiden\b/forbidden/g s/\bforeward\b/foreword/g s/\bforfiet\b/forfeit/g s/\bforhead\b/forehead/g s/\bforiegn\b/foreign/g s/\bFormalhaut\b/Fomalhaut/g s/\bformallize\b/formalize/g s/\bformallized\b/formalized/g s/\bformelly\b/formerly/g s/\bformidible\b/formidable/g s/\bformost\b/foremost/g s/\bforsaw\b/foresaw/g s/\bforseeable\b/foreseeable/g s/\bfortelling\b/foretelling/g s/\bforunner\b/forerunner/g s/\bfoucs\b/focus/g s/\bfoudn\b/found/g s/\bfougth\b/fought/g s/\bfoundaries\b/foundries/g s/\bfoundary\b/foundry/g s/\bFoundland\b/Newfoundland/g s/\bfourties\b/forties/g s/\bfourty\b/forty/g s/\bfouth\b/fourth/g s/\bfoward\b/forward/g s/\bFransiscan\b/Franciscan/g s/\bFransiscans\b/Franciscans/g s/\bfreind\b/friend/g s/\bfreindly\b/friendly/g s/\bfrequentily\b/frequently/g s/\bfrome\b/from/g s/\bfromed\b/formed/g s/\bfroniter\b/frontier/g s/\bfucntion\b/function/g s/\bfucntioning\b/functioning/g s/\bfufill\b/fulfill/g s/\bfufilled\b/fulfilled/g s/\bfulfiled\b/fulfilled/g s/\bfullfill\b/fulfill/g s/\bfullfilled\b/fulfilled/g s/\bfundametal\b/fundamental/g s/\bfundametals\b/fundamentals/g s/\bfunguses\b/fungi/g s/\bfuntion\b/function/g s/\bfuruther\b/further/g s/\bfuther\b/further/g s/\bfuthermore\b/furthermore/g s/\bgalatic\b/galactic/g s/\bGalations\b/Galatians/g s/\bgallaxies\b/galaxies/g s/\bgalvinized\b/galvanized/g s/\bGameboy\b/Game Boy/g s/\bganerate\b/generate/g s/\bganes\b/games/g s/\bganster\b/gangster/g s/\bgarantee\b/guarantee/g s/\bgaranteed\b/guaranteed/g s/\bgarantees\b/guarantees/g s/\bgardai\b/gardaí/g s/\bgarnison\b/garrison/g s/\bgauarana\b/guaraná/g s/\bgaurantee\b/guarantee/g s/\bgauranteed\b/guaranteed/g s/\bgaurantees\b/guarantees/g s/\bgaurentee\b/guarantee/g s/\bgaurenteed\b/guaranteed/g s/\bgaurentees\b/guarantees/g s/\bgeneological\b/genealogical/g s/\bgeneologies\b/genealogies/g s/\bgeneology\b/genealogy/g s/\bgeneraly\b/generally/g s/\bgeneratting\b/generating/g s/\bgenialia\b/genitalia/g s/\bgeographicial\b/geographical/g s/\bgeometrician\b/geometer/g s/\bgeometricians\b/geometers/g s/\bgerat\b/great/g s/\bGhandi\b/Gandhi/g s/\bglamourous\b/glamorous/g s/\bglight\b/flight/g s/\bgnawwed\b/gnawed/g s/\bgodess\b/goddess/g s/\bgodesses\b/goddesses/g s/\bGodounov\b/Godunov/g s/\bgoign\b/going/g s/\bgonig\b/going/g s/\bGothenberg\b/Gothenburg/g s/\bGottleib\b/Gottlieb/g s/\bgouvener\b/governor/g s/\bgovement\b/government/g s/\bgovenment\b/government/g s/\bgovenrment\b/government/g s/\bgoverance\b/governance/g s/\bgoverment\b/government/g s/\bgovermental\b/governmental/g s/\bgoverner\b/governor/g s/\bgovernmnet\b/government/g s/\bgovorment\b/government/g s/\bgovormental\b/governmental/g s/\bgovornment\b/government/g s/\bgracefull\b/graceful/g s/\bgraet\b/great/g s/\bgrafitti\b/graffiti/g s/\bgramatically\b/grammatically/g s/\bgrammaticaly\b/grammatically/g s/\bgrammer\b/grammar/g s/\bgrat\b/great/g s/\bgratuitious\b/gratuitous/g s/\bgreatful\b/grateful/g s/\bgreatfully\b/gratefully/g s/\bgreif\b/grief/g s/\bgridles\b/griddles/g s/\bgropu\b/group/g s/\bgrwo\b/grow/g s/\bguage\b/gauge/g s/\bguarentee\b/guarantee/g s/\bguarenteed\b/guaranteed/g s/\bguarentees\b/guarantees/g s/\bGuatamala\b/Guatemala/g s/\bGuatamalan\b/Guatemalan/g s/\bguerrila\b/guerrilla/g s/\bguerrilas\b/guerrillas/g s/\bguidence\b/guidance/g s/\bGuilia\b/Giulia/g s/\bGuilio\b/Giulio/g s/\bGuiness\b/Guinness/g s/\bGuiseppe\b/Giuseppe/g s/\bgunanine\b/guanine/g s/\bgurantee\b/guarantee/g s/\bguranteed\b/guaranteed/g s/\bgurantees\b/guarantees/g s/\bguttaral\b/guttural/g s/\bgutteral\b/guttural/g s/\bhabaeus\b/habeas/g s/\bhabeus\b/habeas/g s/\bHabsbourg\b/Habsburg/g s/\bhaemorrage\b/haemorrhage/g s/\bhalarious\b/hilarious/g s/\bhalp\b/help/g s/\bhapen\b/happen/g s/\bhapened\b/happened/g s/\bhapening\b/happening/g s/\bhappend\b/happened/g s/\bhappended\b/happened/g s/\bhappenned\b/happened/g s/\bharased\b/harassed/g s/\bharases\b/harasses/g s/\bharasment\b/harassment/g s/\bharasments\b/harassments/g s/\bharassement\b/harassment/g s/\bharras\b/harass/g s/\bharrased\b/harassed/g s/\bharrases\b/harasses/g s/\bharrasing\b/harassing/g s/\bharrasment\b/harassment/g s/\bharrasments\b/harassments/g s/\bharrassed\b/harassed/g s/\bharrasses\b/harassed/g s/\bharrassing\b/harassing/g s/\bharrassment\b/harassment/g s/\bharrassments\b/harassments/g s/\bhasnt\b/hasn't/g s/\bHatian\b/Haitian/g s/\bhaviest\b/heaviest/g s/\bheadquarer\b/headquarter/g s/\bheadquater\b/headquarter/g s/\bheadquatered\b/headquartered/g s/\bheadquaters\b/headquarters/g s/\bhealthercare\b/healthcare/g s/\bheared\b/heard/g s/\bheathy\b/healthy/g s/\bHeidelburg\b/Heidelberg/g s/\bheigher\b/higher/g s/\bheirarchy\b/hierarchy/g s/\bheiroglyphics\b/hieroglyphics/g s/\bhelment\b/helmet/g s/\bhelpfull\b/helpful/g s/\bhelpped\b/helped/g s/\bhemmorhage\b/hemorrhage/g s/\bheridity\b/heredity/g s/\bheroe\b/hero/g s/\bheros\b/heroes/g s/\bhertiage\b/heritage/g s/\bhertzs\b/hertz/g s/\bhesistant\b/hesitant/g s/\bheterogenous\b/heterogeneous/g s/\bhieght\b/height/g s/\bhierachical\b/hierarchical/g s/\bhierachies\b/hierarchies/g s/\bhierachy\b/hierarchy/g s/\bhierarcical\b/hierarchical/g s/\bhierarcy\b/hierarchy/g s/\bhieroglph\b/hieroglyph/g s/\bhieroglphs\b/hieroglyphs/g s/\bhiger\b/higher/g s/\bhigest\b/highest/g s/\bhigway\b/highway/g s/\bhillarious\b/hilarious/g s/\bhimselv\b/himself/g s/\bhinderance\b/hindrance/g s/\bhinderence\b/hindrance/g s/\bhindrence\b/hindrance/g s/\bhipopotamus\b/hippopotamus/g s/\bhismelf\b/himself/g s/\bhistocompatability\b/histocompatibility/g s/\bhistoricians\b/historians/g s/\bhitsingles\b/hit singles/g s/\bholf\b/hold/g s/\bholliday\b/holiday/g s/\bhomestate\b/home state/g s/\bhomogeneize\b/homogenize/g s/\bhomogeneized\b/homogenized/g s/\bhonory\b/honorary/g s/\bhorrifing\b/horrifying/g s/\bhosited\b/hoisted/g s/\bhospitible\b/hospitable/g s/\bhounour\b/honour/g s/\bhowver\b/however/g s/\bhsitorians\b/historians/g s/\bhstory\b/history/g s/\bhtey\b/they/g s/\bhtikn\b/think/g s/\bhting\b/thing/g s/\bhtink\b/think/g s/\bhtis\b/this/g s/\bhuminoid\b/humanoid/g s/\bhumoural\b/humoral/g s/\bhumurous\b/humorous/g s/\bhusban\b/husband/g s/\bhvae\b/have/g s/\bhvaing\b/having/g s/\bhwihc\b/which/g s/\bhwile\b/while/g s/\bhwole\b/whole/g s/\bhydogen\b/hydrogen/g s/\bhydropile\b/hydrophile/g s/\bhydropilic\b/hydrophilic/g s/\bhydropobe\b/hydrophobe/g s/\bhydropobic\b/hydrophobic/g s/\bhygeine\b/hygiene/g s/\bhyjack\b/hijack/g s/\bhyjacking\b/hijacking/g s/\bhypocracy\b/hypocrisy/g s/\bhypocrasy\b/hypocrisy/g s/\bhypocricy\b/hypocrisy/g s/\bhypocrit\b/hypocrite/g s/\bhypocrits\b/hypocrites/g s/\biconclastic\b/iconoclastic/g s/\bidaeidae\b/idea/g s/\bidaes\b/ideas/g s/\bidealogies\b/ideologies/g s/\bidealogy\b/ideology/g s/\bidenticial\b/identical/g s/\bidentifers\b/identifiers/g s/\bideosyncratic\b/idiosyncratic/g s/\bidiosyncracy\b/idiosyncrasy/g s/\bIhaca\b/Ithaca/g s/\billegimacy\b/illegitimacy/g s/\billegitmate\b/illegitimate/g s/\billess\b/illness/g s/\billiegal\b/illegal/g s/\billution\b/illusion/g s/\bilness\b/illness/g s/\bilogical\b/illogical/g s/\bimagenary\b/imaginary/g s/\bimagin\b/imagine/g s/\bimcomplete\b/incomplete/g s/\bimediately\b/immediately/g s/\bimense\b/immense/g s/\bimmediatley\b/immediately/g s/\bimmediatly\b/immediately/g s/\bimmidately\b/immediately/g s/\bimmidiately\b/immediately/g s/\bimmitate\b/imitate/g s/\bimmitated\b/imitated/g s/\bimmitating\b/imitating/g s/\bimmitator\b/imitator/g s/\bimmunosupressant\b/immunosuppressant/g s/\bimpecabbly\b/impeccably/g s/\bimpedence\b/impedance/g s/\bimplamenting\b/implementing/g s/\bimpliment\b/implement/g s/\bimplimented\b/implemented/g s/\bimploys\b/employs/g s/\bimportamt\b/important/g s/\bimpressario\b/impresario/g s/\bimprioned\b/imprisoned/g s/\bimprisonned\b/imprisoned/g s/\bimprovision\b/improvisation/g s/\bimprovments\b/improvements/g s/\binablility\b/inability/g s/\binaccessable\b/inaccessible/g s/\binadiquate\b/inadequate/g s/\binadquate\b/inadequate/g s/\binadvertant\b/inadvertent/g s/\binadvertantly\b/inadvertently/g s/\binagurated\b/inaugurated/g s/\binaguration\b/inauguration/g s/\binappropiate\b/inappropriate/g s/\binaugures\b/inaugurates/g s/\binbalance\b/imbalance/g s/\binbalanced\b/imbalanced/g s/\binbetween\b/between/g s/\bincarcirated\b/incarcerated/g s/\bincidentially\b/incidentally/g s/\bincidently\b/incidentally/g s/\binclreased\b/increased/g s/\binclud\b/include/g s/\bincludng\b/including/g s/\bincompatabilities\b/incompatibilities/g s/\bincompatability\b/incompatibility/g s/\bincompatable\b/incompatible/g s/\bincompatablities\b/incompatibilities/g s/\bincompatablity\b/incompatibility/g s/\bincompatiblities\b/incompatibilities/g s/\bincompatiblity\b/incompatibility/g s/\bincompetance\b/incompetence/g s/\bincompetant\b/incompetent/g s/\bincomptable\b/incompatible/g s/\bincomptetent\b/incompetent/g s/\binconsistant\b/inconsistent/g s/\bincoroporated\b/incorporated/g s/\bincorperation\b/incorporation/g s/\bincorportaed\b/incorporated/g s/\bincorprates\b/incorporates/g s/\bincorruptable\b/incorruptible/g s/\bincramentally\b/incrementally/g s/\bincreadible\b/incredible/g s/\bincredable\b/incredible/g s/\binctroduce\b/introduce/g s/\binctroduced\b/introduced/g s/\bincuding\b/including/g s/\bincunabla\b/incunabula/g s/\bindefinately\b/indefinitely/g s/\bindefinatly\b/indefinitely/g s/\bindefineable\b/undefinable/g s/\bindefinitly\b/indefinitely/g s/\bindentical\b/identical/g s/\bindepedantly\b/independently/g s/\bindepedence\b/independence/g s/\bindependance\b/independence/g s/\bindependant\b/independent/g s/\bindependantly\b/independently/g s/\bindependece\b/independence/g s/\bindependendet\b/independent/g s/\bindespensable\b/indispensable/g s/\bindespensible\b/indispensable/g s/\bindictement\b/indictment/g s/\bindigineous\b/indigenous/g s/\bindipendence\b/independence/g s/\bindipendent\b/independent/g s/\bindipendently\b/independently/g s/\bindispensible\b/indispensable/g s/\bindisputible\b/indisputable/g s/\bindisputibly\b/indisputably/g s/\bindite\b/indict/g s/\bindividualy\b/individually/g s/\bindpendent\b/independent/g s/\bindpendently\b/independently/g s/\bindulgue\b/indulge/g s/\bindutrial\b/industrial/g s/\bindviduals\b/individuals/g s/\binefficienty\b/inefficiently/g s/\binevatible\b/inevitable/g s/\binevitible\b/inevitable/g s/\binevititably\b/inevitably/g s/\binfalability\b/infallibility/g s/\binfallable\b/infallible/g s/\binfectuous\b/infectious/g s/\binfered\b/inferred/g s/\binfilitrate\b/infiltrate/g s/\binfilitrated\b/infiltrated/g s/\binfilitration\b/infiltration/g s/\binfinit\b/infinite/g s/\binflamation\b/inflammation/g s/\binfluencial\b/influential/g s/\binfluented\b/influenced/g s/\binfomation\b/information/g s/\binformtion\b/information/g s/\binfrantryman\b/infantryman/g s/\binfrigement\b/infringement/g s/\bingenius\b/ingenious/g s/\bingreediants\b/ingredients/g s/\binhabitans\b/inhabitants/g s/\binherantly\b/inherently/g s/\binheritence\b/inheritance/g s/\binital\b/initial/g s/\binitally\b/initially/g s/\binitation\b/initiation/g s/\binitiaitive\b/initiative/g s/\binlcuding\b/including/g s/\binmigrant\b/immigrant/g s/\binmigrants\b/immigrants/g s/\binnoculated\b/inoculated/g s/\binocence\b/innocence/g s/\binofficial\b/unofficial/g s/\binot\b/into/g s/\binpeach\b/impeach/g s/\binpending\b/impending/g s/\binpenetrable\b/impenetrable/g s/\binpolite\b/impolite/g s/\binprisonment\b/imprisonment/g s/\binproving\b/improving/g s/\binsectiverous\b/insectivorous/g s/\binsensative\b/insensitive/g s/\binseperable\b/inseparable/g s/\binsistance\b/insistence/g s/\binsitution\b/institution/g s/\binsitutions\b/institutions/g s/\binstade\b/instead/g s/\binstatance\b/instance/g s/\binstitue\b/institute/g s/\binstuction\b/instruction/g s/\binstuments\b/instruments/g s/\binstutionalized\b/institutionalized/g s/\binstutions\b/intuitions/g s/\binsurence\b/insurance/g s/\bintelectual\b/intellectual/g s/\binteligence\b/intelligence/g s/\binteligent\b/intelligent/g s/\bintenational\b/international/g s/\bintepretation\b/interpretation/g s/\bintepretator\b/interpretor/g s/\binterational\b/international/g s/\binterchangable\b/interchangeable/g s/\binterchangably\b/interchangeably/g s/\bintercontinential\b/intercontinental/g s/\bintercontinetal\b/intercontinental/g s/\binterelated\b/interrelated/g s/\binterferance\b/interference/g s/\binterfereing\b/interfering/g s/\bintergrated\b/integrated/g s/\bintergration\b/integration/g s/\binterm\b/interim/g s/\binternation\b/international/g s/\binterpet\b/interpret/g s/\binterrim\b/interim/g s/\binterrugum\b/interregnum/g s/\bintertaining\b/entertaining/g s/\binterupt\b/interrupt/g s/\bintervines\b/intervenes/g s/\bintevene\b/intervene/g s/\bintial\b/initial/g s/\bintially\b/initially/g s/\bintrduced\b/introduced/g s/\bintrest\b/interest/g s/\bintrodued\b/introduced/g s/\bintruduced\b/introduced/g s/\bintrument\b/instrument/g s/\bintrumental\b/instrumental/g s/\bintruments\b/instruments/g s/\bintrusted\b/entrusted/g s/\bintutive\b/intuitive/g s/\bintutively\b/intuitively/g s/\binudstry\b/industry/g s/\binventer\b/inventor/g s/\binvertibrates\b/invertebrates/g s/\binvestingate\b/investigate/g s/\binvolvment\b/involvement/g s/\birelevent\b/irrelevant/g s/\biresistable\b/irresistible/g s/\biresistably\b/irresistibly/g s/\biresistible\b/irresistible/g s/\biresistibly\b/irresistibly/g s/\biritable\b/irritable/g s/\biritated\b/irritated/g s/\bironicly\b/ironically/g s/\birregardless\b/regardless/g s/\birrelevent\b/irrelevant/g s/\birreplacable\b/irreplaceable/g s/\birresistable\b/irresistible/g s/\birresistably\b/irresistibly/g s/\bisnt\b/isn't/g s/\bIsraelies\b/Israelis/g s/\bissueing\b/issuing/g s/\bitnroduced\b/introduced/g s/\biunior\b/junior/g s/\biwll\b/will/g s/\biwth\b/with/g s/\bJanurary\b/January/g s/\bJanuray\b/January/g s/\bJapanes\b/Japanese/g s/\bjaques\b/jacques/g s/\bjeapardy\b/jeopardy/g s/\bjewllery\b/jewellery/g s/\bJohanine\b/Johannine/g s/\bjorunal\b/journal/g s/\bJospeh\b/Joseph/g s/\bjouney\b/journey/g s/\bjournied\b/journeyed/g s/\bjournies\b/journeys/g s/\bjstu\b/just/g s/\bjsut\b/just/g s/\bJuadaism\b/Judaism/g s/\bJuadism\b/Judaism/g s/\bjudical\b/judicial/g s/\bjudisuary\b/judiciary/g s/\bjuducial\b/judicial/g s/\bjuristiction\b/jurisdiction/g s/\bjuristictions\b/jurisdictions/g s/\bkindergarden\b/kindergarten/g s/\bklenex\b/kleenex/g s/\bknifes\b/knives/g s/\bknive\b/knife/g s/\bknowlege\b/knowledge/g s/\bknowlegeable\b/knowledgeable/g s/\bknwo\b/know/g s/\bknwos\b/knows/g s/\bkonw\b/know/g s/\bkonws\b/knows/g s/\bkwno\b/know/g s/\blabratory\b/laboratory/g s/\blaguage\b/language/g s/\blaguages\b/languages/g s/\blarg\b/large/g s/\blargst\b/largest/g s/\blarrry\b/larry/g s/\blastr\b/last/g s/\blattitude\b/latitude/g s/\blaunhed\b/launched/g s/\blavae\b/larvae/g s/\blayed\b/laid/g s/\blazyness\b/laziness/g s/\bleage\b/league/g s/\bleathal\b/lethal/g s/\blefted\b/left/g s/\blegitamate\b/legitimate/g s/\blegitmate\b/legitimate/g s/\bleibnitz\b/leibniz/g s/\blenght\b/length/g s/\bleran\b/learn/g s/\blerans\b/learns/g s/\bleutenant\b/lieutenant/g s/\blevetate\b/levitate/g s/\blevetated\b/levitated/g s/\blevetates\b/levitates/g s/\blevetating\b/levitating/g s/\blevle\b/level/g s/\bliasion\b/liaison/g s/\bliason\b/liaison/g s/\bliasons\b/liaisons/g s/\blibary\b/library/g s/\blibell\b/libel/g s/\blibguistic\b/linguistic/g s/\blibguistics\b/linguistics/g s/\blibitarianisn\b/libertarianism/g s/\blieing\b/lying/g s/\bliek\b/like/g s/\bliekd\b/liked/g s/\bliesure\b/leisure/g s/\blieuenant\b/lieutenant/g s/\blieved\b/lived/g s/\bliftime\b/lifetime/g s/\blightyear\b/light year/g s/\blightyears\b/light years/g s/\blikelyhood\b/likelihood/g s/\blinnaena\b/linnaean/g s/\blippizaner\b/lipizzaner/g s/\bliquify\b/liquefy/g s/\blistners\b/listeners/g s/\blitature\b/literature/g s/\bliteraly\b/literally/g s/\bliterture\b/literature/g s/\blittel\b/little/g s/\blitterally\b/literally/g s/\bliuke\b/like/g s/\blivley\b/lively/g s/\blmits\b/limits/g s/\bloev\b/love/g s/\blonelyness\b/loneliness/g s/\blongitudonal\b/longitudinal/g s/\blonley\b/lonely/g s/\bloosing\b/losing/g s/\blotharingen\b/lothringen/g s/\blsat\b/last/g s/\blukid\b/likud/g s/\blveo\b/love/g s/\blvoe\b/love/g s/\bLybia\b/Libya/g s/\bmackeral\b/mackerel/g s/\bmagasine\b/magazine/g s/\bmagizine\b/magazine/g s/\bmagisine\b/magazine/g s/\bmagincian\b/magician/g s/\bmagnificient\b/magnificent/g s/\bmagolia\b/magnolia/g s/\bmailny\b/mainly/g s/\bmaintainance\b/maintenance/g s/\bmaintainence\b/maintenance/g s/\bmaintance\b/maintenance/g s/\bmaintenence\b/maintenance/g s/\bmaintinaing\b/maintaining/g s/\bmaintioned\b/mentioned/g s/\bmajoroty\b/majority/g s/\bmakse\b/makes/g s/\bMalcom\b/Malcolm/g s/\bmaltesian\b/Maltese/g s/\bmamal\b/mammal/g s/\bmamalian\b/mammalian/g s/\bmanagment\b/management/g s/\bmaneouvre\b/manoeuvre/g s/\bmaneouvred\b/manoeuvred/g s/\bmaneouvres\b/manoeuvres/g s/\bmaneouvring\b/manoeuvring/g s/\bmanisfestations\b/manifestations/g s/\bmanoeuverability\b/maneuverability/g s/\bmantained\b/maintained/g s/\bmanufacturedd\b/manufactured/g s/\bmanufature\b/manufacture/g s/\bmanufatured\b/manufactured/g s/\bmanufaturing\b/manufacturing/g s/\bmanuver\b/maneuver/g s/\bmariage\b/marriage/g s/\bmarjority\b/majority/g s/\bmarkes\b/marks/g s/\bmarketting\b/marketing/g s/\bmarmelade\b/marmalade/g s/\bmarrage\b/marriage/g s/\bmarraige\b/marriage/g s/\bmarrtyred\b/martyred/g s/\bmarryied\b/married/g s/\bMassachussets\b/Massachusetts/g s/\bMassachussetts\b/Massachusetts/g s/\bmassmedia\b/mass media/g s/\bmasterbation\b/masturbation/g s/\bmataphysical\b/metaphysical/g s/\bmateralists\b/materialist/g s/\bmathamatics\b/mathematics/g s/\bmathematican\b/mathematician/g s/\bmathematicas\b/mathematics/g s/\bmatheticians\b/mathematicians/g s/\bmathmatically\b/mathematically/g s/\bmathmatician\b/mathematician/g s/\bmathmaticians\b/mathematicians/g s/\bmccarthyst\b/mccarthyist/g s/\bmchanics\b/mechanics/g s/\bmeaninng\b/meaning/g s/\bmechandise\b/merchandise/g s/\bmedacine\b/medicine/g s/\bmedeival\b/medieval/g s/\bmedevial\b/medieval/g s/\bmediciney\b/mediciny/g s/\bmedievel\b/medieval/g s/\bmediterainnean\b/mediterranean/g s/\bMediteranean\b/Mediterranean/g s/\bmeerkrat\b/meerkat/g s/\bmelieux\b/milieux/g s/\bmembranaphone\b/membranophone/g s/\bmemeber\b/member/g s/\bmenally\b/mentally/g s/\bmercentile\b/mercantile/g s/\bmessanger\b/messenger/g s/\bmessenging\b/messaging/g s/\bmetalic\b/metallic/g s/\bmetalurgic\b/metallurgic/g s/\bmetalurgical\b/metallurgical/g s/\bmetalurgy\b/metallurgy/g s/\bmetamorphysis\b/metamorphosis/g s/\bmetaphoricial\b/metaphorical/g s/\bmeterologist\b/meteorologist/g s/\bmeterology\b/meteorology/g s/\bmethaphor\b/metaphor/g s/\bmethaphors\b/metaphors/g s/\bMichagan\b/Michigan/g s/\bmicoscopy\b/microscopy/g s/\bmidwifes\b/midwives/g s/\bmileau\b/milieu/g s/\bmilennia\b/millennia/g s/\bmilennium\b/millennium/g s/\bmileu\b/milieu/g s/\bmiliary\b/military/g s/\bmiligram\b/milligram/g s/\bmilion\b/million/g s/\bmiliraty\b/military/g s/\bmillenia\b/millennia/g s/\bmillenial\b/millennial/g s/\bmillenialism\b/millennialism/g s/\bmillenium\b/millennium/g s/\bmillepede\b/millipede/g s/\bmillioniare\b/millionaire/g s/\bmillitant\b/militant/g s/\bmillitary\b/military/g s/\bmillon\b/million/g s/\bmiltary\b/military/g s/\bminature\b/miniature/g s/\bminerial\b/mineral/g s/\bministery\b/ministry/g s/\bminsitry\b/ministry/g s/\bminstries\b/ministries/g s/\bminstry\b/ministry/g s/\bminumum\b/minimum/g s/\bmirrorred\b/mirrored/g s/\bmiscelaneous\b/miscellaneous/g s/\bmiscellanious\b/miscellaneous/g s/\bmiscellanous\b/miscellaneous/g s/\bmischeivous\b/mischievous/g s/\bmischevious\b/mischievous/g s/\bmischievious\b/mischievous/g s/\bmisdameanor\b/misdemeanor/g s/\bmisdameanors\b/misdemeanors/g s/\bmisdemenor\b/misdemeanor/g s/\bmisdemenors\b/misdemeanors/g s/\bmisfourtunes\b/misfortunes/g s/\bmisile\b/missile/g s/\bMisouri\b/Missouri/g s/\bmispell\b/misspell/g s/\bmispelled\b/misspelled/g s/\bmispelling\b/misspelling/g s/\bmissen\b/mizzen/g s/\bMissisipi\b/Mississippi/g s/\bMissisippi\b/Mississippi/g s/\bmissle\b/missile/g s/\bmissonary\b/missionary/g s/\bmisterious\b/mysterious/g s/\bmistery\b/mystery/g s/\bmisteryous\b/mysterious/g s/\bmkae\b/make/g s/\bmkaes\b/makes/g s/\bmkaing\b/making/g s/\bmkea\b/make/g s/\bmoderm\b/modem/g s/\bmodle\b/model/g s/\bmoent\b/moment/g s/\bmoeny\b/money/g s/\bmohammedans\b/muslims/g s/\bmoil\b/mohel/g s/\bmoil\b/soil/g s/\bmoleclues\b/molecules/g s/\bmomento\b/memento/g s/\bmonestaries\b/monasteries/g s/\bmonickers\b/monikers/g s/\bmonolite\b/monolithic/g s/\bmontains\b/mountains/g s/\bmontanous\b/mountainous/g s/\bMontnana\b/Montana/g s/\bmonts\b/months/g s/\bmontypic\b/monotypic/g s/\bmorgage\b/mortgage/g s/\bMorisette\b/Morissette/g s/\bMorrisette\b/Morissette/g s/\bmorroccan\b/moroccan/g s/\bmorrocco\b/morocco/g s/\bmorroco\b/morocco/g s/\bmortage\b/mortgage/g s/\bmosture\b/moisture/g s/\bmotiviated\b/motivated/g s/\bmounth\b/month/g s/\bmovei\b/movie/g s/\bmovment\b/movement/g s/\bmroe\b/more/g s/\bmucuous\b/mucous/g s/\bmuder\b/murder/g s/\bmudering\b/murdering/g s/\bmuhammadan\b/muslim/g s/\bmulticultralism\b/multiculturalism/g s/\bmultipled\b/multiplied/g s/\bmultiplers\b/multipliers/g s/\bmunbers\b/numbers/g s/\bmuncipalities\b/municipalities/g s/\bmuncipality\b/municipality/g s/\bmunnicipality\b/municipality/g s/\bmuscial\b/musical/g s/\bmuscician\b/musician/g s/\bmuscicians\b/musicians/g s/\bmutiliated\b/mutilated/g s/\bmyraid\b/myriad/g s/\bmysef\b/myself/g s/\bmysogynist\b/misogynist/g s/\bmysogyny\b/misogyny/g s/\bmysterous\b/mysterious/g s/\bMythraic\b/Mithraic/g s/\bnaieve\b/naive/g s/\bNaploeon\b/Napoleon/g s/\bNapolean\b/Napoleon/g s/\bNapoleonian\b/Napoleonic/g s/\bnaturaly\b/naturally/g s/\bnaturely\b/naturally/g s/\bnaturual\b/natural/g s/\bnaturually\b/naturally/g s/\bNazereth\b/Nazareth/g s/\bneccesarily\b/necessarily/g s/\bneccesary\b/necessary/g s/\bneccessarily\b/necessarily/g s/\bneccessary\b/necessary/g s/\bneccessities\b/necessities/g s/\bnecesarily\b/necessarily/g s/\bnecesary\b/necessary/g s/\bnecessiate\b/necessitate/g s/\bneglible\b/negligible/g s/\bnegligable\b/negligible/g s/\bnegociate\b/negotiate/g s/\bnegociation\b/negotiation/g s/\bnegociations\b/negotiations/g s/\bnegotation\b/negotiation/g s/\bneigborhood\b/neighborhood/g s/\bneigbourhood\b/neighbourhood/g s/\bneolitic\b/neolithic/g s/\bnessasarily\b/necessarily/g s/\bnessecary\b/necessary/g s/\bnestin\b/nesting/g s/\bneverthless\b/nevertheless/g s/\bnewletters\b/newsletters/g s/\bnickle\b/nickel/g s/\bnightfa;;\b/nightfall/g s/\bnightime\b/nighttime/g s/\bnineth\b/ninth/g s/\bninteenth\b/nineteenth/g s/\bninties\b/1990s/g s/\bninty\b/ninety/g s/\bnkow\b/know/g s/\bnkwo\b/know/g s/\bnmae\b/name/g s/\bnoncombatents\b/noncombatants/g s/\bnonsence\b/nonsense/g s/\bnontheless\b/nonetheless/g s/\bnoone\b/no one/g s/\bnorhern\b/northern/g s/\bnorthen\b/northern/g s/\bnorthereastern\b/northeastern/g s/\bnotabley\b/notably/g s/\bnoteable\b/notable/g s/\bnoteably\b/notably/g s/\bnoteriety\b/notoriety/g s/\bnoth\b/north/g s/\bnothern\b/northern/g s/\bnoticable\b/noticeable/g s/\bnoticably\b/noticeably/g s/\bnoticeing\b/noticing/g s/\bnoticible\b/noticeable/g s/\bnotwhithstanding\b/notwithstanding/g s/\bnoveau\b/nouveau/g s/\bNovermber\b/November/g s/\bnowdays\b/nowadays/g s/\bnowe\b/now/g s/\bnto\b/not/g s/\bnucular\b/nuclear/g s/\bnuculear\b/nuclear/g s/\bnuisanse\b/nuisance/g s/\bNullabour\b/Nullarbor/g s/\bnumberous\b/numerous/g s/\bNuremburg\b/Nuremberg/g s/\bnusance\b/nuisance/g s/\bnutritent\b/nutrient/g s/\bnutritents\b/nutrients/g s/\bnuturing\b/nurturing/g s/\bobediance\b/obedience/g s/\bobediant\b/obedient/g s/\bobession\b/obsession/g s/\bobssessed\b/obsessed/g s/\bobstacal\b/obstacle/g s/\bobstancles\b/obstacles/g s/\bobstruced\b/obstructed/g s/\bocasion\b/occasion/g s/\bocasional\b/occasional/g s/\bocasionally\b/occasionally/g s/\bocasionaly\b/occasionally/g s/\bocasioned\b/occasioned/g s/\bocasions\b/occasions/g s/\bocassion\b/occasion/g s/\bocassional\b/occasional/g s/\bocassionally\b/occasionally/g s/\bocassionaly\b/occasionally/g s/\bocassioned\b/occasioned/g s/\bocassions\b/occasions/g s/\boccaison\b/occasion/g s/\boccassion\b/occasion/g s/\boccassional\b/occasional/g s/\boccassionally\b/occasionally/g s/\boccassionaly\b/occasionally/g s/\boccassioned\b/occasioned/g s/\boccassions\b/occasions/g s/\boccationally\b/occasionally/g s/\boccour\b/occur/g s/\boccurance\b/occurrence/g s/\boccurances\b/occurrences/g s/\boccured\b/occurred/g s/\boccurence\b/occurrence/g s/\boccurences\b/occurrences/g s/\boccuring\b/occurring/g s/\boccurr\b/occur/g s/\boccurrance\b/occurrence/g s/\boccurrances\b/occurrences/g s/\boctohedra\b/octahedra/g s/\boctohedral\b/octahedral/g s/\boctohedron\b/octahedron/g s/\bocuntries\b/countries/g s/\bocuntry\b/country/g s/\bocurr\b/occur/g s/\bocurrance\b/occurrence/g s/\bocurred\b/occurred/g s/\bocurrence\b/occurrence/g s/\boffcers\b/officers/g s/\boffcially\b/officially/g s/\boffereings\b/offerings/g s/\boffical\b/official/g s/\boffically\b/officially/g s/\bofficals\b/officials/g s/\bofficaly\b/officially/g s/\bofficialy\b/officially/g s/\boffred\b/offered/g s/\boftenly\b/often/g s/\bomision\b/omission/g s/\bomited\b/omitted/g s/\bomiting\b/omitting/g s/\bomlette\b/omelette/g s/\bommision\b/omission/g s/\bommited\b/omitted/g s/\bommiting\b/omitting/g s/\bommitted\b/omitted/g s/\bommitting\b/omitting/g s/\bomniverous\b/omnivorous/g s/\bomniverously\b/omnivorously/g s/\bomre\b/more/g s/\bonyl\b/only/g s/\bopeness\b/openness/g s/\boponent\b/opponent/g s/\boportunity\b/opportunity/g s/\bopose\b/oppose/g s/\boposite\b/opposite/g s/\boposition\b/opposition/g s/\boppenly\b/openly/g s/\boppinion\b/opinion/g s/\bopponant\b/opponent/g s/\boppononent\b/opponent/g s/\boppositition\b/opposition/g s/\boppossed\b/opposed/g s/\bopprotunity\b/opportunity/g s/\bopression\b/oppression/g s/\bopressive\b/oppressive/g s/\bopthalmic\b/ophthalmic/g s/\bopthalmologist\b/ophthalmologist/g s/\bopthalmology\b/ophthalmology/g s/\bopthamologist\b/ophthalmologist/g s/\boptmizations\b/optimizations/g s/\boptomism\b/optimism/g s/\borded\b/ordered/g s/\borganim\b/organism/g s/\borganistion\b/organisation/g s/\borganiztion\b/organization/g s/\borginal\b/original/g s/\borginally\b/originally/g s/\borginize\b/organise/g s/\boridinarily\b/ordinarily/g s/\boriganaly\b/originally/g s/\boriginaly\b/originally/g s/\boriginially\b/originally/g s/\boriginnally\b/originally/g s/\borigional\b/original/g s/\borignally\b/originally/g s/\borignially\b/originally/g s/\botehr\b/other/g s/\boublisher\b/publisher/g s/\bouevre\b/oeuvre/g s/\boustanding\b/outstanding/g s/\bovershaddowed\b/overshadowed/g s/\boverthere\b/over there/g s/\boverwelming\b/overwhelming/g s/\boverwheliming\b/overwhelming/g s/\boveride\b/override/g s/\boverides\b/overrides/g s/\bowrk\b/work/g s/\bowudl\b/would/g s/\boxigen\b/oxygen/g s/\boximoron\b/oxymoron/g s/\bp0enis\b/penis/g s/\bpaide\b/paid/g s/\bpaitience\b/patience/g s/\bpaleolitic\b/paleolithic/g s/\bpaliamentarian\b/parliamentarian/g s/\bPalistian\b/Palestinian/g s/\bPalistinian\b/Palestinian/g s/\bPalistinians\b/Palestinians/g s/\bpallete\b/palette/g s/\bpamflet\b/pamphlet/g s/\bpamplet\b/pamphlet/g s/\bpantomine\b/pantomime/g s/\bPapanicalou\b/Papanicolaou/g s/\bparalel\b/parallel/g s/\bparalell\b/parallel/g s/\bparalelly\b/parallelly/g s/\bparalely\b/parallelly/g s/\bparallely\b/parallelly/g s/\bparanthesis\b/parenthesis/g s/\bparaphenalia\b/paraphernalia/g s/\bparellels\b/parallels/g s/\bparisitic\b/parasitic/g s/\bparituclar\b/particular/g s/\bparliment\b/parliament/g s/\bparrakeets\b/parakeets/g s/\bparralel\b/parallel/g s/\bparrallel\b/parallel/g s/\bparrallell\b/parallel/g s/\bparrallelly\b/parallelly/g s/\bparrallely\b/parallelly/g s/\bpartialy\b/partially/g s/\bparticually\b/particularly/g s/\bparticualr\b/particular/g s/\bparticuarly\b/particularly/g s/\bparticularily\b/particularly/g s/\bparticulary\b/particularly/g s/\bpary\b/party/g s/\bpased\b/passed/g s/\bpasengers\b/passengers/g s/\bpasserbys\b/passersby/g s/\bpasttime\b/pastime/g s/\bpastural\b/pastoral/g s/\bpaticular\b/particular/g s/\bpattented\b/patented/g s/\bpavillion\b/pavilion/g s/\bpayed\b/paid/g s/\bpblisher\b/publisher/g s/\bpbulisher\b/publisher/g s/\bpeacefuland\b/peaceful and/g s/\bpeageant\b/pageant/g s/\bpeaple\b/people/g s/\bpeaples\b/peoples/g s/\bpeculure\b/peculiar/g s/\bpedestrain\b/pedestrian/g s/\bpeformed\b/performed/g s/\bpeice\b/piece/g s/\bPeloponnes\b/Peloponnesus/g s/\bpenatly\b/penalty/g s/\bpenerator\b/penetrator/g s/\bpenisula\b/peninsula/g s/\bpenisular\b/peninsular/g s/\bpenninsula\b/peninsula/g s/\bpenninsular\b/peninsular/g s/\bpennisula\b/peninsula/g s/\bPennyslvania\b/Pennsylvania/g s/\bpensle\b/pencil/g s/\bpensinula\b/peninsula/g s/\bpeom\b/poem/g s/\bpeoms\b/poems/g s/\bpeopel\b/people/g s/\bpeopels\b/peoples/g s/\bpeotry\b/poetry/g s/\bperade\b/parade/g s/\bpercepted\b/perceived/g s/\bpercieve\b/perceive/g s/\bpercieved\b/perceived/g s/\bperenially\b/perennially/g s/\bperfomance\b/performance/g s/\bperfomers\b/performers/g s/\bperformence\b/performance/g s/\bperhasp\b/perhaps/g s/\bperheaps\b/perhaps/g s/\bperhpas\b/perhaps/g s/\bperipathetic\b/peripatetic/g s/\bperistent\b/persistent/g s/\bperjery\b/perjury/g s/\bperjorative\b/pejorative/g s/\bpermanant\b/permanent/g s/\bpermenant\b/permanent/g s/\bpermenantly\b/permanently/g s/\bpermissable\b/permissible/g s/\bperogative\b/prerogative/g s/\bperonal\b/personal/g s/\bperpertrated\b/perpetrated/g s/\bperosnality\b/personality/g s/\bperphas\b/perhaps/g s/\bperpindicular\b/perpendicular/g s/\bpersan\b/person/g s/\bperseverence\b/perseverance/g s/\bpersistance\b/persistence/g s/\bpersistant\b/persistent/g s/\bpersonell\b/personnel/g s/\bpersonnell\b/personnel/g s/\bpersuded\b/persuaded/g s/\bpersue\b/pursue/g s/\bpersued\b/pursued/g s/\bpersuing\b/pursuing/g s/\bpersuit\b/pursuit/g s/\bpersuits\b/pursuits/g s/\bpertubation\b/perturbation/g s/\bpertubations\b/perturbations/g s/\bpessiary\b/pessary/g s/\bpetetion\b/petition/g s/\bPharoah\b/Pharaoh/g s/\bphenomenom\b/phenomenon/g s/\bphenomenonal\b/phenomenal/g s/\bphenomenonly\b/phenomenally/g s/\bphenomonenon\b/phenomenon/g s/\bphenomonon\b/phenomenon/g s/\bphenonmena\b/phenomena/g s/\bPhilipines\b/Philippines/g s/\bphilisopher\b/philosopher/g s/\bphilisophical\b/philosophical/g s/\bphilisophy\b/philosophy/g s/\bPhillipine\b/Philippine/g s/\bPhillipines\b/Philippines/g s/\bPhillippines\b/Philippines/g s/\bphillosophically\b/philosophically/g s/\bphilospher\b/philosopher/g s/\bphilosphies\b/philosophies/g s/\bphilosphy\b/philosophy/g s/\bPhonecian\b/Phoenecian/g s/\bphongraph\b/phonograph/g s/\bphylosophical\b/philosophical/g s/\bphysicaly\b/physically/g s/\bpiblisher\b/publisher/g s/\bpich\b/pitch/g s/\bpilgrimmage\b/pilgrimage/g s/\bpilgrimmages\b/pilgrimages/g s/\bpinapple\b/pineapple/g s/\bpinnaple\b/pineapple/g s/\bpinoneered\b/pioneered/g s/\bplagarism\b/plagiarism/g s/\bplanation\b/plantation/g s/\bplaned\b/planned/g s/\bplantiff\b/plaintiff/g s/\bplateu\b/plateau/g s/\bplausable\b/plausible/g s/\bplayright\b/playwright/g s/\bplaywrite\b/playwright/g s/\bplaywrites\b/playwrights/g s/\bpleasent\b/pleasant/g s/\bplebicite\b/plebiscite/g s/\bplesant\b/pleasant/g s/\bpoenis\b/penis/g s/\bpoeoples\b/peoples/g s/\bpoety\b/poetry/g s/\bpoisin\b/poison/g s/\bpolical\b/political/g s/\bpolinator\b/pollinator/g s/\bpolinators\b/pollinators/g s/\bpolitican\b/politician/g s/\bpoliticans\b/politicians/g s/\bpoltical\b/political/g s/\bpolute\b/pollute/g s/\bpoluted\b/polluted/g s/\bpolutes\b/pollutes/g s/\bpoluting\b/polluting/g s/\bpolution\b/pollution/g s/\bpolyphonyic\b/polyphonic/g s/\bpolysaccaride\b/polysaccharide/g s/\bpolysaccharid\b/polysaccharide/g s/\bpomegranite\b/pomegranate/g s/\bpomotion\b/promotion/g s/\bpoportional\b/proportional/g s/\bpopoulation\b/population/g s/\bpopularaty\b/popularity/g s/\bpopulare\b/popular/g s/\bpopuler\b/popular/g s/\bporshan\b/portion/g s/\bporshon\b/portion/g s/\bportait\b/portrait/g s/\bportayed\b/portrayed/g s/\bportraing\b/portraying/g s/\bPortugese\b/Portuguese/g s/\bportuguease\b/portuguese/g s/\bportugues\b/Portuguese/g s/\bposess\b/possess/g s/\bposessed\b/possessed/g s/\bposesses\b/possesses/g s/\bposessing\b/possessing/g s/\bposession\b/possession/g s/\bposessions\b/possessions/g s/\bposion\b/poison/g s/\bpossable\b/possible/g s/\bpossably\b/possibly/g s/\bposseses\b/possesses/g s/\bpossesing\b/possessing/g s/\bpossesion\b/possession/g s/\bpossessess\b/possesses/g s/\bpossibile\b/possible/g s/\bpossibilty\b/possibility/g s/\bpossiblility\b/possibility/g s/\bpossiblilty\b/possibility/g s/\bpossiblities\b/possibilities/g s/\bpossiblity\b/possibility/g s/\bpossition\b/position/g s/\bPostdam\b/Potsdam/g s/\bposthomous\b/posthumous/g s/\bpostion\b/position/g s/\bpostive\b/positive/g s/\bpotatos\b/potatoes/g s/\bpotrait\b/portrait/g s/\bpotrayed\b/portrayed/g s/\bpoulations\b/populations/g s/\bpoverful\b/powerful/g s/\bpoweful\b/powerful/g s/\bpowerfull\b/powerful/g s/\bppublisher\b/publisher/g s/\bpractial\b/practical/g s/\bpractially\b/practically/g s/\bpracticaly\b/practically/g s/\bpracticioner\b/practitioner/g s/\bpracticioners\b/practitioners/g s/\bpracticly\b/practically/g s/\bpractioner\b/practitioner/g s/\bpractioners\b/practitioners/g s/\bprairy\b/prairie/g s/\bprarie\b/prairie/g s/\bpraries\b/prairies/g s/\bpratice\b/practice/g s/\bpreample\b/preamble/g s/\bprecedessor\b/predecessor/g s/\bpreceed\b/precede/g s/\bpreceeded\b/preceded/g s/\bpreceeding\b/preceding/g s/\bpreceeds\b/precedes/g s/\bprecentage\b/percentage/g s/\bprecice\b/precise/g s/\bprecisly\b/precisely/g s/\bprecurser\b/precursor/g s/\bpredecesors\b/predecessors/g s/\bpredicatble\b/predictable/g s/\bpredicitons\b/predictions/g s/\bpredomiantly\b/predominately/g s/\bprefered\b/preferred/g s/\bprefering\b/preferring/g s/\bpreferrably\b/preferably/g s/\bpregancies\b/pregnancies/g s/\bpreiod\b/period/g s/\bpreliferation\b/proliferation/g s/\bpremeire\b/premiere/g s/\bpremeired\b/premiered/g s/\bpremillenial\b/premillennial/g s/\bpreminence\b/preeminence/g s/\bpremission\b/permission/g s/\bPremonasterians\b/Premonstratensians/g s/\bpreocupation\b/preoccupation/g s/\bprepair\b/prepare/g s/\bprepartion\b/preparation/g s/\bprepatory\b/preparatory/g s/\bpreperation\b/preparation/g s/\bpreperations\b/preparations/g s/\bpreriod\b/period/g s/\bpresedential\b/presidential/g s/\bpresense\b/presence/g s/\bpresidenital\b/presidential/g s/\bpresidental\b/presidential/g s/\bpresitgious\b/prestigious/g s/\bprespective\b/perspective/g s/\bprestigeous\b/prestigious/g s/\bprestigous\b/prestigious/g s/\bpresumabely\b/presumably/g s/\bpresumibly\b/presumably/g s/\bpretection\b/protection/g s/\bprevelant\b/prevalent/g s/\bpreverse\b/perverse/g s/\bprevivous\b/previous/g s/\bpricipal\b/principal/g s/\bpriciple\b/principle/g s/\bpriestood\b/priesthood/g s/\bprimarly\b/primarily/g s/\bprimative\b/primitive/g s/\bprimatively\b/primitively/g s/\bprimatives\b/primitives/g s/\bprimordal\b/primordial/g s/\bprinciplaity\b/principality/g s/\bprincipaly\b/principality/g s/\bprincipial\b/principal/g s/\bprinciply\b/principally/g s/\bprinicipal\b/principal/g s/\bprivalege\b/privilege/g s/\bprivaleges\b/privileges/g s/\bpriveledges\b/privileges/g s/\bprivelege\b/privilege/g s/\bpriveleged\b/privileged/g s/\bpriveleges\b/privileges/g s/\bprivelige\b/privilege/g s/\bpriveliged\b/privileged/g s/\bpriveliges\b/privileges/g s/\bprivelleges\b/privileges/g s/\bprivilage\b/privilege/g s/\bpriviledge\b/privilege/g s/\bpriviledges\b/privileges/g s/\bprivledge\b/privilege/g s/\bprivte\b/private/g s/\bprobabilaty\b/probability/g s/\bprobablistic\b/probabilistic/g s/\bprobablly\b/probably/g s/\bprobalibity\b/probability/g s/\bprobaly\b/probably/g s/\bprobelm\b/problem/g s/\bproccess\b/process/g s/\bproccessing\b/processing/g s/\bprocedger\b/procedure/g s/\bprocedings\b/proceedings/g s/\bproceedure\b/procedure/g s/\bproces\b/process/g s/\bprocesser\b/processor/g s/\bproclaimation\b/proclamation/g s/\bproclamed\b/proclaimed/g s/\bproclaming\b/proclaiming/g s/\bproclomation\b/proclamation/g s/\bprofesor\b/professor/g s/\bprofesser\b/professor/g s/\bproffesed\b/professed/g s/\bproffesion\b/profession/g s/\bproffesional\b/professional/g s/\bproffesor\b/professor/g s/\bprofilic\b/prolific/g s/\bprogessed\b/progressed/g s/\bprogidy\b/prodigy/g s/\bprogramable\b/programmable/g s/\bprohabition\b/prohibition/g s/\bprologomena\b/prolegomena/g s/\bprominance\b/prominence/g s/\bprominant\b/prominent/g s/\bprominantly\b/prominently/g s/\bpromiscous\b/promiscuous/g s/\bpromotted\b/promoted/g s/\bpronomial\b/pronominal/g s/\bpronouced\b/pronounced/g s/\bpronounched\b/pronounced/g s/\bpronounciation\b/pronunciation/g s/\bproove\b/prove/g s/\bprooved\b/proved/g s/\bprophacy\b/prophecy/g s/\bpropietary\b/proprietary/g s/\bpropmted\b/prompted/g s/\bpropoganda\b/propaganda/g s/\bpropogate\b/propagate/g s/\bpropogates\b/propagates/g s/\bpropogation\b/propagation/g s/\bpropostion\b/proposition/g s/\bpropotions\b/proportions/g s/\bpropper\b/proper/g s/\bpropperly\b/properly/g s/\bproprietory\b/proprietary/g s/\bproseletyzing\b/proselytizing/g s/\bprotaganist\b/protagonist/g s/\bprotaganists\b/protagonists/g s/\bprotocal\b/protocol/g s/\bprotoganist\b/protagonist/g s/\bprotrayed\b/portrayed/g s/\bprotruberance\b/protuberance/g s/\bprotruberances\b/protuberances/g s/\bprouncements\b/pronouncements/g s/\bprovacative\b/provocative/g s/\bprovded\b/provided/g s/\bprovicial\b/provincial/g s/\bprovinicial\b/provincial/g s/\bprovisiosn\b/provision/g s/\bprovisonal\b/provisional/g s/\bproximty\b/proximity/g s/\bpseudononymous\b/pseudonymous/g s/\bpseudonyn\b/pseudonym/g s/\bpsuedo\b/pseudo/g s/\bpsycology\b/psychology/g s/\bpsyhic\b/psychic/g s/\bpubilsher\b/publisher/g s/\bpubisher\b/publisher/g s/\bpubliaher\b/publisher/g s/\bpublically\b/publicly/g s/\bpublicaly\b/publicly/g s/\bpublicher\b/publisher/g s/\bpublihser\b/publisher/g s/\bpublisehr\b/publisher/g s/\bpubliser\b/publisher/g s/\bpublisger\b/publisher/g s/\bpublisheed\b/published/g s/\bpublisherr\b/publisher/g s/\bpublishher\b/publisher/g s/\bpublishor\b/publisher/g s/\bpublishre\b/publisher/g s/\bpublissher\b/publisher/g s/\bpubllisher\b/publisher/g s/\bpublsiher\b/publisher/g s/\bpublusher\b/publisher/g s/\bpuchasing\b/purchasing/g s/\bPucini\b/Puccini/g s/\bPuertorrican\b/Puerto Rican/g s/\bPuertorricans\b/Puerto Ricans/g s/\bpulisher\b/publisher/g s/\bpumkin\b/pumpkin/g s/\bpuplisher\b/publisher/g s/\bpuritannical\b/puritanical/g s/\bpurposedly\b/purposely/g s/\bpurpotedly\b/purportedly/g s/\bpursuade\b/persuade/g s/\bpursuaded\b/persuaded/g s/\bpursuades\b/persuades/g s/\bpususading\b/persuading/g s/\bputing\b/putting/g s/\bpwoer\b/power/g s/\bpyscic\b/psychic/g s/\bquantaty\b/quantity/g s/\bquantitiy\b/quantity/g s/\bquarantaine\b/quarantine/g s/\bQueenland\b/Queensland/g s/\bquestonable\b/questionable/g s/\bquicklyu\b/quickly/g s/\bquinessential\b/quintessential/g s/\bquitted\b/quit/g s/\bquizes\b/quizzes/g s/\brabinnical\b/rabbinical/g s/\bracaus\b/raucous/g s/\bradiactive\b/radioactive/g s/\bradify\b/ratify/g s/\braelly\b/really/g s/\brarified\b/rarefied/g s/\breaccurring\b/recurring/g s/\breacing\b/reaching/g s/\breacll\b/recall/g s/\breadmition\b/readmission/g s/\brealitvely\b/relatively/g s/\brealsitic\b/realistic/g s/\brealtions\b/relations/g s/\brealy\b/really/g s/\brealyl\b/really/g s/\breasearch\b/research/g s/\brebiulding\b/rebuilding/g s/\brebllions\b/rebellions/g s/\brebounce\b/rebound/g s/\breccomend\b/recommend/g s/\breccomendations\b/recommendations/g s/\breccomended\b/recommended/g s/\breccomending\b/recommending/g s/\breccommend\b/recommend/g s/\breccommended\b/recommended/g s/\breccommending\b/recommending/g s/\breccuring\b/recurring/g s/\breceeded\b/receded/g s/\breceeding\b/receding/g s/\breceivedfrom\b/received from/g s/\brecepient\b/recipient/g s/\brecepients\b/recipients/g s/\breceving\b/receiving/g s/\brechargable\b/rechargeable/g s/\breched\b/reached/g s/\brecide\b/reside/g s/\brecided\b/resided/g s/\brecident\b/resident/g s/\brecidents\b/residents/g s/\breciding\b/residing/g s/\breciepents\b/recipients/g s/\breciept\b/receipt/g s/\brecieve\b/receive/g s/\brecieved\b/received/g s/\breciever\b/receiver/g s/\brecievers\b/receivers/g s/\brecieves\b/receives/g s/\brecieving\b/receiving/g s/\brecipiant\b/recipient/g s/\brecipiants\b/recipients/g s/\brecived\b/received/g s/\brecivership\b/receivership/g s/\brecogise\b/recognise/g s/\brecogize\b/recognize/g s/\brecomend\b/recommend/g s/\brecomended\b/recommended/g s/\brecomending\b/recommending/g s/\brecomends\b/recommends/g s/\brecommedations\b/recommendations/g s/\brecompence\b/recompense/g s/\breconaissance\b/reconnaissance/g s/\breconcilation\b/reconciliation/g s/\breconized\b/recognized/g s/\breconnaisance\b/reconnaissance/g s/\breconnaissence\b/reconnaissance/g s/\brecontructed\b/reconstructed/g s/\brecordproducer\b/record producer/g s/\brecquired\b/required/g s/\brecrational\b/recreational/g s/\brecrod\b/record/g s/\brecuiting\b/recruiting/g s/\brecuring\b/recurring/g s/\brecurrance\b/recurrence/g s/\brediculous\b/ridiculous/g s/\breedeming\b/redeeming/g s/\breenforced\b/reinforced/g s/\brefect\b/reflect/g s/\brefedendum\b/referendum/g s/\breferal\b/referral/g s/\breferece\b/reference/g s/\brefereces\b/references/g s/\brefered\b/referred/g s/\breferemce\b/reference/g s/\breferemces\b/references/g s/\breferencs\b/references/g s/\breferenece\b/reference/g s/\brefereneced\b/referenced/g s/\brefereneces\b/references/g s/\breferiang\b/referring/g s/\brefering\b/referring/g s/\brefernce\b/reference/g s/\brefernce\b/references/g s/\brefernces\b/references/g s/\breferrence\b/reference/g s/\breferrences\b/references/g s/\breferrs\b/refers/g s/\breffered\b/referred/g s/\brefference\b/reference/g s/\breffering\b/referring/g s/\brefrence\b/reference/g s/\brefrences\b/references/g s/\brefrers\b/refers/g s/\brefridgeration\b/refrigeration/g s/\brefridgerator\b/refrigerator/g s/\brefromist\b/reformist/g s/\brefusla\b/refusal/g s/\bregardes\b/regards/g s/\bregluar\b/regular/g s/\breguarly\b/regularly/g s/\bregulaion\b/regulation/g s/\bregulaotrs\b/regulators/g s/\bregularily\b/regularly/g s/\brehersal\b/rehearsal/g s/\breicarnation\b/reincarnation/g s/\breigining\b/reigning/g s/\breknown\b/renown/g s/\breknowned\b/renowned/g s/\brela\b/real/g s/\brelaly\b/really/g s/\brelatiopnship\b/relationship/g s/\brelativly\b/relatively/g s/\brelected\b/reelected/g s/\breleive\b/relieve/g s/\breleived\b/relieved/g s/\breleiver\b/reliever/g s/\breleses\b/releases/g s/\brelevence\b/relevance/g s/\brelevent\b/relevant/g s/\breliablity\b/reliability/g s/\brelient\b/reliant/g s/\breligeous\b/religious/g s/\breligous\b/religious/g s/\breligously\b/religiously/g s/\brelinqushment\b/relinquishment/g s/\brelitavely\b/relatively/g s/\brelpacement\b/replacement/g s/\bremaing\b/remaining/g s/\bremeber\b/remember/g s/\brememberable\b/memorable/g s/\brememberance\b/remembrance/g s/\bremembrence\b/remembrance/g s/\bremenant\b/remnant/g s/\bremenicent\b/reminiscent/g s/\breminent\b/remnant/g s/\breminescent\b/reminiscent/g s/\breminscent\b/reminiscent/g s/\breminsicent\b/reminiscent/g s/\brendevous\b/rendezvous/g s/\brendezous\b/rendezvous/g s/\brenedered\b/rende/g s/\brenewl\b/renewal/g s/\brennovate\b/renovate/g s/\brennovated\b/renovated/g s/\brennovating\b/renovating/g s/\brennovation\b/renovation/g s/\brentors\b/renters/g s/\breoccurrence\b/recurrence/g s/\breorganision\b/reorganisation/g s/\brepblic\b/republic/g s/\brepblican\b/republican/g s/\brepblicans\b/republicans/g s/\brepblics\b/republics/g s/\brepectively\b/respectively/g s/\brepeition\b/repetition/g s/\brepentence\b/repentance/g s/\brepentent\b/repentant/g s/\brepeteadly\b/repeatedly/g s/\brepetion\b/repetition/g s/\brepid\b/rapid/g s/\brapdily\b/rapidily/g s/\breponse\b/response/g s/\breponsible\b/responsible/g s/\breportadly\b/reportedly/g s/\brepresantative\b/representative/g s/\brepresentive\b/representative/g s/\brepresentives\b/representatives/g s/\breproducable\b/reproducible/g s/\breprtoire\b/repertoire/g s/\brepsectively\b/respectively/g s/\breptition\b/repetition/g s/\brepubic\b/republic/g s/\brepubican\b/republican/g s/\brepubicans\b/republicans/g s/\brepubics\b/republics/g s/\brepubli\b/republic/g s/\brepublian\b/republican/g s/\brepublians\b/republicans/g s/\brepublis\b/republics/g s/\brepulic\b/republic/g s/\brepulican\b/republican/g s/\brepulicans\b/republicans/g s/\brepulics\b/republics/g s/\brequirment\b/requirement/g s/\brequred\b/required/g s/\bresaurant\b/restaurant/g s/\bresembelance\b/resemblance/g s/\bresembes\b/resembles/g s/\bresemblence\b/resemblance/g s/\bresevoir\b/reservoir/g s/\bresidental\b/residential/g s/\bresignement\b/resignment/g s/\bresistable\b/resistible/g s/\bresistence\b/resistance/g s/\bresistent\b/resistant/g s/\brespectivly\b/respectively/g s/\bresponce\b/response/g s/\bresponibilities\b/responsibilities/g s/\bresponisble\b/responsible/g s/\bresponnsibilty\b/responsibility/g s/\bresponsability\b/responsibility/g s/\bresponsibile\b/responsible/g s/\bresponsibilites\b/responsibilities/g s/\bresponsiblities\b/responsibilities/g s/\bresponsiblity\b/responsibility/g s/\bressemblance\b/resemblance/g s/\bressemble\b/resemble/g s/\bressembled\b/resembled/g s/\bressemblence\b/resemblance/g s/\bressembling\b/resembling/g s/\bresssurecting\b/resurrecting/g s/\bressurect\b/resurrect/g s/\bressurected\b/resurrected/g s/\bressurection\b/resurrection/g s/\bressurrection\b/resurrection/g s/\brestarant\b/restaurant/g s/\brestarants\b/restaurants/g s/\brestaraunt\b/restaurant/g s/\brestaraunteur\b/restaurateur/g s/\brestaraunteurs\b/restaurateurs/g s/\brestaraunts\b/restaurants/g s/\brestauranteurs\b/restaurateurs/g s/\brestauration\b/restoration/g s/\brestauraunt\b/restaurant/g s/\bresteraunt\b/restaurant/g s/\bresteraunts\b/restaurants/g s/\bresticted\b/restricted/g s/\bresturant\b/restaurant/g s/\bresturants\b/restaurants/g s/\bresturaunt\b/restaurant/g s/\bresturaunts\b/restaurants/g s/\bresurecting\b/resurrecting/g s/\bretalitated\b/retaliated/g s/\bretalitation\b/retaliation/g s/\bretreive\b/retrieve/g s/\breturnd\b/returned/g s/\brevaluated\b/reevaluated/g s/\breveiw\b/review/g s/\breveral\b/reversal/g s/\breversable\b/reversible/g s/\brevolutionar\b/revolutionary/g s/\brewitten\b/rewritten/g s/\brewriet\b/rewrite/g s/\brference\b/reference/g s/\brferences\b/references/g s/\brhymme\b/rhyme/g s/\brhythem\b/rhythm/g s/\brhythim\b/rhythm/g s/\brhytmic\b/rhythmic/g s/\brigourous\b/rigorous/g s/\brininging\b/ringing/g s/\bRockerfeller\b/Rockefeller/g s/\brococco\b/rococo/g s/\brocord\b/record/g s/\broomate\b/roommate/g s/\brougly\b/roughly/g s/\brucuperate\b/recuperate/g s/\brudimentatry\b/rudimentary/g s/\brulle\b/rule/g s/\bruning\b/running/g s/\brunnung\b/running/g s/\brussina\b/Russian/g s/\bRussion\b/Russian/g s/\brwite\b/write/g s/\brythem\b/rhythm/g s/\brythim\b/rhythm/g s/\brythm\b/rhythm/g s/\brythmic\b/rhythmic/g s/\brythyms\b/rhythms/g s/\bsacrafice\b/sacrifice/g s/\bsacreligious\b/sacrilegious/g s/\bSacremento\b/Sacramento/g s/\bsacrifical\b/sacrificial/g s/\bsaftey\b/safety/g s/\bsafty\b/safety/g s/\bsalery\b/salary/g s/\bsanctionning\b/sanctioning/g s/\bsandwhich\b/sandwich/g s/\bSanhedrim\b/Sanhedrin/g s/\bsantioned\b/sanctioned/g s/\bsargant\b/sergeant/g s/\bsargeant\b/sergeant/g s/\bsatelite\b/satellite/g s/\bsatelites\b/satellites/g s/\bSaterday\b/Saturday/g s/\bSaterdays\b/Saturdays/g s/\bsatisfactority\b/satisfactorily/g s/\bsatric\b/satiric/g s/\bsatrical\b/satirical/g s/\bsatrically\b/satirically/g s/\bsattelite\b/satellite/g s/\bsattelites\b/satellites/g s/\bsaught\b/sought/g s/\bsaveing\b/saving/g s/\bsaxaphone\b/saxophone/g s/\bscaleable\b/scalable/g s/\bscandanavia\b/Scandinavia/g s/\bscaricity\b/scarcity/g s/\bscavanged\b/scavenged/g s/\bschedual\b/schedule/g s/\bscholarhip\b/scholarship/g s/\bscientfic\b/scientific/g s/\bscientifc\b/scientific/g s/\bscientis\b/scientist/g s/\bscince\b/science/g s/\bscinece\b/science/g s/\bscirpt\b/script/g s/\bscoll\b/scroll/g s/\bscreenwrighter\b/screenwriter/g s/\bscrutinity\b/scrutiny/g s/\bscuptures\b/sculptures/g s/\bseach\b/search/g s/\bseached\b/searched/g s/\bseaches\b/searches/g s/\bsecratary\b/secretary/g s/\bsecretery\b/secretary/g s/\bsedereal\b/sidereal/g s/\bseeked\b/sought/g s/\bsegementation\b/segmentation/g s/\bseguoys\b/segues/g s/\bseige\b/siege/g s/\bseing\b/seeing/g s/\bseinor\b/senior/g s/\bseldomly\b/seldom/g s/\bsenarios\b/scenarios/g s/\bsenstive\b/sensitive/g s/\bsensure\b/censure/g s/\bseperate\b/separate/g s/\bseperated\b/separated/g s/\bseperately\b/separately/g s/\bseperates\b/separates/g s/\bseperating\b/separating/g s/\bseperation\b/separation/g s/\bseperatism\b/separatism/g s/\bseperatist\b/separatist/g s/\bsepina\b/subpoena/g s/\bsergent\b/sergeant/g s/\bsettelement\b/settlement/g s/\bsettlment\b/settlement/g s/\bsevereal\b/several/g s/\bseverley\b/severely/g s/\bseverly\b/severely/g s/\bsevice\b/service/g s/\bshadasloo\b/shadaloo/g s/\bshaddow\b/shadow/g s/\bshadoloo\b/shadaloo/g s/\bsheild\b/shield/g s/\bsherif\b/sheriff/g s/\bshineing\b/shining/g s/\bshiped\b/shipped/g s/\bshiping\b/shipping/g s/\bshopkeeepers\b/shopkeepers/g s/\bshorly\b/shortly/g s/\bshortwhile\b/short while/g s/\bshoudl\b/should/g s/\bshouldnt\b/should not/g s/\bshreak\b/shriek/g s/\bshrinked\b/shrunk/g s/\bsicne\b/since/g s/\bsideral\b/sidereal/g s/\bsiezure\b/seizure/g s/\bsiezures\b/seizures/g s/\bsiginificant\b/significant/g s/\bsignficant\b/significant/g s/\bsignficiant\b/significant/g s/\bsignfies\b/signifies/g s/\bsignifantly\b/significantly/g s/\bsignificently\b/significantly/g s/\bsignifigant\b/significant/g s/\bsignifigantly\b/significantly/g s/\bsignitories\b/signatories/g s/\bsignitory\b/signatory/g s/\bsimilarily\b/similarly/g s/\bsimiliar\b/similar/g s/\bsimiliarity\b/similarity/g s/\bsimiliarly\b/similarly/g s/\bsimmilar\b/similar/g s/\bsimpley\b/simply/g s/\bsimplier\b/simpler/g s/\bsimultanous\b/simultaneous/g s/\bsimultanously\b/simultaneously/g s/\bsincerley\b/sincerely/g s/\bsingsog\b/singsong/g s/\bSionist\b/Zionist/g s/\bSionists\b/Zionists/g s/\bSixtin\b/Sistine/g s/\bSkagerak\b/Skagerrak/g s/\bskateing\b/skating/g s/\bslaugterhouses\b/slaughterhouses/g s/\bslighly\b/slightly/g s/\bslippy\b/slippery/g s/\bslowy\b/slowly/g s/\bsmae\b/same/g s/\bsmealting\b/smelting/g s/\bsmoe\b/some/g s/\bsneeks\b/sneaks/g s/\bsnese\b/sneeze/g s/\bsocalism\b/socialism/g s/\bsocities\b/societies/g s/\bsoem\b/some/g s/\bsofware\b/software/g s/\bsohw\b/show/g s/\bsoilders\b/soldiers/g s/\bsolatary\b/solitary/g s/\bsoley\b/solely/g s/\bsoliders\b/soldiers/g s/\bsoliliquy\b/soliloquy/g s/\bsoluable\b/soluble/g s/\bsomene\b/someone/g s/\bsomtimes\b/sometimes/g s/\bsomwhere\b/somewhere/g s/\bsophicated\b/sophisticated/g s/\bsophmore\b/sophomore/g s/\bsorceror\b/sorcerer/g s/\bsorrounding\b/surrounding/g s/\bsotry\b/story/g s/\bsoudn\b/sound/g s/\bsoudns\b/sounds/g s/\bsountrack\b/soundtrack/g s/\bsourth\b/south/g s/\bsourthern\b/southern/g s/\bsouvenier\b/souvenir/g s/\bsouveniers\b/souvenirs/g s/\bsoveits\b/soviets/g s/\bsovereignity\b/sovereignty/g s/\bsoverign\b/sovereign/g s/\bsoverignity\b/sovereignty/g s/\bsoverignty\b/sovereignty/g s/\bspainish\b/Spanish/g s/\bspeach\b/speech/g s/\bspecfic\b/specific/g s/\bspecifiying\b/specifying/g s/\bspeciman\b/specimen/g s/\bspectauclar\b/spectacular/g s/\bspectaulars\b/spectaculars/g s/\bspectum\b/spectrum/g s/\bspeices\b/species/g s/\bspendour\b/splendour/g s/\bspermatozoan\b/spermatozoon/g s/\bspoace\b/space/g s/\bsponser\b/sponsor/g s/\bsponsered\b/sponsored/g s/\bspontanous\b/spontaneous/g s/\bsponzored\b/sponsored/g s/\bspoonfulls\b/spoonfuls/g s/\bsppeches\b/speeches/g s/\bspreaded\b/spread/g s/\bsprech\b/speech/g s/\bspred\b/spread/g s/\bspriritual\b/spiritual/g s/\bspritual\b/spiritual/g s/\bsqaure\b/square/g s/\bstablility\b/stability/g s/\bstainlees\b/stainless/g s/\bstaion\b/station/g s/\bstandars\b/standards/g s/\bstange\b/strange/g s/\bstartegic\b/strategic/g s/\bstartegies\b/strategies/g s/\bstartegy\b/strategy/g s/\bstateman\b/statesman/g s/\bstatememts\b/statements/g s/\bstatment\b/statement/g s/\bsteriods\b/steroids/g s/\bsterotypes\b/stereotypes/g s/\bstilus\b/stylus/g s/\bstingent\b/stringent/g s/\bstiring\b/stirring/g s/\bstirrs\b/stirs/g s/\bstlye\b/style/g s/\bstomache\b/stomach/g s/\bstong\b/strong/g s/\bstopry\b/story/g s/\bstoreis\b/stories/g s/\bstorise\b/stories/g s/\bstornegst\b/strongest/g s/\bstoyr\b/story/g s/\bstpo\b/stop/g s/\bstradegies\b/strategies/g s/\bstradegy\b/strategy/g s/\bstratagically\b/strategically/g s/\bstreemlining\b/streamlining/g s/\bstregth\b/strength/g s/\bstrenghen\b/strengthen/g s/\bstrenghened\b/strengthened/g s/\bstrenghening\b/strengthening/g s/\bstrenght\b/strength/g s/\bstrenghten\b/strengthen/g s/\bstrenghtened\b/strengthened/g s/\bstrenghtening\b/strengthening/g s/\bstrengtened\b/strengthened/g s/\bstrenous\b/strenuous/g s/\bstrictist\b/strictest/g s/\bstrikely\b/strikingly/g s/\bstrnad\b/strand/g s/\bstructual\b/structural/g s/\bstubborness\b/stubbornness/g s/\bstucture\b/structure/g s/\bstuctured\b/structured/g s/\bstuddy\b/study/g s/\bstuding\b/studying/g s/\bstuggling\b/struggling/g s/\bsturcture\b/structure/g s/\bsubcatagories\b/subcategories/g s/\bsubcatagory\b/subcategory/g s/\bsubconsiously\b/subconsciously/g s/\bsubjudgation\b/subjugation/g s/\bsubmachne\b/submachine/g s/\bsubpecies\b/subspecies/g s/\bsubsidary\b/subsidiary/g s/\bsubsiduary\b/subsidiary/g s/\bsubsquent\b/subsequent/g s/\bsubsquently\b/subsequently/g s/\bsubstace\b/substance/g s/\bsubstancial\b/substantial/g s/\bsubstatial\b/substantial/g s/\bsubstituded\b/substituted/g s/\bsubstract\b/subtract/g s/\bsubstracted\b/subtracted/g s/\bsubstracting\b/subtracting/g s/\bsubstraction\b/subtraction/g s/\bsubstracts\b/subtracts/g s/\bsubtances\b/substances/g s/\bsubterranian\b/subterranean/g s/\bsuburburban\b/suburban/g s/\bsuccceeded\b/succeeded/g s/\bsucccesses\b/successes/g s/\bsuccedded\b/succeeded/g s/\bsucceded\b/succeeded/g s/\bsucceds\b/succeeds/g s/\bsuccesful\b/successful/g s/\bsuccesfully\b/successfully/g s/\bsuccesfuly\b/successfully/g s/\bsuccesion\b/succession/g s/\bsuccesive\b/successive/g s/\bsuccessfull\b/successful/g s/\bsuccessully\b/successfully/g s/\bsuccsess\b/success/g s/\bsuccsessfull\b/successful/g s/\bsuceed\b/succeed/g s/\bsuceeded\b/succeeded/g s/\bsuceeding\b/succeeding/g s/\bsuceeds\b/succeeds/g s/\bsucesful\b/successful/g s/\bsucesfully\b/successfully/g s/\bsucesfuly\b/successfully/g s/\bsucesion\b/succession/g s/\bsucess\b/success/g s/\bsucesses\b/successes/g s/\bsucessful\b/successful/g s/\bsucessfull\b/successful/g s/\bsucessfully\b/successfully/g s/\bsucessfuly\b/successfully/g s/\bsucession\b/succession/g s/\bsucessive\b/successive/g s/\bsucessor\b/successor/g s/\bsucessot\b/successor/g s/\bsucide\b/suicide/g s/\bsucidial\b/suicidal/g s/\bsudent\b/student/g s/\bsudents\b/students/g s/\bsufferage\b/suffrage/g s/\bsufferred\b/suffered/g s/\bsufferring\b/suffering/g s/\bsufficent\b/sufficient/g s/\bsufficently\b/sufficiently/g s/\bsumary\b/summary/g s/\bsunglases\b/sunglasses/g s/\bsuop\b/soup/g s/\bsuperceeded\b/superseded/g s/\bsuperintendant\b/superintendent/g s/\bsuphisticated\b/sophisticated/g s/\bsuplimented\b/supplemented/g s/\bsupose\b/suppose/g s/\bsuposed\b/supposed/g s/\bsuposedly\b/supposedly/g s/\bsuposes\b/supposes/g s/\bsuposing\b/supposing/g s/\bsupplamented\b/supplemented/g s/\bsuppliementing\b/supplementing/g s/\bsuppoed\b/supposed/g s/\bsupposingly\b/supposedly/g s/\bsuppy\b/supply/g s/\bsuprassing\b/surpassing/g s/\bsupress\b/suppress/g s/\bsupressed\b/suppressed/g s/\bsupresses\b/suppresses/g s/\bsupressing\b/suppressing/g s/\bsuprise\b/surprise/g s/\bsuprised\b/surprised/g s/\bsuprising\b/surprising/g s/\bsuprisingly\b/surprisingly/g s/\bsuprize\b/surprise/g s/\bsuprized\b/surprised/g s/\bsuprizing\b/surprising/g s/\bsuprizingly\b/surprisingly/g s/\bsurfce\b/surface/g s/\bsuround\b/surround/g s/\bsurounded\b/surrounded/g s/\bsurounding\b/surrounding/g s/\bsuroundings\b/surroundings/g s/\bsurounds\b/surrounds/g s/\bsurplanted\b/supplanted/g s/\bsurpress\b/suppress/g s/\bsurpressed\b/suppressed/g s/\bsurprize\b/surprise/g s/\bsurprized\b/surprised/g s/\bsurprizing\b/surprising/g s/\bsurprizingly\b/surprisingly/g s/\bsurrepetitious\b/surreptitious/g s/\bsurrepetitiously\b/surreptitiously/g s/\bsurreptious\b/surreptitious/g s/\bsurreptiously\b/surreptitiously/g s/\bsurronded\b/surrounded/g s/\bsurrouded\b/surrounded/g s/\bsurrouding\b/surrounding/g s/\bsurrundering\b/surrendering/g s/\bsurveilence\b/surveillance/g s/\bsurveill\b/surveil/g s/\bsurveyer\b/surveyor/g s/\bsurviver\b/survivor/g s/\bsurvivers\b/survivors/g s/\bsurvivied\b/survived/g s/\bsuseptable\b/susceptible/g s/\bsuseptible\b/susceptible/g s/\bsuspention\b/suspension/g s/\bswaer\b/swear/g s/\bswaers\b/swears/g s/\bswepth\b/swept/g s/\bswiming\b/swimming/g s/\bsyas\b/says/g s/\bsymetrical\b/symmetrical/g s/\bsymetrically\b/symmetrically/g s/\bsymetry\b/symmetry/g s/\bsymettric\b/symmetric/g s/\bsymmetral\b/symmetric/g s/\bsymmetricaly\b/symmetrically/g s/\bsynagouge\b/synagogue/g s/\bsyncronization\b/synchronization/g s/\bsynonomous\b/synonymous/g s/\bsynonymns\b/synonyms/g s/\bsynphony\b/symphony/g s/\bsyphyllis\b/syphilis/g s/\bsypmtoms\b/symptoms/g s/\bsyrap\b/syrup/g s/\bsysmatically\b/systematically/g s/\bsytem\b/system/g s/\bsytle\b/style/g s/\btabacco\b/tobacco/g s/\btahn\b/than/g s/\btaht\b/that/g s/\btalekd\b/talked/g s/\btargetted\b/targeted/g s/\btargetting\b/targeting/g s/\btast\b/taste/g s/\btath\b/that/g s/\btatoo\b/tattoo/g s/\btattooes\b/tattoos/g s/\btaxanomic\b/taxonomic/g s/\btaxanomy\b/taxonomy/g s/\bteached\b/taught/g s/\btechician\b/technician/g s/\btechicians\b/technicians/g s/\btechiniques\b/techniques/g s/\btechnitian\b/technician/g s/\btechnnology\b/technology/g s/\btechnolgy\b/technology/g s/\bteh\b/the/g s/\btehy\b/they/g s/\btelelevision\b/television/g s/\btelevsion\b/television/g s/\btelphony\b/telephony/g s/\btemerature\b/temperature/g s/\btempalte\b/template/g s/\btempaltes\b/templates/g s/\btemparate\b/temperate/g s/\btemperarily\b/temporarily/g s/\btemperment\b/temperament/g s/\btempertaure\b/temperature/g s/\btemperture\b/temperature/g s/\btemprary\b/temporary/g s/\btenacle\b/tentacle/g s/\btenacles\b/tentacles/g s/\btendacy\b/tendency/g s/\btendancies\b/tendencies/g s/\btendancy\b/tendency/g s/\btennisplayer\b/tennis player/g s/\btepmorarily\b/temporarily/g s/\bterrestial\b/terrestrial/g s/\bterriories\b/territories/g s/\bterriory\b/territory/g s/\bterritorist\b/terrorist/g s/\bterritoy\b/territory/g s/\bterroist\b/terrorist/g s/\btesticlular\b/testicular/g s/\btestomony\b/testimony/g s/\btghe\b/the/g s/\btheather\b/theater/g s/\btheese\b/these/g s/\btheif\b/thief/g s/\btheives\b/thieves/g s/\bthemselfs\b/themselves/g s/\bthemslves\b/themselves/g s/\btherafter\b/thereafter/g s/\btherby\b/thereby/g s/\btheri\b/their/g s/\btheyre\b/they're/g s/\bthgat\b/that/g s/\bthge\b/the/g s/\bthier\b/their/g s/\bthign\b/thing/g s/\bthigns\b/things/g s/\bthigsn\b/things/g s/\bthikn\b/think/g s/\bthikns\b/thinks/g s/\bthiunk\b/think/g s/\bthn\b/then/g s/\bthna\b/than/g s/\bthne\b/then/g s/\bthnig\b/thing/g s/\bthnigs\b/things/g s/\bthoughout\b/throughout/g s/\bthreatend\b/threatened/g s/\bthreatning\b/threatening/g s/\bthreee\b/three/g s/\bthreshhold\b/threshold/g s/\bthrid\b/third/g s/\bthrorough\b/thorough/g s/\bthroughly\b/thoroughly/g s/\bthrougout\b/throughout/g s/\bthru\b/through/g s/\bthsi\b/this/g s/\bthsoe\b/those/g s/\bthta\b/that/g s/\bthyat\b/that/g s/\btihkn\b/think/g s/\btihs\b/this/g s/\btimne\b/time/g s/\btje\b/the/g s/\btjhe\b/the/g s/\btjpanishad\b/upanishad/g s/\btkae\b/take/g s/\btkaes\b/takes/g s/\btkaing\b/taking/g s/\btlaking\b/talking/g s/\btobbaco\b/tobacco/g s/\btodays\b/today's/g s/\btodya\b/today/g s/\btoghether\b/together/g s/\btoke\b/took/g s/\btolerence\b/tolerance/g s/\bTolkein\b/Tolkien/g s/\btomatos\b/tomatoes/g s/\btommorow\b/tomorrow/g s/\btommorrow\b/tomorrow/g s/\btongiht\b/tonight/g s/\btoriodal\b/toroidal/g s/\btormenters\b/tormentors/g s/\btornadoe\b/tornado/g s/\btorpeados\b/torpedoes/g s/\btorpedos\b/torpedoes/g s/\btortise \b/tortoise/g s/\btothe\b/to the/g s/\btoubles\b/troubles/g s/\btounge\b/tongue/g s/\btowords\b/towards/g s/\btowrad\b/toward/g s/\btradionally\b/traditionally/g s/\btraditionaly\b/traditionally/g s/\btraditionnal\b/traditional/g s/\btraditition\b/tradition/g s/\btradtionally\b/traditionally/g s/\btrafficed\b/trafficked/g s/\btrafficing\b/trafficking/g s/\btrafic\b/traffic/g s/\btrancendent\b/transcendent/g s/\btrancending\b/transcending/g s/\btranform\b/transform/g s/\btranformed\b/transformed/g s/\btranscendance\b/transcendence/g s/\btranscendant\b/transcendent/g s/\btranscendentational\b/transcendental/g s/\btransending\b/transcending/g s/\btransesxuals\b/transsexuals/g s/\btransfered\b/transferred/g s/\btransfering\b/transferring/g s/\btransformaton\b/transformation/g s/\btransistion\b/transition/g s/\btranslater\b/translator/g s/\btranslaters\b/translators/g s/\btransmissable\b/transmissible/g s/\btransporation\b/transportation/g s/\btremelo\b/tremolo/g s/\btremelos\b/tremolos/g s/\btriguered\b/triggered/g s/\btriology\b/trilogy/g s/\btroling\b/trolling/g s/\btroup\b/troupe/g s/\btruely\b/truly/g s/\btrustworthyness\b/trustworthiness/g s/\bTuscon\b/Tucson/g s/\btust\b/trust/g s/\btwelth\b/twelfth/g s/\btwon\b/town/g s/\btwpo\b/two/g s/\btyhat\b/that/g s/\btyhe\b/they/g s/\btypcial\b/typical/g s/\btypicaly\b/typically/g s/\btyranies\b/tyrannies/g s/\btyrany\b/tyranny/g s/\btyrranies\b/tyrannies/g s/\btyrrany\b/tyranny/g s/\bubiquitious\b/ubiquitous/g s/\bublisher\b/publisher/g s/\buise\b/use/g s/\bUkranian\b/Ukrainian/g s/\bultimely\b/ultimately/g s/\bunacompanied\b/unaccompanied/g s/\bunahppy\b/unhappy/g s/\bunanymous\b/unanimous/g s/\bunathorised\b/unauthorised/g s/\bunavailible\b/unavailable/g s/\bunballance\b/unbalance/g s/\bunbeknowst\b/unbeknownst/g s/\bunbeleivable\b/unbelievable/g s/\buncertainity\b/uncertainty/g s/\bunchallengable\b/unchallengeable/g s/\bunchangable\b/unchangeable/g s/\buncompetive\b/uncompetitive/g s/\bunconcious\b/unconscious/g s/\bunconciousness\b/unconsciousness/g s/\bunconfortability\b/discomfort/g s/\buncontitutional\b/unconstitutional/g s/\bunconvential\b/unconventional/g s/\bundecideable\b/undecidable/g s/\bunderstoon\b/understood/g s/\bundesireable\b/undesirable/g s/\bundetecable\b/undetectable/g s/\bundoubtely\b/undoubtedly/g s/\bundreground\b/underground/g s/\buneccesary\b/unnecessary/g s/\bunecessary\b/unnecessary/g s/\bunequalities\b/inequalities/g s/\bunforseen\b/unforeseen/g s/\bunforetunately\b/unfortunately/g s/\bunforgetable\b/unforgettable/g s/\bunforgiveable\b/unforgivable/g s/\bunfortunatley\b/unfortunately/g s/\bunfortunatly\b/unfortunately/g s/\bunfourtunately\b/unfortunately/g s/\bunihabited\b/uninhabited/g s/\bunilateraly\b/unilaterally/g s/\bunilatreal\b/unilateral/g s/\bunilatreally\b/unilaterally/g s/\buninterruped\b/uninterrupted/g s/\buninterupted\b/uninterrupted/g s/\bUnitesStates\b/UnitedStates/g s/\buniveral\b/universal/g s/\buniveristies\b/universities/g s/\buniveristy\b/university/g s/\buniverity\b/university/g s/\buniverstiy\b/university/g s/\bunivesities\b/universities/g s/\bunivesity\b/university/g s/\bunkown\b/unknown/g s/\bunlikey\b/unlikely/g s/\bunmistakeably\b/unmistakably/g s/\bunneccesarily\b/unnecessarily/g s/\bunneccesary\b/unnecessary/g s/\bunneccessarily\b/unnecessarily/g s/\bunneccessary\b/unnecessary/g s/\bunnecesarily\b/unnecessarily/g s/\bunnecesary\b/unnecessary/g s/\bunoffical\b/unofficial/g s/\bunoperational\b/nonoperational/g s/\bunoticeable\b/unnoticeable/g s/\bunplease\b/displease/g s/\bunplesant\b/unpleasant/g s/\bunprecendented\b/unprecedented/g s/\bunprecidented\b/unprecedented/g s/\bunrepentent\b/unrepentant/g s/\bunrepetant\b/unrepentant/g s/\bunrepetent\b/unrepentant/g s/\bunsubstanciated\b/unsubstantiated/g s/\bunsuccesful\b/unsuccessful/g s/\bunsuccesfully\b/unsuccessfully/g s/\bunsuccessfull\b/unsuccessful/g s/\bunsucesful\b/unsuccessful/g s/\bunsucesfuly\b/unsuccessfully/g s/\bunsucessful\b/unsuccessful/g s/\bunsucessfull\b/unsuccessful/g s/\bunsucessfully\b/unsuccessfully/g s/\bunsuprised\b/unsurprised/g s/\bunsuprising\b/unsurprising/g s/\bunsuprisingly\b/unsurprisingly/g s/\bunsuprized\b/unsurprised/g s/\bunsuprizing\b/unsurprising/g s/\bunsuprizingly\b/unsurprisingly/g s/\bunsurprized\b/unsurprised/g s/\bunsurprizing\b/unsurprising/g s/\bunsurprizingly\b/unsurprisingly/g s/\buntill\b/until/g s/\buntranslateable\b/untranslatable/g s/\bunuseable\b/unusable/g s/\bunusuable\b/unusable/g s/\bunviersity\b/university/g s/\bunwarrented\b/unwarranted/g s/\bunweildly\b/unwieldy/g s/\bunwieldly\b/unwieldy/g s/\bupcomming\b/upcoming/g s/\bupgradded\b/upgraded/g s/\bupto\b/up to/g s/\busally\b/usually/g s/\buseage\b/usage/g s/\busefull\b/useful/g s/\busefuly\b/usefully/g s/\buseing\b/using/g s/\busualy\b/usually/g s/\bususally\b/usually/g s/\bvaccum\b/vacuum/g s/\bvaccume\b/vacuum/g s/\bvacinity\b/vicinity/g s/\bvaguaries\b/vagaries/g s/\bvaieties\b/varieties/g s/\bvailidty\b/validity/g s/\bvaletta\b/valletta/g s/\bvaluble\b/valuable/g s/\bvalueable\b/valuable/g s/\bvarations\b/variations/g s/\bvarient\b/variant/g s/\bvariey\b/variety/g s/\bvaring\b/varying/g s/\bvarities\b/varieties/g s/\bvarity\b/variety/g s/\bvasall\b/vassal/g s/\bvasalls\b/vassals/g s/\bvegatarian\b/vegetarian/g s/\bvegitable\b/vegetable/g s/\bvegitables\b/vegetables/g s/\bvegtable\b/vegetable/g s/\bvehicule\b/vehicle/g s/\bvell\b/well/g s/\bvenemous\b/venomous/g s/\bvengance\b/vengeance/g s/\bvengence\b/vengeance/g s/\bverfication\b/verification/g s/\bverison\b/version/g s/\bverisons\b/versions/g s/\bvermillion\b/vermilion/g s/\bversitilaty\b/versatility/g s/\bversitlity\b/versatility/g s/\bvetween\b/between/g s/\bveyr\b/very/g s/\bvigilence\b/vigilance/g s/\bvigourous\b/vigorous/g s/\bvillian\b/villain/g s/\bvillification\b/vilification/g s/\bvillify\b/vilify/g s/\bvincinity\b/vicinity/g s/\bviolentce\b/violence/g s/\bvirtualy\b/virtually/g s/\bvirutal\b/virtual/g s/\bvirutally\b/virtually/g s/\bvisable\b/visible/g s/\bvisably\b/visibly/g s/\bvisting\b/visiting/g s/\bvistors\b/visitors/g s/\bvitories\b/victories/g s/\bvolcanoe\b/volcano/g s/\bvoleyball\b/volleyball/g s/\bvolontary\b/voluntary/g s/\bvolonteer\b/volunteer/g s/\bvolonteered\b/volunteered/g s/\bvolonteering\b/volunteering/g s/\bvolonteers\b/volunteers/g s/\bvolounteer\b/volunteer/g s/\bvolounteered\b/volunteered/g s/\bvolounteering\b/volunteering/g s/\bvolounteers\b/volunteers/g s/\bvolumne\b/volume/g s/\bvreity\b/variety/g s/\bvrey\b/very/g s/\bvriety\b/variety/g s/\bvulnerablility\b/vulnerability/g s/\bvyer\b/very/g s/\bvyre\b/very/g s/\bwaht\b/what/g s/\bwarantee\b/warranty/g s/\bwardobe\b/wardrobe/g s/\bwarrent\b/warrant/g s/\bwarrriors\b/warriors/g s/\bwasnt\b/wasn't/g s/\bwass\b/was/g s/\bwatn\b/want/g s/\bwayword\b/wayward/g s/\bweaponary\b/weaponry/g s/\bweas\b/was/g s/\bwehn\b/when/g s/\bweilded\b/wielded/g s/\bwendsay\b/Wednesday/g s/\bwensday\b/Wednesday/g s/\bwereabouts\b/whereabouts/g s/\bwhant\b/want/g s/\bwhants\b/wants/g s/\bwhcih\b/which/g s/\bwheras\b/whereas/g s/\bwherease\b/whereas/g s/\bwhereever\b/wherever/g s/\bwhic\b/which/g s/\bwhihc\b/which/g s/\bwhith\b/with/g s/\bwhlch\b/which/g s/\bwhn\b/when/g s/\bwholey\b/wholly/g s/\bwhta\b/what/g s/\bwhther\b/whether/g s/\bwidesread\b/widespread/g s/\bwief\b/wife/g s/\bwierd\b/weird/g s/\bwiew\b/view/g s/\bwih\b/with/g s/\bwiht\b/with/g s/\bwille\b/will/g s/\bwillk\b/will/g s/\bwillingless\b/willingness/g s/\bwirting\b/writing/g s/\bwitheld\b/withheld/g s/\bwithh\b/with/g s/\bwithing\b/within/g s/\bwithold\b/withhold/g s/\bwitht\b/with/g s/\bwitn\b/with/g s/\bwiull\b/will/g s/\bwnat\b/want/g s/\bwnated\b/wanted/g s/\bwnats\b/wants/g s/\bwohle\b/whole/g s/\bwokr\b/work/g s/\bwokring\b/working/g s/\bwonderfull\b/wonderful/g s/\bwordlwide\b/worldwide/g s/\bworkststion\b/workstation/g s/\bworls\b/world/g s/\bworstened\b/worsened/g s/\bwoudl\b/would/g s/\bwresters\b/wrestlers/g s/\bwriet\b/write/g s/\bwriten\b/written/g s/\bwroet\b/wrote/g s/\bwrok\b/work/g s/\bwroking\b/working/g s/\bwtih\b/with/g s/\bwupport\b/support/g s/\bxenophoby\b/xenophobia/g s/\byaching\b/yachting/g s/\byaer\b/year/g s/\byaerly\b/yearly/g s/\byaers\b/years/g s/\byatch\b/yacht/g s/\byearm\b/year/g s/\byeasr\b/years/g s/\byeild\b/yield/g s/\byeilding\b/yielding/g s/\byera\b/year/g s/\byrea\b/year/g s/\byeras\b/years/g s/\byersa\b/years/g s/\byotube\b/youtube/g s/\byouseff\b/yousef/g s/\byouself\b/yourself/g s/\bytou\b/you/g s/\byuo\b/you/g s/\bzeebra\b/zebra/g
amomynous0/fc
devTools/spell_check.txt
Text
bsd-3-clause
114,821
######################################################################################################################## # # sugarcube-2.py # # Copyright (c) 2013-2018 Thomas Michael Edwards <thomasmedwards@gmail.com>. All rights reserved. # Use of this source code is governed by a BSD 2-clause "Simplified" License, which may be found in the LICENSE file. # ######################################################################################################################## import os, os.path, header from collections import OrderedDict class Header (header.Header): def filesToEmbed(self): userLibPath = self.path + os.sep + 'userlib.js' if os.path.isfile(userLibPath): return OrderedDict([ ('"USER_LIB"', userLibPath) ]) else: return OrderedDict() def storySettings(self): return "SugarCube 2.x does not support the StorySettings special passage.\n\nInstead, you should use its configuration object, config.\n See: http://www.motoslave.net/sugarcube/2/docs/config-object.html" def isEndTag(self, name, tag): return (name == ('/' + tag) or name == ('end' + tag)) def nestedMacros(self): return [ # standard macros 'append', 'button', 'capture', 'createplaylist', 'for', 'if', 'link', 'linkappend', 'linkprepend', 'linkreplace', 'nobr', 'prepend', 'repeat', 'replace', 'script', 'switch', 'silently', 'timed', 'widget', # deprecated macros 'click' ] def passageTitleColor(self, passage): additionalSpecialPassages = [ 'PassageDone', 'PassageFooter', 'PassageHeader', 'PassageReady', 'StoryBanner', 'StoryCaption', 'StoryInterface', 'StoryShare' ] if passage.isStylesheet(): return ((111, 49, 83), (234, 123, 184)) elif passage.isScript(): return ((89, 66, 28), (226, 170, 80)) elif ('widget' in passage.tags): return ((80, 106, 26), (134, 178, 44)) elif passage.isInfoPassage() or (passage.title in additionalSpecialPassages): return ((28, 89, 74), (41, 214, 113)) elif passage.title == 'Start': return ('#4ca333', '#4bdb24') def passageChecks(self): return super(Header, self).passageChecks()
amomynous0/fc
devTools/tweeGo/storyFormats/sugarcube-2/sugarcube-2.py
Python
bsd-3-clause
2,198
#!/bin/bash if [ ! -d ".git" ]; then #not running in git repo, so can't use git commands :-) echo "No .git repo found - skipping sanity checks" exit 0 fi git ls-files -z src/*.tw | grep -z -v .min.tw | grep -z -v setupVars.tw | xargs -0 sed -i -f devTools/spell_check.txt
amomynous0/fc
fixSpellingMistakes
none
bsd-3-clause
278
#!/bin/bash if [ ! -d ".git" ]; then exit 0 fi GREP="git grep -lz" $GREP "\babandonned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babandonned\b/abandoned/g" *.tw $GREP "\baberation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baberation\b/aberration/g" *.tw $GREP "\babilityes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babilityes\b/abilities/g" *.tw $GREP "\babilties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babilties\b/abilities/g" *.tw $GREP "\babilty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babilty\b/ability/g" *.tw $GREP "\babondon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babondon\b/abandon/g" *.tw $GREP "\babbout\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babbout\b/about/g" *.tw $GREP "\babotu\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babotu\b/about/g" *.tw $GREP "\babouta\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babouta\b/about a/g" *.tw $GREP "\baboutit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baboutit\b/about it/g" *.tw $GREP "\baboutthe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baboutthe\b/about the/g" *.tw $GREP "\babscence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babscence\b/absence/g" *.tw $GREP "\babondoned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babondoned\b/abandoned/g" *.tw $GREP "\babondoning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babondoning\b/abandoning/g" *.tw $GREP "\babondons\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babondons\b/abandons/g" *.tw $GREP "\baborigene\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baborigene\b/aborigine/g" *.tw $GREP "\baccesories\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccesories\b/accessories/g" *.tw $GREP "\baccidant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccidant\b/accident/g" *.tw $GREP "\babortificant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babortificant\b/abortifacient/g" *.tw $GREP "\babreviate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babreviate\b/abbreviate/g" *.tw $GREP "\babreviated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babreviated\b/abbreviated/g" *.tw $GREP "\babreviation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babreviation\b/abbreviation/g" *.tw $GREP "\babritrary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babritrary\b/arbitrary/g" *.tw $GREP "\babsail\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babsail\b/abseil/g" *.tw $GREP "\babsailing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babsailing\b/abseiling/g" *.tw $GREP "\babsense\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babsense\b/absence/g" *.tw $GREP "\babsolutly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babsolutly\b/absolutely/g" *.tw $GREP "\babsorbsion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babsorbsion\b/absorption/g" *.tw $GREP "\babsorbtion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babsorbtion\b/absorption/g" *.tw $GREP "\babudance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babudance\b/abundance/g" *.tw $GREP "\babundacies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babundacies\b/abundances/g" *.tw $GREP "\babundancies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babundancies\b/abundances/g" *.tw $GREP "\babundunt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babundunt\b/abundant/g" *.tw $GREP "\babutts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\babutts\b/abuts/g" *.tw $GREP "\bacadamy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacadamy\b/academy/g" *.tw $GREP "\bacadmic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacadmic\b/academic/g" *.tw $GREP "\baccademic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccademic\b/academic/g" *.tw $GREP "\baccademy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccademy\b/academy/g" *.tw $GREP "\bacccused\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacccused\b/accused/g" *.tw $GREP "\baccelleration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccelleration\b/acceleration/g" *.tw $GREP "\bacceptence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacceptence\b/acceptance/g" *.tw $GREP "\bacceptible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacceptible\b/acceptable/g" *.tw $GREP "\baccessable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccessable\b/accessible/g" *.tw $GREP "\bacident\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacident\b/accident/g" *.tw $GREP "\baccidentaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccidentaly\b/accidentally/g" *.tw $GREP "\baccidently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccidently\b/accidentally/g" *.tw $GREP "\bacclimitization\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacclimitization\b/acclimatization/g" *.tw $GREP "\baccomadate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomadate\b/accommodate/g" *.tw $GREP "\baccomadated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomadated\b/accommodated/g" *.tw $GREP "\baccomadates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomadates\b/accommodates/g" *.tw $GREP "\baccomadating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomadating\b/accommodating/g" *.tw $GREP "\baccomadation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomadation\b/accommodation/g" *.tw $GREP "\baccomadations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomadations\b/accommodations/g" *.tw $GREP "\baccomdate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomdate\b/accommodate/g" *.tw $GREP "\baccomodate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomodate\b/accommodate/g" *.tw $GREP "\baccomodated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomodated\b/accommodated/g" *.tw $GREP "\baccomodates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomodates\b/accommodates/g" *.tw $GREP "\baccomodating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomodating\b/accommodating/g" *.tw $GREP "\baccomodation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomodation\b/accommodation/g" *.tw $GREP "\baccomodations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccomodations\b/accommodations/g" *.tw $GREP "\baccompanyed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccompanyed\b/accompanied/g" *.tw $GREP "\baccordeon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccordeon\b/accordion/g" *.tw $GREP "\baccordian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccordian\b/accordion/g" *.tw $GREP "\baccoring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccoring\b/according/g" *.tw $GREP "\baccoustic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccoustic\b/acoustic/g" *.tw $GREP "\baccquainted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccquainted\b/acquainted/g" *.tw $GREP "\baccrediation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccrediation\b/accreditation/g" *.tw $GREP "\baccredidation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccredidation\b/accreditation/g" *.tw $GREP "\baccross\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccross\b/across/g" *.tw $GREP "\baccussed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baccussed\b/accused/g" *.tw $GREP "\bacedemic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacedemic\b/academic/g" *.tw $GREP "\bacheive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheive\b/achieve/g" *.tw $GREP "\bacheived\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheived\b/achieved/g" *.tw $GREP "\bacheivement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheivement\b/achievement/g" *.tw $GREP "\bacheivements\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheivements\b/achievements/g" *.tw $GREP "\bacheives\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheives\b/achieves/g" *.tw $GREP "\bacheiving\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheiving\b/achieving/g" *.tw $GREP "\bacheivment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheivment\b/achievement/g" *.tw $GREP "\bacheivments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacheivments\b/achievements/g" *.tw $GREP "\bachievment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bachievment\b/achievement/g" *.tw $GREP "\bachievments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bachievments\b/achievements/g" *.tw $GREP "\bachivement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bachivement\b/achievement/g" *.tw $GREP "\bachivements\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bachivements\b/achievements/g" *.tw $GREP "\backnowldeged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\backnowldeged\b/acknowledged/g" *.tw $GREP "\backnowledgeing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\backnowledgeing\b/acknowledging/g" *.tw $GREP "\bacommodate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacommodate\b/accommodate/g" *.tw $GREP "\bacomplish\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacomplish\b/accomplish/g" *.tw $GREP "\bacomplished\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacomplished\b/accomplished/g" *.tw $GREP "\bacomplishment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacomplishment\b/accomplishment/g" *.tw $GREP "\bacomplishments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacomplishments\b/accomplishments/g" *.tw $GREP "\bacording\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacording\b/according/g" *.tw $GREP "\bacordingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacordingly\b/accordingly/g" *.tw $GREP "\bacquaintence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacquaintence\b/acquaintance/g" *.tw $GREP "\bacquaintences\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacquaintences\b/acquaintances/g" *.tw $GREP "\bacquiantence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacquiantence\b/acquaintance/g" *.tw $GREP "\bacquiantences\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacquiantences\b/acquaintances/g" *.tw $GREP "\bacquited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacquited\b/acquitted/g" *.tw $GREP "\bactivites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bactivites\b/activities/g" *.tw $GREP "\bactivly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bactivly\b/actively/g" *.tw $GREP "\bactualy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bactualy\b/actually/g" *.tw $GREP "\bacuracy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacuracy\b/accuracy/g" *.tw $GREP "\bacused\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacused\b/accused/g" *.tw $GREP "\bacustom\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacustom\b/accustom/g" *.tw $GREP "\bacustommed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bacustommed\b/accustomed/g" *.tw $GREP "\badavanced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badavanced\b/advanced/g" *.tw $GREP "\badbandon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badbandon\b/abandon/g" *.tw $GREP "\baddional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddional\b/additional/g" *.tw $GREP "\baddionally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddionally\b/additionally/g" *.tw $GREP "\badditinally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badditinally\b/additionally/g" *.tw $GREP "\badditionaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badditionaly\b/additionally/g" *.tw $GREP "\badditonal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badditonal\b/additional/g" *.tw $GREP "\badditonally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badditonally\b/additionally/g" *.tw $GREP "\baddmission\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddmission\b/admission/g" *.tw $GREP "\baddopt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddopt\b/adopt/g" *.tw $GREP "\baddopted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddopted\b/adopted/g" *.tw $GREP "\baddoptive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddoptive\b/adoptive/g" *.tw $GREP "\baddresable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddresable\b/addressable/g" *.tw $GREP "\baddresed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddresed\b/addressed/g" *.tw $GREP "\baddresing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddresing\b/addressing/g" *.tw $GREP "\baddressess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddressess\b/addresses/g" *.tw $GREP "\baddtion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddtion\b/addition/g" *.tw $GREP "\baddtional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baddtional\b/additional/g" *.tw $GREP "\badecuate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badecuate\b/adequate/g" *.tw $GREP "\badequit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badequit\b/adequate/g" *.tw $GREP "\badhearing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badhearing\b/adhering/g" *.tw $GREP "\badherance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badherance\b/adherence/g" *.tw $GREP "\badmendment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badmendment\b/amendment/g" *.tw $GREP "\badmininistrative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badmininistrative\b/administrative/g" *.tw $GREP "\badminstered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badminstered\b/administered/g" *.tw $GREP "\badminstrate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badminstrate\b/administrate/g" *.tw $GREP "\badminstration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badminstration\b/administration/g" *.tw $GREP "\badminstrative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badminstrative\b/administrative/g" *.tw $GREP "\badminstrator\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badminstrator\b/administrator/g" *.tw $GREP "\badmissability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badmissability\b/admissibility/g" *.tw $GREP "\badmissable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badmissable\b/admissible/g" *.tw $GREP "\badmited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badmited\b/admitted/g" *.tw $GREP "\badmitedly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badmitedly\b/admittedly/g" *.tw $GREP "\badn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badn\b/and/g" *.tw $GREP "\badolecent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badolecent\b/adolescent/g" *.tw $GREP "\badquire\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badquire\b/acquire/g" *.tw $GREP "\badquired\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badquired\b/acquired/g" *.tw $GREP "\badquires\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badquires\b/acquires/g" *.tw $GREP "\badquiring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badquiring\b/acquiring/g" *.tw $GREP "\badres\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badres\b/address/g" *.tw $GREP "\badresable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badresable\b/addressable/g" *.tw $GREP "\badresing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badresing\b/addressing/g" *.tw $GREP "\badress\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badress\b/address/g" *.tw $GREP "\badressable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badressable\b/addressable/g" *.tw $GREP "\badressed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badressed\b/addressed/g" *.tw $GREP "\badventrous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badventrous\b/adventurous/g" *.tw $GREP "\badvertisment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badvertisment\b/advertisement/g" *.tw $GREP "\badvertisments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badvertisments\b/advertisements/g" *.tw $GREP "\badvesary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badvesary\b/adversary/g" *.tw $GREP "\badviced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\badviced\b/advised/g" *.tw $GREP "\baeriel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baeriel\b/aerial/g" *.tw $GREP "\baeriels\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baeriels\b/aerials/g" *.tw $GREP "\bafair\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bafair\b/affair/g" *.tw $GREP "\bafficianados\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bafficianados\b/aficionados/g" *.tw $GREP "\bafficionado\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bafficionado\b/aficionado/g" *.tw $GREP "\bafficionados\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bafficionados\b/aficionados/g" *.tw $GREP "\baffilate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baffilate\b/affiliate/g" *.tw $GREP "\baffilliate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baffilliate\b/affiliate/g" *.tw $GREP "\baforememtioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baforememtioned\b/aforementioned/g" *.tw $GREP "\bagainnst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagainnst\b/against/g" *.tw $GREP "\bagains\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagains\b/against/g" *.tw $GREP "\bagaisnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagaisnt\b/against/g" *.tw $GREP "\baganist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baganist\b/against/g" *.tw $GREP "\baggaravates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baggaravates\b/aggravates/g" *.tw $GREP "\baggreed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baggreed\b/agreed/g" *.tw $GREP "\baggreement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baggreement\b/agreement/g" *.tw $GREP "\baggregious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baggregious\b/egregious/g" *.tw $GREP "\baggresive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baggresive\b/aggressive/g" *.tw $GREP "\bagian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagian\b/again/g" *.tw $GREP "\bagianst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagianst\b/against/g" *.tw $GREP "\bagin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagin\b/again/g" *.tw $GREP "\baginst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baginst\b/against/g" *.tw $GREP "\bagravate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagravate\b/aggravate/g" *.tw $GREP "\bagre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagre\b/agree/g" *.tw $GREP "\bagred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagred\b/agreed/g" *.tw $GREP "\bagreeement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagreeement\b/agreement/g" *.tw $GREP "\bagreemnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagreemnt\b/agreement/g" *.tw $GREP "\bagregate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagregate\b/aggregate/g" *.tw $GREP "\bagregates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagregates\b/aggregates/g" *.tw $GREP "\bagreing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagreing\b/agreeing/g" *.tw $GREP "\bagression\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagression\b/aggression/g" *.tw $GREP "\bagressive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagressive\b/aggressive/g" *.tw $GREP "\bagressively\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagressively\b/aggressively/g" *.tw $GREP "\bagressor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagressor\b/aggressor/g" *.tw $GREP "\bagricultue\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagricultue\b/agriculture/g" *.tw $GREP "\bagriculure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagriculure\b/agriculture/g" *.tw $GREP "\bagricuture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagricuture\b/agriculture/g" *.tw $GREP "\bagrieved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bagrieved\b/aggrieved/g" *.tw $GREP "\bahev\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bahev\b/have/g" *.tw $GREP "\bahppen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bahppen\b/happen/g" *.tw $GREP "\bahve\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bahve\b/have/g" *.tw $GREP "\baicraft\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baicraft\b/aircraft/g" *.tw $GREP "\baiport\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baiport\b/airport/g" *.tw $GREP "\bairbourne\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bairbourne\b/airborne/g" *.tw $GREP "\baircaft\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baircaft\b/aircraft/g" *.tw $GREP "\baircrafts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baircrafts\b/aircraft/g" *.tw $GREP "\baircrafts'\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baircrafts'\b/aircraft's/g" *.tw $GREP "\bairporta\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bairporta\b/airports/g" *.tw $GREP "\bairrcraft\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bairrcraft\b/aircraft/g" *.tw $GREP "\baisian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baisian\b/asian/g" *.tw $GREP "\balbiet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balbiet\b/albeit/g" *.tw $GREP "\balchohol\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balchohol\b/alcohol/g" *.tw $GREP "\balchoholic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balchoholic\b/alcoholic/g" *.tw $GREP "\balchol\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balchol\b/alcohol/g" *.tw $GREP "\balcholic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balcholic\b/alcoholic/g" *.tw $GREP "\balcohal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balcohal\b/alcohol/g" *.tw $GREP "\balcoholical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balcoholical\b/alcoholic/g" *.tw $GREP "\baledge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baledge\b/allege/g" *.tw $GREP "\baledged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baledged\b/alleged/g" *.tw $GREP "\baledges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baledges\b/alleges/g" *.tw $GREP "\balege\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balege\b/allege/g" *.tw $GREP "\baleged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baleged\b/alleged/g" *.tw $GREP "\balegience\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balegience\b/allegiance/g" *.tw $GREP "\balgebraical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balgebraical\b/algebraic/g" *.tw $GREP "\balgorhitms\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balgorhitms\b/algorithms/g" *.tw $GREP "\balgoritm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balgoritm\b/algorithm/g" *.tw $GREP "\balgoritms\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balgoritms\b/algorithms/g" *.tw $GREP "\balientating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balientating\b/alienating/g" *.tw $GREP "\balledge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balledge\b/allege/g" *.tw $GREP "\balledged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balledged\b/alleged/g" *.tw $GREP "\balledgedly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balledgedly\b/allegedly/g" *.tw $GREP "\balledges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balledges\b/alleges/g" *.tw $GREP "\ballegedely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballegedely\b/allegedly/g" *.tw $GREP "\ballegedy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballegedy\b/allegedly/g" *.tw $GREP "\ballegely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballegely\b/allegedly/g" *.tw $GREP "\ballegence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballegence\b/allegiance/g" *.tw $GREP "\ballegience\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballegience\b/allegiance/g" *.tw $GREP "\ballign\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballign\b/align/g" *.tw $GREP "\balligned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balligned\b/aligned/g" *.tw $GREP "\balliviate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balliviate\b/alleviate/g" *.tw $GREP "\ballopone\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballopone\b/allophone/g" *.tw $GREP "\ballopones\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballopones\b/allophones/g" *.tw $GREP "\ballready\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballready\b/already/g" *.tw $GREP "\ballthough\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\ballthough\b/although/g" *.tw $GREP "\balltime\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balltime\b/all-time/g" *.tw $GREP "\balltogether\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balltogether\b/altogether/g" *.tw $GREP "\balmsot\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balmsot\b/almost/g" *.tw $GREP "\balochol\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balochol\b/alcohol/g" *.tw $GREP "\balomst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balomst\b/almost/g" *.tw $GREP "\balotted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balotted\b/allotted/g" *.tw $GREP "\balowed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balowed\b/allowed/g" *.tw $GREP "\balowing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balowing\b/allowing/g" *.tw $GREP "\balreayd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balreayd\b/already/g" *.tw $GREP "\balse\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balse\b/else/g" *.tw $GREP "\balsot\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balsot\b/also/g" *.tw $GREP "\balternitives\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balternitives\b/alternatives/g" *.tw $GREP "\balthought\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balthought\b/although/g" *.tw $GREP "\baltough\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baltough\b/although/g" *.tw $GREP "\balwasy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balwasy\b/always/g" *.tw $GREP "\balwyas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\balwyas\b/always/g" *.tw $GREP "\bamalgomated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamalgomated\b/amalgamated/g" *.tw $GREP "\bamatuer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamatuer\b/amateur/g" *.tw $GREP "\bamendmant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamendmant\b/amendment/g" *.tw $GREP "\bAmercia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bAmercia\b/America/g" *.tw $GREP "\bamerliorate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamerliorate\b/ameliorate/g" *.tw $GREP "\bamke\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamke\b/make/g" *.tw $GREP "\bamking\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamking\b/making/g" *.tw $GREP "\bammend\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bammend\b/amend/g" *.tw $GREP "\bammended\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bammended\b/amended/g" *.tw $GREP "\bammendment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bammendment\b/amendment/g" *.tw $GREP "\bammendments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bammendments\b/amendments/g" *.tw $GREP "\bammount\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bammount\b/amount/g" *.tw $GREP "\bammused\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bammused\b/amused/g" *.tw $GREP "\bamoung\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamoung\b/among/g" *.tw $GREP "\bamoungst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamoungst\b/amongst/g" *.tw $GREP "\bamung\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamung\b/among/g" *.tw $GREP "\bamunition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bamunition\b/ammunition/g" *.tw $GREP "\banalagous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banalagous\b/analogous/g" *.tw $GREP "\banalitic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banalitic\b/analytic/g" *.tw $GREP "\banalogeous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banalogeous\b/analogous/g" *.tw $GREP "\banarchim\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banarchim\b/anarchism/g" *.tw $GREP "\banarchistm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banarchistm\b/anarchism/g" *.tw $GREP "\banbd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banbd\b/and/g" *.tw $GREP "\bancestory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bancestory\b/ancestry/g" *.tw $GREP "\bancilliary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bancilliary\b/ancillary/g" *.tw $GREP "\bandd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bandd\b/and/g" *.tw $GREP "\bandrogenous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bandrogenous\b/androgynous/g" *.tw $GREP "\bandrogeny\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bandrogeny\b/androgyny/g" *.tw $GREP "\banihilation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banihilation\b/annihilation/g" *.tw $GREP "\baniversary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baniversary\b/anniversary/g" *.tw $GREP "\bannoint\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bannoint\b/anoint/g" *.tw $GREP "\bannointed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bannointed\b/anointed/g" *.tw $GREP "\bannointing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bannointing\b/anointing/g" *.tw $GREP "\bannoints\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bannoints\b/anoints/g" *.tw $GREP "\bannouced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bannouced\b/announced/g" *.tw $GREP "\bannualy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bannualy\b/annually/g" *.tw $GREP "\bannuled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bannuled\b/annulled/g" *.tw $GREP "\banohter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banohter\b/another/g" *.tw $GREP "\banomolies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banomolies\b/anomalies/g" *.tw $GREP "\banomolous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banomolous\b/anomalous/g" *.tw $GREP "\banomoly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banomoly\b/anomaly/g" *.tw $GREP "\banonimity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banonimity\b/anonymity/g" *.tw $GREP "\banounced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banounced\b/announced/g" *.tw $GREP "\banouncement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banouncement\b/announcement/g" *.tw $GREP "\bansalisation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bansalisation\b/nasalisation/g" *.tw $GREP "\bansalization\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bansalization\b/nasalization/g" *.tw $GREP "\bansestors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bansestors\b/ancestors/g" *.tw $GREP "\bantartic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bantartic\b/antarctic/g" *.tw $GREP "\banthromorphization\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banthromorphization\b/anthropomorphization/g" *.tw $GREP "\banthropolgist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banthropolgist\b/anthropologist/g" *.tw $GREP "\banthropolgy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banthropolgy\b/anthropology/g" *.tw $GREP "\bantiapartheid\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bantiapartheid\b/anti-apartheid/g" *.tw $GREP "\banual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banual\b/annual/g" *.tw $GREP "\banulled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banulled\b/annulled/g" *.tw $GREP "\banwsered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banwsered\b/answered/g" *.tw $GREP "\banyhwere\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banyhwere\b/anywhere/g" *.tw $GREP "\banyother\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banyother\b/any other/g" *.tw $GREP "\banytying\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\banytying\b/anything/g" *.tw $GREP "\baparent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baparent\b/apparent/g" *.tw $GREP "\baparment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baparment\b/apartment/g" *.tw $GREP "\baplication\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baplication\b/application/g" *.tw $GREP "\baplied\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baplied\b/applied/g" *.tw $GREP "\bapolegetics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapolegetics\b/apologetics/g" *.tw $GREP "\bapparant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapparant\b/apparent/g" *.tw $GREP "\bapparantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapparantly\b/apparently/g" *.tw $GREP "\bappart\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappart\b/apart/g" *.tw $GREP "\bappartment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappartment\b/apartment/g" *.tw $GREP "\bappartments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappartments\b/apartments/g" *.tw $GREP "\bappeareance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappeareance\b/appearance/g" *.tw $GREP "\bappearence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappearence\b/appearance/g" *.tw $GREP "\bappearences\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappearences\b/appearances/g" *.tw $GREP "\bapperance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapperance\b/appearance/g" *.tw $GREP "\bapperances\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapperances\b/appearances/g" *.tw $GREP "\bappereance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappereance\b/appearance/g" *.tw $GREP "\bappereances\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappereances\b/appearances/g" *.tw $GREP "\bapplicaiton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapplicaiton\b/application/g" *.tw $GREP "\bapplicaitons\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapplicaitons\b/applications/g" *.tw $GREP "\bappologies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappologies\b/apologies/g" *.tw $GREP "\bappology\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappology\b/apology/g" *.tw $GREP "\bapprearance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapprearance\b/appearance/g" *.tw $GREP "\bapprieciate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapprieciate\b/appreciate/g" *.tw $GREP "\bapproachs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapproachs\b/approaches/g" *.tw $GREP "\bappropiate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappropiate\b/appropriate/g" *.tw $GREP "\bappropraite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappropraite\b/appropriate/g" *.tw $GREP "\bappropropiate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bappropropiate\b/appropriate/g" *.tw $GREP "\bapproproximate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapproproximate\b/approximate/g" *.tw $GREP "\bapproxamately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapproxamately\b/approximately/g" *.tw $GREP "\bapproxiately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapproxiately\b/approximately/g" *.tw $GREP "\bapproximitely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapproximitely\b/approximately/g" *.tw $GREP "\baprehensive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baprehensive\b/apprehensive/g" *.tw $GREP "\bapropriate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bapropriate\b/appropriate/g" *.tw $GREP "\baproval\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baproval\b/approval/g" *.tw $GREP "\baproximate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baproximate\b/approximate/g" *.tw $GREP "\baproximately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baproximately\b/approximately/g" *.tw $GREP "\baquaduct\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquaduct\b/aqueduct/g" *.tw $GREP "\baquaintance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquaintance\b/acquaintance/g" *.tw $GREP "\baquainted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquainted\b/acquainted/g" *.tw $GREP "\baquiantance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquiantance\b/acquaintance/g" *.tw $GREP "\baquire\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquire\b/acquire/g" *.tw $GREP "\baquired\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquired\b/acquired/g" *.tw $GREP "\baquiring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquiring\b/acquiring/g" *.tw $GREP "\baquisition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquisition\b/acquisition/g" *.tw $GREP "\baquitted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baquitted\b/acquitted/g" *.tw $GREP "\baranged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baranged\b/arranged/g" *.tw $GREP "\barangement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barangement\b/arrangement/g" *.tw $GREP "\barbitarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barbitarily\b/arbitrarily/g" *.tw $GREP "\barbitary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barbitary\b/arbitrary/g" *.tw $GREP "\barchaelogical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchaelogical\b/archaeological/g" *.tw $GREP "\barchaelogists\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchaelogists\b/archaeologists/g" *.tw $GREP "\barchaelogy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchaelogy\b/archaeology/g" *.tw $GREP "\barchetect\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchetect\b/architect/g" *.tw $GREP "\barchetects\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchetects\b/architects/g" *.tw $GREP "\barchetectural\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchetectural\b/architectural/g" *.tw $GREP "\barchetecturally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchetecturally\b/architecturally/g" *.tw $GREP "\barchetecture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchetecture\b/architecture/g" *.tw $GREP "\barchiac\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchiac\b/archaic/g" *.tw $GREP "\barchictect\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchictect\b/architect/g" *.tw $GREP "\barchimedian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchimedian\b/archimedean/g" *.tw $GREP "\barchitecht\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchitecht\b/architect/g" *.tw $GREP "\barchitechturally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchitechturally\b/architecturally/g" *.tw $GREP "\barchitechture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchitechture\b/architecture/g" *.tw $GREP "\barchitechtures\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchitechtures\b/architectures/g" *.tw $GREP "\barchitectual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchitectual\b/architectural/g" *.tw $GREP "\barchtype\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchtype\b/archetype/g" *.tw $GREP "\barchtypes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barchtypes\b/archetypes/g" *.tw $GREP "\baready\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baready\b/already/g" *.tw $GREP "\bareodynamics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bareodynamics\b/aerodynamics/g" *.tw $GREP "\bargubly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bargubly\b/arguably/g" *.tw $GREP "\barguement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barguement\b/argument/g" *.tw $GREP "\barguements\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barguements\b/arguments/g" *.tw $GREP "\barised\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barised\b/arose/g" *.tw $GREP "\barival\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barival\b/arrival/g" *.tw $GREP "\barmamant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barmamant\b/armament/g" *.tw $GREP "\barmistace\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barmistace\b/armistice/g" *.tw $GREP "\barogant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barogant\b/arrogant/g" *.tw $GREP "\barogent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barogent\b/arrogant/g" *.tw $GREP "\baroud\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baroud\b/around/g" *.tw $GREP "\barrangment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barrangment\b/arrangement/g" *.tw $GREP "\barrangments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barrangments\b/arrangements/g" *.tw $GREP "\barrengement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barrengement\b/arrangement/g" *.tw $GREP "\barrengements\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barrengements\b/arrangements/g" *.tw $GREP "\barround\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barround\b/around/g" *.tw $GREP "\bartcile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bartcile\b/article/g" *.tw $GREP "\bartical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bartical\b/article/g" *.tw $GREP "\bartice\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bartice\b/article/g" *.tw $GREP "\barticel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barticel\b/article/g" *.tw $GREP "\bartifical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bartifical\b/artificial/g" *.tw $GREP "\bartifically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bartifically\b/artificially/g" *.tw $GREP "\bartillary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bartillary\b/artillery/g" *.tw $GREP "\barund\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\barund\b/around/g" *.tw $GREP "\basetic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basetic\b/ascetic/g" *.tw $GREP "\basfar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basfar\b/as far/g" *.tw $GREP "\basign\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basign\b/assign/g" *.tw $GREP "\baslo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baslo\b/also/g" *.tw $GREP "\basociated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basociated\b/associated/g" *.tw $GREP "\basorbed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basorbed\b/absorbed/g" *.tw $GREP "\basphyxation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basphyxation\b/asphyxiation/g" *.tw $GREP "\bassasin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasin\b/assassin/g" *.tw $GREP "\bassasinate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasinate\b/assassinate/g" *.tw $GREP "\bassasinated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasinated\b/assassinated/g" *.tw $GREP "\bassasinates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasinates\b/assassinates/g" *.tw $GREP "\bassasination\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasination\b/assassination/g" *.tw $GREP "\bassasinations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasinations\b/assassinations/g" *.tw $GREP "\bassasined\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasined\b/assassinated/g" *.tw $GREP "\bassasins\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassasins\b/assassins/g" *.tw $GREP "\bassassintation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassassintation\b/assassination/g" *.tw $GREP "\bassemple\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassemple\b/assemble/g" *.tw $GREP "\bassertation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassertation\b/assertion/g" *.tw $GREP "\basside\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basside\b/aside/g" *.tw $GREP "\bassisnate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassisnate\b/assassinate/g" *.tw $GREP "\bassit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassit\b/assist/g" *.tw $GREP "\bassitant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassitant\b/assistant/g" *.tw $GREP "\bassocation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassocation\b/association/g" *.tw $GREP "\bassoicate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassoicate\b/associate/g" *.tw $GREP "\bassoicated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassoicated\b/associated/g" *.tw $GREP "\bassoicates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassoicates\b/associates/g" *.tw $GREP "\bassosication\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassosication\b/assassination/g" *.tw $GREP "\basssassans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basssassans\b/assassins/g" *.tw $GREP "\bassualt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassualt\b/assault/g" *.tw $GREP "\bassualted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassualted\b/assaulted/g" *.tw $GREP "\bassymetric\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassymetric\b/asymmetric/g" *.tw $GREP "\bassymetrical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bassymetrical\b/asymmetrical/g" *.tw $GREP "\basteriod\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basteriod\b/asteroid/g" *.tw $GREP "\basthetic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basthetic\b/aesthetic/g" *.tw $GREP "\basthetical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basthetical\b/aesthetical/g" *.tw $GREP "\basthetically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basthetically\b/aesthetically/g" *.tw $GREP "\basume\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\basume\b/assume/g" *.tw $GREP "\baswell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baswell\b/as well/g" *.tw $GREP "\batain\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batain\b/attain/g" *.tw $GREP "\batempting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batempting\b/attempting/g" *.tw $GREP "\batheistical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batheistical\b/atheistic/g" *.tw $GREP "\bathenean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bathenean\b/athenian/g" *.tw $GREP "\batheneans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batheneans\b/athenians/g" *.tw $GREP "\bathiesm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bathiesm\b/atheism/g" *.tw $GREP "\bathiest\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bathiest\b/atheist/g" *.tw $GREP "\batorney\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batorney\b/attorney/g" *.tw $GREP "\batribute\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batribute\b/attribute/g" *.tw $GREP "\batributed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batributed\b/attributed/g" *.tw $GREP "\batributes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\batributes\b/attributes/g" *.tw $GREP "\battemp\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battemp\b/attempt/g" *.tw $GREP "\battemped\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battemped\b/attempted/g" *.tw $GREP "\battemt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battemt\b/attempt/g" *.tw $GREP "\battemted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battemted\b/attempted/g" *.tw $GREP "\battemting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battemting\b/attempting/g" *.tw $GREP "\battemts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battemts\b/attempts/g" *.tw $GREP "\battendence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battendence\b/attendance/g" *.tw $GREP "\battendent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battendent\b/attendant/g" *.tw $GREP "\battendents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battendents\b/attendants/g" *.tw $GREP "\battened\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battened\b/attended/g" *.tw $GREP "\battension\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battension\b/attention/g" *.tw $GREP "\battitide\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battitide\b/attitude/g" *.tw $GREP "\battributred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battributred\b/attributed/g" *.tw $GREP "\battrocities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\battrocities\b/atrocities/g" *.tw $GREP "\baudeince\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baudeince\b/audience/g" *.tw $GREP "\bauromated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauromated\b/automated/g" *.tw $GREP "\baustrailia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baustrailia\b/Australia/g" *.tw $GREP "\baustrailian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baustrailian\b/Australian/g" *.tw $GREP "\bauther\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauther\b/author/g" *.tw $GREP "\bauthobiographic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthobiographic\b/autobiographic/g" *.tw $GREP "\bauthobiography\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthobiography\b/autobiography/g" *.tw $GREP "\bauthorative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthorative\b/authoritative/g" *.tw $GREP "\bauthorites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthorites\b/authorities/g" *.tw $GREP "\bauthorithy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthorithy\b/authority/g" *.tw $GREP "\bauthoritiers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthoritiers\b/authorities/g" *.tw $GREP "\bauthoritive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthoritive\b/authoritative/g" *.tw $GREP "\bauthrorities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauthrorities\b/authorities/g" *.tw $GREP "\bautochtonous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bautochtonous\b/autochthonous/g" *.tw $GREP "\bautoctonous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bautoctonous\b/autochthonous/g" *.tw $GREP "\bautomaticly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bautomaticly\b/automatically/g" *.tw $GREP "\bautomibile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bautomibile\b/automobile/g" *.tw $GREP "\bautomonomous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bautomonomous\b/autonomous/g" *.tw $GREP "\bautor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bautor\b/author/g" *.tw $GREP "\bautority\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bautority\b/authority/g" *.tw $GREP "\bauxilary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauxilary\b/auxiliary/g" *.tw $GREP "\bauxillaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauxillaries\b/auxiliaries/g" *.tw $GREP "\bauxillary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauxillary\b/auxiliary/g" *.tw $GREP "\bauxilliaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauxilliaries\b/auxiliaries/g" *.tw $GREP "\bauxilliary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bauxilliary\b/auxiliary/g" *.tw $GREP "\bavailabe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavailabe\b/available/g" *.tw $GREP "\bavailablity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavailablity\b/availability/g" *.tw $GREP "\bavailaible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavailaible\b/available/g" *.tw $GREP "\bavailble\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavailble\b/available/g" *.tw $GREP "\bavailiable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavailiable\b/available/g" *.tw $GREP "\bavailible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavailible\b/available/g" *.tw $GREP "\bavalable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavalable\b/available/g" *.tw $GREP "\bavalance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavalance\b/avalanche/g" *.tw $GREP "\bavaliable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavaliable\b/available/g" *.tw $GREP "\bavation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavation\b/aviation/g" *.tw $GREP "\bavengence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavengence\b/a vengeance/g" *.tw $GREP "\baverageed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\baverageed\b/averaged/g" *.tw $GREP "\bavilable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bavilable\b/available/g" *.tw $GREP "\bawared\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bawared\b/awarded/g" *.tw $GREP "\bawya\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bawya\b/away/g" *.tw $GREP "\bbaceause\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbaceause\b/because/g" *.tw $GREP "\bbackgorund\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbackgorund\b/background/g" *.tw $GREP "\bbackrounds\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbackrounds\b/backgrounds/g" *.tw $GREP "\bbakc\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbakc\b/back/g" *.tw $GREP "\bbanannas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbanannas\b/bananas/g" *.tw $GREP "\bbandwith\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbandwith\b/bandwidth/g" *.tw $GREP "\bbankrupcy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbankrupcy\b/bankruptcy/g" *.tw $GREP "\bbanruptcy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbanruptcy\b/bankruptcy/g" *.tw $GREP "\bbasicaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbasicaly\b/basically/g" *.tw $GREP "\bbasicly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbasicly\b/basically/g" *.tw $GREP "\bbcak\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbcak\b/back/g" *.tw $GREP "\bbeachead\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeachead\b/beachhead/g" *.tw $GREP "\bbeacuse\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeacuse\b/because/g" *.tw $GREP "\bbeastiality\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeastiality\b/bestiality/g" *.tw $GREP "\bbeatiful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeatiful\b/beautiful/g" *.tw $GREP "\bbeaurocracy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeaurocracy\b/bureaucracy/g" *.tw $GREP "\bbeaurocratic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeaurocratic\b/bureaucratic/g" *.tw $GREP "\bbeautyfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeautyfull\b/beautiful/g" *.tw $GREP "\bbecamae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbecamae\b/became/g" *.tw $GREP "\bbecasue\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbecasue\b/because/g" *.tw $GREP "\bbeccause\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeccause\b/because/g" *.tw $GREP "\bbecomeing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbecomeing\b/becoming/g" *.tw $GREP "\bbecomming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbecomming\b/becoming/g" *.tw $GREP "\bbecouse\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbecouse\b/because/g" *.tw $GREP "\bbecuase\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbecuase\b/because/g" *.tw $GREP "\bbedore\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbedore\b/before/g" *.tw $GREP "\bbeeing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeeing\b/being/g" *.tw $GREP "\bbefoer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbefoer\b/before/g" *.tw $GREP "\bbegginer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbegginer\b/beginner/g" *.tw $GREP "\bbegginers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbegginers\b/beginners/g" *.tw $GREP "\bbeggining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeggining\b/beginning/g" *.tw $GREP "\bbegginings\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbegginings\b/beginnings/g" *.tw $GREP "\bbeggins\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeggins\b/begins/g" *.tw $GREP "\bbegining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbegining\b/beginning/g" *.tw $GREP "\bbeginnig\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeginnig\b/beginning/g" *.tw $GREP "\bbeleagured\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeleagured\b/beleaguered/g" *.tw $GREP "\bbeleif\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeleif\b/belief/g" *.tw $GREP "\bbeleive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeleive\b/believe/g" *.tw $GREP "\bbeleived\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeleived\b/believed/g" *.tw $GREP "\bbeleives\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeleives\b/believes/g" *.tw $GREP "\bbeleiving\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeleiving\b/believing/g" *.tw $GREP "\bbeligum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeligum\b/belgium/g" *.tw $GREP "\bbelive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbelive\b/believe/g" *.tw $GREP "\bbelligerant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbelligerant\b/belligerent/g" *.tw $GREP "\bbellweather\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbellweather\b/bellwether/g" *.tw $GREP "\bbemusemnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbemusemnt\b/bemusement/g" *.tw $GREP "\bbeneficary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeneficary\b/beneficiary/g" *.tw $GREP "\bbeng\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeng\b/being/g" *.tw $GREP "\bbenificial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbenificial\b/beneficial/g" *.tw $GREP "\bbenifit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbenifit\b/benefit/g" *.tw $GREP "\bbenifits\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbenifits\b/benefits/g" *.tw $GREP "\bbergamont\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbergamont\b/bergamot/g" *.tw $GREP "\bBernouilli\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBernouilli\b/Bernoulli/g" *.tw $GREP "\bbeseige\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeseige\b/besiege/g" *.tw $GREP "\bbeseiged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeseiged\b/besieged/g" *.tw $GREP "\bbeseiging\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeseiging\b/besieging/g" *.tw $GREP "\bbeteen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeteen\b/between/g" *.tw $GREP "\bbetwen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbetwen\b/between/g" *.tw $GREP "\bbeween\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbeween\b/between/g" *.tw $GREP "\bbewteen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbewteen\b/between/g" *.tw $GREP "\bbigining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbigining\b/beginning/g" *.tw $GREP "\bbiginning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbiginning\b/beginning/g" *.tw $GREP "\bbilateraly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbilateraly\b/bilaterally/g" *.tw $GREP "\bbillingualism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbillingualism\b/bilingualism/g" *.tw $GREP "\bbinominal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbinominal\b/binomial/g" *.tw $GREP "\bbizzare\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbizzare\b/bizarre/g" *.tw $GREP "\bblaim\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bblaim\b/blame/g" *.tw $GREP "\bblaimed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bblaimed\b/blamed/g" *.tw $GREP "\bblessure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bblessure\b/blessing/g" *.tw $GREP "\bBlitzkreig\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBlitzkreig\b/Blitzkrieg/g" *.tw $GREP "\bbodydbuilder\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbodydbuilder\b/bodybuilder/g" *.tw $GREP "\bbombardement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbombardement\b/bombardment/g" *.tw $GREP "\bbombarment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbombarment\b/bombardment/g" *.tw $GREP "\bbondary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbondary\b/boundary/g" *.tw $GREP "\bBonnano\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBonnano\b/Bonanno/g" *.tw $GREP "\bboook\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bboook\b/book/g" *.tw $GREP "\bborke\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bborke\b/broke/g" *.tw $GREP "\bboundry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bboundry\b/boundary/g" *.tw $GREP "\bbouyancy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbouyancy\b/buoyancy/g" *.tw $GREP "\bbouyant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbouyant\b/buoyant/g" *.tw $GREP "\bboyant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bboyant\b/buoyant/g" *.tw $GREP "\bbradcast\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbradcast\b/broadcast/g" *.tw $GREP "\bBrasillian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBrasillian\b/Brazilian/g" *.tw $GREP "\bbreakthough\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbreakthough\b/breakthrough/g" *.tw $GREP "\bbreakthroughts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbreakthroughts\b/breakthroughs/g" *.tw $GREP "\bbreif\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbreif\b/brief/g" *.tw $GREP "\bbreifly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbreifly\b/briefly/g" *.tw $GREP "\bbrethen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbrethen\b/brethren/g" *.tw $GREP "\bbretheren\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbretheren\b/brethren/g" *.tw $GREP "\bbriliant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbriliant\b/brilliant/g" *.tw $GREP "\bbrillant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbrillant\b/brilliant/g" *.tw $GREP "\bbrimestone\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbrimestone\b/brimstone/g" *.tw $GREP "\bBritian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBritian\b/Britain/g" *.tw $GREP "\bBrittish\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBrittish\b/British/g" *.tw $GREP "\bbroacasted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbroacasted\b/broadcast/g" *.tw $GREP "\bbroadacasting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbroadacasting\b/broadcasting/g" *.tw $GREP "\bbroady\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbroady\b/broadly/g" *.tw $GREP "\bBuddah\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBuddah\b/Buddha/g" *.tw $GREP "\bBuddist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bBuddist\b/Buddhist/g" *.tw $GREP "\bbuisness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbuisness\b/business/g" *.tw $GREP "\bbuisnessman\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbuisnessman\b/businessman/g" *.tw $GREP "\bbuoancy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbuoancy\b/buoyancy/g" *.tw $GREP "\bburried\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bburried\b/buried/g" *.tw $GREP "\bbusines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbusines\b/business/g" *.tw $GREP "\bbusness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbusness\b/business/g" *.tw $GREP "\bbussiness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bbussiness\b/business/g" *.tw $GREP "\bcaculater\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaculater\b/calculator/g" *.tw $GREP "\bcacuses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcacuses\b/caucuses/g" *.tw $GREP "\bcahracters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcahracters\b/characters/g" *.tw $GREP "\bcalaber\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcalaber\b/caliber/g" *.tw $GREP "\bcalculater\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcalculater\b/calculator/g" *.tw $GREP "\bcalculs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcalculs\b/calculus/g" *.tw $GREP "\bcalenders\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcalenders\b/calendars/g" *.tw $GREP "\bcaligraphy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaligraphy\b/calligraphy/g" *.tw $GREP "\bcaluclate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaluclate\b/calculate/g" *.tw $GREP "\bcaluclated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaluclated\b/calculated/g" *.tw $GREP "\bcaluculate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaluculate\b/calculate/g" *.tw $GREP "\bcaluculated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaluculated\b/calculated/g" *.tw $GREP "\bcalulate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcalulate\b/calculate/g" *.tw $GREP "\bcalulated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcalulated\b/calculated/g" *.tw $GREP "\bcalulater\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcalulater\b/calculator/g" *.tw $GREP "\bCambrige\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCambrige\b/Cambridge/g" *.tw $GREP "\bcamoflage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcamoflage\b/camouflage/g" *.tw $GREP "\bcampagin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcampagin\b/campaign/g" *.tw $GREP "\bcampain\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcampain\b/campaign/g" *.tw $GREP "\bcampains\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcampains\b/campaigns/g" *.tw $GREP "\bcandadate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcandadate\b/candidate/g" *.tw $GREP "\bcandiate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcandiate\b/candidate/g" *.tw $GREP "\bcandidiate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcandidiate\b/candidate/g" *.tw $GREP "\bcannister\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcannister\b/canister/g" *.tw $GREP "\bcannisters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcannisters\b/canisters/g" *.tw $GREP "\bcannnot\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcannnot\b/cannot/g" *.tw $GREP "\bcannonical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcannonical\b/canonical/g" *.tw $GREP "\bcannotation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcannotation\b/connotation/g" *.tw $GREP "\bcannotations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcannotations\b/connotations/g" *.tw $GREP "\bcaost\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaost\b/coast/g" *.tw $GREP "\bcaperbility\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaperbility\b/capability/g" *.tw $GREP "\bCapetown\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCapetown\b/Cape Town/g" *.tw $GREP "\bcapible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcapible\b/capable/g" *.tw $GREP "\bcaptial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaptial\b/capital/g" *.tw $GREP "\bcaptued\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaptued\b/captured/g" *.tw $GREP "\bcapturd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcapturd\b/captured/g" *.tw $GREP "\bcarachter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcarachter\b/character/g" *.tw $GREP "\bcaracterized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaracterized\b/characterized/g" *.tw $GREP "\bcarefull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcarefull\b/careful/g" *.tw $GREP "\bcareing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcareing\b/caring/g" *.tw $GREP "\bcarismatic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcarismatic\b/charismatic/g" *.tw $GREP "\bCarmalite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarmalite\b/Carmelite/g" *.tw $GREP "\bCarnagie\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarnagie\b/Carnegie/g" *.tw $GREP "\bCarnagie-Mellon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarnagie-Mellon\b/Carnegie-Mellon/g" *.tw $GREP "\bCarnigie\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarnigie\b/Carnegie/g" *.tw $GREP "\bCarnigie-Mellon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarnigie-Mellon\b/Carnegie-Mellon/g" *.tw $GREP "\bcarreer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcarreer\b/career/g" *.tw $GREP "\bcarrers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcarrers\b/careers/g" *.tw $GREP "\bCarribbean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarribbean\b/Caribbean/g" *.tw $GREP "\bCarribean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarribean\b/Caribbean/g" *.tw $GREP "\bcarryng\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcarryng\b/carrying/g" *.tw $GREP "\bcartdridge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcartdridge\b/cartridge/g" *.tw $GREP "\bCarthagian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCarthagian\b/Carthaginian/g" *.tw $GREP "\bcarthographer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcarthographer\b/cartographer/g" *.tw $GREP "\bcartilege\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcartilege\b/cartilage/g" *.tw $GREP "\bcartilidge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcartilidge\b/cartilage/g" *.tw $GREP "\bcartrige\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcartrige\b/cartridge/g" *.tw $GREP "\bcasette\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasette\b/cassette/g" *.tw $GREP "\bcasion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasion\b/caisson/g" *.tw $GREP "\bcassawory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcassawory\b/cassowary/g" *.tw $GREP "\bcassowarry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcassowarry\b/cassowary/g" *.tw $GREP "\bcasue\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasue\b/cause/g" *.tw $GREP "\bcasued\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasued\b/caused/g" *.tw $GREP "\bcasues\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasues\b/causes/g" *.tw $GREP "\bcasuing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasuing\b/causing/g" *.tw $GREP "\bcasulaties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasulaties\b/casualties/g" *.tw $GREP "\bcasulaty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcasulaty\b/casualty/g" *.tw $GREP "\bcatagories\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatagories\b/categories/g" *.tw $GREP "\bcatagorized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatagorized\b/categorized/g" *.tw $GREP "\bcatagory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatagory\b/category/g" *.tw $GREP "\bcatapillar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatapillar\b/caterpillar/g" *.tw $GREP "\bcatapillars\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatapillars\b/caterpillars/g" *.tw $GREP "\bcatapiller\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatapiller\b/caterpillar/g" *.tw $GREP "\bcatapillers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatapillers\b/caterpillars/g" *.tw $GREP "\bcatepillar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatepillar\b/caterpillar/g" *.tw $GREP "\bcatepillars\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatepillars\b/caterpillars/g" *.tw $GREP "\bcatergorize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatergorize\b/categorize/g" *.tw $GREP "\bcatergorized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatergorized\b/categorized/g" *.tw $GREP "\bcaterpilar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaterpilar\b/caterpillar/g" *.tw $GREP "\bcaterpilars\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaterpilars\b/caterpillars/g" *.tw $GREP "\bcaterpiller\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaterpiller\b/caterpillar/g" *.tw $GREP "\bcaterpillers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcaterpillers\b/caterpillars/g" *.tw $GREP "\bcathlic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcathlic\b/catholic/g" *.tw $GREP "\bcatholocism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatholocism\b/catholicism/g" *.tw $GREP "\bcatterpilar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatterpilar\b/caterpillar/g" *.tw $GREP "\bcatterpilars\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatterpilars\b/caterpillars/g" *.tw $GREP "\bcatterpillar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatterpillar\b/caterpillar/g" *.tw $GREP "\bcatterpillars\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcatterpillars\b/caterpillars/g" *.tw $GREP "\bcattleship\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcattleship\b/battleship/g" *.tw $GREP "\bcausalities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcausalities\b/casualties/g" *.tw $GREP "\bCeasar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCeasar\b/Caesar/g" *.tw $GREP "\bCelcius\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCelcius\b/Celsius/g" *.tw $GREP "\bcellpading\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcellpading\b/cellpadding/g" *.tw $GREP "\bcementary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcementary\b/cemetery/g" *.tw $GREP "\bcemetarey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcemetarey\b/cemetery/g" *.tw $GREP "\bcemetaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcemetaries\b/cemeteries/g" *.tw $GREP "\bcemetary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcemetary\b/cemetery/g" *.tw $GREP "\bcencus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcencus\b/census/g" *.tw $GREP "\bcententenial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcententenial\b/centennial/g" *.tw $GREP "\bcentruies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcentruies\b/centuries/g" *.tw $GREP "\bcentruy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcentruy\b/century/g" *.tw $GREP "\bcentuties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcentuties\b/centuries/g" *.tw $GREP "\bcentuty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcentuty\b/century/g" *.tw $GREP "\bcerimonial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcerimonial\b/ceremonial/g" *.tw $GREP "\bcerimonies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcerimonies\b/ceremonies/g" *.tw $GREP "\bcerimonious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcerimonious\b/ceremonious/g" *.tw $GREP "\bcerimony\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcerimony\b/ceremony/g" *.tw $GREP "\bceromony\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bceromony\b/ceremony/g" *.tw $GREP "\bcertainity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcertainity\b/certainty/g" *.tw $GREP "\bcertian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcertian\b/certain/g" *.tw $GREP "\bchalenging\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchalenging\b/challenging/g" *.tw $GREP "\bchallange\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchallange\b/challenge/g" *.tw $GREP "\bchallanged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchallanged\b/challenged/g" *.tw $GREP "\bchallege\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchallege\b/challenge/g" *.tw $GREP "\bChampange\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bChampange\b/Champagne/g" *.tw $GREP "\bchangable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchangable\b/changeable/g" *.tw $GREP "\bcharachter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharachter\b/character/g" *.tw $GREP "\bcharachters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharachters\b/characters/g" *.tw $GREP "\bcharactersistic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharactersistic\b/characteristic/g" *.tw $GREP "\bcharactor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharactor\b/character/g" *.tw $GREP "\bcharactors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharactors\b/characters/g" *.tw $GREP "\bcharasmatic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharasmatic\b/charismatic/g" *.tw $GREP "\bcharaterized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharaterized\b/characterized/g" *.tw $GREP "\bchariman\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchariman\b/chairman/g" *.tw $GREP "\bcharistics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcharistics\b/characteristics/g" *.tw $GREP "\bcheif\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcheif\b/chief/g" *.tw $GREP "\bcheifs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcheifs\b/chiefs/g" *.tw $GREP "\bchemcial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchemcial\b/chemical/g" *.tw $GREP "\bchemcially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchemcially\b/chemically/g" *.tw $GREP "\bchemestry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchemestry\b/chemistry/g" *.tw $GREP "\bchemicaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchemicaly\b/chemically/g" *.tw $GREP "\bchildbird\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchildbird\b/childbirth/g" *.tw $GREP "\bchilden\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchilden\b/children/g" *.tw $GREP "\bchoclate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchoclate\b/chocolate/g" *.tw $GREP "\bchoosen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchoosen\b/chosen/g" *.tw $GREP "\bchracter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchracter\b/character/g" *.tw $GREP "\bchuch\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchuch\b/church/g" *.tw $GREP "\bchurchs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bchurchs\b/churches/g" *.tw $GREP "\bCincinatti\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCincinatti\b/Cincinnati/g" *.tw $GREP "\bCincinnatti\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCincinnatti\b/Cincinnati/g" *.tw $GREP "\bcirculaton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcirculaton\b/circulation/g" *.tw $GREP "\bcircumsicion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcircumsicion\b/circumcision/g" *.tw $GREP "\bcircut\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcircut\b/circuit/g" *.tw $GREP "\bciricuit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bciricuit\b/circuit/g" *.tw $GREP "\bciriculum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bciriculum\b/curriculum/g" *.tw $GREP "\bcivillian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcivillian\b/civilian/g" *.tw $GREP "\bclaer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclaer\b/clear/g" *.tw $GREP "\bclaerer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclaerer\b/clearer/g" *.tw $GREP "\bclaerly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclaerly\b/clearly/g" *.tw $GREP "\bclaimes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclaimes\b/claims/g" *.tw $GREP "\bclas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclas\b/class/g" *.tw $GREP "\bclasic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclasic\b/classic/g" *.tw $GREP "\bclasical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclasical\b/classical/g" *.tw $GREP "\bclasically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclasically\b/classically/g" *.tw $GREP "\bcleareance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcleareance\b/clearance/g" *.tw $GREP "\bclincial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclincial\b/clinical/g" *.tw $GREP "\bclinicaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bclinicaly\b/clinically/g" *.tw $GREP "\bcmo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcmo\b/com/g" *.tw $GREP "\bcmoputer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcmoputer\b/computer/g" *.tw $GREP "\bco-incided\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bco-incided\b/coincided/g" *.tw $GREP "\bCoca Cola\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bCoca Cola\b/Coca-Cola/g" *.tw $GREP "\bcoctail\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoctail\b/cocktail/g" *.tw $GREP "\bcoform\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoform\b/conform/g" *.tw $GREP "\bcognizent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcognizent\b/cognizant/g" *.tw $GREP "\bcoincedentally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoincedentally\b/coincidentally/g" *.tw $GREP "\bcolaborations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcolaborations\b/collaborations/g" *.tw $GREP "\bcolateral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcolateral\b/collateral/g" *.tw $GREP "\bcolelctive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcolelctive\b/collective/g" *.tw $GREP "\bcollaberative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollaberative\b/collaborative/g" *.tw $GREP "\bcollecton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollecton\b/collection/g" *.tw $GREP "\bcollegue\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollegue\b/colleague/g" *.tw $GREP "\bcollegues\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollegues\b/colleagues/g" *.tw $GREP "\bcollonade\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollonade\b/colonnade/g" *.tw $GREP "\bcollonies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollonies\b/colonies/g" *.tw $GREP "\bcollony\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollony\b/colony/g" *.tw $GREP "\bcollosal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcollosal\b/colossal/g" *.tw $GREP "\bcolonizators\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcolonizators\b/colonizers/g" *.tw $GREP "\bcomando\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomando\b/commando/g" *.tw $GREP "\bcomandos\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomandos\b/commandos/g" *.tw $GREP "\bcomany\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomany\b/company/g" *.tw $GREP "\bcomapany\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomapany\b/company/g" *.tw $GREP "\bcomback\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomback\b/comeback/g" *.tw $GREP "\bcombanations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcombanations\b/combinations/g" *.tw $GREP "\bcombinatins\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcombinatins\b/combinations/g" *.tw $GREP "\bcombusion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcombusion\b/combustion/g" *.tw $GREP "\bcomdemnation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomdemnation\b/condemnation/g" *.tw $GREP "\bcomemmorates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomemmorates\b/commemorates/g" *.tw $GREP "\bcomemoretion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomemoretion\b/commemoration/g" *.tw $GREP "\bcomision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomision\b/commission/g" *.tw $GREP "\bcomisioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomisioned\b/commissioned/g" *.tw $GREP "\bcomisioner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomisioner\b/commissioner/g" *.tw $GREP "\bcomisioning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomisioning\b/commissioning/g" *.tw $GREP "\bcomisions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomisions\b/commissions/g" *.tw $GREP "\bcomission\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomission\b/commission/g" *.tw $GREP "\bcomissioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomissioned\b/commissioned/g" *.tw $GREP "\bcomissioner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomissioner\b/commissioner/g" *.tw $GREP "\bcomissioning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomissioning\b/commissioning/g" *.tw $GREP "\bcomissions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomissions\b/commissions/g" *.tw $GREP "\bcomited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomited\b/committed/g" *.tw $GREP "\bcomiting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomiting\b/committing/g" *.tw $GREP "\bcomitted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomitted\b/committed/g" *.tw $GREP "\bcomittee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomittee\b/committee/g" *.tw $GREP "\bcomitting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomitting\b/committing/g" *.tw $GREP "\bcommandoes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommandoes\b/commandos/g" *.tw $GREP "\bcommedic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommedic\b/comedic/g" *.tw $GREP "\bcommemerative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommemerative\b/commemorative/g" *.tw $GREP "\bcommemmorate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommemmorate\b/commemorate/g" *.tw $GREP "\bcommemmorating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommemmorating\b/commemorating/g" *.tw $GREP "\bcommerical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommerical\b/commercial/g" *.tw $GREP "\bcommerically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommerically\b/commercially/g" *.tw $GREP "\bcommericial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommericial\b/commercial/g" *.tw $GREP "\bcommericially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommericially\b/commercially/g" *.tw $GREP "\bcommerorative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommerorative\b/commemorative/g" *.tw $GREP "\bcomming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomming\b/coming/g" *.tw $GREP "\bcomminication\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomminication\b/communication/g" *.tw $GREP "\bcommision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommision\b/commission/g" *.tw $GREP "\bcommisioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommisioned\b/commissioned/g" *.tw $GREP "\bcommisioner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommisioner\b/commissioner/g" *.tw $GREP "\bcommisioning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommisioning\b/commissioning/g" *.tw $GREP "\bcommisions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommisions\b/commissions/g" *.tw $GREP "\bcommited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommited\b/committed/g" *.tw $GREP "\bcommitee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommitee\b/committee/g" *.tw $GREP "\bcommiting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommiting\b/committing/g" *.tw $GREP "\bcommitte\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommitte\b/committee/g" *.tw $GREP "\bcommittment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommittment\b/commitment/g" *.tw $GREP "\bcommittments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommittments\b/commitments/g" *.tw $GREP "\bcommmemorated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommmemorated\b/commemorated/g" *.tw $GREP "\bcommongly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommongly\b/commonly/g" *.tw $GREP "\bcommonweath\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommonweath\b/commonwealth/g" *.tw $GREP "\bcommuications\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommuications\b/communications/g" *.tw $GREP "\bcommuinications\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommuinications\b/communications/g" *.tw $GREP "\bcommunciation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommunciation\b/communication/g" *.tw $GREP "\bcommuniation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommuniation\b/communication/g" *.tw $GREP "\bcommunites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcommunites\b/communities/g" *.tw $GREP "\bcompability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompability\b/compatibility/g" *.tw $GREP "\bcomparision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomparision\b/comparison/g" *.tw $GREP "\bcomparisions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomparisions\b/comparisons/g" *.tw $GREP "\bcomparitive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomparitive\b/comparative/g" *.tw $GREP "\bcomparitively\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomparitively\b/comparatively/g" *.tw $GREP "\bcompatabilities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatabilities\b/compatibilities/g" *.tw $GREP "\bcompatability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatability\b/compatibility/g" *.tw $GREP "\bcompatable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatable\b/compatible/g" *.tw $GREP "\bcompatablities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatablities\b/compatibilities/g" *.tw $GREP "\bcompatablity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatablity\b/compatibility/g" *.tw $GREP "\bcompatiable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatiable\b/compatible/g" *.tw $GREP "\bcompatiblities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatiblities\b/compatibilities/g" *.tw $GREP "\bcompatiblity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompatiblity\b/compatibility/g" *.tw $GREP "\bcompeitions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompeitions\b/competitions/g" *.tw $GREP "\bcompensantion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompensantion\b/compensation/g" *.tw $GREP "\bcompetance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompetance\b/competence/g" *.tw $GREP "\bcompetant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompetant\b/competent/g" *.tw $GREP "\bcompetative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompetative\b/competitive/g" *.tw $GREP "\bcompetitiion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompetitiion\b/competition/g" *.tw $GREP "\bcompetive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompetive\b/competitive/g" *.tw $GREP "\bcompetiveness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompetiveness\b/competitiveness/g" *.tw $GREP "\bcomphrehensive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomphrehensive\b/comprehensive/g" *.tw $GREP "\bcompitent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompitent\b/competent/g" *.tw $GREP "\bcompletedthe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompletedthe\b/completed the/g" *.tw $GREP "\bcompletelyl\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompletelyl\b/completely/g" *.tw $GREP "\bcompletetion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompletetion\b/completion/g" *.tw $GREP "\bcomplier\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomplier\b/compiler/g" *.tw $GREP "\bcomponant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomponant\b/component/g" *.tw $GREP "\bcomprable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomprable\b/comparable/g" *.tw $GREP "\bcomprimise\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomprimise\b/compromise/g" *.tw $GREP "\bcompulsary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompulsary\b/compulsory/g" *.tw $GREP "\bcompulsery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcompulsery\b/compulsory/g" *.tw $GREP "\bcomputarized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcomputarized\b/computerized/g" *.tw $GREP "\bconcensus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconcensus\b/consensus/g" *.tw $GREP "\bconcider\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconcider\b/consider/g" *.tw $GREP "\bconcidered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconcidered\b/considered/g" *.tw $GREP "\bconcidering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconcidering\b/considering/g" *.tw $GREP "\bconciders\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconciders\b/considers/g" *.tw $GREP "\bconcieted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconcieted\b/conceited/g" *.tw $GREP "\bconcieved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconcieved\b/conceived/g" *.tw $GREP "\bconcious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconcious\b/conscious/g" *.tw $GREP "\bconciously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconciously\b/consciously/g" *.tw $GREP "\bconciousness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconciousness\b/consciousness/g" *.tw $GREP "\bcondamned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcondamned\b/condemned/g" *.tw $GREP "\bcondemmed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcondemmed\b/condemned/g" *.tw $GREP "\bcondidtion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcondidtion\b/condition/g" *.tw $GREP "\bcondidtions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcondidtions\b/conditions/g" *.tw $GREP "\bconditionsof\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconditionsof\b/conditions of/g" *.tw $GREP "\bconected\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconected\b/connected/g" *.tw $GREP "\bconection\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconection\b/connection/g" *.tw $GREP "\bconesencus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconesencus\b/consensus/g" *.tw $GREP "\bconfidental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconfidental\b/confidential/g" *.tw $GREP "\bconfidentally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconfidentally\b/confidentially/g" *.tw $GREP "\bconfids\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconfids\b/confides/g" *.tw $GREP "\bconfigureable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconfigureable\b/configurable/g" *.tw $GREP "\bconfortable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconfortable\b/comfortable/g" *.tw $GREP "\bcongradulations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcongradulations\b/congratulations/g" *.tw $GREP "\bcongresional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcongresional\b/congressional/g" *.tw $GREP "\bconived\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconived\b/connived/g" *.tw $GREP "\bconjecutre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconjecutre\b/conjecture/g" *.tw $GREP "\bconjuction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconjuction\b/conjunction/g" *.tw $GREP "\bConneticut\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bConneticut\b/Connecticut/g" *.tw $GREP "\bconotations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconotations\b/connotations/g" *.tw $GREP "\bconquerd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconquerd\b/conquered/g" *.tw $GREP "\bconquerer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconquerer\b/conqueror/g" *.tw $GREP "\bconquerers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconquerers\b/conquerors/g" *.tw $GREP "\bconqured\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconqured\b/conquered/g" *.tw $GREP "\bconscent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconscent\b/consent/g" *.tw $GREP "\bconsciouness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsciouness\b/consciousness/g" *.tw $GREP "\bconsdider\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsdider\b/consider/g" *.tw $GREP "\bconsdidered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsdidered\b/considered/g" *.tw $GREP "\bconsdiered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsdiered\b/considered/g" *.tw $GREP "\bconsectutive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsectutive\b/consecutive/g" *.tw $GREP "\bconsenquently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsenquently\b/consequently/g" *.tw $GREP "\bconsentrate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsentrate\b/concentrate/g" *.tw $GREP "\bconsentrated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsentrated\b/concentrated/g" *.tw $GREP "\bconsentrates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsentrates\b/concentrates/g" *.tw $GREP "\bconsept\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsept\b/concept/g" *.tw $GREP "\bconsequentually\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsequentually\b/consequently/g" *.tw $GREP "\bconsequeseces\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsequeseces\b/consequences/g" *.tw $GREP "\bconsern\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsern\b/concern/g" *.tw $GREP "\bconserned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconserned\b/concerned/g" *.tw $GREP "\bconserning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconserning\b/concerning/g" *.tw $GREP "\bconservitive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconservitive\b/conservative/g" *.tw $GREP "\bconsiciousness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsiciousness\b/consciousness/g" *.tw $GREP "\bconsicousness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsicousness\b/consciousness/g" *.tw $GREP "\bconsiderd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsiderd\b/considered/g" *.tw $GREP "\bconsideres\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsideres\b/considered/g" *.tw $GREP "\bconsious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsious\b/conscious/g" *.tw $GREP "\bconsistant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsistant\b/consistent/g" *.tw $GREP "\bconsistantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsistantly\b/consistently/g" *.tw $GREP "\bconsituencies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsituencies\b/constituencies/g" *.tw $GREP "\bconsituency\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsituency\b/constituency/g" *.tw $GREP "\bconsituted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsituted\b/constituted/g" *.tw $GREP "\bconsitution\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsitution\b/constitution/g" *.tw $GREP "\bconsitutional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsitutional\b/constitutional/g" *.tw $GREP "\bconsolodate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsolodate\b/consolidate/g" *.tw $GREP "\bconsolodated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsolodated\b/consolidated/g" *.tw $GREP "\bconsonent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsonent\b/consonant/g" *.tw $GREP "\bconsonents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsonents\b/consonants/g" *.tw $GREP "\bconsorcium\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsorcium\b/consortium/g" *.tw $GREP "\bconspiracys\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconspiracys\b/conspiracies/g" *.tw $GREP "\bconspiriator\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconspiriator\b/conspirator/g" *.tw $GREP "\bconstaints\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstaints\b/constraints/g" *.tw $GREP "\bconstanly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstanly\b/constantly/g" *.tw $GREP "\bconstarnation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstarnation\b/consternation/g" *.tw $GREP "\bconstatn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstatn\b/constant/g" *.tw $GREP "\bconstinually\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstinually\b/continually/g" *.tw $GREP "\bconstituant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstituant\b/constituent/g" *.tw $GREP "\bconstituants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstituants\b/constituents/g" *.tw $GREP "\bconstituion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstituion\b/constitution/g" *.tw $GREP "\bconstituional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstituional\b/constitutional/g" *.tw $GREP "\bconsttruction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsttruction\b/construction/g" *.tw $GREP "\bconstuction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconstuction\b/construction/g" *.tw $GREP "\bcontstruction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontstruction\b/construction/g" *.tw $GREP "\bconsulant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsulant\b/consultant/g" *.tw $GREP "\bconsumate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsumate\b/consummate/g" *.tw $GREP "\bconsumated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconsumated\b/consummated/g" *.tw $GREP "\bcontaiminate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontaiminate\b/contaminate/g" *.tw $GREP "\bcontaines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontaines\b/contains/g" *.tw $GREP "\bcontamporaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontamporaries\b/contemporaries/g" *.tw $GREP "\bcontamporary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontamporary\b/contemporary/g" *.tw $GREP "\bcontempoary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontempoary\b/contemporary/g" *.tw $GREP "\bcontemporaneus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontemporaneus\b/contemporaneous/g" *.tw $GREP "\bcontempory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontempory\b/contemporary/g" *.tw $GREP "\bcontendor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontendor\b/contender/g" *.tw $GREP "\bcontian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontian\b/contain/g" *.tw $GREP "\bcontians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontians\b/contains/g" *.tw $GREP "\bcontibute\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontibute\b/contribute/g" *.tw $GREP "\bcontibuted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontibuted\b/contributed/g" *.tw $GREP "\bcontibutes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontibutes\b/contributes/g" *.tw $GREP "\bcontigent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontigent\b/contingent/g" *.tw $GREP "\bcontined\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontined\b/continued/g" *.tw $GREP "\bcontinential\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontinential\b/continental/g" *.tw $GREP "\bcontinous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontinous\b/continuous/g" *.tw $GREP "\bcontinously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontinously\b/continuously/g" *.tw $GREP "\bcontinueing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontinueing\b/continuing/g" *.tw $GREP "\bcontravercial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontravercial\b/controversial/g" *.tw $GREP "\bcontraversy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontraversy\b/controversy/g" *.tw $GREP "\bcontributer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontributer\b/contributor/g" *.tw $GREP "\bcontributers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontributers\b/contributors/g" *.tw $GREP "\bcontritutions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontritutions\b/contributions/g" *.tw $GREP "\bcontroled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontroled\b/controlled/g" *.tw $GREP "\bcontroling\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontroling\b/controlling/g" *.tw $GREP "\bcontroll\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontroll\b/control/g" *.tw $GREP "\bcontrolls\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontrolls\b/controls/g" *.tw $GREP "\bcontrovercial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontrovercial\b/controversial/g" *.tw $GREP "\bcontrovercy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontrovercy\b/controversy/g" *.tw $GREP "\bcontroveries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontroveries\b/controversies/g" *.tw $GREP "\bcontroversal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontroversal\b/controversial/g" *.tw $GREP "\bcontroversey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontroversey\b/controversy/g" *.tw $GREP "\bcontrovertial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontrovertial\b/controversial/g" *.tw $GREP "\bcontrovery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontrovery\b/controversy/g" *.tw $GREP "\bcontruction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcontruction\b/construction/g" *.tw $GREP "\bconveinent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconveinent\b/convenient/g" *.tw $GREP "\bconvenant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconvenant\b/covenant/g" *.tw $GREP "\bconvential\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconvential\b/conventional/g" *.tw $GREP "\bconvertables\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconvertables\b/convertibles/g" *.tw $GREP "\bconvertion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconvertion\b/conversion/g" *.tw $GREP "\bconviced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconviced\b/convinced/g" *.tw $GREP "\bconvienient\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bconvienient\b/convenient/g" *.tw $GREP "\bcoordiantion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoordiantion\b/coordination/g" *.tw $GREP "\bcoorperations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoorperations\b/corporations/g" *.tw $GREP "\bcopmetitors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcopmetitors\b/competitors/g" *.tw $GREP "\bcoputer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoputer\b/computer/g" *.tw $GREP "\bcopywrite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcopywrite\b/copyright/g" *.tw $GREP "\bcoridal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoridal\b/cordial/g" *.tw $GREP "\bcornmitted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcornmitted\b/committed/g" *.tw $GREP "\bcorosion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorosion\b/corrosion/g" *.tw $GREP "\bcorparate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorparate\b/corporate/g" *.tw $GREP "\bcorperations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorperations\b/corporations/g" *.tw $GREP "\bcorrecters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrecters\b/correctors/g" *.tw $GREP "\bcorreponding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorreponding\b/corresponding/g" *.tw $GREP "\bcorreposding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorreposding\b/corresponding/g" *.tw $GREP "\bcorrespondant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrespondant\b/correspondent/g" *.tw $GREP "\bcorrespondants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrespondants\b/correspondents/g" *.tw $GREP "\bcorridoors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorridoors\b/corridors/g" *.tw $GREP "\bcorrispond\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrispond\b/correspond/g" *.tw $GREP "\bcorrispondant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrispondant\b/correspondent/g" *.tw $GREP "\bcorrispondants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrispondants\b/correspondents/g" *.tw $GREP "\bcorrisponded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrisponded\b/corresponded/g" *.tw $GREP "\bcorrisponding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrisponding\b/corresponding/g" *.tw $GREP "\bcorrisponds\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcorrisponds\b/corresponds/g" *.tw $GREP "\bcostitution\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcostitution\b/constitution/g" *.tw $GREP "\bcoucil\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcoucil\b/council/g" *.tw $GREP "\bcounries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcounries\b/countries/g" *.tw $GREP "\bcountains\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcountains\b/contains/g" *.tw $GREP "\bcountires\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcountires\b/countries/g" *.tw $GREP "\bcreaeted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcreaeted\b/created/g" *.tw $GREP "\bcreche\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcreche\b/cr�che/g" *.tw $GREP "\bcreedence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcreedence\b/credence/g" *.tw $GREP "\bcritereon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcritereon\b/criterion/g" *.tw $GREP "\bcriterias\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcriterias\b/criteria/g" *.tw $GREP "\bcriticists\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcriticists\b/critics/g" *.tw $GREP "\bcritisising\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcritisising\b/criticising/g" *.tw $GREP "\bcritisism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcritisism\b/criticism/g" *.tw $GREP "\bcritisisms\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcritisisms\b/criticisms/g" *.tw $GREP "\bcritized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcritized\b/criticized/g" *.tw $GREP "\bcritizing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcritizing\b/criticizing/g" *.tw $GREP "\bcrockodiles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrockodiles\b/crocodiles/g" *.tw $GREP "\bcrowm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrowm\b/crown/g" *.tw $GREP "\bcrtical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrtical\b/critical/g" *.tw $GREP "\bcrticised\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrticised\b/criticised/g" *.tw $GREP "\bcrucifiction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrucifiction\b/crucifixion/g" *.tw $GREP "\bcrusies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrusies\b/cruises/g" *.tw $GREP "\bcrutial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrutial\b/crucial/g" *.tw $GREP "\bcrystalisation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcrystalisation\b/crystallisation/g" *.tw $GREP "\bculiminating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bculiminating\b/culminating/g" *.tw $GREP "\bcumulatative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcumulatative\b/cumulative/g" *.tw $GREP "\bcurch\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcurch\b/church/g" *.tw $GREP "\bcurcuit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcurcuit\b/circuit/g" *.tw $GREP "\bcurrenly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcurrenly\b/currently/g" *.tw $GREP "\bcurriculem\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcurriculem\b/curriculum/g" *.tw $GREP "\bcxan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcxan\b/cyan/g" *.tw $GREP "\bcyclinder\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bcyclinder\b/cylinder/g" *.tw $GREP "\bdacquiri\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdacquiri\b/daiquiri/g" *.tw $GREP "\bdaed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdaed\b/dead/g" *.tw $GREP "\bdalmation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdalmation\b/dalmatian/g" *.tw $GREP "\bdamenor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdamenor\b/demeanor/g" *.tw $GREP "\bdammage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdammage\b/damage/g" *.tw $GREP "\bDardenelles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bDardenelles\b/Dardanelles/g" *.tw $GREP "\bdaugher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdaugher\b/daughter/g" *.tw $GREP "\bdebateable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdebateable\b/debatable/g" *.tw $GREP "\bdecendant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecendant\b/descendant/g" *.tw $GREP "\bdecendants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecendants\b/descendants/g" *.tw $GREP "\bdecendent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecendent\b/descendant/g" *.tw $GREP "\bdecendents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecendents\b/descendants/g" *.tw $GREP "\bdecideable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecideable\b/decidable/g" *.tw $GREP "\bdecidely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecidely\b/decidedly/g" *.tw $GREP "\bdecieved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecieved\b/deceived/g" *.tw $GREP "\bdecison\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecison\b/decision/g" *.tw $GREP "\bdecomissioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecomissioned\b/decommissioned/g" *.tw $GREP "\bdecomposit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecomposit\b/decompose/g" *.tw $GREP "\bdecomposited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecomposited\b/decomposed/g" *.tw $GREP "\bdecompositing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecompositing\b/decomposing/g" *.tw $GREP "\bdecomposits\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecomposits\b/decomposes/g" *.tw $GREP "\bdecress\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecress\b/decrees/g" *.tw $GREP "\bdecribe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecribe\b/describe/g" *.tw $GREP "\bdecribed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecribed\b/described/g" *.tw $GREP "\bdecribes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecribes\b/describes/g" *.tw $GREP "\bdecribing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdecribing\b/describing/g" *.tw $GREP "\bdectect\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdectect\b/detect/g" *.tw $GREP "\bdefendent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefendent\b/defendant/g" *.tw $GREP "\bdefendents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefendents\b/defendants/g" *.tw $GREP "\bdeffensively\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeffensively\b/defensively/g" *.tw $GREP "\bdeffine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeffine\b/define/g" *.tw $GREP "\bdeffined\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeffined\b/defined/g" *.tw $GREP "\bdefinance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinance\b/defiance/g" *.tw $GREP "\bdefinate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinate\b/definite/g" *.tw $GREP "\bdefinately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinately\b/definitely/g" *.tw $GREP "\bdefinatly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinatly\b/definitely/g" *.tw $GREP "\bdefinetly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinetly\b/definitely/g" *.tw $GREP "\bdefinining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinining\b/defining/g" *.tw $GREP "\bdefinit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinit\b/definite/g" *.tw $GREP "\bdefinitly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefinitly\b/definitely/g" *.tw $GREP "\bdefiniton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefiniton\b/definition/g" *.tw $GREP "\bdefintion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdefintion\b/definition/g" *.tw $GREP "\bdegrate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdegrate\b/degrade/g" *.tw $GREP "\bdelagates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdelagates\b/delegates/g" *.tw $GREP "\bdelapidated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdelapidated\b/dilapidated/g" *.tw $GREP "\bdelerious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdelerious\b/delirious/g" *.tw $GREP "\bdelevopment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdelevopment\b/development/g" *.tw $GREP "\bdeliberatly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeliberatly\b/deliberately/g" *.tw $GREP "\bdelusionally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdelusionally\b/delusively/g" *.tw $GREP "\bdemenor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdemenor\b/demeanor/g" *.tw $GREP "\bdemographical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdemographical\b/demographic/g" *.tw $GREP "\bdemolision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdemolision\b/demolition/g" *.tw $GREP "\bdemorcracy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdemorcracy\b/democracy/g" *.tw $GREP "\bdemostration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdemostration\b/demonstration/g" *.tw $GREP "\bdenegrating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdenegrating\b/denigrating/g" *.tw $GREP "\bdensly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdensly\b/densely/g" *.tw $GREP "\bdeparment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeparment\b/department/g" *.tw $GREP "\bdeparmental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeparmental\b/departmental/g" *.tw $GREP "\bdeparments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeparments\b/departments/g" *.tw $GREP "\bdependance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdependance\b/dependence/g" *.tw $GREP "\bdependancy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdependancy\b/dependency/g" *.tw $GREP "\bderiviated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bderiviated\b/derived/g" *.tw $GREP "\bderivitive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bderivitive\b/derivative/g" *.tw $GREP "\bderogitory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bderogitory\b/derogatory/g" *.tw $GREP "\bdescendands\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescendands\b/descendants/g" *.tw $GREP "\bdescibed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescibed\b/described/g" *.tw $GREP "\bdescision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescision\b/decision/g" *.tw $GREP "\bdescisions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescisions\b/decisions/g" *.tw $GREP "\bdescriibes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescriibes\b/describes/g" *.tw $GREP "\bdescripters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescripters\b/descriptors/g" *.tw $GREP "\bdescripton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescripton\b/description/g" *.tw $GREP "\bdesctruction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesctruction\b/destruction/g" *.tw $GREP "\bdescuss\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdescuss\b/discuss/g" *.tw $GREP "\bdesgined\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesgined\b/designed/g" *.tw $GREP "\bdeside\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeside\b/decide/g" *.tw $GREP "\bdesigining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesigining\b/designing/g" *.tw $GREP "\bdesinations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesinations\b/destinations/g" *.tw $GREP "\bdesintegrated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesintegrated\b/disintegrated/g" *.tw $GREP "\bdesintegration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesintegration\b/disintegration/g" *.tw $GREP "\bdesireable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesireable\b/desirable/g" *.tw $GREP "\bdesitned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesitned\b/destined/g" *.tw $GREP "\bdesktiop\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesktiop\b/desktop/g" *.tw $GREP "\bdesorder\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesorder\b/disorder/g" *.tw $GREP "\bdesoriented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdesoriented\b/disoriented/g" *.tw $GREP "\bdespict\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdespict\b/depict/g" *.tw $GREP "\bdespiration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdespiration\b/desperation/g" *.tw $GREP "\bdessicated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdessicated\b/desiccated/g" *.tw $GREP "\bdessigned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdessigned\b/designed/g" *.tw $GREP "\bdestablized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdestablized\b/destabilized/g" *.tw $GREP "\bdestory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdestory\b/destroy/g" *.tw $GREP "\bdetailled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdetailled\b/detailed/g" *.tw $GREP "\bdetatched\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdetatched\b/detached/g" *.tw $GREP "\bdeteoriated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeteoriated\b/deteriorated/g" *.tw $GREP "\bdeteriate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeteriate\b/deteriorate/g" *.tw $GREP "\bdeterioriating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeterioriating\b/deteriorating/g" *.tw $GREP "\bdeterminining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdeterminining\b/determining/g" *.tw $GREP "\bdetremental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdetremental\b/detrimental/g" *.tw $GREP "\bdevasted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevasted\b/devastated/g" *.tw $GREP "\bdevelope\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevelope\b/develop/g" *.tw $GREP "\bdevelopement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevelopement\b/development/g" *.tw $GREP "\bdevelopped\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevelopped\b/developed/g" *.tw $GREP "\bdevelpment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevelpment\b/development/g" *.tw $GREP "\bdevels\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevels\b/delves/g" *.tw $GREP "\bdevestated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevestated\b/devastated/g" *.tw $GREP "\bdevestating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevestating\b/devastating/g" *.tw $GREP "\bdevide\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevide\b/divide/g" *.tw $GREP "\bdevided\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevided\b/divided/g" *.tw $GREP "\bdevistating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevistating\b/devastating/g" *.tw $GREP "\bdevolopement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdevolopement\b/development/g" *.tw $GREP "\bdiablical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiablical\b/diabolical/g" *.tw $GREP "\bdiamons\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiamons\b/diamonds/g" *.tw $GREP "\bdiaster\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiaster\b/disaster/g" *.tw $GREP "\bdichtomy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdichtomy\b/dichotomy/g" *.tw $GREP "\bdiconnects\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiconnects\b/disconnects/g" *.tw $GREP "\bdicover\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdicover\b/discover/g" *.tw $GREP "\bdicovered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdicovered\b/discovered/g" *.tw $GREP "\bdicovering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdicovering\b/discovering/g" *.tw $GREP "\bdicovers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdicovers\b/discovers/g" *.tw $GREP "\bdicovery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdicovery\b/discovery/g" *.tw $GREP "\bdictionarys\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdictionarys\b/dictionaries/g" *.tw $GREP "\bdicussed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdicussed\b/discussed/g" *.tw $GREP "\bdidnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdidnt\b/didn't/g" *.tw $GREP "\bdieties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdieties\b/deities/g" *.tw $GREP "\bdiety\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiety\b/deity/g" *.tw $GREP "\bdiferent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiferent\b/different/g" *.tw $GREP "\bdiferrent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiferrent\b/different/g" *.tw $GREP "\bdifferentiatiations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdifferentiatiations\b/differentiations/g" *.tw $GREP "\bdiffernt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiffernt\b/different/g" *.tw $GREP "\bdifficulity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdifficulity\b/difficulty/g" *.tw $GREP "\bdiffrent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiffrent\b/different/g" *.tw $GREP "\bdificulties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdificulties\b/difficulties/g" *.tw $GREP "\bdificulty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdificulty\b/difficulty/g" *.tw $GREP "\bdimenions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdimenions\b/dimensions/g" *.tw $GREP "\bdimention\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdimention\b/dimension/g" *.tw $GREP "\bdimentional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdimentional\b/dimensional/g" *.tw $GREP "\bdimentions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdimentions\b/dimensions/g" *.tw $GREP "\bdimesnional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdimesnional\b/dimensional/g" *.tw $GREP "\bdiminuitive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiminuitive\b/diminutive/g" *.tw $GREP "\bdimunitive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdimunitive\b/diminutive/g" *.tw $GREP "\bdiosese\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiosese\b/diocese/g" *.tw $GREP "\bdiphtong\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiphtong\b/diphthong/g" *.tw $GREP "\bdiphtongs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiphtongs\b/diphthongs/g" *.tw $GREP "\bdiplomancy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiplomancy\b/diplomacy/g" *.tw $GREP "\bdipthong\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdipthong\b/diphthong/g" *.tw $GREP "\bdipthongs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdipthongs\b/diphthongs/g" *.tw $GREP "\bdirectoty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdirectoty\b/directory/g" *.tw $GREP "\bdirived\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdirived\b/derived/g" *.tw $GREP "\bdisagreeed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisagreeed\b/disagreed/g" *.tw $GREP "\bdisapeared\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisapeared\b/disappeared/g" *.tw $GREP "\bdisapointing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisapointing\b/disappointing/g" *.tw $GREP "\bdisappearred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisappearred\b/disappeared/g" *.tw $GREP "\bdisaproval\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisaproval\b/disapproval/g" *.tw $GREP "\bdisasterous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisasterous\b/disastrous/g" *.tw $GREP "\bdisatisfaction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisatisfaction\b/dissatisfaction/g" *.tw $GREP "\bdisatisfied\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisatisfied\b/dissatisfied/g" *.tw $GREP "\bdisatrous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisatrous\b/disastrous/g" *.tw $GREP "\bdiscontentment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiscontentment\b/discontent/g" *.tw $GREP "\bdiscribe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiscribe\b/describe/g" *.tw $GREP "\bdiscribed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiscribed\b/described/g" *.tw $GREP "\bdiscribes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiscribes\b/describes/g" *.tw $GREP "\bdiscribing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdiscribing\b/describing/g" *.tw $GREP "\bdisctinction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisctinction\b/distinction/g" *.tw $GREP "\bdisctinctive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisctinctive\b/distinctive/g" *.tw $GREP "\bdisemination\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisemination\b/dissemination/g" *.tw $GREP "\bdisenchanged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisenchanged\b/disenchanted/g" *.tw $GREP "\bdisiplined\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisiplined\b/disciplined/g" *.tw $GREP "\bdisobediance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisobediance\b/disobedience/g" *.tw $GREP "\bdisobediant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisobediant\b/disobedient/g" *.tw $GREP "\bdisolved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisolved\b/dissolved/g" *.tw $GREP "\bdisover\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisover\b/discover/g" *.tw $GREP "\bdispair\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdispair\b/despair/g" *.tw $GREP "\bdisparingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisparingly\b/disparagingly/g" *.tw $GREP "\bdispence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdispence\b/dispense/g" *.tw $GREP "\bdispenced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdispenced\b/dispensed/g" *.tw $GREP "\bdispencing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdispencing\b/dispensing/g" *.tw $GREP "\bdispicable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdispicable\b/despicable/g" *.tw $GREP "\bdispite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdispite\b/despite/g" *.tw $GREP "\bdispostion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdispostion\b/disposition/g" *.tw $GREP "\bdisproportiate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisproportiate\b/disproportionate/g" *.tw $GREP "\bdisputandem\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisputandem\b/disputandum/g" *.tw $GREP "\bdisricts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdisricts\b/districts/g" *.tw $GREP "\bdissagreement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissagreement\b/disagreement/g" *.tw $GREP "\bdissapear\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissapear\b/disappear/g" *.tw $GREP "\bdissapearance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissapearance\b/disappearance/g" *.tw $GREP "\bdissapeared\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissapeared\b/disappeared/g" *.tw $GREP "\bdissapearing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissapearing\b/disappearing/g" *.tw $GREP "\bdissapears\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissapears\b/disappears/g" *.tw $GREP "\bdissappear\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissappear\b/disappear/g" *.tw $GREP "\bdissappears\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissappears\b/disappears/g" *.tw $GREP "\bdissappointed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissappointed\b/disappointed/g" *.tw $GREP "\bdissarray\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissarray\b/disarray/g" *.tw $GREP "\bdissobediance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissobediance\b/disobedience/g" *.tw $GREP "\bdissobediant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissobediant\b/disobedient/g" *.tw $GREP "\bdissobedience\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissobedience\b/disobedience/g" *.tw $GREP "\bdissobedient\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdissobedient\b/disobedient/g" *.tw $GREP "\bdistiction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistiction\b/distinction/g" *.tw $GREP "\bdistingish\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistingish\b/distinguish/g" *.tw $GREP "\bdistingished\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistingished\b/distinguished/g" *.tw $GREP "\bdistingishes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistingishes\b/distinguishes/g" *.tw $GREP "\bdistingishing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistingishing\b/distinguishing/g" *.tw $GREP "\bdistingquished\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistingquished\b/distinguished/g" *.tw $GREP "\bdistrubution\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistrubution\b/distribution/g" *.tw $GREP "\bdistruction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistruction\b/destruction/g" *.tw $GREP "\bdistructive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdistructive\b/destructive/g" *.tw $GREP "\bditributed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bditributed\b/distributed/g" *.tw $GREP "\bdivice\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdivice\b/device/g" *.tw $GREP "\bdivinition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdivinition\b/divination/g" *.tw $GREP "\bdivison\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdivison\b/division/g" *.tw $GREP "\bdivisons\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdivisons\b/divisions/g" *.tw $GREP "\bdum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdum\b/dumb/g" *.tw $GREP "\bdoccument\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoccument\b/document/g" *.tw $GREP "\bdoccumented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoccumented\b/documented/g" *.tw $GREP "\bdoccuments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoccuments\b/documents/g" *.tw $GREP "\bdocrines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdocrines\b/doctrines/g" *.tw $GREP "\bdoctines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoctines\b/doctrines/g" *.tw $GREP "\bdocumenatry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdocumenatry\b/documentary/g" *.tw $GREP "\bdoens\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoens\b/does/g" *.tw $GREP "\bdoesnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoesnt\b/doesn't/g" *.tw $GREP "\bdoign\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoign\b/doing/g" *.tw $GREP "\bdominaton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdominaton\b/domination/g" *.tw $GREP "\bdominent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdominent\b/dominant/g" *.tw $GREP "\bdominiant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdominiant\b/dominant/g" *.tw $GREP "\bdonig\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdonig\b/doing/g" *.tw $GREP "\bdosen't\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdosen't\b/doesn't/g" *.tw $GREP "\bdoulbe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdoulbe\b/double/g" *.tw $GREP "\bdowloads\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdowloads\b/downloads/g" *.tw $GREP "\bdramtic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdramtic\b/dramatic/g" *.tw $GREP "\bdraughtman\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdraughtman\b/draughtsman/g" *.tw $GREP "\bDravadian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bDravadian\b/Dravidian/g" *.tw $GREP "\bdreasm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdreasm\b/dreams/g" *.tw $GREP "\bdriectly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdriectly\b/directly/g" *.tw $GREP "\bdrnik\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdrnik\b/drink/g" *.tw $GREP "\bdruming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdruming\b/drumming/g" *.tw $GREP "\bdrummless\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdrummless\b/drumless/g" *.tw $GREP "\bdupicate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdupicate\b/duplicate/g" *.tw $GREP "\bdurig\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdurig\b/during/g" *.tw $GREP "\bdurring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdurring\b/during/g" *.tw $GREP "\bduting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bduting\b/during/g" *.tw $GREP "\bdyas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bdyas\b/dryas/g" *.tw $GREP "\beahc\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beahc\b/each/g" *.tw $GREP "\bealier\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bealier\b/earlier/g" *.tw $GREP "\bearlies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bearlies\b/earliest/g" *.tw $GREP "\bearnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bearnt\b/earned/g" *.tw $GREP "\becclectic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\becclectic\b/eclectic/g" *.tw $GREP "\beceonomy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beceonomy\b/economy/g" *.tw $GREP "\becidious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\becidious\b/deciduous/g" *.tw $GREP "\beclispe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beclispe\b/eclipse/g" *.tw $GREP "\becomonic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\becomonic\b/economic/g" *.tw $GREP "\bect\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bect\b/etc/g" *.tw $GREP "\beearly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beearly\b/early/g" *.tw $GREP "\befel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\befel\b/evil/g" *.tw $GREP "\beffeciency\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beffeciency\b/efficiency/g" *.tw $GREP "\beffecient\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beffecient\b/efficient/g" *.tw $GREP "\beffeciently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beffeciently\b/efficiently/g" *.tw $GREP "\befficency\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\befficency\b/efficiency/g" *.tw $GREP "\befficent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\befficent\b/efficient/g" *.tw $GREP "\befficently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\befficently\b/efficiently/g" *.tw $GREP "\beffulence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beffulence\b/effluence/g" *.tw $GREP "\beiter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beiter\b/either/g" *.tw $GREP "\belction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belction\b/election/g" *.tw $GREP "\belectrial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belectrial\b/electrical/g" *.tw $GREP "\belectricly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belectricly\b/electrically/g" *.tw $GREP "\belectricty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belectricty\b/electricity/g" *.tw $GREP "\belementay\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belementay\b/elementary/g" *.tw $GREP "\beleminated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beleminated\b/eliminated/g" *.tw $GREP "\beleminating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beleminating\b/eliminating/g" *.tw $GREP "\beles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beles\b/eels/g" *.tw $GREP "\beletricity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beletricity\b/electricity/g" *.tw $GREP "\belicided\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belicided\b/elicited/g" *.tw $GREP "\beligable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beligable\b/eligible/g" *.tw $GREP "\belimentary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belimentary\b/elementary/g" *.tw $GREP "\bellected\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bellected\b/elected/g" *.tw $GREP "\belphant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\belphant\b/elephant/g" *.tw $GREP "\bembarass\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarass\b/embarrass/g" *.tw $GREP "\bembarassed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarassed\b/embarrassed/g" *.tw $GREP "\bembarassing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarassing\b/embarrassing/g" *.tw $GREP "\bembarassment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarassment\b/embarrassment/g" *.tw $GREP "\bembargos\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembargos\b/embargoes/g" *.tw $GREP "\bembarras\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarras\b/embarrass/g" *.tw $GREP "\bembarrased\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarrased\b/embarrassed/g" *.tw $GREP "\bembarrasing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarrasing\b/embarrassing/g" *.tw $GREP "\bembarrasment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembarrasment\b/embarrassment/g" *.tw $GREP "\bembezelled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bembezelled\b/embezzled/g" *.tw $GREP "\bemblamatic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemblamatic\b/emblematic/g" *.tw $GREP "\beminate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beminate\b/emanate/g" *.tw $GREP "\beminated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beminated\b/emanated/g" *.tw $GREP "\bemision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemision\b/emission/g" *.tw $GREP "\bemited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemited\b/emitted/g" *.tw $GREP "\bemiting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemiting\b/emitting/g" *.tw $GREP "\bemmediately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmediately\b/immediately/g" *.tw $GREP "\bemminently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemminently\b/eminently/g" *.tw $GREP "\bemmisaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmisaries\b/emissaries/g" *.tw $GREP "\bemmisarries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmisarries\b/emissaries/g" *.tw $GREP "\bemmisarry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmisarry\b/emissary/g" *.tw $GREP "\bemmisary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmisary\b/emissary/g" *.tw $GREP "\bemmision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmision\b/emission/g" *.tw $GREP "\bemmisions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmisions\b/emissions/g" *.tw $GREP "\bemmited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmited\b/emitted/g" *.tw $GREP "\bemmiting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmiting\b/emitting/g" *.tw $GREP "\bemmitted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmitted\b/emitted/g" *.tw $GREP "\bemmitting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemmitting\b/emitting/g" *.tw $GREP "\bemnity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemnity\b/enmity/g" *.tw $GREP "\bemperical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemperical\b/empirical/g" *.tw $GREP "\bemphaised\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemphaised\b/emphasised/g" *.tw $GREP "\bemphsis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemphsis\b/emphasis/g" *.tw $GREP "\bemphysyma\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemphysyma\b/emphysema/g" *.tw $GREP "\bemporer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemporer\b/emperor/g" *.tw $GREP "\bemprisoned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bemprisoned\b/imprisoned/g" *.tw $GREP "\benameld\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benameld\b/enameled/g" *.tw $GREP "\benchancement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benchancement\b/enhancement/g" *.tw $GREP "\bencouraing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bencouraing\b/encouraging/g" *.tw $GREP "\bencryptiion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bencryptiion\b/encryption/g" *.tw $GREP "\bencylopedia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bencylopedia\b/encyclopedia/g" *.tw $GREP "\bendevors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bendevors\b/endeavors/g" *.tw $GREP "\bendevour\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bendevour\b/endeavour/g" *.tw $GREP "\bendig\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bendig\b/ending/g" *.tw $GREP "\bendolithes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bendolithes\b/endoliths/g" *.tw $GREP "\benduce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benduce\b/induce/g" *.tw $GREP "\bened\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bened\b/need/g" *.tw $GREP "\benforceing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benforceing\b/enforcing/g" *.tw $GREP "\bengagment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bengagment\b/engagement/g" *.tw $GREP "\bengeneer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bengeneer\b/engineer/g" *.tw $GREP "\bengeneering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bengeneering\b/engineering/g" *.tw $GREP "\bengieneer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bengieneer\b/engineer/g" *.tw $GREP "\bengieneers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bengieneers\b/engineers/g" *.tw $GREP "\benlargment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benlargment\b/enlargement/g" *.tw $GREP "\benlargments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benlargments\b/enlargements/g" *.tw $GREP "\benourmous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benourmous\b/enormous/g" *.tw $GREP "\benourmously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benourmously\b/enormously/g" *.tw $GREP "\bensconsed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bensconsed\b/ensconced/g" *.tw $GREP "\bentaglements\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bentaglements\b/entanglements/g" *.tw $GREP "\benteratinment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benteratinment\b/entertainment/g" *.tw $GREP "\benthusiatic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benthusiatic\b/enthusiastic/g" *.tw $GREP "\bentitity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bentitity\b/entity/g" *.tw $GREP "\bentitlied\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bentitlied\b/entitled/g" *.tw $GREP "\bentrepeneur\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bentrepeneur\b/entrepreneur/g" *.tw $GREP "\bentrepeneurs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bentrepeneurs\b/entrepreneurs/g" *.tw $GREP "\benviorment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviorment\b/environment/g" *.tw $GREP "\benviormental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviormental\b/environmental/g" *.tw $GREP "\benviormentally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviormentally\b/environmentally/g" *.tw $GREP "\benviorments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviorments\b/environments/g" *.tw $GREP "\benviornment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviornment\b/environment/g" *.tw $GREP "\benviornmental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviornmental\b/environmental/g" *.tw $GREP "\benviornmentalist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviornmentalist\b/environmentalist/g" *.tw $GREP "\benviornmentally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviornmentally\b/environmentally/g" *.tw $GREP "\benviornments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviornments\b/environments/g" *.tw $GREP "\benviroment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviroment\b/environment/g" *.tw $GREP "\benviromental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviromental\b/environmental/g" *.tw $GREP "\benviromentalist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviromentalist\b/environmentalist/g" *.tw $GREP "\benviromentally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviromentally\b/environmentally/g" *.tw $GREP "\benviroments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benviroments\b/environments/g" *.tw $GREP "\benvolutionary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benvolutionary\b/evolutionary/g" *.tw $GREP "\benvrionments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benvrionments\b/environments/g" *.tw $GREP "\benxt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\benxt\b/next/g" *.tw $GREP "\bepidsodes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bepidsodes\b/episodes/g" *.tw $GREP "\bepsiode\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bepsiode\b/episode/g" *.tw $GREP "\bequialent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequialent\b/equivalent/g" *.tw $GREP "\bequilibium\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequilibium\b/equilibrium/g" *.tw $GREP "\bequilibrum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequilibrum\b/equilibrium/g" *.tw $GREP "\bequiped\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequiped\b/equipped/g" *.tw $GREP "\bequippment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequippment\b/equipment/g" *.tw $GREP "\bequitorial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequitorial\b/equatorial/g" *.tw $GREP "\bequivelant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequivelant\b/equivalent/g" *.tw $GREP "\bequivelent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequivelent\b/equivalent/g" *.tw $GREP "\bequivilant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequivilant\b/equivalent/g" *.tw $GREP "\bequivilent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequivilent\b/equivalent/g" *.tw $GREP "\bequivlalent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bequivlalent\b/equivalent/g" *.tw $GREP "\beratic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beratic\b/erratic/g" *.tw $GREP "\beratically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beratically\b/erratically/g" *.tw $GREP "\beraticly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beraticly\b/erratically/g" *.tw $GREP "\berrupted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\berrupted\b/erupted/g" *.tw $GREP "\besential\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\besential\b/essential/g" *.tw $GREP "\besitmated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\besitmated\b/estimated/g" *.tw $GREP "\besle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\besle\b/else/g" *.tw $GREP "\bespecialy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bespecialy\b/especially/g" *.tw $GREP "\bessencial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bessencial\b/essential/g" *.tw $GREP "\bessense\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bessense\b/essence/g" *.tw $GREP "\bessentail\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bessentail\b/essential/g" *.tw $GREP "\bessentialy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bessentialy\b/essentially/g" *.tw $GREP "\bessentual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bessentual\b/essential/g" *.tw $GREP "\bessesital\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bessesital\b/essential/g" *.tw $GREP "\bestabishes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bestabishes\b/establishes/g" *.tw $GREP "\bestablising\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bestablising\b/establishing/g" *.tw $GREP "\bethnocentricm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bethnocentricm\b/ethnocentrism/g" *.tw $GREP "\bEuropian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bEuropian\b/European/g" *.tw $GREP "\bEuropians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bEuropians\b/Europeans/g" *.tw $GREP "\bEurpean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bEurpean\b/European/g" *.tw $GREP "\bEurpoean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bEurpoean\b/European/g" *.tw $GREP "\bevenhtually\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bevenhtually\b/eventually/g" *.tw $GREP "\beventally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beventally\b/eventually/g" *.tw $GREP "\beventhough\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beventhough\b/even though/g" *.tw $GREP "\beventially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beventially\b/eventually/g" *.tw $GREP "\beventualy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beventualy\b/eventually/g" *.tw $GREP "\beverthing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beverthing\b/everything/g" *.tw $GREP "\beverytime\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beverytime\b/every time/g" *.tw $GREP "\beveryting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beveryting\b/everything/g" *.tw $GREP "\beveyr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\beveyr\b/every/g" *.tw $GREP "\bevidentally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bevidentally\b/evidently/g" *.tw $GREP "\bexagerate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerate\b/exaggerate/g" *.tw $GREP "\bexagerated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerated\b/exaggerated/g" *.tw $GREP "\bexagerates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerates\b/exaggerates/g" *.tw $GREP "\bexagerating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerating\b/exaggerating/g" *.tw $GREP "\bexagerrate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerrate\b/exaggerate/g" *.tw $GREP "\bexagerrated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerrated\b/exaggerated/g" *.tw $GREP "\bexagerrates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerrates\b/exaggerates/g" *.tw $GREP "\bexagerrating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexagerrating\b/exaggerating/g" *.tw $GREP "\bexaminated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexaminated\b/examined/g" *.tw $GREP "\bexampt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexampt\b/exempt/g" *.tw $GREP "\bexapansion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexapansion\b/expansion/g" *.tw $GREP "\bexcact\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcact\b/exact/g" *.tw $GREP "\bexcange\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcange\b/exchange/g" *.tw $GREP "\bexcecute\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcecute\b/execute/g" *.tw $GREP "\bexcecuted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcecuted\b/executed/g" *.tw $GREP "\bexcecutes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcecutes\b/executes/g" *.tw $GREP "\bexcecuting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcecuting\b/executing/g" *.tw $GREP "\bexcecution\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcecution\b/execution/g" *.tw $GREP "\bexcedded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcedded\b/exceeded/g" *.tw $GREP "\bexcelent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcelent\b/excellent/g" *.tw $GREP "\bexcell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcell\b/excel/g" *.tw $GREP "\bexcellance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcellance\b/excellence/g" *.tw $GREP "\bexcellant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcellant\b/excellent/g" *.tw $GREP "\bexcells\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcells\b/excels/g" *.tw $GREP "\bexcercise\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcercise\b/exercise/g" *.tw $GREP "\bexchanching\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexchanching\b/exchanging/g" *.tw $GREP "\bexcisted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexcisted\b/existed/g" *.tw $GREP "\bexculsivly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexculsivly\b/exclusively/g" *.tw $GREP "\bexecising\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexecising\b/exercising/g" *.tw $GREP "\bexection\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexection\b/execution/g" *.tw $GREP "\bexectued\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexectued\b/executed/g" *.tw $GREP "\bexeedingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexeedingly\b/exceedingly/g" *.tw $GREP "\bexelent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexelent\b/excellent/g" *.tw $GREP "\bexellent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexellent\b/excellent/g" *.tw $GREP "\bexemple\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexemple\b/example/g" *.tw $GREP "\bexept\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexept\b/except/g" *.tw $GREP "\bexeptional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexeptional\b/exceptional/g" *.tw $GREP "\bexerbate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexerbate\b/exacerbate/g" *.tw $GREP "\bexerbated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexerbated\b/exacerbated/g" *.tw $GREP "\bexerciese\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexerciese\b/exercises/g" *.tw $GREP "\bexerpt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexerpt\b/excerpt/g" *.tw $GREP "\bexerpts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexerpts\b/excerpts/g" *.tw $GREP "\bexersize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexersize\b/exercise/g" *.tw $GREP "\bexerternal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexerternal\b/external/g" *.tw $GREP "\bexhalted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexhalted\b/exalted/g" *.tw $GREP "\bexhibtion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexhibtion\b/exhibition/g" *.tw $GREP "\bexibition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexibition\b/exhibition/g" *.tw $GREP "\bexibitions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexibitions\b/exhibitions/g" *.tw $GREP "\bexicting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexicting\b/exciting/g" *.tw $GREP "\bexinct\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexinct\b/extinct/g" *.tw $GREP "\bexistance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexistance\b/existence/g" *.tw $GREP "\bexistant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexistant\b/existent/g" *.tw $GREP "\bexistince\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexistince\b/existence/g" *.tw $GREP "\bexliled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexliled\b/exiled/g" *.tw $GREP "\bexludes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexludes\b/excludes/g" *.tw $GREP "\bexmaple\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexmaple\b/example/g" *.tw $GREP "\bexonorate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexonorate\b/exonerate/g" *.tw $GREP "\bexoskelaton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexoskelaton\b/exoskeleton/g" *.tw $GREP "\bexpalin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpalin\b/explain/g" *.tw $GREP "\bexpatriot\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpatriot\b/expatriate/g" *.tw $GREP "\bexpeced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpeced\b/expected/g" *.tw $GREP "\bexpecially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpecially\b/especially/g" *.tw $GREP "\bexpeditonary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpeditonary\b/expeditionary/g" *.tw $GREP "\bexpeiments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpeiments\b/experiments/g" *.tw $GREP "\bexpell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpell\b/expel/g" *.tw $GREP "\bexpells\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpells\b/expels/g" *.tw $GREP "\bexperiance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexperiance\b/experience/g" *.tw $GREP "\bexperianced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexperianced\b/experienced/g" *.tw $GREP "\bexpiditions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpiditions\b/expeditions/g" *.tw $GREP "\bexpierence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpierence\b/experience/g" *.tw $GREP "\bexplaination\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexplaination\b/explanation/g" *.tw $GREP "\bexplaning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexplaning\b/explaining/g" *.tw $GREP "\bexplictly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexplictly\b/explicitly/g" *.tw $GREP "\bexploititive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexploititive\b/exploitative/g" *.tw $GREP "\bexplotation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexplotation\b/exploitation/g" *.tw $GREP "\bexpropiated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpropiated\b/expropriated/g" *.tw $GREP "\bexpropiation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexpropiation\b/expropriation/g" *.tw $GREP "\bexressed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bexressed\b/expressed/g" *.tw $GREP "\bextemely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextemely\b/extremely/g" *.tw $GREP "\bextention\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextention\b/extension/g" *.tw $GREP "\bextentions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextentions\b/extensions/g" *.tw $GREP "\bextered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextered\b/exerted/g" *.tw $GREP "\bextermist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextermist\b/extremist/g" *.tw $GREP "\bextradiction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextradiction\b/extradition/g" *.tw $GREP "\bextraterrestial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextraterrestial\b/extraterrestrial/g" *.tw $GREP "\bextraterrestials\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextraterrestials\b/extraterrestrials/g" *.tw $GREP "\bextravagent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextravagent\b/extravagant/g" *.tw $GREP "\bextrememly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextrememly\b/extremely/g" *.tw $GREP "\bextremeophile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextremeophile\b/extremophile/g" *.tw $GREP "\bextremly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextremly\b/extremely/g" *.tw $GREP "\bextrordinarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextrordinarily\b/extraordinarily/g" *.tw $GREP "\bextrordinary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bextrordinary\b/extraordinary/g" *.tw $GREP "\bfaciliate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfaciliate\b/facilitate/g" *.tw $GREP "\bfaciliated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfaciliated\b/facilitated/g" *.tw $GREP "\bfaciliates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfaciliates\b/facilitates/g" *.tw $GREP "\bfacilites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfacilites\b/facilities/g" *.tw $GREP "\bfacillitate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfacillitate\b/facilitate/g" *.tw $GREP "\bfacinated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfacinated\b/fascinated/g" *.tw $GREP "\bfacist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfacist\b/fascist/g" *.tw $GREP "\bfamiles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfamiles\b/families/g" *.tw $GREP "\bfamilliar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfamilliar\b/familiar/g" *.tw $GREP "\bfamoust\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfamoust\b/famous/g" *.tw $GREP "\bfanatism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfanatism\b/fanaticism/g" *.tw $GREP "\bFarenheit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFarenheit\b/Fahrenheit/g" *.tw $GREP "\bfatc\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfatc\b/fact/g" *.tw $GREP "\bfaught\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfaught\b/fought/g" *.tw $GREP "\bfavoutrable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfavoutrable\b/favourable/g" *.tw $GREP "\bfeasable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfeasable\b/feasible/g" *.tw $GREP "\bFebuary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFebuary\b/February/g" *.tw $GREP "\bFeburary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFeburary\b/February/g" *.tw $GREP "\bfedreally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfedreally\b/federally/g" *.tw $GREP "\bfemminist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfemminist\b/feminist/g" *.tw $GREP "\bferomone\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bferomone\b/pheromone/g" *.tw $GREP "\bfertily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfertily\b/fertility/g" *.tw $GREP "\bfianite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfianite\b/finite/g" *.tw $GREP "\bfianlly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfianlly\b/finally/g" *.tw $GREP "\bficticious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bficticious\b/fictitious/g" *.tw $GREP "\bfictious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfictious\b/fictitious/g" *.tw $GREP "\bfidn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfidn\b/find/g" *.tw $GREP "\bfiercly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfiercly\b/fiercely/g" *.tw $GREP "\bfightings\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfightings\b/fighting/g" *.tw $GREP "\bfiliament\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfiliament\b/filament/g" *.tw $GREP "\bfimilies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfimilies\b/families/g" *.tw $GREP "\bfinacial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfinacial\b/financial/g" *.tw $GREP "\bfinaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfinaly\b/finally/g" *.tw $GREP "\bfinancialy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfinancialy\b/financially/g" *.tw $GREP "\bfirends\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfirends\b/friends/g" *.tw $GREP "\bfisionable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfisionable\b/fissionable/g" *.tw $GREP "\bflamable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bflamable\b/flammable/g" *.tw $GREP "\bflawess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bflawess\b/flawless/g" *.tw $GREP "\bFlemmish\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFlemmish\b/Flemish/g" *.tw $GREP "\bflorescent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bflorescent\b/fluorescent/g" *.tw $GREP "\bflourescent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bflourescent\b/fluorescent/g" *.tw $GREP "\bflourine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bflourine\b/fluorine/g" *.tw $GREP "\bfluorish\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfluorish\b/flourish/g" *.tw $GREP "\bflourishment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bflourishment\b/flourishing/g" *.tw $GREP "\bfollwoing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfollwoing\b/following/g" *.tw $GREP "\bfolowing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfolowing\b/following/g" *.tw $GREP "\bfomed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfomed\b/formed/g" *.tw $GREP "\bfonetic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfonetic\b/phonetic/g" *.tw $GREP "\bfontrier\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfontrier\b/fontier/g" *.tw $GREP "\bfoootball\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfoootball\b/football/g" *.tw $GREP "\bforbad\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforbad\b/forbade/g" *.tw $GREP "\bforbiden\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforbiden\b/forbidden/g" *.tw $GREP "\bforeward\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforeward\b/foreword/g" *.tw $GREP "\bforfiet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforfiet\b/forfeit/g" *.tw $GREP "\bforhead\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforhead\b/forehead/g" *.tw $GREP "\bforiegn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforiegn\b/foreign/g" *.tw $GREP "\bFormalhaut\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFormalhaut\b/Fomalhaut/g" *.tw $GREP "\bformallize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bformallize\b/formalize/g" *.tw $GREP "\bformallized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bformallized\b/formalized/g" *.tw $GREP "\bformelly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bformelly\b/formerly/g" *.tw $GREP "\bformidible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bformidible\b/formidable/g" *.tw $GREP "\bformost\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bformost\b/foremost/g" *.tw $GREP "\bforsaw\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforsaw\b/foresaw/g" *.tw $GREP "\bforseeable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforseeable\b/foreseeable/g" *.tw $GREP "\bfortelling\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfortelling\b/foretelling/g" *.tw $GREP "\bforunner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bforunner\b/forerunner/g" *.tw $GREP "\bfoucs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfoucs\b/focus/g" *.tw $GREP "\bfoudn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfoudn\b/found/g" *.tw $GREP "\bfougth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfougth\b/fought/g" *.tw $GREP "\bfoundaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfoundaries\b/foundries/g" *.tw $GREP "\bfoundary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfoundary\b/foundry/g" *.tw $GREP "\bFoundland\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFoundland\b/Newfoundland/g" *.tw $GREP "\bfourties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfourties\b/forties/g" *.tw $GREP "\bfourty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfourty\b/forty/g" *.tw $GREP "\bfouth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfouth\b/fourth/g" *.tw $GREP "\bfoward\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfoward\b/forward/g" *.tw $GREP "\bFransiscan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFransiscan\b/Franciscan/g" *.tw $GREP "\bFransiscans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bFransiscans\b/Franciscans/g" *.tw $GREP "\bfreind\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfreind\b/friend/g" *.tw $GREP "\bfreindly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfreindly\b/friendly/g" *.tw $GREP "\bfrequentily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfrequentily\b/frequently/g" *.tw $GREP "\bfrome\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfrome\b/from/g" *.tw $GREP "\bfromed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfromed\b/formed/g" *.tw $GREP "\bfroniter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfroniter\b/frontier/g" *.tw $GREP "\bfucntion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfucntion\b/function/g" *.tw $GREP "\bfucntioning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfucntioning\b/functioning/g" *.tw $GREP "\bfufill\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfufill\b/fulfill/g" *.tw $GREP "\bfufilled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfufilled\b/fulfilled/g" *.tw $GREP "\bfulfiled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfulfiled\b/fulfilled/g" *.tw $GREP "\bfullfill\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfullfill\b/fulfill/g" *.tw $GREP "\bfullfilled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfullfilled\b/fulfilled/g" *.tw $GREP "\bfundametal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfundametal\b/fundamental/g" *.tw $GREP "\bfundametals\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfundametals\b/fundamentals/g" *.tw $GREP "\bfunguses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfunguses\b/fungi/g" *.tw $GREP "\bfuntion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfuntion\b/function/g" *.tw $GREP "\bfuruther\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfuruther\b/further/g" *.tw $GREP "\bfuther\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfuther\b/further/g" *.tw $GREP "\bfuthermore\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bfuthermore\b/furthermore/g" *.tw $GREP "\bgalatic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgalatic\b/galactic/g" *.tw $GREP "\bGalations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGalations\b/Galatians/g" *.tw $GREP "\bgallaxies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgallaxies\b/galaxies/g" *.tw $GREP "\bgalvinized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgalvinized\b/galvanized/g" *.tw $GREP "\bGameboy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGameboy\b/Game Boy/g" *.tw $GREP "\bganerate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bganerate\b/generate/g" *.tw $GREP "\bganes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bganes\b/games/g" *.tw $GREP "\bganster\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bganster\b/gangster/g" *.tw $GREP "\bgarantee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgarantee\b/guarantee/g" *.tw $GREP "\bgaranteed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgaranteed\b/guaranteed/g" *.tw $GREP "\bgarantees\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgarantees\b/guarantees/g" *.tw $GREP "\bgardai\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgardai\b/garda�/g" *.tw $GREP "\bgarnison\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgarnison\b/garrison/g" *.tw $GREP "\bgauarana\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgauarana\b/guaran�/g" *.tw $GREP "\bgaurantee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgaurantee\b/guarantee/g" *.tw $GREP "\bgauranteed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgauranteed\b/guaranteed/g" *.tw $GREP "\bgaurantees\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgaurantees\b/guarantees/g" *.tw $GREP "\bgaurentee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgaurentee\b/guarantee/g" *.tw $GREP "\bgaurenteed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgaurenteed\b/guaranteed/g" *.tw $GREP "\bgaurentees\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgaurentees\b/guarantees/g" *.tw $GREP "\bgeneological\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeneological\b/genealogical/g" *.tw $GREP "\bgeneologies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeneologies\b/genealogies/g" *.tw $GREP "\bgeneology\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeneology\b/genealogy/g" *.tw $GREP "\bgeneraly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeneraly\b/generally/g" *.tw $GREP "\bgeneratting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeneratting\b/generating/g" *.tw $GREP "\bgenialia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgenialia\b/genitalia/g" *.tw $GREP "\bgeographicial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeographicial\b/geographical/g" *.tw $GREP "\bgeometrician\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeometrician\b/geometer/g" *.tw $GREP "\bgeometricians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgeometricians\b/geometers/g" *.tw $GREP "\bgerat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgerat\b/great/g" *.tw $GREP "\bGhandi\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGhandi\b/Gandhi/g" *.tw $GREP "\bglamourous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bglamourous\b/glamorous/g" *.tw $GREP "\bglight\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bglight\b/flight/g" *.tw $GREP "\bgnawwed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgnawwed\b/gnawed/g" *.tw $GREP "\bgodess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgodess\b/goddess/g" *.tw $GREP "\bgodesses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgodesses\b/goddesses/g" *.tw $GREP "\bGodounov\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGodounov\b/Godunov/g" *.tw $GREP "\bgoign\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgoign\b/going/g" *.tw $GREP "\bgonig\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgonig\b/going/g" *.tw $GREP "\bGothenberg\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGothenberg\b/Gothenburg/g" *.tw $GREP "\bGottleib\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGottleib\b/Gottlieb/g" *.tw $GREP "\bgouvener\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgouvener\b/governor/g" *.tw $GREP "\bgovement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovement\b/government/g" *.tw $GREP "\bgovenment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovenment\b/government/g" *.tw $GREP "\bgovenrment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovenrment\b/government/g" *.tw $GREP "\bgoverance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgoverance\b/governance/g" *.tw $GREP "\bgoverment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgoverment\b/government/g" *.tw $GREP "\bgovermental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovermental\b/governmental/g" *.tw $GREP "\bgoverner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgoverner\b/governor/g" *.tw $GREP "\bgovernmnet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovernmnet\b/government/g" *.tw $GREP "\bgovorment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovorment\b/government/g" *.tw $GREP "\bgovormental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovormental\b/governmental/g" *.tw $GREP "\bgovornment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgovornment\b/government/g" *.tw $GREP "\bgracefull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgracefull\b/graceful/g" *.tw $GREP "\bgraet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgraet\b/great/g" *.tw $GREP "\bgrafitti\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgrafitti\b/graffiti/g" *.tw $GREP "\bgramatically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgramatically\b/grammatically/g" *.tw $GREP "\bgrammaticaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgrammaticaly\b/grammatically/g" *.tw $GREP "\bgrammer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgrammer\b/grammar/g" *.tw $GREP "\bgrat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgrat\b/great/g" *.tw $GREP "\bgratuitious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgratuitious\b/gratuitous/g" *.tw $GREP "\bgreatful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgreatful\b/grateful/g" *.tw $GREP "\bgreatfully\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgreatfully\b/gratefully/g" *.tw $GREP "\bgreif\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgreif\b/grief/g" *.tw $GREP "\bgridles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgridles\b/griddles/g" *.tw $GREP "\bgropu\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgropu\b/group/g" *.tw $GREP "\bgrwo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgrwo\b/grow/g" *.tw $GREP "\bguage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguage\b/gauge/g" *.tw $GREP "\bguarentee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguarentee\b/guarantee/g" *.tw $GREP "\bguarenteed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguarenteed\b/guaranteed/g" *.tw $GREP "\bguarentees\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguarentees\b/guarantees/g" *.tw $GREP "\bGuatamala\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGuatamala\b/Guatemala/g" *.tw $GREP "\bGuatamalan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGuatamalan\b/Guatemalan/g" *.tw $GREP "\bguerrila\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguerrila\b/guerrilla/g" *.tw $GREP "\bguerrilas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguerrilas\b/guerrillas/g" *.tw $GREP "\bguidence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguidence\b/guidance/g" *.tw $GREP "\bGuilia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGuilia\b/Giulia/g" *.tw $GREP "\bGuilio\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGuilio\b/Giulio/g" *.tw $GREP "\bGuiness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGuiness\b/Guinness/g" *.tw $GREP "\bGuiseppe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bGuiseppe\b/Giuseppe/g" *.tw $GREP "\bgunanine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgunanine\b/guanine/g" *.tw $GREP "\bgurantee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgurantee\b/guarantee/g" *.tw $GREP "\bguranteed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguranteed\b/guaranteed/g" *.tw $GREP "\bgurantees\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgurantees\b/guarantees/g" *.tw $GREP "\bguttaral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bguttaral\b/guttural/g" *.tw $GREP "\bgutteral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bgutteral\b/guttural/g" *.tw $GREP "\bhabaeus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhabaeus\b/habeas/g" *.tw $GREP "\bhabeus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhabeus\b/habeas/g" *.tw $GREP "\bHabsbourg\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bHabsbourg\b/Habsburg/g" *.tw $GREP "\bhaemorrage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhaemorrage\b/haemorrhage/g" *.tw $GREP "\bhalarious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhalarious\b/hilarious/g" *.tw $GREP "\bhalp\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhalp\b/help/g" *.tw $GREP "\bhapen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhapen\b/happen/g" *.tw $GREP "\bhapened\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhapened\b/happened/g" *.tw $GREP "\bhapening\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhapening\b/happening/g" *.tw $GREP "\bhappend\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhappend\b/happened/g" *.tw $GREP "\bhappended\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhappended\b/happened/g" *.tw $GREP "\bhappenned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhappenned\b/happened/g" *.tw $GREP "\bharased\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharased\b/harassed/g" *.tw $GREP "\bharases\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharases\b/harasses/g" *.tw $GREP "\bharasment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharasment\b/harassment/g" *.tw $GREP "\bharasments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharasments\b/harassments/g" *.tw $GREP "\bharassement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharassement\b/harassment/g" *.tw $GREP "\bharras\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharras\b/harass/g" *.tw $GREP "\bharrased\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrased\b/harassed/g" *.tw $GREP "\bharrases\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrases\b/harasses/g" *.tw $GREP "\bharrasing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrasing\b/harassing/g" *.tw $GREP "\bharrasment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrasment\b/harassment/g" *.tw $GREP "\bharrasments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrasments\b/harassments/g" *.tw $GREP "\bharrassed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrassed\b/harassed/g" *.tw $GREP "\bharrasses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrasses\b/harassed/g" *.tw $GREP "\bharrassing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrassing\b/harassing/g" *.tw $GREP "\bharrassment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrassment\b/harassment/g" *.tw $GREP "\bharrassments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bharrassments\b/harassments/g" *.tw $GREP "\bhasnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhasnt\b/hasn't/g" *.tw $GREP "\bHatian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bHatian\b/Haitian/g" *.tw $GREP "\bhaviest\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhaviest\b/heaviest/g" *.tw $GREP "\bheadquarer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheadquarer\b/headquarter/g" *.tw $GREP "\bheadquater\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheadquater\b/headquarter/g" *.tw $GREP "\bheadquatered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheadquatered\b/headquartered/g" *.tw $GREP "\bheadquaters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheadquaters\b/headquarters/g" *.tw $GREP "\bhealthercare\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhealthercare\b/healthcare/g" *.tw $GREP "\bheared\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheared\b/heard/g" *.tw $GREP "\bheathy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheathy\b/healthy/g" *.tw $GREP "\bHeidelburg\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bHeidelburg\b/Heidelberg/g" *.tw $GREP "\bheigher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheigher\b/higher/g" *.tw $GREP "\bheirarchy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheirarchy\b/hierarchy/g" *.tw $GREP "\bheiroglyphics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheiroglyphics\b/hieroglyphics/g" *.tw $GREP "\bhelment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhelment\b/helmet/g" *.tw $GREP "\bhelpfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhelpfull\b/helpful/g" *.tw $GREP "\bhelpped\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhelpped\b/helped/g" *.tw $GREP "\bhemmorhage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhemmorhage\b/hemorrhage/g" *.tw $GREP "\bheridity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheridity\b/heredity/g" *.tw $GREP "\bheroe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheroe\b/hero/g" *.tw $GREP "\bheros\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheros\b/heroes/g" *.tw $GREP "\bhertiage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhertiage\b/heritage/g" *.tw $GREP "\bhertzs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhertzs\b/hertz/g" *.tw $GREP "\bhesistant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhesistant\b/hesitant/g" *.tw $GREP "\bheterogenous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bheterogenous\b/heterogeneous/g" *.tw $GREP "\bhieght\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhieght\b/height/g" *.tw $GREP "\bhierachical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhierachical\b/hierarchical/g" *.tw $GREP "\bhierachies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhierachies\b/hierarchies/g" *.tw $GREP "\bhierachy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhierachy\b/hierarchy/g" *.tw $GREP "\bhierarcical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhierarcical\b/hierarchical/g" *.tw $GREP "\bhierarcy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhierarcy\b/hierarchy/g" *.tw $GREP "\bhieroglph\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhieroglph\b/hieroglyph/g" *.tw $GREP "\bhieroglphs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhieroglphs\b/hieroglyphs/g" *.tw $GREP "\bhiger\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhiger\b/higher/g" *.tw $GREP "\bhigest\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhigest\b/highest/g" *.tw $GREP "\bhigway\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhigway\b/highway/g" *.tw $GREP "\bhillarious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhillarious\b/hilarious/g" *.tw $GREP "\bhimselv\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhimselv\b/himself/g" *.tw $GREP "\bhinderance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhinderance\b/hindrance/g" *.tw $GREP "\bhinderence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhinderence\b/hindrance/g" *.tw $GREP "\bhindrence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhindrence\b/hindrance/g" *.tw $GREP "\bhipopotamus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhipopotamus\b/hippopotamus/g" *.tw $GREP "\bhismelf\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhismelf\b/himself/g" *.tw $GREP "\bhistocompatability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhistocompatability\b/histocompatibility/g" *.tw $GREP "\bhistoricians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhistoricians\b/historians/g" *.tw $GREP "\bhitsingles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhitsingles\b/hit singles/g" *.tw $GREP "\bholf\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bholf\b/hold/g" *.tw $GREP "\bholliday\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bholliday\b/holiday/g" *.tw $GREP "\bhomestate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhomestate\b/home state/g" *.tw $GREP "\bhomogeneize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhomogeneize\b/homogenize/g" *.tw $GREP "\bhomogeneized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhomogeneized\b/homogenized/g" *.tw $GREP "\bhonory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhonory\b/honorary/g" *.tw $GREP "\bhorrifing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhorrifing\b/horrifying/g" *.tw $GREP "\bhosited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhosited\b/hoisted/g" *.tw $GREP "\bhospitible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhospitible\b/hospitable/g" *.tw $GREP "\bhounour\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhounour\b/honour/g" *.tw $GREP "\bhowver\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhowver\b/however/g" *.tw $GREP "\bhsitorians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhsitorians\b/historians/g" *.tw $GREP "\bhstory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhstory\b/history/g" *.tw $GREP "\bhtey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhtey\b/they/g" *.tw $GREP "\bhtikn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhtikn\b/think/g" *.tw $GREP "\bhting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhting\b/thing/g" *.tw $GREP "\bhtink\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhtink\b/think/g" *.tw $GREP "\bhtis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhtis\b/this/g" *.tw $GREP "\bhuminoid\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhuminoid\b/humanoid/g" *.tw $GREP "\bhumoural\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhumoural\b/humoral/g" *.tw $GREP "\bhumurous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhumurous\b/humorous/g" *.tw $GREP "\bhusban\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhusban\b/husband/g" *.tw $GREP "\bhvae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhvae\b/have/g" *.tw $GREP "\bhvaing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhvaing\b/having/g" *.tw $GREP "\bhwihc\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhwihc\b/which/g" *.tw $GREP "\bhwile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhwile\b/while/g" *.tw $GREP "\bhwole\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhwole\b/whole/g" *.tw $GREP "\bhydogen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhydogen\b/hydrogen/g" *.tw $GREP "\bhydropile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhydropile\b/hydrophile/g" *.tw $GREP "\bhydropilic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhydropilic\b/hydrophilic/g" *.tw $GREP "\bhydropobe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhydropobe\b/hydrophobe/g" *.tw $GREP "\bhydropobic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhydropobic\b/hydrophobic/g" *.tw $GREP "\bhygeine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhygeine\b/hygiene/g" *.tw $GREP "\bhyjack\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhyjack\b/hijack/g" *.tw $GREP "\bhyjacking\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhyjacking\b/hijacking/g" *.tw $GREP "\bhypocracy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhypocracy\b/hypocrisy/g" *.tw $GREP "\bhypocrasy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhypocrasy\b/hypocrisy/g" *.tw $GREP "\bhypocricy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhypocricy\b/hypocrisy/g" *.tw $GREP "\bhypocrit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhypocrit\b/hypocrite/g" *.tw $GREP "\bhypocrits\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bhypocrits\b/hypocrites/g" *.tw $GREP "\biconclastic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biconclastic\b/iconoclastic/g" *.tw $GREP "\bidaeidae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bidaeidae\b/idea/g" *.tw $GREP "\bidaes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bidaes\b/ideas/g" *.tw $GREP "\bidealogies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bidealogies\b/ideologies/g" *.tw $GREP "\bidealogy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bidealogy\b/ideology/g" *.tw $GREP "\bidenticial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bidenticial\b/identical/g" *.tw $GREP "\bidentifers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bidentifers\b/identifiers/g" *.tw $GREP "\bideosyncratic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bideosyncratic\b/idiosyncratic/g" *.tw $GREP "\bidiosyncracy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bidiosyncracy\b/idiosyncrasy/g" *.tw $GREP "\bIhaca\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bIhaca\b/Ithaca/g" *.tw $GREP "\billegimacy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\billegimacy\b/illegitimacy/g" *.tw $GREP "\billegitmate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\billegitmate\b/illegitimate/g" *.tw $GREP "\billess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\billess\b/illness/g" *.tw $GREP "\billiegal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\billiegal\b/illegal/g" *.tw $GREP "\billution\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\billution\b/illusion/g" *.tw $GREP "\bilness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bilness\b/illness/g" *.tw $GREP "\bilogical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bilogical\b/illogical/g" *.tw $GREP "\bimagenary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimagenary\b/imaginary/g" *.tw $GREP "\bimagin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimagin\b/imagine/g" *.tw $GREP "\bimcomplete\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimcomplete\b/incomplete/g" *.tw $GREP "\bimediately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimediately\b/immediately/g" *.tw $GREP "\bimense\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimense\b/immense/g" *.tw $GREP "\bimmediatley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmediatley\b/immediately/g" *.tw $GREP "\bimmediatly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmediatly\b/immediately/g" *.tw $GREP "\bimmidately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmidately\b/immediately/g" *.tw $GREP "\bimmidiately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmidiately\b/immediately/g" *.tw $GREP "\bimmitate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmitate\b/imitate/g" *.tw $GREP "\bimmitated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmitated\b/imitated/g" *.tw $GREP "\bimmitating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmitating\b/imitating/g" *.tw $GREP "\bimmitator\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmitator\b/imitator/g" *.tw $GREP "\bimmunosupressant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimmunosupressant\b/immunosuppressant/g" *.tw $GREP "\bimpecabbly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimpecabbly\b/impeccably/g" *.tw $GREP "\bimpedence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimpedence\b/impedance/g" *.tw $GREP "\bimplamenting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimplamenting\b/implementing/g" *.tw $GREP "\bimpliment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimpliment\b/implement/g" *.tw $GREP "\bimplimented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimplimented\b/implemented/g" *.tw $GREP "\bimploys\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimploys\b/employs/g" *.tw $GREP "\bimportamt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimportamt\b/important/g" *.tw $GREP "\bimpressario\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimpressario\b/impresario/g" *.tw $GREP "\bimprioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimprioned\b/imprisoned/g" *.tw $GREP "\bimprisonned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimprisonned\b/imprisoned/g" *.tw $GREP "\bimprovision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimprovision\b/improvisation/g" *.tw $GREP "\bimprovments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bimprovments\b/improvements/g" *.tw $GREP "\binablility\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binablility\b/inability/g" *.tw $GREP "\binaccessable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binaccessable\b/inaccessible/g" *.tw $GREP "\binadiquate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binadiquate\b/inadequate/g" *.tw $GREP "\binadquate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binadquate\b/inadequate/g" *.tw $GREP "\binadvertant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binadvertant\b/inadvertent/g" *.tw $GREP "\binadvertantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binadvertantly\b/inadvertently/g" *.tw $GREP "\binagurated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binagurated\b/inaugurated/g" *.tw $GREP "\binaguration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binaguration\b/inauguration/g" *.tw $GREP "\binappropiate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binappropiate\b/inappropriate/g" *.tw $GREP "\binaugures\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binaugures\b/inaugurates/g" *.tw $GREP "\binbalance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binbalance\b/imbalance/g" *.tw $GREP "\binbalanced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binbalanced\b/imbalanced/g" *.tw $GREP "\binbetween\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binbetween\b/between/g" *.tw $GREP "\bincarcirated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincarcirated\b/incarcerated/g" *.tw $GREP "\bincidentially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincidentially\b/incidentally/g" *.tw $GREP "\bincidently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincidently\b/incidentally/g" *.tw $GREP "\binclreased\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binclreased\b/increased/g" *.tw $GREP "\binclud\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binclud\b/include/g" *.tw $GREP "\bincludng\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincludng\b/including/g" *.tw $GREP "\bincompatabilities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompatabilities\b/incompatibilities/g" *.tw $GREP "\bincompatability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompatability\b/incompatibility/g" *.tw $GREP "\bincompatable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompatable\b/incompatible/g" *.tw $GREP "\bincompatablities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompatablities\b/incompatibilities/g" *.tw $GREP "\bincompatablity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompatablity\b/incompatibility/g" *.tw $GREP "\bincompatiblities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompatiblities\b/incompatibilities/g" *.tw $GREP "\bincompatiblity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompatiblity\b/incompatibility/g" *.tw $GREP "\bincompetance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompetance\b/incompetence/g" *.tw $GREP "\bincompetant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincompetant\b/incompetent/g" *.tw $GREP "\bincomptable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincomptable\b/incompatible/g" *.tw $GREP "\bincomptetent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincomptetent\b/incompetent/g" *.tw $GREP "\binconsistant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binconsistant\b/inconsistent/g" *.tw $GREP "\bincoroporated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincoroporated\b/incorporated/g" *.tw $GREP "\bincorperation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincorperation\b/incorporation/g" *.tw $GREP "\bincorportaed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincorportaed\b/incorporated/g" *.tw $GREP "\bincorprates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincorprates\b/incorporates/g" *.tw $GREP "\bincorruptable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincorruptable\b/incorruptible/g" *.tw $GREP "\bincramentally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincramentally\b/incrementally/g" *.tw $GREP "\bincreadible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincreadible\b/incredible/g" *.tw $GREP "\bincredable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincredable\b/incredible/g" *.tw $GREP "\binctroduce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binctroduce\b/introduce/g" *.tw $GREP "\binctroduced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binctroduced\b/introduced/g" *.tw $GREP "\bincuding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincuding\b/including/g" *.tw $GREP "\bincunabla\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bincunabla\b/incunabula/g" *.tw $GREP "\bindefinately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindefinately\b/indefinitely/g" *.tw $GREP "\bindefineable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindefineable\b/undefinable/g" *.tw $GREP "\bindefinitly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindefinitly\b/indefinitely/g" *.tw $GREP "\bindentical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindentical\b/identical/g" *.tw $GREP "\bindepedantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindepedantly\b/independently/g" *.tw $GREP "\bindepedence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindepedence\b/independence/g" *.tw $GREP "\bindependance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindependance\b/independence/g" *.tw $GREP "\bindependant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindependant\b/independent/g" *.tw $GREP "\bindependantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindependantly\b/independently/g" *.tw $GREP "\bindependece\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindependece\b/independence/g" *.tw $GREP "\bindependendet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindependendet\b/independent/g" *.tw $GREP "\bindespensable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindespensable\b/indispensable/g" *.tw $GREP "\bindespensible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindespensible\b/indispensable/g" *.tw $GREP "\bindictement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindictement\b/indictment/g" *.tw $GREP "\bindigineous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindigineous\b/indigenous/g" *.tw $GREP "\bindipendence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindipendence\b/independence/g" *.tw $GREP "\bindipendent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindipendent\b/independent/g" *.tw $GREP "\bindipendently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindipendently\b/independently/g" *.tw $GREP "\bindispensible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindispensible\b/indispensable/g" *.tw $GREP "\bindisputible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindisputible\b/indisputable/g" *.tw $GREP "\bindisputibly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindisputibly\b/indisputably/g" *.tw $GREP "\bindite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindite\b/indict/g" *.tw $GREP "\bindividualy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindividualy\b/individually/g" *.tw $GREP "\bindpendent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindpendent\b/independent/g" *.tw $GREP "\bindpendently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindpendently\b/independently/g" *.tw $GREP "\bindulgue\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindulgue\b/indulge/g" *.tw $GREP "\bindutrial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindutrial\b/industrial/g" *.tw $GREP "\bindviduals\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bindviduals\b/individuals/g" *.tw $GREP "\binefficienty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binefficienty\b/inefficiently/g" *.tw $GREP "\binevatible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binevatible\b/inevitable/g" *.tw $GREP "\binevitible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binevitible\b/inevitable/g" *.tw $GREP "\binevititably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binevititably\b/inevitably/g" *.tw $GREP "\binfalability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfalability\b/infallibility/g" *.tw $GREP "\binfallable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfallable\b/infallible/g" *.tw $GREP "\binfectuous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfectuous\b/infectious/g" *.tw $GREP "\binfered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfered\b/inferred/g" *.tw $GREP "\binfilitrate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfilitrate\b/infiltrate/g" *.tw $GREP "\binfilitrated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfilitrated\b/infiltrated/g" *.tw $GREP "\binfilitration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfilitration\b/infiltration/g" *.tw $GREP "\binfinit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfinit\b/infinite/g" *.tw $GREP "\binflamation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binflamation\b/inflammation/g" *.tw $GREP "\binfluencial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfluencial\b/influential/g" *.tw $GREP "\binfluented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfluented\b/influenced/g" *.tw $GREP "\binfomation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfomation\b/information/g" *.tw $GREP "\binformtion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binformtion\b/information/g" *.tw $GREP "\binfrantryman\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfrantryman\b/infantryman/g" *.tw $GREP "\binfrigement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binfrigement\b/infringement/g" *.tw $GREP "\bingenius\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bingenius\b/ingenious/g" *.tw $GREP "\bingreediants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bingreediants\b/ingredients/g" *.tw $GREP "\binhabitans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binhabitans\b/inhabitants/g" *.tw $GREP "\binherantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binherantly\b/inherently/g" *.tw $GREP "\binheritence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binheritence\b/inheritance/g" *.tw $GREP "\binital\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binital\b/initial/g" *.tw $GREP "\binitally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binitally\b/initially/g" *.tw $GREP "\binitation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binitation\b/initiation/g" *.tw $GREP "\binitiaitive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binitiaitive\b/initiative/g" *.tw $GREP "\binlcuding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binlcuding\b/including/g" *.tw $GREP "\binmigrant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binmigrant\b/immigrant/g" *.tw $GREP "\binmigrants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binmigrants\b/immigrants/g" *.tw $GREP "\binnoculated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binnoculated\b/inoculated/g" *.tw $GREP "\binocence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binocence\b/innocence/g" *.tw $GREP "\binofficial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binofficial\b/unofficial/g" *.tw $GREP "\binot\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binot\b/into/g" *.tw $GREP "\binpeach\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binpeach\b/impeach/g" *.tw $GREP "\binpending\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binpending\b/impending/g" *.tw $GREP "\binpenetrable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binpenetrable\b/impenetrable/g" *.tw $GREP "\binpolite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binpolite\b/impolite/g" *.tw $GREP "\binprisonment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binprisonment\b/imprisonment/g" *.tw $GREP "\binproving\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binproving\b/improving/g" *.tw $GREP "\binsectiverous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binsectiverous\b/insectivorous/g" *.tw $GREP "\binsensative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binsensative\b/insensitive/g" *.tw $GREP "\binseperable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binseperable\b/inseparable/g" *.tw $GREP "\binsistance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binsistance\b/insistence/g" *.tw $GREP "\binsitution\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binsitution\b/institution/g" *.tw $GREP "\binsitutions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binsitutions\b/institutions/g" *.tw $GREP "\binstade\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binstade\b/instead/g" *.tw $GREP "\binstatance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binstatance\b/instance/g" *.tw $GREP "\binstitue\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binstitue\b/institute/g" *.tw $GREP "\binstuction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binstuction\b/instruction/g" *.tw $GREP "\binstuments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binstuments\b/instruments/g" *.tw $GREP "\binstutionalized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binstutionalized\b/institutionalized/g" *.tw $GREP "\binstutions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binstutions\b/intuitions/g" *.tw $GREP "\binsurence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binsurence\b/insurance/g" *.tw $GREP "\bintelectual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintelectual\b/intellectual/g" *.tw $GREP "\binteligence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binteligence\b/intelligence/g" *.tw $GREP "\binteligent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binteligent\b/intelligent/g" *.tw $GREP "\bintenational\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintenational\b/international/g" *.tw $GREP "\bintepretation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintepretation\b/interpretation/g" *.tw $GREP "\bintepretator\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintepretator\b/interpretor/g" *.tw $GREP "\binterational\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterational\b/international/g" *.tw $GREP "\binterchangable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterchangable\b/interchangeable/g" *.tw $GREP "\binterchangably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterchangably\b/interchangeably/g" *.tw $GREP "\bintercontinential\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintercontinential\b/intercontinental/g" *.tw $GREP "\bintercontinetal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintercontinetal\b/intercontinental/g" *.tw $GREP "\binterelated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterelated\b/interrelated/g" *.tw $GREP "\binterferance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterferance\b/interference/g" *.tw $GREP "\binterfereing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterfereing\b/interfering/g" *.tw $GREP "\bintergrated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintergrated\b/integrated/g" *.tw $GREP "\bintergration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintergration\b/integration/g" *.tw $GREP "\binterm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterm\b/interim/g" *.tw $GREP "\binternation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binternation\b/international/g" *.tw $GREP "\binterpet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterpet\b/interpret/g" *.tw $GREP "\binterrim\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterrim\b/interim/g" *.tw $GREP "\binterrugum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterrugum\b/interregnum/g" *.tw $GREP "\bintertaining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintertaining\b/entertaining/g" *.tw $GREP "\binterupt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binterupt\b/interrupt/g" *.tw $GREP "\bintervines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintervines\b/intervenes/g" *.tw $GREP "\bintevene\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintevene\b/intervene/g" *.tw $GREP "\bintial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintial\b/initial/g" *.tw $GREP "\bintially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintially\b/initially/g" *.tw $GREP "\bintrduced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintrduced\b/introduced/g" *.tw $GREP "\bintrest\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintrest\b/interest/g" *.tw $GREP "\bintrodued\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintrodued\b/introduced/g" *.tw $GREP "\bintruduced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintruduced\b/introduced/g" *.tw $GREP "\bintrument\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintrument\b/instrument/g" *.tw $GREP "\bintrumental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintrumental\b/instrumental/g" *.tw $GREP "\bintruments\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintruments\b/instruments/g" *.tw $GREP "\bintrusted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintrusted\b/entrusted/g" *.tw $GREP "\bintutive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintutive\b/intuitive/g" *.tw $GREP "\bintutively\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bintutively\b/intuitively/g" *.tw $GREP "\binudstry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binudstry\b/industry/g" *.tw $GREP "\binventer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binventer\b/inventor/g" *.tw $GREP "\binvertibrates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binvertibrates\b/invertebrates/g" *.tw $GREP "\binvestingate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binvestingate\b/investigate/g" *.tw $GREP "\binvolvment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\binvolvment\b/involvement/g" *.tw $GREP "\birelevent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\birelevent\b/irrelevant/g" *.tw $GREP "\biresistable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biresistable\b/irresistible/g" *.tw $GREP "\biresistably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biresistably\b/irresistibly/g" *.tw $GREP "\biresistible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biresistible\b/irresistible/g" *.tw $GREP "\biresistibly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biresistibly\b/irresistibly/g" *.tw $GREP "\biritable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biritable\b/irritable/g" *.tw $GREP "\biritated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biritated\b/irritated/g" *.tw $GREP "\bironicly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bironicly\b/ironically/g" *.tw $GREP "\birregardless\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\birregardless\b/regardless/g" *.tw $GREP "\birrelevent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\birrelevent\b/irrelevant/g" *.tw $GREP "\birreplacable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\birreplacable\b/irreplaceable/g" *.tw $GREP "\birresistable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\birresistable\b/irresistible/g" *.tw $GREP "\birresistably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\birresistably\b/irresistibly/g" *.tw $GREP "\bisnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bisnt\b/isn't/g" *.tw $GREP "\bIsraelies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bIsraelies\b/Israelis/g" *.tw $GREP "\bissueing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bissueing\b/issuing/g" *.tw $GREP "\bitnroduced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bitnroduced\b/introduced/g" *.tw $GREP "\biunior\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biunior\b/junior/g" *.tw $GREP "\biwll\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biwll\b/will/g" *.tw $GREP "\biwth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\biwth\b/with/g" *.tw $GREP "\bJanurary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bJanurary\b/January/g" *.tw $GREP "\bJanuray\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bJanuray\b/January/g" *.tw $GREP "\bJapanes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bJapanes\b/Japanese/g" *.tw $GREP "\bjaques\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjaques\b/jacques/g" *.tw $GREP "\bjeapardy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjeapardy\b/jeopardy/g" *.tw $GREP "\bjewllery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjewllery\b/jewellery/g" *.tw $GREP "\bJohanine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bJohanine\b/Johannine/g" *.tw $GREP "\bjorunal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjorunal\b/journal/g" *.tw $GREP "\bJospeh\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bJospeh\b/Joseph/g" *.tw $GREP "\bjouney\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjouney\b/journey/g" *.tw $GREP "\bjournied\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjournied\b/journeyed/g" *.tw $GREP "\bjournies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjournies\b/journeys/g" *.tw $GREP "\bjstu\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjstu\b/just/g" *.tw $GREP "\bjsut\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjsut\b/just/g" *.tw $GREP "\bJuadaism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bJuadaism\b/Judaism/g" *.tw $GREP "\bJuadism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bJuadism\b/Judaism/g" *.tw $GREP "\bjudical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjudical\b/judicial/g" *.tw $GREP "\bjudisuary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjudisuary\b/judiciary/g" *.tw $GREP "\bjuducial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjuducial\b/judicial/g" *.tw $GREP "\bjuristiction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjuristiction\b/jurisdiction/g" *.tw $GREP "\bjuristictions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bjuristictions\b/jurisdictions/g" *.tw $GREP "\bkindergarden\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bkindergarden\b/kindergarten/g" *.tw $GREP "\bklenex\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bklenex\b/kleenex/g" *.tw $GREP "\bknifes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bknifes\b/knives/g" *.tw $GREP "\bknive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bknive\b/knife/g" *.tw $GREP "\bknowlege\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bknowlege\b/knowledge/g" *.tw $GREP "\bknowlegeable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bknowlegeable\b/knowledgeable/g" *.tw $GREP "\bknwo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bknwo\b/know/g" *.tw $GREP "\bknwos\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bknwos\b/knows/g" *.tw $GREP "\bkonw\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bkonw\b/know/g" *.tw $GREP "\bkonws\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bkonws\b/knows/g" *.tw $GREP "\bkwno\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bkwno\b/know/g" *.tw $GREP "\blabratory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blabratory\b/laboratory/g" *.tw $GREP "\blaguage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blaguage\b/language/g" *.tw $GREP "\blaguages\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blaguages\b/languages/g" *.tw $GREP "\blarg\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blarg\b/large/g" *.tw $GREP "\blargst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blargst\b/largest/g" *.tw $GREP "\blarrry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blarrry\b/larry/g" *.tw $GREP "\blastr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blastr\b/last/g" *.tw $GREP "\blattitude\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blattitude\b/latitude/g" *.tw $GREP "\blaunhed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blaunhed\b/launched/g" *.tw $GREP "\blavae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blavae\b/larvae/g" *.tw $GREP "\blayed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blayed\b/laid/g" *.tw $GREP "\blazyness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blazyness\b/laziness/g" *.tw $GREP "\bleage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bleage\b/league/g" *.tw $GREP "\bleathal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bleathal\b/lethal/g" *.tw $GREP "\blefted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blefted\b/left/g" *.tw $GREP "\blegitamate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blegitamate\b/legitimate/g" *.tw $GREP "\blegitmate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blegitmate\b/legitimate/g" *.tw $GREP "\bleibnitz\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bleibnitz\b/leibniz/g" *.tw $GREP "\blenght\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blenght\b/length/g" *.tw $GREP "\bleran\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bleran\b/learn/g" *.tw $GREP "\blerans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blerans\b/learns/g" *.tw $GREP "\bleutenant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bleutenant\b/lieutenant/g" *.tw $GREP "\blevetate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blevetate\b/levitate/g" *.tw $GREP "\blevetated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blevetated\b/levitated/g" *.tw $GREP "\blevetates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blevetates\b/levitates/g" *.tw $GREP "\blevetating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blevetating\b/levitating/g" *.tw $GREP "\blevle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blevle\b/level/g" *.tw $GREP "\bliasion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliasion\b/liaison/g" *.tw $GREP "\bliason\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliason\b/liaison/g" *.tw $GREP "\bliasons\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliasons\b/liaisons/g" *.tw $GREP "\blibary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blibary\b/library/g" *.tw $GREP "\blibell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blibell\b/libel/g" *.tw $GREP "\blibguistic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blibguistic\b/linguistic/g" *.tw $GREP "\blibguistics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blibguistics\b/linguistics/g" *.tw $GREP "\blibitarianisn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blibitarianisn\b/libertarianism/g" *.tw $GREP "\blieing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blieing\b/lying/g" *.tw $GREP "\bliek\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliek\b/like/g" *.tw $GREP "\bliekd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliekd\b/liked/g" *.tw $GREP "\bliesure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliesure\b/leisure/g" *.tw $GREP "\blieuenant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blieuenant\b/lieutenant/g" *.tw $GREP "\blieved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blieved\b/lived/g" *.tw $GREP "\bliftime\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliftime\b/lifetime/g" *.tw $GREP "\blightyear\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blightyear\b/light year/g" *.tw $GREP "\blightyears\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blightyears\b/light years/g" *.tw $GREP "\blikelyhood\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blikelyhood\b/likelihood/g" *.tw $GREP "\blinnaena\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blinnaena\b/linnaean/g" *.tw $GREP "\blippizaner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blippizaner\b/lipizzaner/g" *.tw $GREP "\bliquify\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliquify\b/liquefy/g" *.tw $GREP "\blistners\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blistners\b/listeners/g" *.tw $GREP "\blitature\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blitature\b/literature/g" *.tw $GREP "\bliteraly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliteraly\b/literally/g" *.tw $GREP "\bliterture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliterture\b/literature/g" *.tw $GREP "\blittel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blittel\b/little/g" *.tw $GREP "\blitterally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blitterally\b/literally/g" *.tw $GREP "\bliuke\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bliuke\b/like/g" *.tw $GREP "\blivley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blivley\b/lively/g" *.tw $GREP "\blmits\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blmits\b/limits/g" *.tw $GREP "\bloev\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bloev\b/love/g" *.tw $GREP "\blonelyness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blonelyness\b/loneliness/g" *.tw $GREP "\blongitudonal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blongitudonal\b/longitudinal/g" *.tw $GREP "\blonley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blonley\b/lonely/g" *.tw $GREP "\bloosing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bloosing\b/losing/g" *.tw $GREP "\blotharingen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blotharingen\b/lothringen/g" *.tw $GREP "\blsat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blsat\b/last/g" *.tw $GREP "\blukid\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blukid\b/likud/g" *.tw $GREP "\blveo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blveo\b/love/g" *.tw $GREP "\blvoe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\blvoe\b/love/g" *.tw $GREP "\bLybia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bLybia\b/Libya/g" *.tw $GREP "\bmackeral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmackeral\b/mackerel/g" *.tw $GREP "\bmagasine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmagasine\b/magazine/g" *.tw $GREP "\bmagizine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmagizine\b/magazine/g" *.tw $GREP "\bmagisine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmagisine\b/magazine/g" *.tw $GREP "\bmagincian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmagincian\b/magician/g" *.tw $GREP "\bmagnificient\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmagnificient\b/magnificent/g" *.tw $GREP "\bmagolia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmagolia\b/magnolia/g" *.tw $GREP "\bmailny\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmailny\b/mainly/g" *.tw $GREP "\bmaintainance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaintainance\b/maintenance/g" *.tw $GREP "\bmaintainence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaintainence\b/maintenance/g" *.tw $GREP "\bmaintance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaintance\b/maintenance/g" *.tw $GREP "\bmaintenence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaintenence\b/maintenance/g" *.tw $GREP "\bmaintinaing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaintinaing\b/maintaining/g" *.tw $GREP "\bmaintioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaintioned\b/mentioned/g" *.tw $GREP "\bmajoroty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmajoroty\b/majority/g" *.tw $GREP "\bmakse\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmakse\b/makes/g" *.tw $GREP "\bMalcom\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMalcom\b/Malcolm/g" *.tw $GREP "\bmaltesian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaltesian\b/Maltese/g" *.tw $GREP "\bmamal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmamal\b/mammal/g" *.tw $GREP "\bmamalian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmamalian\b/mammalian/g" *.tw $GREP "\bmanagment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanagment\b/management/g" *.tw $GREP "\bmaneouvre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaneouvre\b/manoeuvre/g" *.tw $GREP "\bmaneouvred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaneouvred\b/manoeuvred/g" *.tw $GREP "\bmaneouvres\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaneouvres\b/manoeuvres/g" *.tw $GREP "\bmaneouvring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmaneouvring\b/manoeuvring/g" *.tw $GREP "\bmanisfestations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanisfestations\b/manifestations/g" *.tw $GREP "\bmanoeuverability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanoeuverability\b/maneuverability/g" *.tw $GREP "\bmantained\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmantained\b/maintained/g" *.tw $GREP "\bmanufacturedd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanufacturedd\b/manufactured/g" *.tw $GREP "\bmanufature\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanufature\b/manufacture/g" *.tw $GREP "\bmanufatured\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanufatured\b/manufactured/g" *.tw $GREP "\bmanufaturing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanufaturing\b/manufacturing/g" *.tw $GREP "\bmanuver\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmanuver\b/maneuver/g" *.tw $GREP "\bmariage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmariage\b/marriage/g" *.tw $GREP "\bmarjority\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarjority\b/majority/g" *.tw $GREP "\bmarkes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarkes\b/marks/g" *.tw $GREP "\bmarketting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarketting\b/marketing/g" *.tw $GREP "\bmarmelade\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarmelade\b/marmalade/g" *.tw $GREP "\bmarrage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarrage\b/marriage/g" *.tw $GREP "\bmarraige\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarraige\b/marriage/g" *.tw $GREP "\bmarrtyred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarrtyred\b/martyred/g" *.tw $GREP "\bmarryied\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmarryied\b/married/g" *.tw $GREP "\bMassachussets\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMassachussets\b/Massachusetts/g" *.tw $GREP "\bMassachussetts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMassachussetts\b/Massachusetts/g" *.tw $GREP "\bmassmedia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmassmedia\b/mass media/g" *.tw $GREP "\bmasterbation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmasterbation\b/masturbation/g" *.tw $GREP "\bmataphysical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmataphysical\b/metaphysical/g" *.tw $GREP "\bmateralists\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmateralists\b/materialist/g" *.tw $GREP "\bmathamatics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmathamatics\b/mathematics/g" *.tw $GREP "\bmathematican\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmathematican\b/mathematician/g" *.tw $GREP "\bmathematicas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmathematicas\b/mathematics/g" *.tw $GREP "\bmatheticians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmatheticians\b/mathematicians/g" *.tw $GREP "\bmathmatically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmathmatically\b/mathematically/g" *.tw $GREP "\bmathmatician\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmathmatician\b/mathematician/g" *.tw $GREP "\bmathmaticians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmathmaticians\b/mathematicians/g" *.tw $GREP "\bmccarthyst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmccarthyst\b/mccarthyist/g" *.tw $GREP "\bmchanics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmchanics\b/mechanics/g" *.tw $GREP "\bmeaninng\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmeaninng\b/meaning/g" *.tw $GREP "\bmechandise\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmechandise\b/merchandise/g" *.tw $GREP "\bmedacine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmedacine\b/medicine/g" *.tw $GREP "\bmedeival\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmedeival\b/medieval/g" *.tw $GREP "\bmedevial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmedevial\b/medieval/g" *.tw $GREP "\bmediciney\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmediciney\b/mediciny/g" *.tw $GREP "\bmedievel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmedievel\b/medieval/g" *.tw $GREP "\bmediterainnean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmediterainnean\b/mediterranean/g" *.tw $GREP "\bMediteranean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMediteranean\b/Mediterranean/g" *.tw $GREP "\bmeerkrat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmeerkrat\b/meerkat/g" *.tw $GREP "\bmelieux\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmelieux\b/milieux/g" *.tw $GREP "\bmembranaphone\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmembranaphone\b/membranophone/g" *.tw $GREP "\bmemeber\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmemeber\b/member/g" *.tw $GREP "\bmenally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmenally\b/mentally/g" *.tw $GREP "\bmercentile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmercentile\b/mercantile/g" *.tw $GREP "\bmessanger\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmessanger\b/messenger/g" *.tw $GREP "\bmessenging\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmessenging\b/messaging/g" *.tw $GREP "\bmetalic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmetalic\b/metallic/g" *.tw $GREP "\bmetalurgic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmetalurgic\b/metallurgic/g" *.tw $GREP "\bmetalurgical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmetalurgical\b/metallurgical/g" *.tw $GREP "\bmetalurgy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmetalurgy\b/metallurgy/g" *.tw $GREP "\bmetamorphysis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmetamorphysis\b/metamorphosis/g" *.tw $GREP "\bmetaphoricial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmetaphoricial\b/metaphorical/g" *.tw $GREP "\bmeterologist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmeterologist\b/meteorologist/g" *.tw $GREP "\bmeterology\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmeterology\b/meteorology/g" *.tw $GREP "\bmethaphor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmethaphor\b/metaphor/g" *.tw $GREP "\bmethaphors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmethaphors\b/metaphors/g" *.tw $GREP "\bMichagan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMichagan\b/Michigan/g" *.tw $GREP "\bmicoscopy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmicoscopy\b/microscopy/g" *.tw $GREP "\bmidwifes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmidwifes\b/midwives/g" *.tw $GREP "\bmileau\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmileau\b/milieu/g" *.tw $GREP "\bmilennia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmilennia\b/millennia/g" *.tw $GREP "\bmilennium\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmilennium\b/millennium/g" *.tw $GREP "\bmileu\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmileu\b/milieu/g" *.tw $GREP "\bmiliary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmiliary\b/military/g" *.tw $GREP "\bmiligram\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmiligram\b/milligram/g" *.tw $GREP "\bmilion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmilion\b/million/g" *.tw $GREP "\bmiliraty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmiliraty\b/military/g" *.tw $GREP "\bmillenia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillenia\b/millennia/g" *.tw $GREP "\bmillenial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillenial\b/millennial/g" *.tw $GREP "\bmillenialism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillenialism\b/millennialism/g" *.tw $GREP "\bmillenium\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillenium\b/millennium/g" *.tw $GREP "\bmillepede\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillepede\b/millipede/g" *.tw $GREP "\bmillioniare\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillioniare\b/millionaire/g" *.tw $GREP "\bmillitant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillitant\b/militant/g" *.tw $GREP "\bmillitary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillitary\b/military/g" *.tw $GREP "\bmillon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmillon\b/million/g" *.tw $GREP "\bmiltary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmiltary\b/military/g" *.tw $GREP "\bminature\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bminature\b/miniature/g" *.tw $GREP "\bminerial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bminerial\b/mineral/g" *.tw $GREP "\bministery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bministery\b/ministry/g" *.tw $GREP "\bminsitry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bminsitry\b/ministry/g" *.tw $GREP "\bminstries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bminstries\b/ministries/g" *.tw $GREP "\bminstry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bminstry\b/ministry/g" *.tw $GREP "\bminumum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bminumum\b/minimum/g" *.tw $GREP "\bmirrorred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmirrorred\b/mirrored/g" *.tw $GREP "\bmiscelaneous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmiscelaneous\b/miscellaneous/g" *.tw $GREP "\bmiscellanious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmiscellanious\b/miscellaneous/g" *.tw $GREP "\bmiscellanous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmiscellanous\b/miscellaneous/g" *.tw $GREP "\bmischeivous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmischeivous\b/mischievous/g" *.tw $GREP "\bmischevious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmischevious\b/mischievous/g" *.tw $GREP "\bmischievious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmischievious\b/mischievous/g" *.tw $GREP "\bmisdameanor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisdameanor\b/misdemeanor/g" *.tw $GREP "\bmisdameanors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisdameanors\b/misdemeanors/g" *.tw $GREP "\bmisdemenor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisdemenor\b/misdemeanor/g" *.tw $GREP "\bmisdemenors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisdemenors\b/misdemeanors/g" *.tw $GREP "\bmisfourtunes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisfourtunes\b/misfortunes/g" *.tw $GREP "\bmisile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisile\b/missile/g" *.tw $GREP "\bMisouri\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMisouri\b/Missouri/g" *.tw $GREP "\bmispell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmispell\b/misspell/g" *.tw $GREP "\bmispelled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmispelled\b/misspelled/g" *.tw $GREP "\bmispelling\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmispelling\b/misspelling/g" *.tw $GREP "\bmissen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmissen\b/mizzen/g" *.tw $GREP "\bMissisipi\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMissisipi\b/Mississippi/g" *.tw $GREP "\bMissisippi\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMissisippi\b/Mississippi/g" *.tw $GREP "\bmissle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmissle\b/missile/g" *.tw $GREP "\bmissonary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmissonary\b/missionary/g" *.tw $GREP "\bmisterious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisterious\b/mysterious/g" *.tw $GREP "\bmistery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmistery\b/mystery/g" *.tw $GREP "\bmisteryous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmisteryous\b/mysterious/g" *.tw $GREP "\bmkae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmkae\b/make/g" *.tw $GREP "\bmkaes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmkaes\b/makes/g" *.tw $GREP "\bmkaing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmkaing\b/making/g" *.tw $GREP "\bmkea\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmkea\b/make/g" *.tw $GREP "\bmoderm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmoderm\b/modem/g" *.tw $GREP "\bmodle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmodle\b/model/g" *.tw $GREP "\bmoent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmoent\b/moment/g" *.tw $GREP "\bmoeny\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmoeny\b/money/g" *.tw $GREP "\bmohammedans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmohammedans\b/muslims/g" *.tw $GREP "\bmoil\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmoil\b/mohel/g" *.tw $GREP "\bmoil\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmoil\b/soil/g" *.tw $GREP "\bmoleclues\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmoleclues\b/molecules/g" *.tw $GREP "\bmomento\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmomento\b/memento/g" *.tw $GREP "\bmonestaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmonestaries\b/monasteries/g" *.tw $GREP "\bmonickers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmonickers\b/monikers/g" *.tw $GREP "\bmonolite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmonolite\b/monolithic/g" *.tw $GREP "\bmontains\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmontains\b/mountains/g" *.tw $GREP "\bmontanous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmontanous\b/mountainous/g" *.tw $GREP "\bMontnana\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMontnana\b/Montana/g" *.tw $GREP "\bmonts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmonts\b/months/g" *.tw $GREP "\bmontypic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmontypic\b/monotypic/g" *.tw $GREP "\bmorgage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmorgage\b/mortgage/g" *.tw $GREP "\bMorisette\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMorisette\b/Morissette/g" *.tw $GREP "\bMorrisette\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMorrisette\b/Morissette/g" *.tw $GREP "\bmorroccan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmorroccan\b/moroccan/g" *.tw $GREP "\bmorrocco\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmorrocco\b/morocco/g" *.tw $GREP "\bmorroco\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmorroco\b/morocco/g" *.tw $GREP "\bmortage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmortage\b/mortgage/g" *.tw $GREP "\bmosture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmosture\b/moisture/g" *.tw $GREP "\bmotiviated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmotiviated\b/motivated/g" *.tw $GREP "\bmounth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmounth\b/month/g" *.tw $GREP "\bmovei\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmovei\b/movie/g" *.tw $GREP "\bmovment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmovment\b/movement/g" *.tw $GREP "\bmroe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmroe\b/more/g" *.tw $GREP "\bmucuous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmucuous\b/mucous/g" *.tw $GREP "\bmuder\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmuder\b/murder/g" *.tw $GREP "\bmudering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmudering\b/murdering/g" *.tw $GREP "\bmuhammadan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmuhammadan\b/muslim/g" *.tw $GREP "\bmulticultralism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmulticultralism\b/multiculturalism/g" *.tw $GREP "\bmultipled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmultipled\b/multiplied/g" *.tw $GREP "\bmultiplers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmultiplers\b/multipliers/g" *.tw $GREP "\bmunbers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmunbers\b/numbers/g" *.tw $GREP "\bmuncipalities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmuncipalities\b/municipalities/g" *.tw $GREP "\bmuncipality\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmuncipality\b/municipality/g" *.tw $GREP "\bmunnicipality\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmunnicipality\b/municipality/g" *.tw $GREP "\bmuscial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmuscial\b/musical/g" *.tw $GREP "\bmuscician\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmuscician\b/musician/g" *.tw $GREP "\bmuscicians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmuscicians\b/musicians/g" *.tw $GREP "\bmutiliated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmutiliated\b/mutilated/g" *.tw $GREP "\bmyraid\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmyraid\b/myriad/g" *.tw $GREP "\bmysef\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmysef\b/myself/g" *.tw $GREP "\bmysogynist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmysogynist\b/misogynist/g" *.tw $GREP "\bmysogyny\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmysogyny\b/misogyny/g" *.tw $GREP "\bmysterous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bmysterous\b/mysterious/g" *.tw $GREP "\bMythraic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bMythraic\b/Mithraic/g" *.tw $GREP "\bnaieve\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnaieve\b/naive/g" *.tw $GREP "\bNaploeon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bNaploeon\b/Napoleon/g" *.tw $GREP "\bNapolean\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bNapolean\b/Napoleon/g" *.tw $GREP "\bNapoleonian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bNapoleonian\b/Napoleonic/g" *.tw $GREP "\bnaturaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnaturaly\b/naturally/g" *.tw $GREP "\bnaturely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnaturely\b/naturally/g" *.tw $GREP "\bnaturual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnaturual\b/natural/g" *.tw $GREP "\bnaturually\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnaturually\b/naturally/g" *.tw $GREP "\bNazereth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bNazereth\b/Nazareth/g" *.tw $GREP "\bneccesarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneccesarily\b/necessarily/g" *.tw $GREP "\bneccesary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneccesary\b/necessary/g" *.tw $GREP "\bneccessarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneccessarily\b/necessarily/g" *.tw $GREP "\bneccessary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneccessary\b/necessary/g" *.tw $GREP "\bneccessities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneccessities\b/necessities/g" *.tw $GREP "\bnecesarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnecesarily\b/necessarily/g" *.tw $GREP "\bnecesary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnecesary\b/necessary/g" *.tw $GREP "\bnecessiate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnecessiate\b/necessitate/g" *.tw $GREP "\bneglible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneglible\b/negligible/g" *.tw $GREP "\bnegligable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnegligable\b/negligible/g" *.tw $GREP "\bnegociate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnegociate\b/negotiate/g" *.tw $GREP "\bnegociation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnegociation\b/negotiation/g" *.tw $GREP "\bnegociations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnegociations\b/negotiations/g" *.tw $GREP "\bnegotation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnegotation\b/negotiation/g" *.tw $GREP "\bneigborhood\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneigborhood\b/neighborhood/g" *.tw $GREP "\bneigbourhood\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneigbourhood\b/neighbourhood/g" *.tw $GREP "\bneolitic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneolitic\b/neolithic/g" *.tw $GREP "\bnessasarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnessasarily\b/necessarily/g" *.tw $GREP "\bnessecary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnessecary\b/necessary/g" *.tw $GREP "\bnestin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnestin\b/nesting/g" *.tw $GREP "\bneverthless\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bneverthless\b/nevertheless/g" *.tw $GREP "\bnewletters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnewletters\b/newsletters/g" *.tw $GREP "\bnickle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnickle\b/nickel/g" *.tw $GREP "\bnightfa;;\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnightfa;;\b/nightfall/g" *.tw $GREP "\bnightime\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnightime\b/nighttime/g" *.tw $GREP "\bnineth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnineth\b/ninth/g" *.tw $GREP "\bninteenth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bninteenth\b/nineteenth/g" *.tw $GREP "\bninties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bninties\b/1990s/g" *.tw $GREP "\bninty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bninty\b/ninety/g" *.tw $GREP "\bnkow\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnkow\b/know/g" *.tw $GREP "\bnkwo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnkwo\b/know/g" *.tw $GREP "\bnmae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnmae\b/name/g" *.tw $GREP "\bnoncombatents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoncombatents\b/noncombatants/g" *.tw $GREP "\bnonsence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnonsence\b/nonsense/g" *.tw $GREP "\bnontheless\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnontheless\b/nonetheless/g" *.tw $GREP "\bnoone\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoone\b/no one/g" *.tw $GREP "\bnorhern\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnorhern\b/northern/g" *.tw $GREP "\bnorthen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnorthen\b/northern/g" *.tw $GREP "\bnorthereastern\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnorthereastern\b/northeastern/g" *.tw $GREP "\bnotabley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnotabley\b/notably/g" *.tw $GREP "\bnoteable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoteable\b/notable/g" *.tw $GREP "\bnoteably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoteably\b/notably/g" *.tw $GREP "\bnoteriety\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoteriety\b/notoriety/g" *.tw $GREP "\bnoth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoth\b/north/g" *.tw $GREP "\bnothern\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnothern\b/northern/g" *.tw $GREP "\bnoticable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoticable\b/noticeable/g" *.tw $GREP "\bnoticably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoticably\b/noticeably/g" *.tw $GREP "\bnoticeing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoticeing\b/noticing/g" *.tw $GREP "\bnoticible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoticible\b/noticeable/g" *.tw $GREP "\bnotwhithstanding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnotwhithstanding\b/notwithstanding/g" *.tw $GREP "\bnoveau\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnoveau\b/nouveau/g" *.tw $GREP "\bNovermber\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bNovermber\b/November/g" *.tw $GREP "\bnowdays\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnowdays\b/nowadays/g" *.tw $GREP "\bnowe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnowe\b/now/g" *.tw $GREP "\bnto\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnto\b/not/g" *.tw $GREP "\bnucular\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnucular\b/nuclear/g" *.tw $GREP "\bnuculear\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnuculear\b/nuclear/g" *.tw $GREP "\bnuisanse\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnuisanse\b/nuisance/g" *.tw $GREP "\bNullabour\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bNullabour\b/Nullarbor/g" *.tw $GREP "\bnumberous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnumberous\b/numerous/g" *.tw $GREP "\bNuremburg\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bNuremburg\b/Nuremberg/g" *.tw $GREP "\bnusance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnusance\b/nuisance/g" *.tw $GREP "\bnutritent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnutritent\b/nutrient/g" *.tw $GREP "\bnutritents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnutritents\b/nutrients/g" *.tw $GREP "\bnuturing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bnuturing\b/nurturing/g" *.tw $GREP "\bobediance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bobediance\b/obedience/g" *.tw $GREP "\bobediant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bobediant\b/obedient/g" *.tw $GREP "\bobession\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bobession\b/obsession/g" *.tw $GREP "\bobssessed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bobssessed\b/obsessed/g" *.tw $GREP "\bobstacal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bobstacal\b/obstacle/g" *.tw $GREP "\bobstancles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bobstancles\b/obstacles/g" *.tw $GREP "\bobstruced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bobstruced\b/obstructed/g" *.tw $GREP "\bocasion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocasion\b/occasion/g" *.tw $GREP "\bocasional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocasional\b/occasional/g" *.tw $GREP "\bocasionally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocasionally\b/occasionally/g" *.tw $GREP "\bocasionaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocasionaly\b/occasionally/g" *.tw $GREP "\bocasioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocasioned\b/occasioned/g" *.tw $GREP "\bocasions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocasions\b/occasions/g" *.tw $GREP "\bocassion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocassion\b/occasion/g" *.tw $GREP "\bocassional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocassional\b/occasional/g" *.tw $GREP "\bocassionally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocassionally\b/occasionally/g" *.tw $GREP "\bocassionaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocassionaly\b/occasionally/g" *.tw $GREP "\bocassioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocassioned\b/occasioned/g" *.tw $GREP "\bocassions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocassions\b/occasions/g" *.tw $GREP "\boccaison\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccaison\b/occasion/g" *.tw $GREP "\boccassion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccassion\b/occasion/g" *.tw $GREP "\boccassional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccassional\b/occasional/g" *.tw $GREP "\boccassionally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccassionally\b/occasionally/g" *.tw $GREP "\boccassionaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccassionaly\b/occasionally/g" *.tw $GREP "\boccassioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccassioned\b/occasioned/g" *.tw $GREP "\boccassions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccassions\b/occasions/g" *.tw $GREP "\boccationally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccationally\b/occasionally/g" *.tw $GREP "\boccour\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccour\b/occur/g" *.tw $GREP "\boccurance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccurance\b/occurrence/g" *.tw $GREP "\boccurances\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccurances\b/occurrences/g" *.tw $GREP "\boccured\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccured\b/occurred/g" *.tw $GREP "\boccurence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccurence\b/occurrence/g" *.tw $GREP "\boccurences\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccurences\b/occurrences/g" *.tw $GREP "\boccuring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccuring\b/occurring/g" *.tw $GREP "\boccurr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccurr\b/occur/g" *.tw $GREP "\boccurrance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccurrance\b/occurrence/g" *.tw $GREP "\boccurrances\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boccurrances\b/occurrences/g" *.tw $GREP "\boctohedra\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boctohedra\b/octahedra/g" *.tw $GREP "\boctohedral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boctohedral\b/octahedral/g" *.tw $GREP "\boctohedron\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boctohedron\b/octahedron/g" *.tw $GREP "\bocuntries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocuntries\b/countries/g" *.tw $GREP "\bocuntry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocuntry\b/country/g" *.tw $GREP "\bocurr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocurr\b/occur/g" *.tw $GREP "\bocurrance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocurrance\b/occurrence/g" *.tw $GREP "\bocurred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocurred\b/occurred/g" *.tw $GREP "\bocurrence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bocurrence\b/occurrence/g" *.tw $GREP "\boffcers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boffcers\b/officers/g" *.tw $GREP "\boffcially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boffcially\b/officially/g" *.tw $GREP "\boffereings\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boffereings\b/offerings/g" *.tw $GREP "\boffical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boffical\b/official/g" *.tw $GREP "\boffically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boffically\b/officially/g" *.tw $GREP "\bofficals\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bofficals\b/officials/g" *.tw $GREP "\bofficaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bofficaly\b/officially/g" *.tw $GREP "\bofficialy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bofficialy\b/officially/g" *.tw $GREP "\boffred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boffred\b/offered/g" *.tw $GREP "\boftenly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boftenly\b/often/g" *.tw $GREP "\bomision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bomision\b/omission/g" *.tw $GREP "\bomited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bomited\b/omitted/g" *.tw $GREP "\bomiting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bomiting\b/omitting/g" *.tw $GREP "\bomlette\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bomlette\b/omelette/g" *.tw $GREP "\bommision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bommision\b/omission/g" *.tw $GREP "\bommited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bommited\b/omitted/g" *.tw $GREP "\bommiting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bommiting\b/omitting/g" *.tw $GREP "\bommitted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bommitted\b/omitted/g" *.tw $GREP "\bommitting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bommitting\b/omitting/g" *.tw $GREP "\bomniverous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bomniverous\b/omnivorous/g" *.tw $GREP "\bomniverously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bomniverously\b/omnivorously/g" *.tw $GREP "\bomre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bomre\b/more/g" *.tw $GREP "\bonyl\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bonyl\b/only/g" *.tw $GREP "\bopeness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopeness\b/openness/g" *.tw $GREP "\boponent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boponent\b/opponent/g" *.tw $GREP "\boportunity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boportunity\b/opportunity/g" *.tw $GREP "\bopose\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopose\b/oppose/g" *.tw $GREP "\boposite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boposite\b/opposite/g" *.tw $GREP "\boposition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boposition\b/opposition/g" *.tw $GREP "\boppenly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boppenly\b/openly/g" *.tw $GREP "\boppinion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boppinion\b/opinion/g" *.tw $GREP "\bopponant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopponant\b/opponent/g" *.tw $GREP "\boppononent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boppononent\b/opponent/g" *.tw $GREP "\boppositition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boppositition\b/opposition/g" *.tw $GREP "\boppossed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boppossed\b/opposed/g" *.tw $GREP "\bopprotunity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopprotunity\b/opportunity/g" *.tw $GREP "\bopression\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopression\b/oppression/g" *.tw $GREP "\bopressive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopressive\b/oppressive/g" *.tw $GREP "\bopthalmic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopthalmic\b/ophthalmic/g" *.tw $GREP "\bopthalmologist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopthalmologist\b/ophthalmologist/g" *.tw $GREP "\bopthalmology\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopthalmology\b/ophthalmology/g" *.tw $GREP "\bopthamologist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bopthamologist\b/ophthalmologist/g" *.tw $GREP "\boptmizations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boptmizations\b/optimizations/g" *.tw $GREP "\boptomism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boptomism\b/optimism/g" *.tw $GREP "\borded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borded\b/ordered/g" *.tw $GREP "\borganim\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borganim\b/organism/g" *.tw $GREP "\borganistion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borganistion\b/organisation/g" *.tw $GREP "\borganiztion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borganiztion\b/organization/g" *.tw $GREP "\borginal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borginal\b/original/g" *.tw $GREP "\borginally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borginally\b/originally/g" *.tw $GREP "\borginize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borginize\b/organise/g" *.tw $GREP "\boridinarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boridinarily\b/ordinarily/g" *.tw $GREP "\boriganaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boriganaly\b/originally/g" *.tw $GREP "\boriginaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boriginaly\b/originally/g" *.tw $GREP "\boriginially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boriginially\b/originally/g" *.tw $GREP "\boriginnally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boriginnally\b/originally/g" *.tw $GREP "\borigional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borigional\b/original/g" *.tw $GREP "\borignally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borignally\b/originally/g" *.tw $GREP "\borignially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\borignially\b/originally/g" *.tw $GREP "\botehr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\botehr\b/other/g" *.tw $GREP "\boublisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boublisher\b/publisher/g" *.tw $GREP "\bouevre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bouevre\b/oeuvre/g" *.tw $GREP "\boustanding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boustanding\b/outstanding/g" *.tw $GREP "\bovershaddowed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bovershaddowed\b/overshadowed/g" *.tw $GREP "\boverthere\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boverthere\b/over there/g" *.tw $GREP "\boverwelming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boverwelming\b/overwhelming/g" *.tw $GREP "\boverwheliming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boverwheliming\b/overwhelming/g" *.tw $GREP "\bowrk\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bowrk\b/work/g" *.tw $GREP "\bowudl\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bowudl\b/would/g" *.tw $GREP "\boxigen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boxigen\b/oxygen/g" *.tw $GREP "\boximoron\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\boximoron\b/oxymoron/g" *.tw $GREP "\bp0enis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bp0enis\b/penis/g" *.tw $GREP "\bpaide\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpaide\b/paid/g" *.tw $GREP "\bpaitience\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpaitience\b/patience/g" *.tw $GREP "\bpaleolitic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpaleolitic\b/paleolithic/g" *.tw $GREP "\bpaliamentarian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpaliamentarian\b/parliamentarian/g" *.tw $GREP "\bPalistian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPalistian\b/Palestinian/g" *.tw $GREP "\bPalistinian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPalistinian\b/Palestinian/g" *.tw $GREP "\bPalistinians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPalistinians\b/Palestinians/g" *.tw $GREP "\bpallete\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpallete\b/palette/g" *.tw $GREP "\bpamflet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpamflet\b/pamphlet/g" *.tw $GREP "\bpamplet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpamplet\b/pamphlet/g" *.tw $GREP "\bpantomine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpantomine\b/pantomime/g" *.tw $GREP "\bPapanicalou\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPapanicalou\b/Papanicolaou/g" *.tw $GREP "\bparalel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparalel\b/parallel/g" *.tw $GREP "\bparalell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparalell\b/parallel/g" *.tw $GREP "\bparalelly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparalelly\b/parallelly/g" *.tw $GREP "\bparalely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparalely\b/parallelly/g" *.tw $GREP "\bparallely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparallely\b/parallelly/g" *.tw $GREP "\bparanthesis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparanthesis\b/parenthesis/g" *.tw $GREP "\bparaphenalia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparaphenalia\b/paraphernalia/g" *.tw $GREP "\bparellels\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparellels\b/parallels/g" *.tw $GREP "\bparisitic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparisitic\b/parasitic/g" *.tw $GREP "\bparituclar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparituclar\b/particular/g" *.tw $GREP "\bparliment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparliment\b/parliament/g" *.tw $GREP "\bparrakeets\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparrakeets\b/parakeets/g" *.tw $GREP "\bparralel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparralel\b/parallel/g" *.tw $GREP "\bparrallel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparrallel\b/parallel/g" *.tw $GREP "\bparrallell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparrallell\b/parallel/g" *.tw $GREP "\bparrallelly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparrallelly\b/parallelly/g" *.tw $GREP "\bparrallely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparrallely\b/parallelly/g" *.tw $GREP "\bpartialy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpartialy\b/partially/g" *.tw $GREP "\bparticually\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparticually\b/particularly/g" *.tw $GREP "\bparticualr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparticualr\b/particular/g" *.tw $GREP "\bparticuarly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparticuarly\b/particularly/g" *.tw $GREP "\bparticularily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparticularily\b/particularly/g" *.tw $GREP "\bparticulary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bparticulary\b/particularly/g" *.tw $GREP "\bpary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpary\b/party/g" *.tw $GREP "\bpased\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpased\b/passed/g" *.tw $GREP "\bpasengers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpasengers\b/passengers/g" *.tw $GREP "\bpasserbys\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpasserbys\b/passersby/g" *.tw $GREP "\bpasttime\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpasttime\b/pastime/g" *.tw $GREP "\bpastural\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpastural\b/pastoral/g" *.tw $GREP "\bpaticular\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpaticular\b/particular/g" *.tw $GREP "\bpattented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpattented\b/patented/g" *.tw $GREP "\bpavillion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpavillion\b/pavilion/g" *.tw $GREP "\bpayed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpayed\b/paid/g" *.tw $GREP "\bpblisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpblisher\b/publisher/g" *.tw $GREP "\bpbulisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpbulisher\b/publisher/g" *.tw $GREP "\bpeacefuland\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeacefuland\b/peaceful and/g" *.tw $GREP "\bpeageant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeageant\b/pageant/g" *.tw $GREP "\bpeaple\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeaple\b/people/g" *.tw $GREP "\bpeaples\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeaples\b/peoples/g" *.tw $GREP "\bpeculure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeculure\b/peculiar/g" *.tw $GREP "\bpedestrain\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpedestrain\b/pedestrian/g" *.tw $GREP "\bpeformed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeformed\b/performed/g" *.tw $GREP "\bpeice\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeice\b/piece/g" *.tw $GREP "\bPeloponnes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPeloponnes\b/Peloponnesus/g" *.tw $GREP "\bpenatly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpenatly\b/penalty/g" *.tw $GREP "\bpenerator\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpenerator\b/penetrator/g" *.tw $GREP "\bpenisula\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpenisula\b/peninsula/g" *.tw $GREP "\bpenisular\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpenisular\b/peninsular/g" *.tw $GREP "\bpenninsula\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpenninsula\b/peninsula/g" *.tw $GREP "\bpenninsular\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpenninsular\b/peninsular/g" *.tw $GREP "\bpennisula\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpennisula\b/peninsula/g" *.tw $GREP "\bPennyslvania\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPennyslvania\b/Pennsylvania/g" *.tw $GREP "\bpensle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpensle\b/pencil/g" *.tw $GREP "\bpensinula\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpensinula\b/peninsula/g" *.tw $GREP "\bpeom\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeom\b/poem/g" *.tw $GREP "\bpeoms\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeoms\b/poems/g" *.tw $GREP "\bpeopel\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeopel\b/people/g" *.tw $GREP "\bpeopels\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeopels\b/peoples/g" *.tw $GREP "\bpeotry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpeotry\b/poetry/g" *.tw $GREP "\bperade\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperade\b/parade/g" *.tw $GREP "\bpercepted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpercepted\b/perceived/g" *.tw $GREP "\bpercieve\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpercieve\b/perceive/g" *.tw $GREP "\bpercieved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpercieved\b/perceived/g" *.tw $GREP "\bperenially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperenially\b/perennially/g" *.tw $GREP "\bperfomance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperfomance\b/performance/g" *.tw $GREP "\bperfomers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperfomers\b/performers/g" *.tw $GREP "\bperformence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperformence\b/performance/g" *.tw $GREP "\bperhasp\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperhasp\b/perhaps/g" *.tw $GREP "\bperheaps\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperheaps\b/perhaps/g" *.tw $GREP "\bperhpas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperhpas\b/perhaps/g" *.tw $GREP "\bperipathetic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperipathetic\b/peripatetic/g" *.tw $GREP "\bperistent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperistent\b/persistent/g" *.tw $GREP "\bperjery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperjery\b/perjury/g" *.tw $GREP "\bperjorative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperjorative\b/pejorative/g" *.tw $GREP "\bpermanant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpermanant\b/permanent/g" *.tw $GREP "\bpermenant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpermenant\b/permanent/g" *.tw $GREP "\bpermenantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpermenantly\b/permanently/g" *.tw $GREP "\bpermissable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpermissable\b/permissible/g" *.tw $GREP "\bperogative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperogative\b/prerogative/g" *.tw $GREP "\bperonal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperonal\b/personal/g" *.tw $GREP "\bperpertrated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperpertrated\b/perpetrated/g" *.tw $GREP "\bperosnality\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperosnality\b/personality/g" *.tw $GREP "\bperphas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperphas\b/perhaps/g" *.tw $GREP "\bperpindicular\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperpindicular\b/perpendicular/g" *.tw $GREP "\bpersan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersan\b/person/g" *.tw $GREP "\bperseverence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bperseverence\b/perseverance/g" *.tw $GREP "\bpersistance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersistance\b/persistence/g" *.tw $GREP "\bpersistant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersistant\b/persistent/g" *.tw $GREP "\bpersonell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersonell\b/personnel/g" *.tw $GREP "\bpersonnell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersonnell\b/personnel/g" *.tw $GREP "\bpersuded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersuded\b/persuaded/g" *.tw $GREP "\bpersue\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersue\b/pursue/g" *.tw $GREP "\bpersued\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersued\b/pursued/g" *.tw $GREP "\bpersuing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersuing\b/pursuing/g" *.tw $GREP "\bpersuit\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersuit\b/pursuit/g" *.tw $GREP "\bpersuits\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpersuits\b/pursuits/g" *.tw $GREP "\bpertubation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpertubation\b/perturbation/g" *.tw $GREP "\bpertubations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpertubations\b/perturbations/g" *.tw $GREP "\bpessiary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpessiary\b/pessary/g" *.tw $GREP "\bpetetion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpetetion\b/petition/g" *.tw $GREP "\bPharoah\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPharoah\b/Pharaoh/g" *.tw $GREP "\bphenomenom\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphenomenom\b/phenomenon/g" *.tw $GREP "\bphenomenonal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphenomenonal\b/phenomenal/g" *.tw $GREP "\bphenomenonly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphenomenonly\b/phenomenally/g" *.tw $GREP "\bphenomonenon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphenomonenon\b/phenomenon/g" *.tw $GREP "\bphenomonon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphenomonon\b/phenomenon/g" *.tw $GREP "\bphenonmena\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphenonmena\b/phenomena/g" *.tw $GREP "\bPhilipines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPhilipines\b/Philippines/g" *.tw $GREP "\bphilisopher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphilisopher\b/philosopher/g" *.tw $GREP "\bphilisophical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphilisophical\b/philosophical/g" *.tw $GREP "\bphilisophy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphilisophy\b/philosophy/g" *.tw $GREP "\bPhillipine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPhillipine\b/Philippine/g" *.tw $GREP "\bPhillipines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPhillipines\b/Philippines/g" *.tw $GREP "\bPhillippines\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPhillippines\b/Philippines/g" *.tw $GREP "\bphillosophically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphillosophically\b/philosophically/g" *.tw $GREP "\bphilospher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphilospher\b/philosopher/g" *.tw $GREP "\bphilosphies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphilosphies\b/philosophies/g" *.tw $GREP "\bphilosphy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphilosphy\b/philosophy/g" *.tw $GREP "\bPhonecian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPhonecian\b/Phoenecian/g" *.tw $GREP "\bphongraph\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphongraph\b/phonograph/g" *.tw $GREP "\bphylosophical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphylosophical\b/philosophical/g" *.tw $GREP "\bphysicaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bphysicaly\b/physically/g" *.tw $GREP "\bpiblisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpiblisher\b/publisher/g" *.tw $GREP "\bpich\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpich\b/pitch/g" *.tw $GREP "\bpilgrimmage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpilgrimmage\b/pilgrimage/g" *.tw $GREP "\bpilgrimmages\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpilgrimmages\b/pilgrimages/g" *.tw $GREP "\bpinapple\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpinapple\b/pineapple/g" *.tw $GREP "\bpinnaple\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpinnaple\b/pineapple/g" *.tw $GREP "\bpinoneered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpinoneered\b/pioneered/g" *.tw $GREP "\bplagarism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplagarism\b/plagiarism/g" *.tw $GREP "\bplanation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplanation\b/plantation/g" *.tw $GREP "\bplaned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplaned\b/planned/g" *.tw $GREP "\bplantiff\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplantiff\b/plaintiff/g" *.tw $GREP "\bplateu\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplateu\b/plateau/g" *.tw $GREP "\bplausable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplausable\b/plausible/g" *.tw $GREP "\bplayright\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplayright\b/playwright/g" *.tw $GREP "\bplaywrite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplaywrite\b/playwright/g" *.tw $GREP "\bplaywrites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplaywrites\b/playwrights/g" *.tw $GREP "\bpleasent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpleasent\b/pleasant/g" *.tw $GREP "\bplebicite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplebicite\b/plebiscite/g" *.tw $GREP "\bplesant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bplesant\b/pleasant/g" *.tw $GREP "\bpoenis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoenis\b/penis/g" *.tw $GREP "\bpoeoples\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoeoples\b/peoples/g" *.tw $GREP "\bpoety\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoety\b/poetry/g" *.tw $GREP "\bpoisin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoisin\b/poison/g" *.tw $GREP "\bpolical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolical\b/political/g" *.tw $GREP "\bpolinator\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolinator\b/pollinator/g" *.tw $GREP "\bpolinators\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolinators\b/pollinators/g" *.tw $GREP "\bpolitican\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolitican\b/politician/g" *.tw $GREP "\bpoliticans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoliticans\b/politicians/g" *.tw $GREP "\bpoltical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoltical\b/political/g" *.tw $GREP "\bpolute\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolute\b/pollute/g" *.tw $GREP "\bpoluted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoluted\b/polluted/g" *.tw $GREP "\bpolutes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolutes\b/pollutes/g" *.tw $GREP "\bpoluting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoluting\b/polluting/g" *.tw $GREP "\bpolution\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolution\b/pollution/g" *.tw $GREP "\bpolyphonyic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolyphonyic\b/polyphonic/g" *.tw $GREP "\bpolysaccaride\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolysaccaride\b/polysaccharide/g" *.tw $GREP "\bpolysaccharid\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpolysaccharid\b/polysaccharide/g" *.tw $GREP "\bpomegranite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpomegranite\b/pomegranate/g" *.tw $GREP "\bpomotion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpomotion\b/promotion/g" *.tw $GREP "\bpoportional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoportional\b/proportional/g" *.tw $GREP "\bpopoulation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpopoulation\b/population/g" *.tw $GREP "\bpopularaty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpopularaty\b/popularity/g" *.tw $GREP "\bpopulare\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpopulare\b/popular/g" *.tw $GREP "\bpopuler\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpopuler\b/popular/g" *.tw $GREP "\bporshan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bporshan\b/portion/g" *.tw $GREP "\bporshon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bporshon\b/portion/g" *.tw $GREP "\bportait\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bportait\b/portrait/g" *.tw $GREP "\bportayed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bportayed\b/portrayed/g" *.tw $GREP "\bportraing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bportraing\b/portraying/g" *.tw $GREP "\bPortugese\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPortugese\b/Portuguese/g" *.tw $GREP "\bportuguease\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bportuguease\b/portuguese/g" *.tw $GREP "\bportugues\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bportugues\b/Portuguese/g" *.tw $GREP "\bposess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposess\b/possess/g" *.tw $GREP "\bposessed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposessed\b/possessed/g" *.tw $GREP "\bposesses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposesses\b/possesses/g" *.tw $GREP "\bposessing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposessing\b/possessing/g" *.tw $GREP "\bposession\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposession\b/possession/g" *.tw $GREP "\bposessions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposessions\b/possessions/g" *.tw $GREP "\bposion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposion\b/poison/g" *.tw $GREP "\bpossable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossable\b/possible/g" *.tw $GREP "\bpossably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossably\b/possibly/g" *.tw $GREP "\bposseses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposseses\b/possesses/g" *.tw $GREP "\bpossesing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossesing\b/possessing/g" *.tw $GREP "\bpossesion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossesion\b/possession/g" *.tw $GREP "\bpossessess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossessess\b/possesses/g" *.tw $GREP "\bpossibile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossibile\b/possible/g" *.tw $GREP "\bpossibilty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossibilty\b/possibility/g" *.tw $GREP "\bpossiblility\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossiblility\b/possibility/g" *.tw $GREP "\bpossiblilty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossiblilty\b/possibility/g" *.tw $GREP "\bpossiblities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossiblities\b/possibilities/g" *.tw $GREP "\bpossiblity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossiblity\b/possibility/g" *.tw $GREP "\bpossition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpossition\b/position/g" *.tw $GREP "\bPostdam\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPostdam\b/Potsdam/g" *.tw $GREP "\bposthomous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bposthomous\b/posthumous/g" *.tw $GREP "\bpostion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpostion\b/position/g" *.tw $GREP "\bpostive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpostive\b/positive/g" *.tw $GREP "\bpotatos\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpotatos\b/potatoes/g" *.tw $GREP "\bpotrait\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpotrait\b/portrait/g" *.tw $GREP "\bpotrayed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpotrayed\b/portrayed/g" *.tw $GREP "\bpoulations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoulations\b/populations/g" *.tw $GREP "\bpoverful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoverful\b/powerful/g" *.tw $GREP "\bpoweful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpoweful\b/powerful/g" *.tw $GREP "\bpowerfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpowerfull\b/powerful/g" *.tw $GREP "\bppublisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bppublisher\b/publisher/g" *.tw $GREP "\bpractial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpractial\b/practical/g" *.tw $GREP "\bpractially\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpractially\b/practically/g" *.tw $GREP "\bpracticaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpracticaly\b/practically/g" *.tw $GREP "\bpracticioner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpracticioner\b/practitioner/g" *.tw $GREP "\bpracticioners\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpracticioners\b/practitioners/g" *.tw $GREP "\bpracticly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpracticly\b/practically/g" *.tw $GREP "\bpractioner\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpractioner\b/practitioner/g" *.tw $GREP "\bpractioners\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpractioners\b/practitioners/g" *.tw $GREP "\bprairy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprairy\b/prairie/g" *.tw $GREP "\bprarie\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprarie\b/prairie/g" *.tw $GREP "\bpraries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpraries\b/prairies/g" *.tw $GREP "\bpratice\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpratice\b/practice/g" *.tw $GREP "\bpreample\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreample\b/preamble/g" *.tw $GREP "\bprecedessor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprecedessor\b/predecessor/g" *.tw $GREP "\bpreceed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreceed\b/precede/g" *.tw $GREP "\bpreceeded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreceeded\b/preceded/g" *.tw $GREP "\bpreceeding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreceeding\b/preceding/g" *.tw $GREP "\bpreceeds\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreceeds\b/precedes/g" *.tw $GREP "\bprecentage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprecentage\b/percentage/g" *.tw $GREP "\bprecice\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprecice\b/precise/g" *.tw $GREP "\bprecisly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprecisly\b/precisely/g" *.tw $GREP "\bprecurser\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprecurser\b/precursor/g" *.tw $GREP "\bpredecesors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpredecesors\b/predecessors/g" *.tw $GREP "\bpredicatble\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpredicatble\b/predictable/g" *.tw $GREP "\bpredicitons\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpredicitons\b/predictions/g" *.tw $GREP "\bpredomiantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpredomiantly\b/predominately/g" *.tw $GREP "\bprefered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprefered\b/preferred/g" *.tw $GREP "\bprefering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprefering\b/preferring/g" *.tw $GREP "\bpreferrably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreferrably\b/preferably/g" *.tw $GREP "\bpregancies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpregancies\b/pregnancies/g" *.tw $GREP "\bpreiod\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreiod\b/period/g" *.tw $GREP "\bpreliferation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreliferation\b/proliferation/g" *.tw $GREP "\bpremeire\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpremeire\b/premiere/g" *.tw $GREP "\bpremeired\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpremeired\b/premiered/g" *.tw $GREP "\bpremillenial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpremillenial\b/premillennial/g" *.tw $GREP "\bpreminence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreminence\b/preeminence/g" *.tw $GREP "\bpremission\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpremission\b/permission/g" *.tw $GREP "\bPremonasterians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPremonasterians\b/Premonstratensians/g" *.tw $GREP "\bpreocupation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreocupation\b/preoccupation/g" *.tw $GREP "\bprepair\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprepair\b/prepare/g" *.tw $GREP "\bprepartion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprepartion\b/preparation/g" *.tw $GREP "\bprepatory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprepatory\b/preparatory/g" *.tw $GREP "\bpreperation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreperation\b/preparation/g" *.tw $GREP "\bpreperations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreperations\b/preparations/g" *.tw $GREP "\bpreriod\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreriod\b/period/g" *.tw $GREP "\bpresedential\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpresedential\b/presidential/g" *.tw $GREP "\bpresense\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpresense\b/presence/g" *.tw $GREP "\bpresidenital\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpresidenital\b/presidential/g" *.tw $GREP "\bpresidental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpresidental\b/presidential/g" *.tw $GREP "\bpresitgious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpresitgious\b/prestigious/g" *.tw $GREP "\bprespective\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprespective\b/perspective/g" *.tw $GREP "\bprestigeous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprestigeous\b/prestigious/g" *.tw $GREP "\bprestigous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprestigous\b/prestigious/g" *.tw $GREP "\bpresumabely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpresumabely\b/presumably/g" *.tw $GREP "\bpresumibly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpresumibly\b/presumably/g" *.tw $GREP "\bpretection\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpretection\b/protection/g" *.tw $GREP "\bprevelant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprevelant\b/prevalent/g" *.tw $GREP "\bpreverse\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpreverse\b/perverse/g" *.tw $GREP "\bprevivous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprevivous\b/previous/g" *.tw $GREP "\bpricipal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpricipal\b/principal/g" *.tw $GREP "\bpriciple\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriciple\b/principle/g" *.tw $GREP "\bpriestood\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriestood\b/priesthood/g" *.tw $GREP "\bprimarly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprimarly\b/primarily/g" *.tw $GREP "\bprimative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprimative\b/primitive/g" *.tw $GREP "\bprimatively\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprimatively\b/primitively/g" *.tw $GREP "\bprimatives\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprimatives\b/primitives/g" *.tw $GREP "\bprimordal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprimordal\b/primordial/g" *.tw $GREP "\bprinciplaity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprinciplaity\b/principality/g" *.tw $GREP "\bprincipaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprincipaly\b/principality/g" *.tw $GREP "\bprincipial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprincipial\b/principal/g" *.tw $GREP "\bprinciply\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprinciply\b/principally/g" *.tw $GREP "\bprinicipal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprinicipal\b/principal/g" *.tw $GREP "\bprivalege\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivalege\b/privilege/g" *.tw $GREP "\bprivaleges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivaleges\b/privileges/g" *.tw $GREP "\bpriveledges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriveledges\b/privileges/g" *.tw $GREP "\bprivelege\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivelege\b/privilege/g" *.tw $GREP "\bpriveleged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriveleged\b/privileged/g" *.tw $GREP "\bpriveleges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriveleges\b/privileges/g" *.tw $GREP "\bprivelige\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivelige\b/privilege/g" *.tw $GREP "\bpriveliged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriveliged\b/privileged/g" *.tw $GREP "\bpriveliges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriveliges\b/privileges/g" *.tw $GREP "\bprivelleges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivelleges\b/privileges/g" *.tw $GREP "\bprivilage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivilage\b/privilege/g" *.tw $GREP "\bpriviledge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriviledge\b/privilege/g" *.tw $GREP "\bpriviledges\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpriviledges\b/privileges/g" *.tw $GREP "\bprivledge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivledge\b/privilege/g" *.tw $GREP "\bprivte\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprivte\b/private/g" *.tw $GREP "\bprobabilaty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprobabilaty\b/probability/g" *.tw $GREP "\bprobablistic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprobablistic\b/probabilistic/g" *.tw $GREP "\bprobablly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprobablly\b/probably/g" *.tw $GREP "\bprobalibity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprobalibity\b/probability/g" *.tw $GREP "\bprobaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprobaly\b/probably/g" *.tw $GREP "\bprobelm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprobelm\b/problem/g" *.tw $GREP "\bproccess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproccess\b/process/g" *.tw $GREP "\bproccessing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproccessing\b/processing/g" *.tw $GREP "\bprocedger\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprocedger\b/procedure/g" *.tw $GREP "\bprocedings\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprocedings\b/proceedings/g" *.tw $GREP "\bproceedure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproceedure\b/procedure/g" *.tw $GREP "\bproces\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproces\b/process/g" *.tw $GREP "\bprocesser\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprocesser\b/processor/g" *.tw $GREP "\bproclaimation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproclaimation\b/proclamation/g" *.tw $GREP "\bproclamed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproclamed\b/proclaimed/g" *.tw $GREP "\bproclaming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproclaming\b/proclaiming/g" *.tw $GREP "\bproclomation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproclomation\b/proclamation/g" *.tw $GREP "\bprofesor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprofesor\b/professor/g" *.tw $GREP "\bprofesser\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprofesser\b/professor/g" *.tw $GREP "\bproffesed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproffesed\b/professed/g" *.tw $GREP "\bproffesion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproffesion\b/profession/g" *.tw $GREP "\bproffesional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproffesional\b/professional/g" *.tw $GREP "\bproffesor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproffesor\b/professor/g" *.tw $GREP "\bprofilic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprofilic\b/prolific/g" *.tw $GREP "\bprogessed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprogessed\b/progressed/g" *.tw $GREP "\bprogidy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprogidy\b/prodigy/g" *.tw $GREP "\bprogramable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprogramable\b/programmable/g" *.tw $GREP "\bprohabition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprohabition\b/prohibition/g" *.tw $GREP "\bprologomena\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprologomena\b/prolegomena/g" *.tw $GREP "\bprominance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprominance\b/prominence/g" *.tw $GREP "\bprominant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprominant\b/prominent/g" *.tw $GREP "\bprominantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprominantly\b/prominently/g" *.tw $GREP "\bpromiscous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpromiscous\b/promiscuous/g" *.tw $GREP "\bpromotted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpromotted\b/promoted/g" *.tw $GREP "\bpronomial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpronomial\b/pronominal/g" *.tw $GREP "\bpronouced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpronouced\b/pronounced/g" *.tw $GREP "\bpronounched\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpronounched\b/pronounced/g" *.tw $GREP "\bpronounciation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpronounciation\b/pronunciation/g" *.tw $GREP "\bproove\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproove\b/prove/g" *.tw $GREP "\bprooved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprooved\b/proved/g" *.tw $GREP "\bprophacy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprophacy\b/prophecy/g" *.tw $GREP "\bpropietary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropietary\b/proprietary/g" *.tw $GREP "\bpropmted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropmted\b/prompted/g" *.tw $GREP "\bpropoganda\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropoganda\b/propaganda/g" *.tw $GREP "\bpropogate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropogate\b/propagate/g" *.tw $GREP "\bpropogates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropogates\b/propagates/g" *.tw $GREP "\bpropogation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropogation\b/propagation/g" *.tw $GREP "\bpropostion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropostion\b/proposition/g" *.tw $GREP "\bpropotions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropotions\b/proportions/g" *.tw $GREP "\bpropper\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropper\b/proper/g" *.tw $GREP "\bpropperly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpropperly\b/properly/g" *.tw $GREP "\bproprietory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproprietory\b/proprietary/g" *.tw $GREP "\bproseletyzing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproseletyzing\b/proselytizing/g" *.tw $GREP "\bprotaganist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprotaganist\b/protagonist/g" *.tw $GREP "\bprotaganists\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprotaganists\b/protagonists/g" *.tw $GREP "\bprotocal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprotocal\b/protocol/g" *.tw $GREP "\bprotoganist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprotoganist\b/protagonist/g" *.tw $GREP "\bprotrayed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprotrayed\b/portrayed/g" *.tw $GREP "\bprotruberance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprotruberance\b/protuberance/g" *.tw $GREP "\bprotruberances\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprotruberances\b/protuberances/g" *.tw $GREP "\bprouncements\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprouncements\b/pronouncements/g" *.tw $GREP "\bprovacative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprovacative\b/provocative/g" *.tw $GREP "\bprovded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprovded\b/provided/g" *.tw $GREP "\bprovicial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprovicial\b/provincial/g" *.tw $GREP "\bprovinicial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprovinicial\b/provincial/g" *.tw $GREP "\bprovisiosn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprovisiosn\b/provision/g" *.tw $GREP "\bprovisonal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bprovisonal\b/provisional/g" *.tw $GREP "\bproximty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bproximty\b/proximity/g" *.tw $GREP "\bpseudononymous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpseudononymous\b/pseudonymous/g" *.tw $GREP "\bpseudonyn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpseudonyn\b/pseudonym/g" *.tw $GREP "\bpsuedo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpsuedo\b/pseudo/g" *.tw $GREP "\bpsycology\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpsycology\b/psychology/g" *.tw $GREP "\bpsyhic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpsyhic\b/psychic/g" *.tw $GREP "\bpubilsher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpubilsher\b/publisher/g" *.tw $GREP "\bpubisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpubisher\b/publisher/g" *.tw $GREP "\bpubliaher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpubliaher\b/publisher/g" *.tw $GREP "\bpublically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublically\b/publicly/g" *.tw $GREP "\bpublicaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublicaly\b/publicly/g" *.tw $GREP "\bpublicher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublicher\b/publisher/g" *.tw $GREP "\bpublihser\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublihser\b/publisher/g" *.tw $GREP "\bpublisehr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublisehr\b/publisher/g" *.tw $GREP "\bpubliser\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpubliser\b/publisher/g" *.tw $GREP "\bpublisger\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublisger\b/publisher/g" *.tw $GREP "\bpublisheed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublisheed\b/published/g" *.tw $GREP "\bpublisherr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublisherr\b/publisher/g" *.tw $GREP "\bpublishher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublishher\b/publisher/g" *.tw $GREP "\bpublishor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublishor\b/publisher/g" *.tw $GREP "\bpublishre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublishre\b/publisher/g" *.tw $GREP "\bpublissher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublissher\b/publisher/g" *.tw $GREP "\bpubllisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpubllisher\b/publisher/g" *.tw $GREP "\bpublsiher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublsiher\b/publisher/g" *.tw $GREP "\bpublusher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpublusher\b/publisher/g" *.tw $GREP "\bpuchasing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpuchasing\b/purchasing/g" *.tw $GREP "\bPucini\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPucini\b/Puccini/g" *.tw $GREP "\bPuertorrican\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPuertorrican\b/Puerto Rican/g" *.tw $GREP "\bPuertorricans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bPuertorricans\b/Puerto Ricans/g" *.tw $GREP "\bpulisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpulisher\b/publisher/g" *.tw $GREP "\bpumkin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpumkin\b/pumpkin/g" *.tw $GREP "\bpuplisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpuplisher\b/publisher/g" *.tw $GREP "\bpuritannical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpuritannical\b/puritanical/g" *.tw $GREP "\bpurposedly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpurposedly\b/purposely/g" *.tw $GREP "\bpurpotedly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpurpotedly\b/purportedly/g" *.tw $GREP "\bpursuade\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpursuade\b/persuade/g" *.tw $GREP "\bpursuaded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpursuaded\b/persuaded/g" *.tw $GREP "\bpursuades\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpursuades\b/persuades/g" *.tw $GREP "\bpususading\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpususading\b/persuading/g" *.tw $GREP "\bputing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bputing\b/putting/g" *.tw $GREP "\bpwoer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpwoer\b/power/g" *.tw $GREP "\bpyscic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bpyscic\b/psychic/g" *.tw $GREP "\bquantaty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquantaty\b/quantity/g" *.tw $GREP "\bquantitiy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquantitiy\b/quantity/g" *.tw $GREP "\bquarantaine\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquarantaine\b/quarantine/g" *.tw $GREP "\bQueenland\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bQueenland\b/Queensland/g" *.tw $GREP "\bquestonable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquestonable\b/questionable/g" *.tw $GREP "\bquicklyu\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquicklyu\b/quickly/g" *.tw $GREP "\bquinessential\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquinessential\b/quintessential/g" *.tw $GREP "\bquitted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquitted\b/quit/g" *.tw $GREP "\bquizes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bquizes\b/quizzes/g" *.tw $GREP "\brabinnical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brabinnical\b/rabbinical/g" *.tw $GREP "\bracaus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bracaus\b/raucous/g" *.tw $GREP "\bradiactive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bradiactive\b/radioactive/g" *.tw $GREP "\bradify\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bradify\b/ratify/g" *.tw $GREP "\braelly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\braelly\b/really/g" *.tw $GREP "\brarified\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brarified\b/rarefied/g" *.tw $GREP "\breaccurring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breaccurring\b/recurring/g" *.tw $GREP "\breacing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breacing\b/reaching/g" *.tw $GREP "\breacll\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breacll\b/recall/g" *.tw $GREP "\breadmition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breadmition\b/readmission/g" *.tw $GREP "\brealitvely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brealitvely\b/relatively/g" *.tw $GREP "\brealsitic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brealsitic\b/realistic/g" *.tw $GREP "\brealtions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brealtions\b/relations/g" *.tw $GREP "\brealy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brealy\b/really/g" *.tw $GREP "\brealyl\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brealyl\b/really/g" *.tw $GREP "\breasearch\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breasearch\b/research/g" *.tw $GREP "\brebiulding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brebiulding\b/rebuilding/g" *.tw $GREP "\brebllions\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brebllions\b/rebellions/g" *.tw $GREP "\brebounce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brebounce\b/rebound/g" *.tw $GREP "\breccomend\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccomend\b/recommend/g" *.tw $GREP "\breccomendations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccomendations\b/recommendations/g" *.tw $GREP "\breccomended\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccomended\b/recommended/g" *.tw $GREP "\breccomending\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccomending\b/recommending/g" *.tw $GREP "\breccommend\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccommend\b/recommend/g" *.tw $GREP "\breccommended\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccommended\b/recommended/g" *.tw $GREP "\breccommending\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccommending\b/recommending/g" *.tw $GREP "\breccuring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breccuring\b/recurring/g" *.tw $GREP "\breceeded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breceeded\b/receded/g" *.tw $GREP "\breceeding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breceeding\b/receding/g" *.tw $GREP "\breceivedfrom\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breceivedfrom\b/received from/g" *.tw $GREP "\brecepient\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecepient\b/recipient/g" *.tw $GREP "\brecepients\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecepients\b/recipients/g" *.tw $GREP "\breceving\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breceving\b/receiving/g" *.tw $GREP "\brechargable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brechargable\b/rechargeable/g" *.tw $GREP "\breched\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breched\b/reached/g" *.tw $GREP "\brecide\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecide\b/reside/g" *.tw $GREP "\brecided\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecided\b/resided/g" *.tw $GREP "\brecident\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecident\b/resident/g" *.tw $GREP "\brecidents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecidents\b/residents/g" *.tw $GREP "\breciding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breciding\b/residing/g" *.tw $GREP "\breciepents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breciepents\b/recipients/g" *.tw $GREP "\breciept\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breciept\b/receipt/g" *.tw $GREP "\brecieve\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecieve\b/receive/g" *.tw $GREP "\brecieved\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecieved\b/received/g" *.tw $GREP "\breciever\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breciever\b/receiver/g" *.tw $GREP "\brecievers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecievers\b/receivers/g" *.tw $GREP "\brecieves\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecieves\b/receives/g" *.tw $GREP "\brecieving\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecieving\b/receiving/g" *.tw $GREP "\brecipiant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecipiant\b/recipient/g" *.tw $GREP "\brecipiants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecipiants\b/recipients/g" *.tw $GREP "\brecived\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecived\b/received/g" *.tw $GREP "\brecivership\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecivership\b/receivership/g" *.tw $GREP "\brecogise\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecogise\b/recognise/g" *.tw $GREP "\brecogize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecogize\b/recognize/g" *.tw $GREP "\brecomend\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecomend\b/recommend/g" *.tw $GREP "\brecomended\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecomended\b/recommended/g" *.tw $GREP "\brecomending\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecomending\b/recommending/g" *.tw $GREP "\brecomends\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecomends\b/recommends/g" *.tw $GREP "\brecommedations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecommedations\b/recommendations/g" *.tw $GREP "\brecompence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecompence\b/recompense/g" *.tw $GREP "\breconaissance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breconaissance\b/reconnaissance/g" *.tw $GREP "\breconcilation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breconcilation\b/reconciliation/g" *.tw $GREP "\breconized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breconized\b/recognized/g" *.tw $GREP "\breconnaisance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breconnaisance\b/reconnaissance/g" *.tw $GREP "\breconnaissence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breconnaissence\b/reconnaissance/g" *.tw $GREP "\brecontructed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecontructed\b/reconstructed/g" *.tw $GREP "\brecordproducer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecordproducer\b/record producer/g" *.tw $GREP "\brecquired\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecquired\b/required/g" *.tw $GREP "\brecrational\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecrational\b/recreational/g" *.tw $GREP "\brecrod\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecrod\b/record/g" *.tw $GREP "\brecuiting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecuiting\b/recruiting/g" *.tw $GREP "\brecuring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecuring\b/recurring/g" *.tw $GREP "\brecurrance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brecurrance\b/recurrence/g" *.tw $GREP "\brediculous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brediculous\b/ridiculous/g" *.tw $GREP "\breedeming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breedeming\b/redeeming/g" *.tw $GREP "\breenforced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breenforced\b/reinforced/g" *.tw $GREP "\brefect\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefect\b/reflect/g" *.tw $GREP "\brefedendum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefedendum\b/referendum/g" *.tw $GREP "\breferal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferal\b/referral/g" *.tw $GREP "\breferece\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferece\b/reference/g" *.tw $GREP "\brefereces\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefereces\b/references/g" *.tw $GREP "\brefered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefered\b/referred/g" *.tw $GREP "\breferemce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferemce\b/reference/g" *.tw $GREP "\breferemces\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferemces\b/references/g" *.tw $GREP "\breferencs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferencs\b/references/g" *.tw $GREP "\breferenece\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferenece\b/reference/g" *.tw $GREP "\brefereneced\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefereneced\b/referenced/g" *.tw $GREP "\brefereneces\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefereneces\b/references/g" *.tw $GREP "\breferiang\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferiang\b/referring/g" *.tw $GREP "\brefering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefering\b/referring/g" *.tw $GREP "\brefernce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefernce\b/reference/g" *.tw $GREP "\brefernce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefernce\b/references/g" *.tw $GREP "\brefernces\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefernces\b/references/g" *.tw $GREP "\breferrence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferrence\b/reference/g" *.tw $GREP "\breferrences\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferrences\b/references/g" *.tw $GREP "\breferrs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breferrs\b/refers/g" *.tw $GREP "\breffered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breffered\b/referred/g" *.tw $GREP "\brefference\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefference\b/reference/g" *.tw $GREP "\breffering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breffering\b/referring/g" *.tw $GREP "\brefrence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefrence\b/reference/g" *.tw $GREP "\brefrences\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefrences\b/references/g" *.tw $GREP "\brefrers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefrers\b/refers/g" *.tw $GREP "\brefridgeration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefridgeration\b/refrigeration/g" *.tw $GREP "\brefridgerator\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefridgerator\b/refrigerator/g" *.tw $GREP "\brefromist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefromist\b/reformist/g" *.tw $GREP "\brefusla\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brefusla\b/refusal/g" *.tw $GREP "\bregardes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bregardes\b/regards/g" *.tw $GREP "\bregluar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bregluar\b/regular/g" *.tw $GREP "\breguarly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breguarly\b/regularly/g" *.tw $GREP "\bregulaion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bregulaion\b/regulation/g" *.tw $GREP "\bregulaotrs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bregulaotrs\b/regulators/g" *.tw $GREP "\bregularily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bregularily\b/regularly/g" *.tw $GREP "\brehersal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brehersal\b/rehearsal/g" *.tw $GREP "\breicarnation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breicarnation\b/reincarnation/g" *.tw $GREP "\breigining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breigining\b/reigning/g" *.tw $GREP "\breknown\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breknown\b/renown/g" *.tw $GREP "\breknowned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breknowned\b/renowned/g" *.tw $GREP "\brela\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brela\b/real/g" *.tw $GREP "\brelaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelaly\b/really/g" *.tw $GREP "\brelatiopnship\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelatiopnship\b/relationship/g" *.tw $GREP "\brelativly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelativly\b/relatively/g" *.tw $GREP "\brelected\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelected\b/reelected/g" *.tw $GREP "\breleive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breleive\b/relieve/g" *.tw $GREP "\breleived\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breleived\b/relieved/g" *.tw $GREP "\breleiver\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breleiver\b/reliever/g" *.tw $GREP "\breleses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breleses\b/releases/g" *.tw $GREP "\brelevence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelevence\b/relevance/g" *.tw $GREP "\brelevent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelevent\b/relevant/g" *.tw $GREP "\breliablity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breliablity\b/reliability/g" *.tw $GREP "\brelient\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelient\b/reliant/g" *.tw $GREP "\breligeous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breligeous\b/religious/g" *.tw $GREP "\breligous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breligous\b/religious/g" *.tw $GREP "\breligously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breligously\b/religiously/g" *.tw $GREP "\brelinqushment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelinqushment\b/relinquishment/g" *.tw $GREP "\brelitavely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelitavely\b/relatively/g" *.tw $GREP "\brelpacement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brelpacement\b/replacement/g" *.tw $GREP "\bremaing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bremaing\b/remaining/g" *.tw $GREP "\bremeber\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bremeber\b/remember/g" *.tw $GREP "\brememberable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brememberable\b/memorable/g" *.tw $GREP "\brememberance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brememberance\b/remembrance/g" *.tw $GREP "\bremembrence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bremembrence\b/remembrance/g" *.tw $GREP "\bremenant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bremenant\b/remnant/g" *.tw $GREP "\bremenicent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bremenicent\b/reminiscent/g" *.tw $GREP "\breminent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breminent\b/remnant/g" *.tw $GREP "\breminescent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breminescent\b/reminiscent/g" *.tw $GREP "\breminscent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breminscent\b/reminiscent/g" *.tw $GREP "\breminsicent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breminsicent\b/reminiscent/g" *.tw $GREP "\brendevous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brendevous\b/rendezvous/g" *.tw $GREP "\brendezous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brendezous\b/rendezvous/g" *.tw $GREP "\brenedered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brenedered\b/rende/g" *.tw $GREP "\brenewl\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brenewl\b/renewal/g" *.tw $GREP "\brennovate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brennovate\b/renovate/g" *.tw $GREP "\brennovated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brennovated\b/renovated/g" *.tw $GREP "\brennovating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brennovating\b/renovating/g" *.tw $GREP "\brennovation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brennovation\b/renovation/g" *.tw $GREP "\brentors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brentors\b/renters/g" *.tw $GREP "\breoccurrence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breoccurrence\b/recurrence/g" *.tw $GREP "\breorganision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breorganision\b/reorganisation/g" *.tw $GREP "\brepblic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepblic\b/republic/g" *.tw $GREP "\brepblican\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepblican\b/republican/g" *.tw $GREP "\brepblicans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepblicans\b/republicans/g" *.tw $GREP "\brepblics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepblics\b/republics/g" *.tw $GREP "\brepectively\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepectively\b/respectively/g" *.tw $GREP "\brepeition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepeition\b/repetition/g" *.tw $GREP "\brepentence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepentence\b/repentance/g" *.tw $GREP "\brepentent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepentent\b/repentant/g" *.tw $GREP "\brepeteadly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepeteadly\b/repeatedly/g" *.tw $GREP "\brepetion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepetion\b/repetition/g" *.tw $GREP "\brepid\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepid\b/rapid/g" *.tw $GREP "\breponse\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breponse\b/response/g" *.tw $GREP "\breponsible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breponsible\b/responsible/g" *.tw $GREP "\breportadly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breportadly\b/reportedly/g" *.tw $GREP "\brepresantative\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepresantative\b/representative/g" *.tw $GREP "\brepresentive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepresentive\b/representative/g" *.tw $GREP "\brepresentives\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepresentives\b/representatives/g" *.tw $GREP "\breproducable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breproducable\b/reproducible/g" *.tw $GREP "\breprtoire\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breprtoire\b/repertoire/g" *.tw $GREP "\brepsectively\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepsectively\b/respectively/g" *.tw $GREP "\breptition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breptition\b/repetition/g" *.tw $GREP "\brepubic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepubic\b/republic/g" *.tw $GREP "\brepubican\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepubican\b/republican/g" *.tw $GREP "\brepubicans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepubicans\b/republicans/g" *.tw $GREP "\brepubics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepubics\b/republics/g" *.tw $GREP "\brepubli\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepubli\b/republic/g" *.tw $GREP "\brepublian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepublian\b/republican/g" *.tw $GREP "\brepublians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepublians\b/republicans/g" *.tw $GREP "\brepublis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepublis\b/republics/g" *.tw $GREP "\brepulic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepulic\b/republic/g" *.tw $GREP "\brepulican\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepulican\b/republican/g" *.tw $GREP "\brepulicans\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepulicans\b/republicans/g" *.tw $GREP "\brepulics\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brepulics\b/republics/g" *.tw $GREP "\brequirment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brequirment\b/requirement/g" *.tw $GREP "\brequred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brequred\b/required/g" *.tw $GREP "\bresaurant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresaurant\b/restaurant/g" *.tw $GREP "\bresembelance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresembelance\b/resemblance/g" *.tw $GREP "\bresembes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresembes\b/resembles/g" *.tw $GREP "\bresemblence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresemblence\b/resemblance/g" *.tw $GREP "\bresevoir\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresevoir\b/reservoir/g" *.tw $GREP "\bresidental\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresidental\b/residential/g" *.tw $GREP "\bresignement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresignement\b/resignment/g" *.tw $GREP "\bresistable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresistable\b/resistible/g" *.tw $GREP "\bresistence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresistence\b/resistance/g" *.tw $GREP "\bresistent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresistent\b/resistant/g" *.tw $GREP "\brespectivly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brespectivly\b/respectively/g" *.tw $GREP "\bresponce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponce\b/response/g" *.tw $GREP "\bresponibilities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponibilities\b/responsibilities/g" *.tw $GREP "\bresponisble\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponisble\b/responsible/g" *.tw $GREP "\bresponnsibilty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponnsibilty\b/responsibility/g" *.tw $GREP "\bresponsability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponsability\b/responsibility/g" *.tw $GREP "\bresponsibile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponsibile\b/responsible/g" *.tw $GREP "\bresponsibilites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponsibilites\b/responsibilities/g" *.tw $GREP "\bresponsiblities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponsiblities\b/responsibilities/g" *.tw $GREP "\bresponsiblity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresponsiblity\b/responsibility/g" *.tw $GREP "\bressemblance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressemblance\b/resemblance/g" *.tw $GREP "\bressemble\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressemble\b/resemble/g" *.tw $GREP "\bressembled\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressembled\b/resembled/g" *.tw $GREP "\bressemblence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressemblence\b/resemblance/g" *.tw $GREP "\bressembling\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressembling\b/resembling/g" *.tw $GREP "\bresssurecting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresssurecting\b/resurrecting/g" *.tw $GREP "\bressurect\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressurect\b/resurrect/g" *.tw $GREP "\bressurected\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressurected\b/resurrected/g" *.tw $GREP "\bressurection\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressurection\b/resurrection/g" *.tw $GREP "\bressurrection\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bressurrection\b/resurrection/g" *.tw $GREP "\brestarant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestarant\b/restaurant/g" *.tw $GREP "\brestarants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestarants\b/restaurants/g" *.tw $GREP "\brestaraunt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestaraunt\b/restaurant/g" *.tw $GREP "\brestaraunteur\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestaraunteur\b/restaurateur/g" *.tw $GREP "\brestaraunteurs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestaraunteurs\b/restaurateurs/g" *.tw $GREP "\brestaraunts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestaraunts\b/restaurants/g" *.tw $GREP "\brestauranteurs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestauranteurs\b/restaurateurs/g" *.tw $GREP "\brestauration\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestauration\b/restoration/g" *.tw $GREP "\brestauraunt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brestauraunt\b/restaurant/g" *.tw $GREP "\bresteraunt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresteraunt\b/restaurant/g" *.tw $GREP "\bresteraunts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresteraunts\b/restaurants/g" *.tw $GREP "\bresticted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresticted\b/restricted/g" *.tw $GREP "\bresturant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresturant\b/restaurant/g" *.tw $GREP "\bresturants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresturants\b/restaurants/g" *.tw $GREP "\bresturaunt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresturaunt\b/restaurant/g" *.tw $GREP "\bresturaunts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresturaunts\b/restaurants/g" *.tw $GREP "\bresurecting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bresurecting\b/resurrecting/g" *.tw $GREP "\bretalitated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bretalitated\b/retaliated/g" *.tw $GREP "\bretalitation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bretalitation\b/retaliation/g" *.tw $GREP "\bretreive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bretreive\b/retrieve/g" *.tw $GREP "\breturnd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breturnd\b/returned/g" *.tw $GREP "\brevaluated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brevaluated\b/reevaluated/g" *.tw $GREP "\breveiw\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breveiw\b/review/g" *.tw $GREP "\breveral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breveral\b/reversal/g" *.tw $GREP "\breversable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\breversable\b/reversible/g" *.tw $GREP "\brevolutionar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brevolutionar\b/revolutionary/g" *.tw $GREP "\brewitten\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brewitten\b/rewritten/g" *.tw $GREP "\brewriet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brewriet\b/rewrite/g" *.tw $GREP "\brference\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brference\b/reference/g" *.tw $GREP "\brferences\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brferences\b/references/g" *.tw $GREP "\brhymme\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brhymme\b/rhyme/g" *.tw $GREP "\brhythem\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brhythem\b/rhythm/g" *.tw $GREP "\brhythim\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brhythim\b/rhythm/g" *.tw $GREP "\brhytmic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brhytmic\b/rhythmic/g" *.tw $GREP "\brigourous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brigourous\b/rigorous/g" *.tw $GREP "\brininging\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brininging\b/ringing/g" *.tw $GREP "\bRockerfeller\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bRockerfeller\b/Rockefeller/g" *.tw $GREP "\brococco\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brococco\b/rococo/g" *.tw $GREP "\brocord\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brocord\b/record/g" *.tw $GREP "\broomate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\broomate\b/roommate/g" *.tw $GREP "\brougly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brougly\b/roughly/g" *.tw $GREP "\brucuperate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brucuperate\b/recuperate/g" *.tw $GREP "\brudimentatry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brudimentatry\b/rudimentary/g" *.tw $GREP "\brulle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brulle\b/rule/g" *.tw $GREP "\bruning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bruning\b/running/g" *.tw $GREP "\brunnung\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brunnung\b/running/g" *.tw $GREP "\brussina\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brussina\b/Russian/g" *.tw $GREP "\bRussion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bRussion\b/Russian/g" *.tw $GREP "\brwite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brwite\b/write/g" *.tw $GREP "\brythem\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brythem\b/rhythm/g" *.tw $GREP "\brythim\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brythim\b/rhythm/g" *.tw $GREP "\brythm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brythm\b/rhythm/g" *.tw $GREP "\brythmic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brythmic\b/rhythmic/g" *.tw $GREP "\brythyms\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\brythyms\b/rhythms/g" *.tw $GREP "\bsacrafice\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsacrafice\b/sacrifice/g" *.tw $GREP "\bsacreligious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsacreligious\b/sacrilegious/g" *.tw $GREP "\bSacremento\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSacremento\b/Sacramento/g" *.tw $GREP "\bsacrifical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsacrifical\b/sacrificial/g" *.tw $GREP "\bsaftey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsaftey\b/safety/g" *.tw $GREP "\bsafty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsafty\b/safety/g" *.tw $GREP "\bsalery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsalery\b/salary/g" *.tw $GREP "\bsanctionning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsanctionning\b/sanctioning/g" *.tw $GREP "\bsandwhich\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsandwhich\b/sandwich/g" *.tw $GREP "\bSanhedrim\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSanhedrim\b/Sanhedrin/g" *.tw $GREP "\bsantioned\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsantioned\b/sanctioned/g" *.tw $GREP "\bsargant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsargant\b/sergeant/g" *.tw $GREP "\bsargeant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsargeant\b/sergeant/g" *.tw $GREP "\bsatelite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsatelite\b/satellite/g" *.tw $GREP "\bsatelites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsatelites\b/satellites/g" *.tw $GREP "\bSaterday\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSaterday\b/Saturday/g" *.tw $GREP "\bSaterdays\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSaterdays\b/Saturdays/g" *.tw $GREP "\bsatisfactority\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsatisfactority\b/satisfactorily/g" *.tw $GREP "\bsatric\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsatric\b/satiric/g" *.tw $GREP "\bsatrical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsatrical\b/satirical/g" *.tw $GREP "\bsatrically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsatrically\b/satirically/g" *.tw $GREP "\bsattelite\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsattelite\b/satellite/g" *.tw $GREP "\bsattelites\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsattelites\b/satellites/g" *.tw $GREP "\bsaught\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsaught\b/sought/g" *.tw $GREP "\bsaveing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsaveing\b/saving/g" *.tw $GREP "\bsaxaphone\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsaxaphone\b/saxophone/g" *.tw $GREP "\bscaleable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscaleable\b/scalable/g" *.tw $GREP "\bscandanavia\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscandanavia\b/Scandinavia/g" *.tw $GREP "\bscaricity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscaricity\b/scarcity/g" *.tw $GREP "\bscavanged\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscavanged\b/scavenged/g" *.tw $GREP "\bschedual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bschedual\b/schedule/g" *.tw $GREP "\bscholarhip\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscholarhip\b/scholarship/g" *.tw $GREP "\bscientfic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscientfic\b/scientific/g" *.tw $GREP "\bscientifc\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscientifc\b/scientific/g" *.tw $GREP "\bscientis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscientis\b/scientist/g" *.tw $GREP "\bscince\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscince\b/science/g" *.tw $GREP "\bscinece\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscinece\b/science/g" *.tw $GREP "\bscirpt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscirpt\b/script/g" *.tw $GREP "\bscoll\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscoll\b/scroll/g" *.tw $GREP "\bscreenwrighter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscreenwrighter\b/screenwriter/g" *.tw $GREP "\bscrutinity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscrutinity\b/scrutiny/g" *.tw $GREP "\bscuptures\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bscuptures\b/sculptures/g" *.tw $GREP "\bseach\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseach\b/search/g" *.tw $GREP "\bseached\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseached\b/searched/g" *.tw $GREP "\bseaches\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseaches\b/searches/g" *.tw $GREP "\bsecratary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsecratary\b/secretary/g" *.tw $GREP "\bsecretery\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsecretery\b/secretary/g" *.tw $GREP "\bsedereal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsedereal\b/sidereal/g" *.tw $GREP "\bseeked\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseeked\b/sought/g" *.tw $GREP "\bsegementation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsegementation\b/segmentation/g" *.tw $GREP "\bseguoys\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseguoys\b/segues/g" *.tw $GREP "\bseige\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseige\b/siege/g" *.tw $GREP "\bseing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseing\b/seeing/g" *.tw $GREP "\bseinor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseinor\b/senior/g" *.tw $GREP "\bseldomly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseldomly\b/seldom/g" *.tw $GREP "\bsenarios\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsenarios\b/scenarios/g" *.tw $GREP "\bsenstive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsenstive\b/sensitive/g" *.tw $GREP "\bsensure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsensure\b/censure/g" *.tw $GREP "\bseperate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperate\b/separate/g" *.tw $GREP "\bseperated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperated\b/separated/g" *.tw $GREP "\bseperately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperately\b/separately/g" *.tw $GREP "\bseperates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperates\b/separates/g" *.tw $GREP "\bseperating\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperating\b/separating/g" *.tw $GREP "\bseperation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperation\b/separation/g" *.tw $GREP "\bseperatism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperatism\b/separatism/g" *.tw $GREP "\bseperatist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseperatist\b/separatist/g" *.tw $GREP "\bsepina\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsepina\b/subpoena/g" *.tw $GREP "\bsergent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsergent\b/sergeant/g" *.tw $GREP "\bsettelement\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsettelement\b/settlement/g" *.tw $GREP "\bsettlment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsettlment\b/settlement/g" *.tw $GREP "\bsevereal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsevereal\b/several/g" *.tw $GREP "\bseverley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseverley\b/severely/g" *.tw $GREP "\bseverly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bseverly\b/severely/g" *.tw $GREP "\bsevice\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsevice\b/service/g" *.tw $GREP "\bshadasloo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshadasloo\b/shadaloo/g" *.tw $GREP "\bshaddow\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshaddow\b/shadow/g" *.tw $GREP "\bshadoloo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshadoloo\b/shadaloo/g" *.tw $GREP "\bsheild\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsheild\b/shield/g" *.tw $GREP "\bsherif\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsherif\b/sheriff/g" *.tw $GREP "\bshineing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshineing\b/shining/g" *.tw $GREP "\bshiped\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshiped\b/shipped/g" *.tw $GREP "\bshiping\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshiping\b/shipping/g" *.tw $GREP "\bshopkeeepers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshopkeeepers\b/shopkeepers/g" *.tw $GREP "\bshorly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshorly\b/shortly/g" *.tw $GREP "\bshortwhile\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshortwhile\b/short while/g" *.tw $GREP "\bshoudl\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshoudl\b/should/g" *.tw $GREP "\bshouldnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshouldnt\b/should not/g" *.tw $GREP "\bshreak\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshreak\b/shriek/g" *.tw $GREP "\bshrinked\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bshrinked\b/shrunk/g" *.tw $GREP "\bsicne\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsicne\b/since/g" *.tw $GREP "\bsideral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsideral\b/sidereal/g" *.tw $GREP "\bsiezure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsiezure\b/seizure/g" *.tw $GREP "\bsiezures\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsiezures\b/seizures/g" *.tw $GREP "\bsiginificant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsiginificant\b/significant/g" *.tw $GREP "\bsignficant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignficant\b/significant/g" *.tw $GREP "\bsignficiant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignficiant\b/significant/g" *.tw $GREP "\bsignfies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignfies\b/signifies/g" *.tw $GREP "\bsignifantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignifantly\b/significantly/g" *.tw $GREP "\bsignificently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignificently\b/significantly/g" *.tw $GREP "\bsignifigant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignifigant\b/significant/g" *.tw $GREP "\bsignifigantly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignifigantly\b/significantly/g" *.tw $GREP "\bsignitories\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignitories\b/signatories/g" *.tw $GREP "\bsignitory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsignitory\b/signatory/g" *.tw $GREP "\bsimilarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimilarily\b/similarly/g" *.tw $GREP "\bsimiliar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimiliar\b/similar/g" *.tw $GREP "\bsimiliarity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimiliarity\b/similarity/g" *.tw $GREP "\bsimiliarly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimiliarly\b/similarly/g" *.tw $GREP "\bsimmilar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimmilar\b/similar/g" *.tw $GREP "\bsimpley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimpley\b/simply/g" *.tw $GREP "\bsimplier\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimplier\b/simpler/g" *.tw $GREP "\bsimultanous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimultanous\b/simultaneous/g" *.tw $GREP "\bsimultanously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsimultanously\b/simultaneously/g" *.tw $GREP "\bsincerley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsincerley\b/sincerely/g" *.tw $GREP "\bsingsog\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsingsog\b/singsong/g" *.tw $GREP "\bSionist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSionist\b/Zionist/g" *.tw $GREP "\bSionists\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSionists\b/Zionists/g" *.tw $GREP "\bSixtin\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSixtin\b/Sistine/g" *.tw $GREP "\bSkagerak\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bSkagerak\b/Skagerrak/g" *.tw $GREP "\bskateing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bskateing\b/skating/g" *.tw $GREP "\bslaugterhouses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bslaugterhouses\b/slaughterhouses/g" *.tw $GREP "\bslighly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bslighly\b/slightly/g" *.tw $GREP "\bslippy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bslippy\b/slippery/g" *.tw $GREP "\bslowy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bslowy\b/slowly/g" *.tw $GREP "\bsmae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsmae\b/same/g" *.tw $GREP "\bsmealting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsmealting\b/smelting/g" *.tw $GREP "\bsmoe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsmoe\b/some/g" *.tw $GREP "\bsneeks\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsneeks\b/sneaks/g" *.tw $GREP "\bsnese\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsnese\b/sneeze/g" *.tw $GREP "\bsocalism\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsocalism\b/socialism/g" *.tw $GREP "\bsocities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsocities\b/societies/g" *.tw $GREP "\bsoem\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoem\b/some/g" *.tw $GREP "\bsofware\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsofware\b/software/g" *.tw $GREP "\bsohw\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsohw\b/show/g" *.tw $GREP "\bsoilders\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoilders\b/soldiers/g" *.tw $GREP "\bsolatary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsolatary\b/solitary/g" *.tw $GREP "\bsoley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoley\b/solely/g" *.tw $GREP "\bsoliders\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoliders\b/soldiers/g" *.tw $GREP "\bsoliliquy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoliliquy\b/soliloquy/g" *.tw $GREP "\bsoluable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoluable\b/soluble/g" *.tw $GREP "\bsomene\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsomene\b/someone/g" *.tw $GREP "\bsomtimes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsomtimes\b/sometimes/g" *.tw $GREP "\bsomwhere\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsomwhere\b/somewhere/g" *.tw $GREP "\bsophicated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsophicated\b/sophisticated/g" *.tw $GREP "\bsophmore\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsophmore\b/sophomore/g" *.tw $GREP "\bsorceror\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsorceror\b/sorcerer/g" *.tw $GREP "\bsorrounding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsorrounding\b/surrounding/g" *.tw $GREP "\bsotry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsotry\b/story/g" *.tw $GREP "\bsoudn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoudn\b/sound/g" *.tw $GREP "\bsoudns\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoudns\b/sounds/g" *.tw $GREP "\bsountrack\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsountrack\b/soundtrack/g" *.tw $GREP "\bsourth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsourth\b/south/g" *.tw $GREP "\bsourthern\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsourthern\b/southern/g" *.tw $GREP "\bsouvenier\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsouvenier\b/souvenir/g" *.tw $GREP "\bsouveniers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsouveniers\b/souvenirs/g" *.tw $GREP "\bsoveits\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoveits\b/soviets/g" *.tw $GREP "\bsovereignity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsovereignity\b/sovereignty/g" *.tw $GREP "\bsoverign\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoverign\b/sovereign/g" *.tw $GREP "\bsoverignity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoverignity\b/sovereignty/g" *.tw $GREP "\bsoverignty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsoverignty\b/sovereignty/g" *.tw $GREP "\bspainish\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspainish\b/Spanish/g" *.tw $GREP "\bspeach\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspeach\b/speech/g" *.tw $GREP "\bspecfic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspecfic\b/specific/g" *.tw $GREP "\bspecifiying\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspecifiying\b/specifying/g" *.tw $GREP "\bspeciman\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspeciman\b/specimen/g" *.tw $GREP "\bspectauclar\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspectauclar\b/spectacular/g" *.tw $GREP "\bspectaulars\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspectaulars\b/spectaculars/g" *.tw $GREP "\bspectum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspectum\b/spectrum/g" *.tw $GREP "\bspeices\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspeices\b/species/g" *.tw $GREP "\bspendour\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspendour\b/splendour/g" *.tw $GREP "\bspermatozoan\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspermatozoan\b/spermatozoon/g" *.tw $GREP "\bspoace\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspoace\b/space/g" *.tw $GREP "\bsponser\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsponser\b/sponsor/g" *.tw $GREP "\bsponsered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsponsered\b/sponsored/g" *.tw $GREP "\bspontanous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspontanous\b/spontaneous/g" *.tw $GREP "\bsponzored\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsponzored\b/sponsored/g" *.tw $GREP "\bspoonfulls\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspoonfulls\b/spoonfuls/g" *.tw $GREP "\bsppeches\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsppeches\b/speeches/g" *.tw $GREP "\bspreaded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspreaded\b/spread/g" *.tw $GREP "\bsprech\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsprech\b/speech/g" *.tw $GREP "\bspred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspred\b/spread/g" *.tw $GREP "\bspriritual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspriritual\b/spiritual/g" *.tw $GREP "\bspritual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bspritual\b/spiritual/g" *.tw $GREP "\bsqaure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsqaure\b/square/g" *.tw $GREP "\bstablility\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstablility\b/stability/g" *.tw $GREP "\bstainlees\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstainlees\b/stainless/g" *.tw $GREP "\bstaion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstaion\b/station/g" *.tw $GREP "\bstandars\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstandars\b/standards/g" *.tw $GREP "\bstange\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstange\b/strange/g" *.tw $GREP "\bstartegic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstartegic\b/strategic/g" *.tw $GREP "\bstartegies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstartegies\b/strategies/g" *.tw $GREP "\bstartegy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstartegy\b/strategy/g" *.tw $GREP "\bstateman\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstateman\b/statesman/g" *.tw $GREP "\bstatememts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstatememts\b/statements/g" *.tw $GREP "\bstatment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstatment\b/statement/g" *.tw $GREP "\bsteriods\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsteriods\b/steroids/g" *.tw $GREP "\bsterotypes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsterotypes\b/stereotypes/g" *.tw $GREP "\bstilus\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstilus\b/stylus/g" *.tw $GREP "\bstingent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstingent\b/stringent/g" *.tw $GREP "\bstiring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstiring\b/stirring/g" *.tw $GREP "\bstirrs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstirrs\b/stirs/g" *.tw $GREP "\bstlye\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstlye\b/style/g" *.tw $GREP "\bstomache\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstomache\b/stomach/g" *.tw $GREP "\bstong\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstong\b/strong/g" *.tw $GREP "\bstopry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstopry\b/story/g" *.tw $GREP "\bstoreis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstoreis\b/stories/g" *.tw $GREP "\bstorise\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstorise\b/stories/g" *.tw $GREP "\bstornegst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstornegst\b/strongest/g" *.tw $GREP "\bstoyr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstoyr\b/story/g" *.tw $GREP "\bstpo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstpo\b/stop/g" *.tw $GREP "\bstradegies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstradegies\b/strategies/g" *.tw $GREP "\bstradegy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstradegy\b/strategy/g" *.tw $GREP "\bstratagically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstratagically\b/strategically/g" *.tw $GREP "\bstreemlining\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstreemlining\b/streamlining/g" *.tw $GREP "\bstregth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstregth\b/strength/g" *.tw $GREP "\bstrenghen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenghen\b/strengthen/g" *.tw $GREP "\bstrenghened\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenghened\b/strengthened/g" *.tw $GREP "\bstrenghening\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenghening\b/strengthening/g" *.tw $GREP "\bstrenght\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenght\b/strength/g" *.tw $GREP "\bstrenghten\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenghten\b/strengthen/g" *.tw $GREP "\bstrenghtened\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenghtened\b/strengthened/g" *.tw $GREP "\bstrenghtening\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenghtening\b/strengthening/g" *.tw $GREP "\bstrengtened\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrengtened\b/strengthened/g" *.tw $GREP "\bstrenous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrenous\b/strenuous/g" *.tw $GREP "\bstrictist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrictist\b/strictest/g" *.tw $GREP "\bstrikely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrikely\b/strikingly/g" *.tw $GREP "\bstrnad\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstrnad\b/strand/g" *.tw $GREP "\bstructual\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstructual\b/structural/g" *.tw $GREP "\bstubborness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstubborness\b/stubbornness/g" *.tw $GREP "\bstucture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstucture\b/structure/g" *.tw $GREP "\bstuctured\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstuctured\b/structured/g" *.tw $GREP "\bstuddy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstuddy\b/study/g" *.tw $GREP "\bstuding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstuding\b/studying/g" *.tw $GREP "\bstuggling\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bstuggling\b/struggling/g" *.tw $GREP "\bsturcture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsturcture\b/structure/g" *.tw $GREP "\bsubcatagories\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubcatagories\b/subcategories/g" *.tw $GREP "\bsubcatagory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubcatagory\b/subcategory/g" *.tw $GREP "\bsubconsiously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubconsiously\b/subconsciously/g" *.tw $GREP "\bsubjudgation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubjudgation\b/subjugation/g" *.tw $GREP "\bsubmachne\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubmachne\b/submachine/g" *.tw $GREP "\bsubpecies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubpecies\b/subspecies/g" *.tw $GREP "\bsubsidary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubsidary\b/subsidiary/g" *.tw $GREP "\bsubsiduary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubsiduary\b/subsidiary/g" *.tw $GREP "\bsubsquent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubsquent\b/subsequent/g" *.tw $GREP "\bsubsquently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubsquently\b/subsequently/g" *.tw $GREP "\bsubstace\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstace\b/substance/g" *.tw $GREP "\bsubstancial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstancial\b/substantial/g" *.tw $GREP "\bsubstatial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstatial\b/substantial/g" *.tw $GREP "\bsubstituded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstituded\b/substituted/g" *.tw $GREP "\bsubstract\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstract\b/subtract/g" *.tw $GREP "\bsubstracted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstracted\b/subtracted/g" *.tw $GREP "\bsubstracting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstracting\b/subtracting/g" *.tw $GREP "\bsubstraction\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstraction\b/subtraction/g" *.tw $GREP "\bsubstracts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubstracts\b/subtracts/g" *.tw $GREP "\bsubtances\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubtances\b/substances/g" *.tw $GREP "\bsubterranian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsubterranian\b/subterranean/g" *.tw $GREP "\bsuburburban\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuburburban\b/suburban/g" *.tw $GREP "\bsuccceeded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccceeded\b/succeeded/g" *.tw $GREP "\bsucccesses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucccesses\b/successes/g" *.tw $GREP "\bsuccedded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccedded\b/succeeded/g" *.tw $GREP "\bsucceded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucceded\b/succeeded/g" *.tw $GREP "\bsucceds\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucceds\b/succeeds/g" *.tw $GREP "\bsuccesful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccesful\b/successful/g" *.tw $GREP "\bsuccesfully\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccesfully\b/successfully/g" *.tw $GREP "\bsuccesfuly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccesfuly\b/successfully/g" *.tw $GREP "\bsuccesion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccesion\b/succession/g" *.tw $GREP "\bsuccesive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccesive\b/successive/g" *.tw $GREP "\bsuccessfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccessfull\b/successful/g" *.tw $GREP "\bsuccessully\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccessully\b/successfully/g" *.tw $GREP "\bsuccsess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccsess\b/success/g" *.tw $GREP "\bsuccsessfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuccsessfull\b/successful/g" *.tw $GREP "\bsuceed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuceed\b/succeed/g" *.tw $GREP "\bsuceeded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuceeded\b/succeeded/g" *.tw $GREP "\bsuceeding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuceeding\b/succeeding/g" *.tw $GREP "\bsuceeds\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuceeds\b/succeeds/g" *.tw $GREP "\bsucesful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucesful\b/successful/g" *.tw $GREP "\bsucesfully\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucesfully\b/successfully/g" *.tw $GREP "\bsucesfuly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucesfuly\b/successfully/g" *.tw $GREP "\bsucesion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucesion\b/succession/g" *.tw $GREP "\bsucess\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucess\b/success/g" *.tw $GREP "\bsucesses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucesses\b/successes/g" *.tw $GREP "\bsucessful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucessful\b/successful/g" *.tw $GREP "\bsucessfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucessfull\b/successful/g" *.tw $GREP "\bsucessfully\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucessfully\b/successfully/g" *.tw $GREP "\bsucessfuly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucessfuly\b/successfully/g" *.tw $GREP "\bsucession\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucession\b/succession/g" *.tw $GREP "\bsucessive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucessive\b/successive/g" *.tw $GREP "\bsucessor\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucessor\b/successor/g" *.tw $GREP "\bsucessot\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucessot\b/successor/g" *.tw $GREP "\bsucide\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucide\b/suicide/g" *.tw $GREP "\bsucidial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsucidial\b/suicidal/g" *.tw $GREP "\bsudent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsudent\b/student/g" *.tw $GREP "\bsudents\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsudents\b/students/g" *.tw $GREP "\bsufferage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsufferage\b/suffrage/g" *.tw $GREP "\bsufferred\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsufferred\b/suffered/g" *.tw $GREP "\bsufferring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsufferring\b/suffering/g" *.tw $GREP "\bsufficent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsufficent\b/sufficient/g" *.tw $GREP "\bsufficently\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsufficently\b/sufficiently/g" *.tw $GREP "\bsumary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsumary\b/summary/g" *.tw $GREP "\bsunglases\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsunglases\b/sunglasses/g" *.tw $GREP "\bsuop\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuop\b/soup/g" *.tw $GREP "\bsuperceeded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuperceeded\b/superseded/g" *.tw $GREP "\bsuperintendant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuperintendant\b/superintendent/g" *.tw $GREP "\bsuphisticated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuphisticated\b/sophisticated/g" *.tw $GREP "\bsuplimented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuplimented\b/supplemented/g" *.tw $GREP "\bsupose\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsupose\b/suppose/g" *.tw $GREP "\bsuposed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuposed\b/supposed/g" *.tw $GREP "\bsuposedly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuposedly\b/supposedly/g" *.tw $GREP "\bsuposes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuposes\b/supposes/g" *.tw $GREP "\bsuposing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuposing\b/supposing/g" *.tw $GREP "\bsupplamented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsupplamented\b/supplemented/g" *.tw $GREP "\bsuppliementing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuppliementing\b/supplementing/g" *.tw $GREP "\bsuppoed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuppoed\b/supposed/g" *.tw $GREP "\bsupposingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsupposingly\b/supposedly/g" *.tw $GREP "\bsuppy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuppy\b/supply/g" *.tw $GREP "\bsuprassing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprassing\b/surpassing/g" *.tw $GREP "\bsupress\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsupress\b/suppress/g" *.tw $GREP "\bsupressed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsupressed\b/suppressed/g" *.tw $GREP "\bsupresses\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsupresses\b/suppresses/g" *.tw $GREP "\bsupressing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsupressing\b/suppressing/g" *.tw $GREP "\bsuprise\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprise\b/surprise/g" *.tw $GREP "\bsuprised\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprised\b/surprised/g" *.tw $GREP "\bsuprising\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprising\b/surprising/g" *.tw $GREP "\bsuprisingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprisingly\b/surprisingly/g" *.tw $GREP "\bsuprize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprize\b/surprise/g" *.tw $GREP "\bsuprized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprized\b/surprised/g" *.tw $GREP "\bsuprizing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprizing\b/surprising/g" *.tw $GREP "\bsuprizingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuprizingly\b/surprisingly/g" *.tw $GREP "\bsurfce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurfce\b/surface/g" *.tw $GREP "\bsuround\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuround\b/surround/g" *.tw $GREP "\bsurounded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurounded\b/surrounded/g" *.tw $GREP "\bsurounding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurounding\b/surrounding/g" *.tw $GREP "\bsuroundings\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuroundings\b/surroundings/g" *.tw $GREP "\bsurounds\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurounds\b/surrounds/g" *.tw $GREP "\bsurplanted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurplanted\b/supplanted/g" *.tw $GREP "\bsurpress\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurpress\b/suppress/g" *.tw $GREP "\bsurpressed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurpressed\b/suppressed/g" *.tw $GREP "\bsurprize\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurprize\b/surprise/g" *.tw $GREP "\bsurprized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurprized\b/surprised/g" *.tw $GREP "\bsurprizing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurprizing\b/surprising/g" *.tw $GREP "\bsurprizingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurprizingly\b/surprisingly/g" *.tw $GREP "\bsurrepetitious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurrepetitious\b/surreptitious/g" *.tw $GREP "\bsurrepetitiously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurrepetitiously\b/surreptitiously/g" *.tw $GREP "\bsurreptious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurreptious\b/surreptitious/g" *.tw $GREP "\bsurreptiously\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurreptiously\b/surreptitiously/g" *.tw $GREP "\bsurronded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurronded\b/surrounded/g" *.tw $GREP "\bsurrouded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurrouded\b/surrounded/g" *.tw $GREP "\bsurrouding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurrouding\b/surrounding/g" *.tw $GREP "\bsurrundering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurrundering\b/surrendering/g" *.tw $GREP "\bsurveilence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurveilence\b/surveillance/g" *.tw $GREP "\bsurveill\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurveill\b/surveil/g" *.tw $GREP "\bsurveyer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurveyer\b/surveyor/g" *.tw $GREP "\bsurviver\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurviver\b/survivor/g" *.tw $GREP "\bsurvivers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurvivers\b/survivors/g" *.tw $GREP "\bsurvivied\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsurvivied\b/survived/g" *.tw $GREP "\bsuseptable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuseptable\b/susceptible/g" *.tw $GREP "\bsuseptible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuseptible\b/susceptible/g" *.tw $GREP "\bsuspention\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsuspention\b/suspension/g" *.tw $GREP "\bswaer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bswaer\b/swear/g" *.tw $GREP "\bswaers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bswaers\b/swears/g" *.tw $GREP "\bswepth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bswepth\b/swept/g" *.tw $GREP "\bswiming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bswiming\b/swimming/g" *.tw $GREP "\bsyas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsyas\b/says/g" *.tw $GREP "\bsymetrical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsymetrical\b/symmetrical/g" *.tw $GREP "\bsymetrically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsymetrically\b/symmetrically/g" *.tw $GREP "\bsymetry\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsymetry\b/symmetry/g" *.tw $GREP "\bsymettric\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsymettric\b/symmetric/g" *.tw $GREP "\bsymmetral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsymmetral\b/symmetric/g" *.tw $GREP "\bsymmetricaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsymmetricaly\b/symmetrically/g" *.tw $GREP "\bsynagouge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsynagouge\b/synagogue/g" *.tw $GREP "\bsyncronization\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsyncronization\b/synchronization/g" *.tw $GREP "\bsynonomous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsynonomous\b/synonymous/g" *.tw $GREP "\bsynonymns\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsynonymns\b/synonyms/g" *.tw $GREP "\bsynphony\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsynphony\b/symphony/g" *.tw $GREP "\bsyphyllis\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsyphyllis\b/syphilis/g" *.tw $GREP "\bsypmtoms\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsypmtoms\b/symptoms/g" *.tw $GREP "\bsyrap\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsyrap\b/syrup/g" *.tw $GREP "\bsysmatically\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsysmatically\b/systematically/g" *.tw $GREP "\bsytem\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsytem\b/system/g" *.tw $GREP "\bsytle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bsytle\b/style/g" *.tw $GREP "\btabacco\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btabacco\b/tobacco/g" *.tw $GREP "\btahn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btahn\b/than/g" *.tw $GREP "\btaht\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btaht\b/that/g" *.tw $GREP "\btalekd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btalekd\b/talked/g" *.tw $GREP "\btargetted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btargetted\b/targeted/g" *.tw $GREP "\btargetting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btargetting\b/targeting/g" *.tw $GREP "\btast\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btast\b/taste/g" *.tw $GREP "\btath\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btath\b/that/g" *.tw $GREP "\btatoo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btatoo\b/tattoo/g" *.tw $GREP "\btattooes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btattooes\b/tattoos/g" *.tw $GREP "\btaxanomic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btaxanomic\b/taxonomic/g" *.tw $GREP "\btaxanomy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btaxanomy\b/taxonomy/g" *.tw $GREP "\bteached\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bteached\b/taught/g" *.tw $GREP "\btechician\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btechician\b/technician/g" *.tw $GREP "\btechicians\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btechicians\b/technicians/g" *.tw $GREP "\btechiniques\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btechiniques\b/techniques/g" *.tw $GREP "\btechnitian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btechnitian\b/technician/g" *.tw $GREP "\btechnnology\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btechnnology\b/technology/g" *.tw $GREP "\btechnolgy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btechnolgy\b/technology/g" *.tw $GREP "\bteh\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bteh\b/the/g" *.tw $GREP "\btehy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btehy\b/they/g" *.tw $GREP "\btelelevision\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btelelevision\b/television/g" *.tw $GREP "\btelevsion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btelevsion\b/television/g" *.tw $GREP "\btelphony\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btelphony\b/telephony/g" *.tw $GREP "\btemerature\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btemerature\b/temperature/g" *.tw $GREP "\btempalte\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btempalte\b/template/g" *.tw $GREP "\btempaltes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btempaltes\b/templates/g" *.tw $GREP "\btemparate\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btemparate\b/temperate/g" *.tw $GREP "\btemperarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btemperarily\b/temporarily/g" *.tw $GREP "\btemperment\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btemperment\b/temperament/g" *.tw $GREP "\btempertaure\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btempertaure\b/temperature/g" *.tw $GREP "\btemperture\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btemperture\b/temperature/g" *.tw $GREP "\btemprary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btemprary\b/temporary/g" *.tw $GREP "\btenacle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btenacle\b/tentacle/g" *.tw $GREP "\btenacles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btenacles\b/tentacles/g" *.tw $GREP "\btendacy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btendacy\b/tendency/g" *.tw $GREP "\btendancies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btendancies\b/tendencies/g" *.tw $GREP "\btendancy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btendancy\b/tendency/g" *.tw $GREP "\btennisplayer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btennisplayer\b/tennis player/g" *.tw $GREP "\btepmorarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btepmorarily\b/temporarily/g" *.tw $GREP "\bterrestial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bterrestial\b/terrestrial/g" *.tw $GREP "\bterriories\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bterriories\b/territories/g" *.tw $GREP "\bterriory\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bterriory\b/territory/g" *.tw $GREP "\bterritorist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bterritorist\b/terrorist/g" *.tw $GREP "\bterritoy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bterritoy\b/territory/g" *.tw $GREP "\bterroist\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bterroist\b/terrorist/g" *.tw $GREP "\btesticlular\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btesticlular\b/testicular/g" *.tw $GREP "\btestomony\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btestomony\b/testimony/g" *.tw $GREP "\btghe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btghe\b/the/g" *.tw $GREP "\btheather\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btheather\b/theater/g" *.tw $GREP "\btheese\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btheese\b/these/g" *.tw $GREP "\btheif\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btheif\b/thief/g" *.tw $GREP "\btheives\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btheives\b/thieves/g" *.tw $GREP "\bthemselfs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthemselfs\b/themselves/g" *.tw $GREP "\bthemslves\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthemslves\b/themselves/g" *.tw $GREP "\btherafter\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btherafter\b/thereafter/g" *.tw $GREP "\btherby\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btherby\b/thereby/g" *.tw $GREP "\btheri\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btheri\b/their/g" *.tw $GREP "\btheyre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btheyre\b/they're/g" *.tw $GREP "\bthgat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthgat\b/that/g" *.tw $GREP "\bthge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthge\b/the/g" *.tw $GREP "\bthier\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthier\b/their/g" *.tw $GREP "\bthign\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthign\b/thing/g" *.tw $GREP "\bthigns\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthigns\b/things/g" *.tw $GREP "\bthigsn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthigsn\b/things/g" *.tw $GREP "\bthikn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthikn\b/think/g" *.tw $GREP "\bthikns\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthikns\b/thinks/g" *.tw $GREP "\bthiunk\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthiunk\b/think/g" *.tw $GREP "\bthn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthn\b/then/g" *.tw $GREP "\bthna\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthna\b/than/g" *.tw $GREP "\bthne\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthne\b/then/g" *.tw $GREP "\bthnig\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthnig\b/thing/g" *.tw $GREP "\bthnigs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthnigs\b/things/g" *.tw $GREP "\bthoughout\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthoughout\b/throughout/g" *.tw $GREP "\bthreatend\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthreatend\b/threatened/g" *.tw $GREP "\bthreatning\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthreatning\b/threatening/g" *.tw $GREP "\bthreee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthreee\b/three/g" *.tw $GREP "\bthreshhold\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthreshhold\b/threshold/g" *.tw $GREP "\bthrid\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthrid\b/third/g" *.tw $GREP "\bthrorough\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthrorough\b/thorough/g" *.tw $GREP "\bthroughly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthroughly\b/thoroughly/g" *.tw $GREP "\bthrougout\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthrougout\b/throughout/g" *.tw $GREP "\bthru\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthru\b/through/g" *.tw $GREP "\bthsi\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthsi\b/this/g" *.tw $GREP "\bthsoe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthsoe\b/those/g" *.tw $GREP "\bthta\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthta\b/that/g" *.tw $GREP "\bthyat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bthyat\b/that/g" *.tw $GREP "\btihkn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btihkn\b/think/g" *.tw $GREP "\btihs\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btihs\b/this/g" *.tw $GREP "\btimne\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btimne\b/time/g" *.tw $GREP "\btje\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btje\b/the/g" *.tw $GREP "\btjhe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btjhe\b/the/g" *.tw $GREP "\btjpanishad\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btjpanishad\b/upanishad/g" *.tw $GREP "\btkae\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btkae\b/take/g" *.tw $GREP "\btkaes\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btkaes\b/takes/g" *.tw $GREP "\btkaing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btkaing\b/taking/g" *.tw $GREP "\btlaking\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btlaking\b/talking/g" *.tw $GREP "\btobbaco\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btobbaco\b/tobacco/g" *.tw $GREP "\btodays\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btodays\b/today's/g" *.tw $GREP "\btodya\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btodya\b/today/g" *.tw $GREP "\btoghether\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btoghether\b/together/g" *.tw $GREP "\btoke\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btoke\b/took/g" *.tw $GREP "\btolerence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btolerence\b/tolerance/g" *.tw $GREP "\bTolkein\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bTolkein\b/Tolkien/g" *.tw $GREP "\btomatos\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btomatos\b/tomatoes/g" *.tw $GREP "\btommorow\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btommorow\b/tomorrow/g" *.tw $GREP "\btommorrow\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btommorrow\b/tomorrow/g" *.tw $GREP "\btongiht\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btongiht\b/tonight/g" *.tw $GREP "\btoriodal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btoriodal\b/toroidal/g" *.tw $GREP "\btormenters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btormenters\b/tormentors/g" *.tw $GREP "\btornadoe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btornadoe\b/tornado/g" *.tw $GREP "\btorpeados\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btorpeados\b/torpedoes/g" *.tw $GREP "\btorpedos\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btorpedos\b/torpedoes/g" *.tw $GREP "\btortise \b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btortise \b/tortoise/g" *.tw $GREP "\btothe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btothe\b/to the/g" *.tw $GREP "\btoubles\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btoubles\b/troubles/g" *.tw $GREP "\btounge\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btounge\b/tongue/g" *.tw $GREP "\btowords\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btowords\b/towards/g" *.tw $GREP "\btowrad\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btowrad\b/toward/g" *.tw $GREP "\btradionally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btradionally\b/traditionally/g" *.tw $GREP "\btraditionaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btraditionaly\b/traditionally/g" *.tw $GREP "\btraditionnal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btraditionnal\b/traditional/g" *.tw $GREP "\btraditition\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btraditition\b/tradition/g" *.tw $GREP "\btradtionally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btradtionally\b/traditionally/g" *.tw $GREP "\btrafficed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btrafficed\b/trafficked/g" *.tw $GREP "\btrafficing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btrafficing\b/trafficking/g" *.tw $GREP "\btrafic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btrafic\b/traffic/g" *.tw $GREP "\btrancendent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btrancendent\b/transcendent/g" *.tw $GREP "\btrancending\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btrancending\b/transcending/g" *.tw $GREP "\btranform\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btranform\b/transform/g" *.tw $GREP "\btranformed\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btranformed\b/transformed/g" *.tw $GREP "\btranscendance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btranscendance\b/transcendence/g" *.tw $GREP "\btranscendant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btranscendant\b/transcendent/g" *.tw $GREP "\btranscendentational\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btranscendentational\b/transcendental/g" *.tw $GREP "\btransending\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransending\b/transcending/g" *.tw $GREP "\btransesxuals\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransesxuals\b/transsexuals/g" *.tw $GREP "\btransfered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransfered\b/transferred/g" *.tw $GREP "\btransfering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransfering\b/transferring/g" *.tw $GREP "\btransformaton\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransformaton\b/transformation/g" *.tw $GREP "\btransistion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransistion\b/transition/g" *.tw $GREP "\btranslater\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btranslater\b/translator/g" *.tw $GREP "\btranslaters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btranslaters\b/translators/g" *.tw $GREP "\btransmissable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransmissable\b/transmissible/g" *.tw $GREP "\btransporation\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btransporation\b/transportation/g" *.tw $GREP "\btremelo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btremelo\b/tremolo/g" *.tw $GREP "\btremelos\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btremelos\b/tremolos/g" *.tw $GREP "\btriguered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btriguered\b/triggered/g" *.tw $GREP "\btriology\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btriology\b/trilogy/g" *.tw $GREP "\btroling\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btroling\b/trolling/g" *.tw $GREP "\btroup\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btroup\b/troupe/g" *.tw $GREP "\btruely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btruely\b/truly/g" *.tw $GREP "\btrustworthyness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btrustworthyness\b/trustworthiness/g" *.tw $GREP "\bTuscon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bTuscon\b/Tucson/g" *.tw $GREP "\btust\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btust\b/trust/g" *.tw $GREP "\btwelth\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btwelth\b/twelfth/g" *.tw $GREP "\btwon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btwon\b/town/g" *.tw $GREP "\btwpo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btwpo\b/two/g" *.tw $GREP "\btyhat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btyhat\b/that/g" *.tw $GREP "\btyhe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btyhe\b/they/g" *.tw $GREP "\btypcial\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btypcial\b/typical/g" *.tw $GREP "\btypicaly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btypicaly\b/typically/g" *.tw $GREP "\btyranies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btyranies\b/tyrannies/g" *.tw $GREP "\btyrany\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btyrany\b/tyranny/g" *.tw $GREP "\btyrranies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btyrranies\b/tyrannies/g" *.tw $GREP "\btyrrany\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\btyrrany\b/tyranny/g" *.tw $GREP "\bubiquitious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bubiquitious\b/ubiquitous/g" *.tw $GREP "\bublisher\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bublisher\b/publisher/g" *.tw $GREP "\buise\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buise\b/use/g" *.tw $GREP "\bUkranian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bUkranian\b/Ukrainian/g" *.tw $GREP "\bultimely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bultimely\b/ultimately/g" *.tw $GREP "\bunacompanied\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunacompanied\b/unaccompanied/g" *.tw $GREP "\bunahppy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunahppy\b/unhappy/g" *.tw $GREP "\bunanymous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunanymous\b/unanimous/g" *.tw $GREP "\bunathorised\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunathorised\b/unauthorised/g" *.tw $GREP "\bunavailible\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunavailible\b/unavailable/g" *.tw $GREP "\bunballance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunballance\b/unbalance/g" *.tw $GREP "\bunbeknowst\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunbeknowst\b/unbeknownst/g" *.tw $GREP "\bunbeleivable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunbeleivable\b/unbelievable/g" *.tw $GREP "\buncertainity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buncertainity\b/uncertainty/g" *.tw $GREP "\bunchallengable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunchallengable\b/unchallengeable/g" *.tw $GREP "\bunchangable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunchangable\b/unchangeable/g" *.tw $GREP "\buncompetive\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buncompetive\b/uncompetitive/g" *.tw $GREP "\bunconcious\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunconcious\b/unconscious/g" *.tw $GREP "\bunconciousness\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunconciousness\b/unconsciousness/g" *.tw $GREP "\bunconfortability\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunconfortability\b/discomfort/g" *.tw $GREP "\buncontitutional\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buncontitutional\b/unconstitutional/g" *.tw $GREP "\bunconvential\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunconvential\b/unconventional/g" *.tw $GREP "\bundecideable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bundecideable\b/undecidable/g" *.tw $GREP "\bunderstoon\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunderstoon\b/understood/g" *.tw $GREP "\bundesireable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bundesireable\b/undesirable/g" *.tw $GREP "\bundetecable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bundetecable\b/undetectable/g" *.tw $GREP "\bundoubtely\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bundoubtely\b/undoubtedly/g" *.tw $GREP "\bundreground\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bundreground\b/underground/g" *.tw $GREP "\buneccesary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buneccesary\b/unnecessary/g" *.tw $GREP "\bunecessary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunecessary\b/unnecessary/g" *.tw $GREP "\bunequalities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunequalities\b/inequalities/g" *.tw $GREP "\bunforseen\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunforseen\b/unforeseen/g" *.tw $GREP "\bunforetunately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunforetunately\b/unfortunately/g" *.tw $GREP "\bunforgetable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunforgetable\b/unforgettable/g" *.tw $GREP "\bunforgiveable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunforgiveable\b/unforgivable/g" *.tw $GREP "\bunfortunatley\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunfortunatley\b/unfortunately/g" *.tw $GREP "\bunfortunatly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunfortunatly\b/unfortunately/g" *.tw $GREP "\bunfourtunately\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunfourtunately\b/unfortunately/g" *.tw $GREP "\bunihabited\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunihabited\b/uninhabited/g" *.tw $GREP "\bunilateraly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunilateraly\b/unilaterally/g" *.tw $GREP "\bunilatreal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunilatreal\b/unilateral/g" *.tw $GREP "\bunilatreally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunilatreally\b/unilaterally/g" *.tw $GREP "\buninterruped\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buninterruped\b/uninterrupted/g" *.tw $GREP "\buninterupted\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buninterupted\b/uninterrupted/g" *.tw $GREP "\bUnitesStates\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bUnitesStates\b/UnitedStates/g" *.tw $GREP "\buniveral\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buniveral\b/universal/g" *.tw $GREP "\buniveristies\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buniveristies\b/universities/g" *.tw $GREP "\buniveristy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buniveristy\b/university/g" *.tw $GREP "\buniverity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buniverity\b/university/g" *.tw $GREP "\buniverstiy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buniverstiy\b/university/g" *.tw $GREP "\bunivesities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunivesities\b/universities/g" *.tw $GREP "\bunivesity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunivesity\b/university/g" *.tw $GREP "\bunkown\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunkown\b/unknown/g" *.tw $GREP "\bunlikey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunlikey\b/unlikely/g" *.tw $GREP "\bunmistakeably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunmistakeably\b/unmistakably/g" *.tw $GREP "\bunneccesarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunneccesarily\b/unnecessarily/g" *.tw $GREP "\bunneccesary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunneccesary\b/unnecessary/g" *.tw $GREP "\bunneccessarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunneccessarily\b/unnecessarily/g" *.tw $GREP "\bunneccessary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunneccessary\b/unnecessary/g" *.tw $GREP "\bunnecesarily\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunnecesarily\b/unnecessarily/g" *.tw $GREP "\bunnecesary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunnecesary\b/unnecessary/g" *.tw $GREP "\bunoffical\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunoffical\b/unofficial/g" *.tw $GREP "\bunoperational\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunoperational\b/nonoperational/g" *.tw $GREP "\bunoticeable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunoticeable\b/unnoticeable/g" *.tw $GREP "\bunplease\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunplease\b/displease/g" *.tw $GREP "\bunplesant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunplesant\b/unpleasant/g" *.tw $GREP "\bunprecendented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunprecendented\b/unprecedented/g" *.tw $GREP "\bunprecidented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunprecidented\b/unprecedented/g" *.tw $GREP "\bunrealisticly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunrealisticly\b/unrealistically/g" *.tw $GREP "\bunrepentent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunrepentent\b/unrepentant/g" *.tw $GREP "\bunrepetant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunrepetant\b/unrepentant/g" *.tw $GREP "\bunrepetent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunrepetent\b/unrepentant/g" *.tw $GREP "\bunsubstanciated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsubstanciated\b/unsubstantiated/g" *.tw $GREP "\bunsuccesful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuccesful\b/unsuccessful/g" *.tw $GREP "\bunsuccesfully\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuccesfully\b/unsuccessfully/g" *.tw $GREP "\bunsuccessfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuccessfull\b/unsuccessful/g" *.tw $GREP "\bunsucesful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsucesful\b/unsuccessful/g" *.tw $GREP "\bunsucesfuly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsucesfuly\b/unsuccessfully/g" *.tw $GREP "\bunsucessful\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsucessful\b/unsuccessful/g" *.tw $GREP "\bunsucessfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsucessfull\b/unsuccessful/g" *.tw $GREP "\bunsucessfully\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsucessfully\b/unsuccessfully/g" *.tw $GREP "\bunsuprised\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuprised\b/unsurprised/g" *.tw $GREP "\bunsuprising\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuprising\b/unsurprising/g" *.tw $GREP "\bunsuprisingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuprisingly\b/unsurprisingly/g" *.tw $GREP "\bunsuprized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuprized\b/unsurprised/g" *.tw $GREP "\bunsuprizing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuprizing\b/unsurprising/g" *.tw $GREP "\bunsuprizingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsuprizingly\b/unsurprisingly/g" *.tw $GREP "\bunsurprized\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsurprized\b/unsurprised/g" *.tw $GREP "\bunsurprizing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsurprizing\b/unsurprising/g" *.tw $GREP "\bunsurprizingly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunsurprizingly\b/unsurprisingly/g" *.tw $GREP "\buntill\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buntill\b/until/g" *.tw $GREP "\buntranslateable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buntranslateable\b/untranslatable/g" *.tw $GREP "\bunuseable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunuseable\b/unusable/g" *.tw $GREP "\bunusuable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunusuable\b/unusable/g" *.tw $GREP "\bunviersity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunviersity\b/university/g" *.tw $GREP "\bunwarrented\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunwarrented\b/unwarranted/g" *.tw $GREP "\bunweildly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunweildly\b/unwieldy/g" *.tw $GREP "\bunwieldly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bunwieldly\b/unwieldy/g" *.tw $GREP "\bupcomming\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bupcomming\b/upcoming/g" *.tw $GREP "\bupgradded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bupgradded\b/upgraded/g" *.tw $GREP "\bupto\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bupto\b/up to/g" *.tw $GREP "\busally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\busally\b/usually/g" *.tw $GREP "\buseage\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buseage\b/usage/g" *.tw $GREP "\busefull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\busefull\b/useful/g" *.tw $GREP "\busefuly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\busefuly\b/usefully/g" *.tw $GREP "\buseing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\buseing\b/using/g" *.tw $GREP "\busualy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\busualy\b/usually/g" *.tw $GREP "\bususally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bususally\b/usually/g" *.tw $GREP "\bvaccum\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvaccum\b/vacuum/g" *.tw $GREP "\bvaccume\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvaccume\b/vacuum/g" *.tw $GREP "\bvacinity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvacinity\b/vicinity/g" *.tw $GREP "\bvaguaries\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvaguaries\b/vagaries/g" *.tw $GREP "\bvaieties\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvaieties\b/varieties/g" *.tw $GREP "\bvailidty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvailidty\b/validity/g" *.tw $GREP "\bvaletta\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvaletta\b/valletta/g" *.tw $GREP "\bvaluble\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvaluble\b/valuable/g" *.tw $GREP "\bvalueable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvalueable\b/valuable/g" *.tw $GREP "\bvarations\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvarations\b/variations/g" *.tw $GREP "\bvarient\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvarient\b/variant/g" *.tw $GREP "\bvariey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvariey\b/variety/g" *.tw $GREP "\bvaring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvaring\b/varying/g" *.tw $GREP "\bvarities\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvarities\b/varieties/g" *.tw $GREP "\bvarity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvarity\b/variety/g" *.tw $GREP "\bvasall\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvasall\b/vassal/g" *.tw $GREP "\bvasalls\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvasalls\b/vassals/g" *.tw $GREP "\bvegatarian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvegatarian\b/vegetarian/g" *.tw $GREP "\bvegitable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvegitable\b/vegetable/g" *.tw $GREP "\bvegitables\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvegitables\b/vegetables/g" *.tw $GREP "\bvegtable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvegtable\b/vegetable/g" *.tw $GREP "\bvehicule\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvehicule\b/vehicle/g" *.tw $GREP "\bvell\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvell\b/well/g" *.tw $GREP "\bvenemous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvenemous\b/venomous/g" *.tw $GREP "\bvengance\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvengance\b/vengeance/g" *.tw $GREP "\bvengence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvengence\b/vengeance/g" *.tw $GREP "\bverfication\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bverfication\b/verification/g" *.tw $GREP "\bverison\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bverison\b/version/g" *.tw $GREP "\bverisons\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bverisons\b/versions/g" *.tw $GREP "\bvermillion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvermillion\b/vermilion/g" *.tw $GREP "\bversitilaty\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bversitilaty\b/versatility/g" *.tw $GREP "\bversitlity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bversitlity\b/versatility/g" *.tw $GREP "\bvetween\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvetween\b/between/g" *.tw $GREP "\bveyr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bveyr\b/very/g" *.tw $GREP "\bvigilence\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvigilence\b/vigilance/g" *.tw $GREP "\bvigourous\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvigourous\b/vigorous/g" *.tw $GREP "\bvillian\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvillian\b/villain/g" *.tw $GREP "\bvillification\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvillification\b/vilification/g" *.tw $GREP "\bvillify\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvillify\b/vilify/g" *.tw $GREP "\bvincinity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvincinity\b/vicinity/g" *.tw $GREP "\bviolentce\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bviolentce\b/violence/g" *.tw $GREP "\bvirtualy\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvirtualy\b/virtually/g" *.tw $GREP "\bvirutal\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvirutal\b/virtual/g" *.tw $GREP "\bvirutally\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvirutally\b/virtually/g" *.tw $GREP "\bvisable\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvisable\b/visible/g" *.tw $GREP "\bvisably\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvisably\b/visibly/g" *.tw $GREP "\bvisting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvisting\b/visiting/g" *.tw $GREP "\bvistors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvistors\b/visitors/g" *.tw $GREP "\bvitories\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvitories\b/victories/g" *.tw $GREP "\bvolcanoe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolcanoe\b/volcano/g" *.tw $GREP "\bvoleyball\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvoleyball\b/volleyball/g" *.tw $GREP "\bvolontary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolontary\b/voluntary/g" *.tw $GREP "\bvolonteer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolonteer\b/volunteer/g" *.tw $GREP "\bvolonteered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolonteered\b/volunteered/g" *.tw $GREP "\bvolonteering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolonteering\b/volunteering/g" *.tw $GREP "\bvolonteers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolonteers\b/volunteers/g" *.tw $GREP "\bvolounteer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolounteer\b/volunteer/g" *.tw $GREP "\bvolounteered\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolounteered\b/volunteered/g" *.tw $GREP "\bvolounteering\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolounteering\b/volunteering/g" *.tw $GREP "\bvolounteers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolounteers\b/volunteers/g" *.tw $GREP "\bvolumne\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvolumne\b/volume/g" *.tw $GREP "\bvreity\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvreity\b/variety/g" *.tw $GREP "\bvrey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvrey\b/very/g" *.tw $GREP "\bvriety\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvriety\b/variety/g" *.tw $GREP "\bvulnerablility\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvulnerablility\b/vulnerability/g" *.tw $GREP "\bvyer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvyer\b/very/g" *.tw $GREP "\bvyre\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bvyre\b/very/g" *.tw $GREP "\bwaht\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwaht\b/what/g" *.tw $GREP "\bwarantee\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwarantee\b/warranty/g" *.tw $GREP "\bwardobe\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwardobe\b/wardrobe/g" *.tw $GREP "\bwarrent\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwarrent\b/warrant/g" *.tw $GREP "\bwarrriors\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwarrriors\b/warriors/g" *.tw $GREP "\bwasnt\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwasnt\b/wasn't/g" *.tw $GREP "\bwass\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwass\b/was/g" *.tw $GREP "\bwatn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwatn\b/want/g" *.tw $GREP "\bwayword\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwayword\b/wayward/g" *.tw $GREP "\bweaponary\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bweaponary\b/weaponry/g" *.tw $GREP "\bweas\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bweas\b/was/g" *.tw $GREP "\bwehn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwehn\b/when/g" *.tw $GREP "\bweilded\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bweilded\b/wielded/g" *.tw $GREP "\bwendsay\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwendsay\b/Wednesday/g" *.tw $GREP "\bwensday\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwensday\b/Wednesday/g" *.tw $GREP "\bwereabouts\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwereabouts\b/whereabouts/g" *.tw $GREP "\bwhant\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhant\b/want/g" *.tw $GREP "\bwhants\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhants\b/wants/g" *.tw $GREP "\bwhcih\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhcih\b/which/g" *.tw $GREP "\bwheras\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwheras\b/whereas/g" *.tw $GREP "\bwherease\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwherease\b/whereas/g" *.tw $GREP "\bwhereever\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhereever\b/wherever/g" *.tw $GREP "\bwhic\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhic\b/which/g" *.tw $GREP "\bwhihc\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhihc\b/which/g" *.tw $GREP "\bwhith\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhith\b/with/g" *.tw $GREP "\bwhlch\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhlch\b/which/g" *.tw $GREP "\bwhn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhn\b/when/g" *.tw $GREP "\bwholey\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwholey\b/wholly/g" *.tw $GREP "\bwhta\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhta\b/what/g" *.tw $GREP "\bwhther\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwhther\b/whether/g" *.tw $GREP "\bwidesread\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwidesread\b/widespread/g" *.tw $GREP "\bwief\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwief\b/wife/g" *.tw $GREP "\bwierd\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwierd\b/weird/g" *.tw $GREP "\bwiew\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwiew\b/view/g" *.tw $GREP "\bwih\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwih\b/with/g" *.tw $GREP "\bwiht\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwiht\b/with/g" *.tw $GREP "\bwille\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwille\b/will/g" *.tw $GREP "\bwillk\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwillk\b/will/g" *.tw $GREP "\bwillingless\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwillingless\b/willingness/g" *.tw $GREP "\bwirting\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwirting\b/writing/g" *.tw $GREP "\bwitheld\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwitheld\b/withheld/g" *.tw $GREP "\bwithh\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwithh\b/with/g" *.tw $GREP "\bwithing\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwithing\b/within/g" *.tw $GREP "\bwithold\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwithold\b/withhold/g" *.tw $GREP "\bwitht\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwitht\b/with/g" *.tw $GREP "\bwitn\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwitn\b/with/g" *.tw $GREP "\bwiull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwiull\b/will/g" *.tw $GREP "\bwnat\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwnat\b/want/g" *.tw $GREP "\bwnated\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwnated\b/wanted/g" *.tw $GREP "\bwnats\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwnats\b/wants/g" *.tw $GREP "\bwohle\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwohle\b/whole/g" *.tw $GREP "\bwokr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwokr\b/work/g" *.tw $GREP "\bwokring\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwokring\b/working/g" *.tw $GREP "\bwonderfull\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwonderfull\b/wonderful/g" *.tw $GREP "\bwordlwide\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwordlwide\b/worldwide/g" *.tw $GREP "\bworkststion\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bworkststion\b/workstation/g" *.tw $GREP "\bworls\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bworls\b/world/g" *.tw $GREP "\bworstened\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bworstened\b/worsened/g" *.tw $GREP "\bwoudl\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwoudl\b/would/g" *.tw $GREP "\bwresters\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwresters\b/wrestlers/g" *.tw $GREP "\bwriet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwriet\b/write/g" *.tw $GREP "\bwriten\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwriten\b/written/g" *.tw $GREP "\bwroet\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwroet\b/wrote/g" *.tw $GREP "\bwrok\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwrok\b/work/g" *.tw $GREP "\bwroking\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwroking\b/working/g" *.tw $GREP "\bwtih\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwtih\b/with/g" *.tw $GREP "\bwupport\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bwupport\b/support/g" *.tw $GREP "\bxenophoby\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bxenophoby\b/xenophobia/g" *.tw $GREP "\byaching\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byaching\b/yachting/g" *.tw $GREP "\byaer\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byaer\b/year/g" *.tw $GREP "\byaerly\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byaerly\b/yearly/g" *.tw $GREP "\byaers\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byaers\b/years/g" *.tw $GREP "\byatch\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byatch\b/yacht/g" *.tw $GREP "\byearm\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byearm\b/year/g" *.tw $GREP "\byeasr\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byeasr\b/years/g" *.tw $GREP "\byeild\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byeild\b/yield/g" *.tw $GREP "\byeilding\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byeilding\b/yielding/g" *.tw $GREP "\byera\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byera\b/year/g" *.tw $GREP "\byrea\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byrea\b/year/g" *.tw $GREP "\byeras\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byeras\b/years/g" *.tw $GREP "\byersa\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byersa\b/years/g" *.tw $GREP "\byotube\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byotube\b/youtube/g" *.tw $GREP "\byouseff\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byouseff\b/yousef/g" *.tw $GREP "\byouself\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byouself\b/yourself/g" *.tw $GREP "\bytou\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bytou\b/you/g" *.tw $GREP "\byuo\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\byuo\b/you/g" *.tw $GREP "\bzeebra\b" -- src/ | xargs -0 perl -i -pE "BEGIN{ @ARGV = map glob, @ARGV } s/\bzeebra\b/zebra/g" *.tw find . -name "*.tw.bak" -type f -print0 | xargs -0 /bin/rm -f
amomynous0/fc
fixSpellingMistakes2
none
bsd-3-clause
493,389
Player variables documentation - Pregmod **anything labeled accepts string will return any string entered into it** name: your first name accepts string surname: your last name accepts string 0 - no surname title: (common in events) your title's gender 0 - female 1 - male ID: The player's ID is always -1. dick: (common in events) Player has a cock 0 - no 1 - yes vagina: (common in events) Player has a pussy 0 - no 1 - yes preg: (uncommon in events) How far along the your pregnancy is (pregMood kicks in at 24+ weeks) -2 menopausal -1 contraceptives 0 not pregnant 1 - 42 pregnant 43+ giving birth pregType: How many fetuses you are carrying 1 - 8 pregWeek: How far along your pregnancy is. (used for postpartum) pregKnown: Do you know you are pregnant (currently unused due to lack of menstrual cycle) 0 - no 1 - yes belly: (uncommon in events) how big your belly is in CCs (preg only) thresholds 100 - bloated 1500 - early pregnancy 5000 - obviously pregnant 10000 - very pregnant 15000 - full term 30000 - full term twins 45000 - full term triplets 60000 - full term quads 75000 - full term quints 90000 - full term sextuplets 105000 - full term septuplets 120000 - full term octuplets mpreg: used for <<KnockMeUp>> compatibility pregSource: who knocked you up 0 - unknown -1 - Societal Elite -2 - client -3 - former master -4 - male arc owner -5 - citizen -6 - self-impreg pregMood: (uncommon in events)($PC.preg >= 28) how you act when heavily pregnant 0 - no change 1 - submissive and motherly 2 - aggressive and dominant labor: are you giving birth this week 0 - no 1 - yes births: how many children you've had accepts int boobsBonus: (rare in events) breast size -3 - B-cup -2 - C-cup -1 - D-cup 0 - DD-cup 1 - F-cup 2 - G-cup 3 - H-cup degeneracy: How strong/are there rumors about you doing unsavory things with your slaves 0 - 10 - occasional whispers 11 - 25 - minor rumors 26 - 50 - rumors 51 - 75 - bad rumors 70 - 100 - severe rumors 101+ - life ruining rumors voiceImplant: no effect accent: no effect shoulders: no effect shouldersImplant: no effect boobs: (common in events) 0 - masculine chest (if title = 1) or flat chested (if title = 0)(WIP) 1 - feminine bust career: Your career before becoming owner "wealth" "capitalist" "mercenary" "slaver" "engineer" "medicine" "celebrity" "escort" "servant" "gang" rumor: "wealth" "diligence" "force" "social engineering" "luck" indenture: no effect indentureRestrictions: no effect birthWeek: your week of birth in a year accepts int between 0-51 age: (uncommon in events) your age (deprecated) 0 - young 1 - typical 2 - middle age sexualEnergy: how much fucking you can do in a week accepts int refreshment: your favorite refreshment accepts string refreshmentType: (uncommon in events) The method of consumption of .refreshment 0 - smoked 1 - drank 2 - eaten 3 - snorted 4 - injected 5 - popped 6 - orally dissolved trading: your trading skill accepts int between -100 and 100 warfare: your warfare skill accepts int between -100 and 100 Hacking: your hacking skill accepts int between -100 and 100 slaving: your slaving skill accepts int between -100 and 100 engineering: your engineering skill accepts int between -100 and 100 medicine: your medicine skill accepts int between -100 and 100 cumTap: how acclimated you are to taking huge loads race: your race accepts string origRace: your original race accepts string skin: your skin color accepts string origSkin: your original skin tone accepts string markings: do you have markings? "none" "freckles" "heavily freckled" eyeColor: your eye color accepts string origEyeColor: your original eye color accepts string pupil: your pupil shape accepts string sclerae: your sclerae color accepts string hColor: your hair color accepts string origHColor: your original hair color accepts string nationality: your nationality accepts string father: your father mother: your mother sisters: how many sisters you have daughters: how many daughters you have birthElite: how many children you've carried for the SE birthMaster: how many children you've carried for your former master (servant start only) birthDegenerate: how many slave babies you've had birthClient: how many whoring babies you've had birthOther: untracked births birthArcOwner: how many children you've carried for other arc owners birthCitizen: how many children you've had by sex with citizens (not whoring) birthSelf: how many times you've giving birth to your own selfcest babies slavesFathered: how many babies you are the father of slavesKnockedUp: how many slaves you've gotten pregnant intelligence: 3 face: 100 actualAge: (uncommon in events) your actualAge 16+ physicalAge: your body's age 16+ visualAge: (uncommon in events) how old you look 16+ boobsImplant: do you have breast implants 0 - no 1 - yes butt: how big your butt is 0 - normal 1 - big 2 - huge 3 - enormous buttImplant: do you have butt implants 0 - no 1 - yes balls: how big your balls are (requires dick == 1) 0 - normal 1 - big 2 - huge ballsImplant: how big your balls are (requires dick == 1) 0 - normal 1 - large 2 - huge 3 - enormous 4 - monstrous ageImplant: have your had age altering surgery 0 - no 1 - yes newVag: have you had a loose vagina restored 0 - no 1 - yes reservedChildren: how many of your children will be added to the incubator reservedChildrenNursery: how many of your children will be added to the nursery fertDrugs: are you on fertility supplements 0 - no 1 - yes forcedFertDrugs: have you been drugged with fertility drugs 0 - no 1+ - how many weeks they will remain in your system staminaPills: Are you taking pills to fuck more slaves each week? 0 - no 1 - yes ovaryAge: How old your ovaries are Used to delay menopause temporarily storedCum: How many units of your cum are stored away for artificially inseminating slaves
amomynous0/fc
player variables documentation - Pregmod.txt
Text
bsd-3-clause
5,988
Common problems: How do I start the game? -Run the compile file, go to folder "bin", click the "FC_Pregmod" and play. (Recommendation: Drag it into incognito mode) I get an error on gamestart. -clear cookies I can't save more than once or twice. -Known issue caused by sugarcube level changes. Save to file doesn't have this problem and will likely avoid the first problem as well. I wish to report a sanityCheck issue. -Great, however a large majority of the results are false positives coming from those specific sections being split over several lines in the name of readability and git grep's intentionally (http://git.661346.n2.nabble.com/bug-git-grep-P-and-multiline-mode-td7613900.html ) lacking support for multiline. An Attempt to add -Pzl (https://gitgud.io/pregmodfan/fc-pregmod/merge_requests/2108 ) created a sub condition black hole. What follows are examples of common false positives that can safely be ignored; [MissingClosingAngleBracket]src/art/vector/Generate_Stylesheet.tw:11:<<print "<style>."+_art_display_class+" { <<print "<style>."+_art_display_class+" { position: absolute; height: 100%; margin-left: auto; margin-right: auto; left: 0; right: 0; } How to mod (basic doc): 1. All sources now in the src subdir, in separate files. 1 passage = 1 file. 2. Special files and dir's: - src/config - configuration of the story is here. - src/config/start.tw - contains list of .tw passage files, regenerated automatic, by building scripts. Do not change by hands. (origial passage Start from pregmod renamed and moved to src/events/intro/introSummary.tw) - src/js/storyJS.tw - special passage with [script] tag - contain all native JavaScript from pregmod. - devTools/tweeGo/targets/sugarcube-2/userlib.js - on original FC JS moved here (I deleted it after moving JS to storyJS.tw). Compare to storyJS.tw but do not copy file here. May conflict with src/js/storyJS.tw if copied. - src/pregmod - I put all pregmod-only passages here. - .gitignore - special file for git - to ignore some files. For example - compilation results. 3. Compilation: Windows: Run compile.bat - result will be file bin/FC_pregmod.html Second run of compile.but will overwrite bin/FC_pregmod.html without prompt. Linux: Ensure executable permission on file "devTools/tweeGo/tweego" (not tweego.exe!) Ensure executable permission on file "compile" In the root dir of sources (where you see src, devTools, bin...) run command "./compile" from console compile-git will produce the same result file but with current commit hash in filename. Mac: Not supported directly (I don't have access to Mac for testing). But you can use linux compilation script if you download tweego for mac from here: https://bitbucket.org/tmedwards/tweego/downloads/ and replace linux executable with mac executable in ./devTools/tweeGo/ folder. This is not tested though, so be warned. 4. Simple comparing and merging with original FC: Use meld tool. Place folder FreeCities (original FC sources tree) near FreeCitiesPregmod (this sources tree) and use command: meld FreeCities FreeCitiesPregmod or just select these folders in meld's GUI. 5. All modders will be very grateful if anyone who makes some changes to game with .html file also post his/her resulting src folder tree. 6. For contributors to pregmod: if you don't use git, then you need to post your version of src folder tree, not just produced FC_pregmod.html file!!! This html file can't be reverted to proper sources, and useless as contribution! 7. Git workflow: - Master branch is pregmod-master. Only Pregmodder can add something to it directly. Always contain his last public changes. - pregmod-dev - branch with experimental code mainly by pregmodfan. - Any contributions will be placed in separate branches like pregmod-mod-<something> (if it's ready to merge with master complete feature/mod) or pregmod-contrib-<something> if it's partial work until contributions is reviewed. Typical cycle with git: 1. Make account on gitgud if you don't have usable one. 2. Fork main repository through gitgud interface. (Or pull changes from main repo if you already have fork.) 3. Clone your fork to local machine with git client (Or pull changes if already cloned.) 4. Make you changes as you like, commit, and push result into your forked repository (with git client). 5. Make merge request through gitgud interface.
amomynous0/fc
readme.txt
Text
bsd-3-clause
4,503
amomynous0/fc
resources/raster/favicon/.gitkeep
none
bsd-3-clause
0
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve"> <style type="text/css"> .st0{fill:#787878;} </style> <g id="Areola_piercing_3_"> <circle id="XMLID_242_" class="st0" cx="536.5" cy="276.7" r="1.1"/> <circle id="XMLID_241_" class="st0" cx="536.7" cy="279.7" r="1.1"/> <circle id="XMLID_240_" class="st0" cx="531.5" cy="271.4" r="1.1"/> <circle id="XMLID_239_" class="st0" cx="528.5" cy="271.8" r="1.1"/> <circle id="XMLID_238_" class="st0" cx="532.6" cy="286.2" r="1.1"/> <circle id="XMLID_237_" class="st0" cx="529.5" cy="286.2" r="1.1"/> <circle id="XMLID_236_" class="st0" cx="524.8" cy="280.8" r="1.1"/> <circle id="XMLID_235_" class="st0" cx="524.8" cy="278.1" r="1.1"/> <ellipse id="XMLID_234_" class="st0" cx="467.2" cy="271" rx="0.5" ry="0.7"/> <ellipse id="XMLID_233_" class="st0" cx="468.3" cy="270.5" rx="0.5" ry="0.7"/> <ellipse id="XMLID_232_" class="st0" cx="466.3" cy="277.3" rx="0.5" ry="0.7"/> <ellipse id="XMLID_231_" transform="matrix(-0.9989 -4.745027e-002 4.745027e-002 -0.9989 918.0208 572.7028)" class="st0" cx="465.8" cy="275.5" rx="0.5" ry="0.7"/> <ellipse id="XMLID_230_" class="st0" cx="472" cy="274" rx="0.5" ry="0.7"/> <ellipse id="XMLID_229_" class="st0" cx="472.8" cy="276" rx="0.5" ry="0.7"/> <ellipse id="XMLID_228_" transform="matrix(-0.9413 0.3376 -0.3376 -0.9413 1007.9313 386.819)" class="st0" cx="470.3" cy="281.1" rx="0.5" ry="0.7"/> <ellipse id="XMLID_227_" transform="matrix(-0.9425 0.3341 -0.3341 -0.9425 1009.6696 387.3601)" class="st0" cx="471.5" cy="280.5" rx="0.5" ry="0.7"/> </g> </svg>
amomynous0/fc
resources/vector/body/addon/boob 0 areola piercing.svg
svg
bsd-3-clause
1,862
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve"> <style type="text/css"> .st0{fill:#787878;} </style> <g id="Boob_hvy_piercing_3_"> <path id="XMLID_226_" class="st0" d="M528.1,278.8c0.1,0-0.5,0.7-0.5,1.7c0,0.9,0.5,2,1.7,2.4c1.4,0.4,2.9-0.9,3.3-2 c0.4-1.1-0.3-2-0.2-2.1c0.2-0.1,1.1,1.2,0.9,2.4c-0.2,1.4-1.7,3.1-3.6,2.8c-1.4-0.2-2.8-1.3-2.8-2.8 C526.8,279.8,528.1,278.7,528.1,278.8z"/> <path id="XMLID_225_" class="st0" d="M467.6,275.9c0,0-0.4,0.7-0.4,1.7c-0.1,0.9,0.3,2,0.9,2.4c0.9,0.5,2-0.7,2.3-1.9 c0.3-1.1-0.1-2,0-2.1s0.6,1.2,0.5,2.4c-0.2,1.4-1.3,3-2.6,2.8c-0.9-0.2-1.8-1.4-1.7-2.9C466.7,276.9,467.6,275.9,467.6,275.9z"/> <path id="XMLID_224_" class="st0" d="M468.7,281.2c0.1-0.1,11.3,16.2,28.4,17.6c18.3,1.4,32.9-14.9,33.1-14.8 c0.2,0.2-13.4,17.1-32.5,15.7C479.2,298.4,468.6,281.3,468.7,281.2z"/> <circle id="XMLID_223_" class="st0" cx="527.9" cy="278.7" r="1"/> <circle id="XMLID_222_" class="st0" cx="532.4" cy="278.7" r="1"/> <circle id="XMLID_221_" class="st0" cx="530.2" cy="276" r="1"/> <circle id="XMLID_220_" class="st0" cx="530.4" cy="280.9" r="1"/> <ellipse id="XMLID_219_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 985.4068 454.8795)" class="st0" cx="470.4" cy="275.7" rx="0.6" ry="0.8"/> <ellipse id="XMLID_218_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 855.6479 655.2993)" class="st0" cx="467.6" cy="275.7" rx="0.6" ry="0.8"/> <ellipse id="XMLID_217_" transform="matrix(-0.2055 -0.9787 0.9787 -0.2055 296.3026 788.395)" class="st0" cx="468.2" cy="273.9" rx="0.6" ry="0.5"/> <ellipse id="XMLID_216_" transform="matrix(8.246086e-002 0.9966 -0.9966 8.246086e-002 707.4532 -212.5916)" class="st0" cx="469.2" cy="277.9" rx="0.6" ry="0.5"/> </g> </svg>
amomynous0/fc
resources/vector/body/addon/boob 0 piercing heavy.svg
svg
bsd-3-clause
2,010
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve"> <style type="text/css"> .st0{fill:#787878;} </style> <g id="Boob_piercing_3_"> <g id="XMLID_534_"> <circle id="XMLID_215_" class="st0" cx="527.9" cy="278.7" r="1"/> <circle id="XMLID_214_" class="st0" cx="532.4" cy="278.7" r="1"/> </g> <g id="XMLID_531_"> <ellipse id="XMLID_213_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 985.4068 454.8795)" class="st0" cx="470.4" cy="275.7" rx="0.6" ry="0.8"/> <ellipse id="XMLID_212_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 855.6479 655.2993)" class="st0" cx="467.6" cy="275.7" rx="0.6" ry="0.8"/> </g> </g> </svg>
amomynous0/fc
resources/vector/body/addon/boob 0 piercing.svg
svg
bsd-3-clause
939
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve"> <style type="text/css"> .st0{fill:#787878;} </style> <g id="Areola_piercing_2_"> <circle id="XMLID_204_" class="st0" cx="520.9" cy="276.9" r="1.1"/> <circle id="XMLID_203_" class="st0" cx="521.2" cy="280" r="1.1"/> <circle id="XMLID_202_" class="st0" cx="516" cy="271.7" r="1.1"/> <circle id="XMLID_201_" class="st0" cx="512.9" cy="272.1" r="1.1"/> <circle id="XMLID_200_" class="st0" cx="517.1" cy="286.5" r="1.1"/> <circle id="XMLID_199_" class="st0" cx="514" cy="286.5" r="1.1"/> <circle id="XMLID_198_" class="st0" cx="509.4" cy="281" r="1.1"/> <circle id="XMLID_197_" class="st0" cx="509.4" cy="278.4" r="1.1"/> <ellipse id="XMLID_196_" class="st0" cx="451.7" cy="271.3" rx="0.5" ry="0.7"/> <ellipse id="XMLID_195_" class="st0" cx="452.9" cy="270.8" rx="0.5" ry="0.7"/> <ellipse id="XMLID_194_" class="st0" cx="450.8" cy="277.6" rx="0.5" ry="0.7"/> <ellipse id="XMLID_193_" transform="matrix(-0.9989 -4.745027e-002 4.745027e-002 -0.9989 887.0982 572.5067)" class="st0" cx="450.3" cy="275.7" rx="0.5" ry="0.7"/> <ellipse id="XMLID_192_" class="st0" cx="456.5" cy="274.3" rx="0.5" ry="0.7"/> <ellipse id="XMLID_191_" class="st0" cx="457.2" cy="276.2" rx="0.5" ry="0.7"/> <ellipse id="XMLID_190_" transform="matrix(-0.9413 0.3376 -0.3376 -0.9413 978.0084 392.5092)" class="st0" cx="454.9" cy="281.3" rx="0.5" ry="0.7"/> <ellipse id="XMLID_189_" transform="matrix(-0.9425 0.3341 -0.3341 -0.9425 979.7283 392.9969)" class="st0" cx="456.1" cy="280.8" rx="0.5" ry="0.7"/> </g> </svg>
amomynous0/fc
resources/vector/body/addon/boob 1 areola piercing.svg
svg
bsd-3-clause
1,861
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve"> <style type="text/css"> .st0{fill:#787878;} </style> <g id="Boob_hvy_piercing_2_"> <path id="XMLID_188_" class="st0" d="M512.7,279.1c0.1,0-0.5,0.7-0.5,1.7c0,0.9,0.5,2,1.7,2.4c1.4,0.4,2.9-0.9,3.3-2 c0.4-1.1-0.3-2-0.2-2.1c0.2-0.1,1.1,1.2,0.9,2.4c-0.2,1.4-1.7,3.1-3.6,2.8c-1.4-0.2-2.8-1.3-2.8-2.8 C511.3,280.1,512.6,279,512.7,279.1z"/> <path id="XMLID_187_" class="st0" d="M452.1,276.1c0,0-0.4,0.7-0.4,1.7c-0.1,0.9,0.3,2,0.9,2.4c0.9,0.5,2-0.7,2.3-1.9 c0.3-1.1-0.1-2,0-2.1c0.1-0.1,0.6,1.2,0.5,2.4c-0.2,1.4-1.3,3-2.6,2.8c-0.9-0.2-1.8-1.4-1.7-2.9 C451.2,277.1,452.1,276.1,452.1,276.1z"/> <path id="XMLID_186_" class="st0" d="M453.1,281.5c0.1-0.1,11.3,16.2,28.4,17.6c18.3,1.4,32.9-14.9,33.1-14.8 c0.2,0.2-13.4,17.1-32.5,15.7C463.7,298.7,453,281.6,453.1,281.5z"/> <circle id="XMLID_185_" class="st0" cx="512.4" cy="279" r="1"/> <circle id="XMLID_184_" class="st0" cx="516.8" cy="279" r="1"/> <circle id="XMLID_183_" class="st0" cx="514.6" cy="276.2" r="1"/> <circle id="XMLID_182_" class="st0" cx="515" cy="281.2" r="1"/> <ellipse id="XMLID_181_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 954.8359 458.3842)" class="st0" cx="455" cy="276" rx="0.6" ry="0.8"/> <ellipse id="XMLID_180_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 825.0893 652.1412)" class="st0" cx="452.1" cy="276" rx="0.6" ry="0.8"/> <ellipse id="XMLID_179_" transform="matrix(-0.2055 -0.9787 0.9787 -0.2055 277.3305 773.6921)" class="st0" cx="452.7" cy="274.3" rx="0.6" ry="0.5"/> <ellipse id="XMLID_178_" transform="matrix(8.246086e-002 0.9966 -0.9966 8.246086e-002 693.3712 -196.8819)" class="st0" cx="453.6" cy="278.1" rx="0.6" ry="0.5"/> </g> </svg>
amomynous0/fc
resources/vector/body/addon/boob 1 piercing heavy.svg
svg
bsd-3-clause
2,008
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve"> <style type="text/css"> .st0{fill:#787878;} </style> <g id="Boob_piercing_2_"> <g id="XMLID_494_"> <circle id="XMLID_177_" class="st0" cx="512.4" cy="279" r="1"/> <circle id="XMLID_176_" class="st0" cx="516.8" cy="279" r="1"/> </g> <g id="XMLID_491_"> <ellipse id="XMLID_175_" transform="matrix(-0.981 0.1941 -0.1941 -0.981 954.8359 458.3842)" class="st0" cx="455" cy="276" rx="0.6" ry="0.8"/> <ellipse id="XMLID_174_" transform="matrix(-0.971 -0.2392 0.2392 -0.971 825.0893 652.1412)" class="st0" cx="452.1" cy="276" rx="0.6" ry="0.8"/> </g> </g> </svg>
amomynous0/fc
resources/vector/body/addon/boob 1 piercing.svg
svg
bsd-3-clause
929
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve"> <style type="text/css"> .st0{fill:#787878;} </style> <g id="Areola_piercing"> <circle id="XMLID_166_" class="st0" cx="522.2" cy="291.4" r="1.3"/> <circle id="XMLID_165_" class="st0" cx="522.4" cy="295.3" r="1.3"/> <circle id="XMLID_164_" class="st0" cx="516" cy="284.9" r="1.3"/> <circle id="XMLID_163_" class="st0" cx="512.2" cy="285.4" r="1.3"/> <circle id="XMLID_162_" class="st0" cx="517.4" cy="303.2" r="1.3"/> <circle id="XMLID_161_" class="st0" cx="513.5" cy="303.2" r="1.3"/> <circle id="XMLID_160_" class="st0" cx="507.8" cy="296.6" r="1.3"/> <circle id="XMLID_159_" class="st0" cx="507.8" cy="293.2" r="1.3"/> <ellipse id="XMLID_158_" class="st0" cx="436.2" cy="284.4" rx="0.7" ry="0.9"/> <ellipse id="XMLID_157_" class="st0" cx="437.7" cy="283.9" rx="0.7" ry="0.9"/> <ellipse id="XMLID_156_" class="st0" cx="435.1" cy="292.2" rx="0.7" ry="0.9"/> <ellipse id="XMLID_155_" transform="matrix(-0.9989 -4.745027e-002 4.745027e-002 -0.9989 854.8103 600.1753)" class="st0" cx="434.5" cy="289.9" rx="0.7" ry="0.9"/> <ellipse id="XMLID_154_" class="st0" cx="442.2" cy="288.1" rx="0.7" ry="0.9"/> <ellipse id="XMLID_153_" class="st0" cx="443.1" cy="290.5" rx="0.7" ry="0.9"/> <ellipse id="XMLID_152_" transform="matrix(-0.9413 0.3376 -0.3376 -0.9413 954.6022 427.724)" class="st0" cx="440.1" cy="296.9" rx="0.7" ry="0.9"/> <ellipse id="XMLID_151_" transform="matrix(-0.9425 0.3341 -0.3341 -0.9425 956.7655 427.9553)" class="st0" cx="441.6" cy="296.3" rx="0.7" ry="0.9"/> </g> </svg>
amomynous0/fc
resources/vector/body/addon/boob 2 areola piercing.svg
svg
bsd-3-clause
1,863