diff --git a/.env b/.env.example
similarity index 100%
rename from .env
rename to .env.example
diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml
index 678e6525c..1c5f7d0ca 100644
--- a/.github/workflows/checks.yml
+++ b/.github/workflows/checks.yml
@@ -1,5 +1,5 @@
name: Checks
-on: [pull_request]
+on: [pull_request, workflow_dispatch]
jobs:
validation:
@@ -9,15 +9,8 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- - name: Setup node v15
- uses: actions/setup-node@v1
+ - uses: oven-sh/setup-bun@v1
with:
- node-version: '15'
- - name: Install dependencies
- uses: borales/actions-yarn@v2.0.0
- with:
- cmd: install --ignore-engines --frozen-lockfile
- - name: Run tests
- uses: borales/actions-yarn@v2.0.0
- with:
- cmd: test
+ bun-version: 1.0.3
+ - run: bun install
+ - run: bun test
diff --git a/.github/workflows/publish-records.yml b/.github/workflows/publish-records.yml
index c8ed824e1..522179f4d 100644
--- a/.github/workflows/publish-records.yml
+++ b/.github/workflows/publish-records.yml
@@ -12,16 +12,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- - uses: borales/actions-yarn@v2.0.0
+ - uses: oven-sh/setup-bun@v1
with:
- cmd: install --ignore-engines
- - name: Running tests
- uses: borales/actions-yarn@v2.0.0
- with:
- cmd: test
+ bun-version: 1.0.3
+ - run: bun install
+ - run: bun test
- name: Publishing records
env:
CI: 1
+ NODE_ENV: production
ENV: production
DOMAIN_USER: ${{ secrets.DOMAIN_USER }}
DOMAIN_API_KEY: ${{ secrets.DOMAIN_API_KEY }}
@@ -29,6 +28,4 @@ jobs:
DOMAIN_API_PORT: ${{ secrets.DOMAIN_API_PORT }}
DOMAIN_DOMAIN: ${{ secrets.DOMAIN_DOMAIN }}
DOMAIN_HOST_IP: ${{ secrets.DOMAIN_HOST_IP }}
- uses: borales/actions-yarn@v2.0.0
- with:
- cmd: publish-records
+ run: bun run publish-records
diff --git a/.github/workflows/url-validation.yml b/.github/workflows/url-validation.yml
new file mode 100644
index 000000000..9818ba4f7
--- /dev/null
+++ b/.github/workflows/url-validation.yml
@@ -0,0 +1,26 @@
+name: URL Validation
+on:
+ schedule:
+ - cron: '0 0 * * 1' # At 00:00 on Monday
+ workflow_dispatch:
+
+jobs:
+ validation:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ with:
+ ref: ${{ github.event.pull_request.head.sha }}
+ fetch-depth: 0
+ - name: Setup Up Python
+ uses: actions/setup-python@v4
+ with:
+ python-version: '3.10'
+ - run: pip install requests
+ - run: python tests/url-validation.py
+ - name: Upload Artifact
+ uses: actions/upload-artifact@v3
+ with:
+ name: URL Validiation Result
+ path: url-validation-result.json
+ retention-days: 7
diff --git a/.github/workflows/wildcard.yml b/.github/workflows/wildcard.yml
new file mode 100644
index 000000000..a6a5e4b16
--- /dev/null
+++ b/.github/workflows/wildcard.yml
@@ -0,0 +1,65 @@
+name: Wildcard temp record
+
+on:
+ workflow_dispatch:
+ inputs:
+ recordcontent:
+ description: "Record Content"
+ required: true
+ default: "warning"
+
+jobs:
+ publish:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v2
+
+ - name: Generate JSON file
+ run: |
+ echo '{
+ "owner": {
+ "username": "is-a-dev",
+ "email": "hello@maintainers.is-a.dev"
+ },
+ "record": {
+ "TXT": "${{ github.event.inputs.recordcontent }}"
+ }
+ }' > ./domains/_acme-challenge.json
+
+ - name: test
+ run: cat domains/_acme-challenge.json
+
+ - name: Install Yarn dependencies
+ run: yarn install --ignore-engines
+
+ - name: Publishing records
+ env:
+ CI: 1
+ ENV: production
+ DOMAIN_USER: ${{ secrets.DOMAIN_USER }}
+ DOMAIN_API_KEY: ${{ secrets.DOMAIN_API_KEY }}
+ DOMAIN_API_HOST: ${{ secrets.DOMAIN_API_HOST }}
+ DOMAIN_API_PORT: ${{ secrets.DOMAIN_API_PORT }}
+ DOMAIN_DOMAIN: ${{ secrets.DOMAIN_DOMAIN }}
+ DOMAIN_HOST_IP: ${{ secrets.DOMAIN_HOST_IP }}
+ run: yarn publish-records
+ - name: Sleep
+ run: sleep 10m
+ shell: bash
+
+ - name: Remove
+ run: rm domains/_acme-challenge.json
+ shell: bash
+
+ - name: removing records
+ env:
+ CI: 1
+ ENV: production
+ DOMAIN_USER: ${{ secrets.DOMAIN_USER }}
+ DOMAIN_API_KEY: ${{ secrets.DOMAIN_API_KEY }}
+ DOMAIN_API_HOST: ${{ secrets.DOMAIN_API_HOST }}
+ DOMAIN_API_PORT: ${{ secrets.DOMAIN_API_PORT }}
+ DOMAIN_DOMAIN: ${{ secrets.DOMAIN_DOMAIN }}
+ DOMAIN_HOST_IP: ${{ secrets.DOMAIN_HOST_IP }}
+ run: yarn publish-records
diff --git a/.gitignore b/.gitignore
index b4bfa3d64..209d4adc4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
node_modules/
-*.env.*
+*.env.production
*.log
+is-a-dev-cert/
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
index 31c61b68f..8baab2bf1 100644
--- a/CODE_OF_CONDUCT.md
+++ b/CODE_OF_CONDUCT.md
@@ -5,5 +5,7 @@ This is a Code of Conduct for any interactions in this repository. This includes
- **Don't abuse the service** - This service is intended for developers to get a cleaner URL for their personal websites.
- **No wrongful use** - Do not use this service as a way, to promote hacking, scams, fraud, and other illegal activites.
-If you believe a domain that has been registered using this service is an abuse of this service, you can report it by creating an issue.
-The abuse reports will be investigated and the necessary action will be taken!
+## Reporting abuse
+If you believe a domain that has been registered using this service is abusing our terms, you can report it by creating an issue.
+
+The abuse reports will be investigated and the necessary action will be taken.
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 965261eda..4fa514e5b 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,24 +1,21 @@
# Contributing
When contributing to this repository, please first discuss the change you wish to make via issue before making a change.
-You should also read up on this project's [code of conduct](./CODE_OF_CONDUCT.md).
+You should also read up on this project's [code of conduct](https://github.com/is-a-dev/register/blob/main/CODE_OF_CONDUCT.md).
## Pull requests
-You can create an pull request for the following reasons -
-* Adding, changing or removing a domain file you own.
-* Fixing a bug in the scripts or CI.
-* Fix an error in the documentation.
+- Adding, changing or removing a domain file you own.
+- Fixing a bug in the scripts or CI.
+- Fix an error in the documentation.
#### Domains
-Changes to domain files will follow the given process -
-* PR will be reviewed and merged to `main` branch.
-* The records will be published as soon as the PR is merged.
-* The changes should reflect soon after publishing.
-
+- Your pull request will be reviewed and merged into `main` branch.
+- The records will be published as soon as the PR is merged.
+- The changes should reflect soon after publishing.
## Issues
-* **Report an abusive domain** - Create a new issue with the label `report-abuse`.
-* **Report a problem with your domain** - Create a new issue with the label `support`.
-* **Suggestions** - Create a new issue with the label `suggestion`.
-* **For any questions** - Create a new issue with the label `question`.
-* **Report any other issues related to this repository** - Create a new issue with any label that fits.
+- **Report an abusive domain** - Create a new issue with the label `report-abuse`.
+- **Report a problem with your domain** - Create a new issue with the label `support`.
+- **Suggestions** - Create a new issue with the label `suggestion`.
+- **For any questions** - Create a new issue with the label `question`.
+- **Report any other issues related to this repository** - Create a new issue with any label that fits.
diff --git a/README.md b/README.md
index 4fa2a3790..eca842896 100644
--- a/README.md
+++ b/README.md
@@ -16,19 +16,14 @@
-# Issues
-
-If you have any problems then feel free to open a issue on github.
-If you have an issue that contains confidental infomation then email hello@maintainers.is-a.dev any other emails will be ignored.
-
## Register
### Automated Registration
+Easiest method: Use the [manage website](https://manage.is-a.dev), sign in with your github account and click the register page in the navbar. Fill out some questions and it will all happen automagically!
-Join our [Discord](https://discord.gg/PZCGHz4RhQ) then head to the commands channel and do /register . The bot will ask you a few questions then will generate your PR and domain automaticly. The bot also allows for domain deletion and editing.
+Another method is to join our [Discord](https://discord.gg/PZCGHz4RhQ) then head to the commands channel and do /register . The bot will ask you a few questions then will generate your PR and domain automaticly. The bot also allows for domain deletion and editing.
### Manual Registration
-
- [Fork](https://github.com/is-a-dev/register/fork) this repository.
- Add a new file called `your-domain-name.json` in the `domains` folder to register `your-domain-name.is-a.dev`.
- [Read the documentation](https://is-a.dev/docs).
@@ -37,7 +32,6 @@ Join our [Discord](https://discord.gg/PZCGHz4RhQ) then head to the commands chan
- Enjoy your new `.is-a.dev` domain!
### CLI Registration
-
For issues with the CLI, **DO NOT OPEN AN ISSUE ON THIS REPOSITORY**, instead open an issue [here](https://github.com/wdhdev/is-a-dev-cli/issues/new).
Install the CLI:
@@ -59,10 +53,7 @@ is-a-dev register
```
## Status
-You can check the uptime of our services on our [status dashboard](https://stats.uptimerobot.com/zY4XKIRVzw).
-
-[](https://stats.uptimerobot.com/zY4XKIRVzw/787472645)
-[](https://stats.uptimerobot.com/zY4XKIRVzw/787472617)
+You can check the uptime of our services on our [status dashboard](https://status.is-a.dev).
### Similar Services
If you want to find services similar to is-a.dev, take a look on [free-for.life](https://free-for.life/#/?id=domains).
diff --git a/SECURITY.md b/SECURITY.md
index b382809f4..27e5fc6e0 100644
--- a/SECURITY.md
+++ b/SECURITY.md
@@ -1,6 +1,6 @@
# Security Policy
-## Reporting a Vulnerability
-
+## Reporting a vulnerability
You can report low severity bugs as [issues](https://github.com/is-a-dev/register/issues/new/choose) on this repo.
-For higher severity vulnerabilities and bugs, kindly email them to me at [akshay-n0@protonmail.com](mailto:akshay-n0@protonmail.com).
+
+For higher severity vulnerabilities and bugs, please email the maintainers at [hello@maintainers.is-a.dev](mailto:hello@maintainers.is-a.dev).
diff --git a/bun.lockb b/bun.lockb
new file mode 100755
index 000000000..502212010
Binary files /dev/null and b/bun.lockb differ
diff --git a/default.nix b/default.nix
index 51e03c2d0..bc0f66aa3 100644
--- a/default.nix
+++ b/default.nix
@@ -3,11 +3,10 @@ let
inherit (nixpkgs) pkgs;
nixPackages = with pkgs; [
- nodejs-16_x
yarn
docker-compose
dnsutils
- #certbot
+ bun
];
in
pkgs.stdenv.mkDerivation {
diff --git a/domains/00.json b/domains/00.json
new file mode 100644
index 000000000..f12b139a1
--- /dev/null
+++ b/domains/00.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Rayrsn",
+ "email": "rayrsn@proton.me"
+ },
+ "record": {
+ "URL": "https://rayr.link"
+ }
+}
diff --git a/domains/01.json b/domains/01.json
new file mode 100644
index 000000000..f12b139a1
--- /dev/null
+++ b/domains/01.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Rayrsn",
+ "email": "rayrsn@proton.me"
+ },
+ "record": {
+ "URL": "https://rayr.link"
+ }
+}
diff --git a/domains/1024.json b/domains/1024.json
new file mode 100644
index 000000000..d2301f533
--- /dev/null
+++ b/domains/1024.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "cy920820",
+ "email": "cuiyang673308817@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/18o4.json b/domains/18o4.json
deleted file mode 100644
index cd2fcd1ee..000000000
--- a/domains/18o4.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "description": "redirects to my website",
- "repo": "https://github.com/18o4/18o4.github.io",
- "owner": {
- "username": "18o4",
- "email": "",
- "discord": "18O4#4350",
- "discordUserID": "279894305630453760"
- },
- "record": {
- "URL": "https://18o4.tk"
- }
-}
diff --git a/domains/207.json b/domains/207.json
index 92fec3e09..69067d1b4 100644
--- a/domains/207.json
+++ b/domains/207.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "merakesh207",
- "email": "merakesh207@gmail.com"
- },
- "record": {
- "URL": "https://behance.net/merakesh207"
- }
+ "owner": {
+ "username": "merakesh207",
+ "email": "merakesh207@gmail.com"
+ },
+ "record": {
+ "URL": "https://behance.net/merakesh207"
+ }
}
diff --git a/domains/21z.json b/domains/21z.json
new file mode 100644
index 000000000..755d4554f
--- /dev/null
+++ b/domains/21z.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "21Z",
+ "email": "hamdankalliyil@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/3kh0.json b/domains/3kh0.json
new file mode 100644
index 000000000..33565c187
--- /dev/null
+++ b/domains/3kh0.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "3kh0",
+ "email": "echo-the-coder@tuta.io"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/4d62.json b/domains/4d62.json
new file mode 100644
index 000000000..3ec25e3b4
--- /dev/null
+++ b/domains/4d62.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal profile",
+ "repo": "https://github.com/4d62/4d62.github.io",
+ "owner": {
+ "username": "4d62",
+ "email": "4d62@proton.me"
+ },
+ "record": {
+ "CNAME": "4d62.github.io"
+ }
+}
diff --git a/domains/70a5.json b/domains/70a5.json
new file mode 100644
index 000000000..613a9726e
--- /dev/null
+++ b/domains/70a5.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "70A5",
+ "email": "joas.van.der.eerden@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/853.json b/domains/853.json
new file mode 100644
index 000000000..15f4a86fe
--- /dev/null
+++ b/domains/853.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Sonic853",
+ "email": "sonic853@qq.com"
+ },
+ "record": {
+ "A": ["119.29.157.82"]
+ }
+}
diff --git a/domains/_discord.orange.json b/domains/_discord.orange.json
new file mode 100644
index 000000000..8d6997e4d
--- /dev/null
+++ b/domains/_discord.orange.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sahmed011",
+ "email": "sufyanmishal@gmail.com"
+ },
+ "record": {
+ "TXT": "dh=7e7e671a8b44d02fde9ab6f6df7baf94086c96fd"
+ }
+}
diff --git a/domains/_github-pages-challenge-404dev-404.404.json b/domains/_github-pages-challenge-404dev-404.404.json
new file mode 100644
index 000000000..6b1955b74
--- /dev/null
+++ b/domains/_github-pages-challenge-404dev-404.404.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "404Dev-404",
+ "email": "anthonyvaldes318+404@gmail.com"
+ },
+ "record": {
+ "TXT": "22a06372e0e8c1ce907acca87f8222"
+ }
+}
diff --git a/domains/_github-pages-challenge-9xn.44.json b/domains/_github-pages-challenge-9xn.44.json
new file mode 100644
index 000000000..fd3b72f06
--- /dev/null
+++ b/domains/_github-pages-challenge-9xn.44.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "9xN",
+ "email": "0@fbi.ac"
+ },
+ "record": {
+ "TXT": "e104ec0ddb56ddb03a3ced402e0b45"
+ }
+}
diff --git a/domains/_github-pages-challenge-Adolar0042.adolar0042.json b/domains/_github-pages-challenge-Adolar0042.adolar0042.json
new file mode 100644
index 000000000..38abcd5c9
--- /dev/null
+++ b/domains/_github-pages-challenge-Adolar0042.adolar0042.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Adolar0042",
+ "email": "adolar0042@gmail.com"
+ },
+ "record": {
+ "TXT": "927a8ca97dbdccd9140313116bd068"
+ }
+}
diff --git a/domains/_github-pages-challenge-Arch881010.arch.json b/domains/_github-pages-challenge-Arch881010.arch.json
new file mode 100644
index 000000000..180d212f0
--- /dev/null
+++ b/domains/_github-pages-challenge-Arch881010.arch.json
@@ -0,0 +1,13 @@
+{
+ "description": "My personal website on arch.is-a.dev (main files in repo/repository)[Github Challenge].",
+ "repo": "https://github.com/Arch881010/Arch881010",
+ "owner": {
+ "username": "Arch881010",
+ "email": "c1yd4.arch@inbox.testmail.app",
+ "discord": "arch1010",
+ "discord-id": "410248634593050627"
+ },
+ "record": {
+ "TXT": "f7ef0429540150e9e2d26e968dc4de"
+ }
+}
diff --git a/domains/_github-pages-challenge-BerzCode.saurabhkirve.json b/domains/_github-pages-challenge-BerzCode.saurabhkirve.json
new file mode 100644
index 000000000..d553d8bdd
--- /dev/null
+++ b/domains/_github-pages-challenge-BerzCode.saurabhkirve.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "berzcode",
+ "email": "saurabhkirve@gmail.com"
+ },
+
+ "record": {
+ "TXT": "e587577c97f73d2047aaf6ec8ff92c"
+ }
+}
diff --git a/domains/_github-pages-challenge-LevaniVashadze.levani.json b/domains/_github-pages-challenge-LevaniVashadze.levani.json
new file mode 100644
index 000000000..93a1a3eab
--- /dev/null
+++ b/domains/_github-pages-challenge-LevaniVashadze.levani.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "LevaniVashadze",
+ "email": "vashadzelevani11@gmail.com"
+ },
+ "record": {
+ "TXT": "ed2358814bd1764933a1fb860ab339"
+ }
+}
diff --git a/domains/_github-pages-challenge-Noma4321.noma.json b/domains/_github-pages-challenge-Noma4321.noma.json
new file mode 100644
index 000000000..4fc6c3265
--- /dev/null
+++ b/domains/_github-pages-challenge-Noma4321.noma.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Noma4321",
+ "email": "noam.malka1yt@gmail.com"
+ },
+ "record": {
+ "TXT": "3050b2d9504b6f7cab6049c0d11f64"
+ }
+}
diff --git a/domains/_github-pages-challenge-Sife-shuo.sife.json b/domains/_github-pages-challenge-Sife-shuo.sife.json
new file mode 100644
index 000000000..e47131410
--- /dev/null
+++ b/domains/_github-pages-challenge-Sife-shuo.sife.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Sife-shuo",
+ "email": "sifed@qq.com"
+ },
+ "record": {
+ "TXT": "35bbdb5b21b0f5706786ea4bc01002"
+ }
+}
diff --git a/domains/_github-pages-challenge-Stacksyz.stacksyz.json b/domains/_github-pages-challenge-Stacksyz.stacksyz.json
new file mode 100644
index 000000000..f87475ea1
--- /dev/null
+++ b/domains/_github-pages-challenge-Stacksyz.stacksyz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Stacksyz",
+ "email": "thedevmonke@gmail.com"
+ },
+ "record": {
+ "TXT": "121e8450b6aa5b9edbe73dd077ca57"
+ }
+}
diff --git a/domains/_github-pages-challenge-TorchedSammy.sammy.json b/domains/_github-pages-challenge-TorchedSammy.sammy.json
new file mode 100644
index 000000000..60d74c0dc
--- /dev/null
+++ b/domains/_github-pages-challenge-TorchedSammy.sammy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "TorchedSammy",
+ "email": "torchedsammy@gmail.com"
+ },
+ "record": {
+ "TXT": "9693d9e721696f4184aa3abfa35921"
+ }
+}
diff --git a/domains/_github-pages-challenge-UtilsForTheWeb.utils.json b/domains/_github-pages-challenge-UtilsForTheWeb.utils.json
new file mode 100644
index 000000000..556184ec3
--- /dev/null
+++ b/domains/_github-pages-challenge-UtilsForTheWeb.utils.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Blob2763",
+ "email": "blob2763@gmail.com"
+ },
+ "record": {
+ "TXT": "c5ac9060fffaa7b40b58852449f983"
+ }
+}
diff --git a/domains/_github-pages-challenge-aakankshabhende.aakanksha.json b/domains/_github-pages-challenge-aakankshabhende.aakanksha.json
new file mode 100644
index 000000000..275ab5b10
--- /dev/null
+++ b/domains/_github-pages-challenge-aakankshabhende.aakanksha.json
@@ -0,0 +1,10 @@
+{
+ "description": "Verification for aakanksha.is-a.dev",
+ "owner": {
+ "username": "aakankshabhende",
+ "email": "aakanksha0407@gmail.com"
+ },
+ "record": {
+ "TXT": "0e195a2a30854573db976207e5f2f2"
+ }
+}
diff --git a/domains/_github-pages-challenge-acutewoof.acutewoof.json b/domains/_github-pages-challenge-acutewoof.acutewoof.json
new file mode 100644
index 000000000..4245b70a1
--- /dev/null
+++ b/domains/_github-pages-challenge-acutewoof.acutewoof.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ACuteWoof",
+ "email": "sutharshanvithushan@gmail.com"
+ },
+ "record": {
+ "TXT": "8a47d2fca716e0d7e0bcfd424d0784"
+ }
+}
diff --git a/domains/_github-pages-challenge-akpi816218.akpi.json b/domains/_github-pages-challenge-akpi816218.akpi.json
new file mode 100644
index 000000000..b02648add
--- /dev/null
+++ b/domains/_github-pages-challenge-akpi816218.akpi.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "akpi816218",
+ "email": "",
+ "discord": "equus_quagga"
+ },
+ "record": {
+ "TXT": "83f74e3c71720aa4514d32cabe7324"
+ }
+}
diff --git a/domains/_github-pages-challenge-albinpraveen.albinpraveen.json b/domains/_github-pages-challenge-albinpraveen.albinpraveen.json
new file mode 100644
index 000000000..d30d3bb88
--- /dev/null
+++ b/domains/_github-pages-challenge-albinpraveen.albinpraveen.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal portfolio website (domain verification)",
+ "repo": "https://github.com/ALBINPRAVEEN/albinpraveen.github.io",
+ "owner": {
+ "username": "albinpraveen",
+ "email": "hi@albinpraveen.com"
+ },
+ "record": {
+ "TXT": "815094cd16aed1ad1a2eb8306c390a"
+ }
+}
diff --git a/domains/_github-pages-challenge-aldenizenmc.aldenizenmc.json b/domains/_github-pages-challenge-aldenizenmc.aldenizenmc.json
new file mode 100644
index 000000000..b0ac5a460
--- /dev/null
+++ b/domains/_github-pages-challenge-aldenizenmc.aldenizenmc.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AldenizenMC",
+ "email": "aldenizen09@gmail.com"
+ },
+ "record": {
+ "TXT": "3a73c3c550c151965f6781677b6d2d"
+ }
+}
diff --git a/domains/_github-pages-challenge-amalpotra.amarjeet.json b/domains/_github-pages-challenge-amalpotra.amarjeet.json
new file mode 100644
index 000000000..099fc38b6
--- /dev/null
+++ b/domains/_github-pages-challenge-amalpotra.amarjeet.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "amalpotra",
+ "email": "amarjeetmalpotra@outlook.com"
+ },
+ "record": {
+ "TXT": "15c0eb5d4a85c75c4b205ac26a4d31"
+ }
+}
diff --git a/domains/_github-pages-challenge-anamolsapkota.anamolsapkota.json b/domains/_github-pages-challenge-anamolsapkota.anamolsapkota.json
new file mode 100644
index 000000000..957cf3eb5
--- /dev/null
+++ b/domains/_github-pages-challenge-anamolsapkota.anamolsapkota.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "anamolsapkota",
+ "email": "anamolsapkota@gmail.com"
+ },
+
+ "record": {
+ "TXT": "d89d65454e6f71641cc8e45a2ad8b2"
+ }
+}
diff --git a/domains/_github-pages-challenge-anandyeole.anandyeole.json b/domains/_github-pages-challenge-anandyeole.anandyeole.json
new file mode 100644
index 000000000..85a7981ac
--- /dev/null
+++ b/domains/_github-pages-challenge-anandyeole.anandyeole.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "anandyeole",
+ "email": "anandyeole@duck.com"
+ },
+ "record": {
+ "TXT": "510cbb66f4422990546436db3c897a"
+ }
+}
diff --git a/domains/_github-pages-challenge-ananth-swamy.ananth.json b/domains/_github-pages-challenge-ananth-swamy.ananth.json
new file mode 100644
index 000000000..018df0818
--- /dev/null
+++ b/domains/_github-pages-challenge-ananth-swamy.ananth.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal portfolio website (domain verification)",
+ "repo": "https://github.com/ANANTH-SWAMY/ananth-swamy.github.io",
+ "owner": {
+ "username": "ANANTH-SWAMY",
+ "email": "ananth.nps@gmail.com"
+ },
+ "record": {
+ "TXT": "cb106acbe8da52273b1a5807fb1d9f"
+ }
+}
diff --git a/domains/_github-pages-challenge-andrewstech.privacy.json b/domains/_github-pages-challenge-andrewstech.privacy.json
deleted file mode 100644
index d16b0382a..000000000
--- a/domains/_github-pages-challenge-andrewstech.privacy.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "is-a-dev",
- "email": "phenax5@gmail.com"
- },
- "record": {
- "TXT": "f4099fcae5cf0ea04f853bc649c5b1"
- }
-}
diff --git a/domains/_github-pages-challenge-andyfaizan.andy.json b/domains/_github-pages-challenge-andyfaizan.andy.json
new file mode 100644
index 000000000..b9d80f2af
--- /dev/null
+++ b/domains/_github-pages-challenge-andyfaizan.andy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "andyfaizan",
+ "email": "andyfaizan@gmail.com"
+ },
+ "record": {
+ "TXT": "8c35e4942c57ea0659a1b4c0cae798"
+ }
+}
diff --git a/domains/_github-pages-challenge-antton-dev.antton.json b/domains/_github-pages-challenge-antton-dev.antton.json
new file mode 100644
index 000000000..f644d9a2e
--- /dev/null
+++ b/domains/_github-pages-challenge-antton-dev.antton.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "antton-dev",
+ "email": "antton.chevrier@etik.com"
+ },
+ "record": {
+ "TXT": "a3787429898a0a8bb9b3cbffa253fa"
+ }
+}
diff --git a/domains/_github-pages-challenge-arboygo.arboy.json b/domains/_github-pages-challenge-arboygo.arboy.json
new file mode 100644
index 000000000..d5c69a01f
--- /dev/null
+++ b/domains/_github-pages-challenge-arboygo.arboy.json
@@ -0,0 +1,10 @@
+{
+ "description": "Github verification",
+ "owner": {
+ "username": "arboygo",
+ "email": "arboygo@duck.com"
+ },
+ "record": {
+ "TXT": "279fd9e58ed7ce7558663b3992f871"
+ }
+}
diff --git a/domains/_github-pages-challenge-archelaus.archelaus.json b/domains/_github-pages-challenge-archelaus.archelaus.json
new file mode 100644
index 000000000..ae74eff4c
--- /dev/null
+++ b/domains/_github-pages-challenge-archelaus.archelaus.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "archelaus",
+ "email": "archelaus@skiff.com"
+ },
+
+ "record": {
+ "TXT": "58a91a812285d77c1c035298480109"
+ }
+}
diff --git a/domains/_github-pages-challenge-armoredvortex.armoredvortex.json b/domains/_github-pages-challenge-armoredvortex.armoredvortex.json
new file mode 100644
index 000000000..e4b981af1
--- /dev/null
+++ b/domains/_github-pages-challenge-armoredvortex.armoredvortex.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "armoredvortex",
+ "email": "rachitpandey@protonmail.com"
+ },
+ "record": {
+ "TXT": "f333cd13b1edfcaa51d5413b7fd05f"
+ }
+}
diff --git a/domains/_github-pages-challenge-ashesh3.ashesh.json b/domains/_github-pages-challenge-ashesh3.ashesh.json
new file mode 100644
index 000000000..0d3441db1
--- /dev/null
+++ b/domains/_github-pages-challenge-ashesh3.ashesh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Ashesh3",
+ "email": "ashesh1708@gmail.com"
+ },
+ "record": {
+ "TXT": "a0d1fde4660333a6c2b992a1d5e637"
+ }
+}
diff --git a/domains/_github-pages-challenge-auravoid.aura.json b/domains/_github-pages-challenge-auravoid.aura.json
new file mode 100644
index 000000000..3f682337f
--- /dev/null
+++ b/domains/_github-pages-challenge-auravoid.aura.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "auravoid",
+ "email": "github@auravoid.dev"
+ },
+ "record": {
+ "TXT": "a0182396037ba6edc7f689cf8847f9"
+ }
+}
diff --git a/domains/_github-pages-challenge-avellea.avellea.json b/domains/_github-pages-challenge-avellea.avellea.json
new file mode 100644
index 000000000..774d76a90
--- /dev/null
+++ b/domains/_github-pages-challenge-avellea.avellea.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "avellea",
+ "email": "is-a-dev@win11react.com"
+ },
+ "record": {
+ "TXT": "5c38dbee73e6936232992c0f98829e"
+ }
+}
diff --git a/domains/_github-pages-challenge-avipars.avi.json b/domains/_github-pages-challenge-avipars.avi.json
new file mode 100644
index 000000000..65a8f5eeb
--- /dev/null
+++ b/domains/_github-pages-challenge-avipars.avi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "avipars",
+ "email": "avi.pars@gmail.com"
+ },
+ "record": {
+ "TXT": "68e225e3d290a962de10935ed3f684"
+ }
+}
diff --git a/domains/_github-pages-challenge-b1ue-dev.blue.json b/domains/_github-pages-challenge-b1ue-dev.blue.json
new file mode 100644
index 000000000..121d73e1e
--- /dev/null
+++ b/domains/_github-pages-challenge-b1ue-dev.blue.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal site for b1uedev, a.k.a Blue.",
+ "repo": "https://github.com/B1ue-Dev/b1ue-dev.github.io",
+ "owner": {
+ "username": "B1ue-Dev",
+ "email": "ngolong1396@hotmail.com",
+ "twitter": "b1uedev"
+ },
+ "record": {
+ "TXT": "e921e6896e19bfdc214f60f54aaacc"
+ }
+}
diff --git a/domains/_github-pages-challenge-bi0hazardd.jonathancarrillo.json b/domains/_github-pages-challenge-bi0hazardd.jonathancarrillo.json
new file mode 100644
index 000000000..c24215daa
--- /dev/null
+++ b/domains/_github-pages-challenge-bi0hazardd.jonathancarrillo.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal site for github@bi0hazarDD (GH Pages verification)",
+ "repo": "https://github.com/bi0hazarDD/bi0hazarDD.github.io",
+ "owner": {
+ "username": "bi0hazarDD",
+ "email": "jonathan-8@hotmail.co.uk"
+ },
+ "record": {
+ "TXT": "87235c5c433d52086cbf2ae6ddd9a1"
+ }
+}
diff --git a/domains/_github-pages-challenge-birabittoh.birabittoh.json b/domains/_github-pages-challenge-birabittoh.birabittoh.json
new file mode 100644
index 000000000..50565643e
--- /dev/null
+++ b/domains/_github-pages-challenge-birabittoh.birabittoh.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "BiRabittoh",
+ "email": "andronacomarco@gmail.com"
+ },
+
+ "record": {
+ "TXT": "9b7611136c86e6ff35c8292b8f6a34"
+ }
+}
diff --git a/domains/_github-pages-challenge-blob2763.blob2763.json b/domains/_github-pages-challenge-blob2763.blob2763.json
new file mode 100644
index 000000000..fad6d3d7a
--- /dev/null
+++ b/domains/_github-pages-challenge-blob2763.blob2763.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Blob2763",
+ "email": "blob2763@gmail.com"
+ },
+ "record": {
+ "TXT": "a658c7bf2ffa85c1e1c68cb3776ef7"
+ }
+}
diff --git a/domains/_github-pages-challenge-blob2763.utils.json b/domains/_github-pages-challenge-blob2763.utils.json
new file mode 100644
index 000000000..b0595747d
--- /dev/null
+++ b/domains/_github-pages-challenge-blob2763.utils.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Blob2763",
+ "email": "blob2763@gmail.com"
+ },
+ "record": {
+ "TXT": "bac9fea219f8e188022d1c5f70a6c7"
+ }
+}
diff --git a/domains/_github-pages-challenge-bnyro.bnyro.json b/domains/_github-pages-challenge-bnyro.bnyro.json
new file mode 100644
index 000000000..49e09b122
--- /dev/null
+++ b/domains/_github-pages-challenge-bnyro.bnyro.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Bnyro",
+ "email": "bnyro@tutanota.com"
+ },
+ "record": {
+ "TXT": "44677d523e6eee7f03f41e5d062066"
+ }
+}
diff --git a/domains/_github-pages-challenge-boredcodebyk.boredcodebyk.json b/domains/_github-pages-challenge-boredcodebyk.boredcodebyk.json
new file mode 100644
index 000000000..08a7feb51
--- /dev/null
+++ b/domains/_github-pages-challenge-boredcodebyk.boredcodebyk.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "boredcodebyk",
+ "email": "khromabyk+dev@gmail.com"
+ },
+ "record": {
+ "TXT": "18eddbb722418d4b62eb8976f91621"
+ }
+}
diff --git a/domains/_github-pages-challenge-bqwerr.srujan.json b/domains/_github-pages-challenge-bqwerr.srujan.json
new file mode 100644
index 000000000..bd5de8f82
--- /dev/null
+++ b/domains/_github-pages-challenge-bqwerr.srujan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bqwerr",
+ "email": "srujan.t@outlook.com"
+ },
+ "record": {
+ "TXT": "0f2975970f0cdf325103a7d1f3ecf3"
+ }
+}
diff --git a/domains/_github-pages-challenge-caodoc.caodoc.json b/domains/_github-pages-challenge-caodoc.caodoc.json
new file mode 100644
index 000000000..073aabc3b
--- /dev/null
+++ b/domains/_github-pages-challenge-caodoc.caodoc.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "caodoc",
+ "email": "",
+ "discord": "caodoc"
+ },
+ "record": {
+ "TXT": "c3aa36c2b7f2e2bf94a92b760760ca"
+ }
+}
diff --git a/domains/_github-pages-challenge-cfhoiril.iamchoiiril.json b/domains/_github-pages-challenge-cfhoiril.iamchoiiril.json
new file mode 100644
index 000000000..5d89dfc4b
--- /dev/null
+++ b/domains/_github-pages-challenge-cfhoiril.iamchoiiril.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Cfhoiril",
+ "email": "iamchoirilfk@gmail.com"
+ },
+ "record": {
+ "TXT": "9b283f49dbeb511d5060e9f26a83b4"
+ }
+}
diff --git a/domains/_github-pages-challenge-charmingdisorder.alexey.json b/domains/_github-pages-challenge-charmingdisorder.alexey.json
new file mode 100644
index 000000000..6738fc537
--- /dev/null
+++ b/domains/_github-pages-challenge-charmingdisorder.alexey.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "charmingdisorder",
+ "email": "null"
+ },
+
+ "record": {
+ "TXT": "8045a0394db9ecae4e8f4a76f5c17c"
+ }
+}
diff --git a/domains/_github-pages-challenge-chethanyadav456.chethan.json b/domains/_github-pages-challenge-chethanyadav456.chethan.json
new file mode 100644
index 000000000..ffea13a10
--- /dev/null
+++ b/domains/_github-pages-challenge-chethanyadav456.chethan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "chethanyadav456",
+ "email": "rockchethan1111@gmail.com"
+ },
+ "record": {
+ "TXT": "9781ed4422557bd427d0eff2c17b99"
+ }
+}
diff --git a/domains/_github-pages-challenge-clay990.suraj.json b/domains/_github-pages-challenge-clay990.suraj.json
new file mode 100644
index 000000000..e6d64eee0
--- /dev/null
+++ b/domains/_github-pages-challenge-clay990.suraj.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Clay990",
+ "email": "asuraj991m@gmail.com"
+ },
+ "record": {
+ "TXT": "dee6e1fa6a0e02df5af4edb0e40ac4"
+ }
+}
diff --git a/domains/_github-pages-challenge-clumzyofficial.adarsh.json b/domains/_github-pages-challenge-clumzyofficial.adarsh.json
new file mode 100644
index 000000000..283b85328
--- /dev/null
+++ b/domains/_github-pages-challenge-clumzyofficial.adarsh.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "clumzyofficial",
+ "email": "adarshshukla0344@gmail.com"
+ },
+
+ "record": {
+ "TXT": "b37649c87b3dc3594b1c44139e420a"
+ }
+}
diff --git a/domains/_github-pages-challenge-compcoder007.umesh.json b/domains/_github-pages-challenge-compcoder007.umesh.json
new file mode 100644
index 000000000..7eebe0abd
--- /dev/null
+++ b/domains/_github-pages-challenge-compcoder007.umesh.json
@@ -0,0 +1,10 @@
+{
+ "description": "Github verification",
+ "owner": {
+ "username": "compCoder007",
+ "email": "competentcoder007@gmail.com"
+ },
+ "record": {
+ "TXT": "7e581a7ce40509036ecb310e92fd21"
+ }
+}
diff --git a/domains/_github-pages-challenge-crazy-max-blog.crazy-max.json b/domains/_github-pages-challenge-crazy-max-blog.crazy-max.json
new file mode 100644
index 000000000..7e10484dd
--- /dev/null
+++ b/domains/_github-pages-challenge-crazy-max-blog.crazy-max.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Crazy-Max-Blog",
+ "email": "Crazy-Max-2011@yandex.ru"
+ },
+ "record": {
+ "TXT": "bf0161fd315024bd5069ccb7f38cdc"
+ }
+}
diff --git a/domains/_github-pages-challenge-creeperkafasi.deniz.json b/domains/_github-pages-challenge-creeperkafasi.deniz.json
new file mode 100644
index 000000000..2be33bebe
--- /dev/null
+++ b/domains/_github-pages-challenge-creeperkafasi.deniz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "creeperkafasi",
+ "email": "creeperkafasiyt@gmail.com"
+ },
+ "record": {
+ "TXT": "a6a4af6f32972c69be7ec1700f7196"
+ }
+}
diff --git a/domains/_github-pages-challenge-creepsooff.creepso.json b/domains/_github-pages-challenge-creepsooff.creepso.json
new file mode 100644
index 000000000..3f227a18d
--- /dev/null
+++ b/domains/_github-pages-challenge-creepsooff.creepso.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "CreepsoOff",
+ "email": "eternel_universite0s@icloud.com"
+ },
+ "record": {
+ "TXT": "299e56541b39e06bef97fc4006974a"
+ }
+}
diff --git a/domains/_github-pages-challenge-crystalbajgai.crystal.json b/domains/_github-pages-challenge-crystalbajgai.crystal.json
new file mode 100644
index 000000000..a356970af
--- /dev/null
+++ b/domains/_github-pages-challenge-crystalbajgai.crystal.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "crystalbajgai",
+ "email": "crystalbajgai@gmail.com"
+ },
+ "record": {
+ "TXT": "6fbb6593b607699c01a1c17c8c2849"
+ }
+}
diff --git a/domains/_github-pages-challenge-danilofuchs.danilofuchs.json b/domains/_github-pages-challenge-danilofuchs.danilofuchs.json
new file mode 100644
index 000000000..122ce8335
--- /dev/null
+++ b/domains/_github-pages-challenge-danilofuchs.danilofuchs.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "danilofuchs",
+ "email": "danilo_fuchs@hotmail.com"
+ },
+ "record": {
+ "TXT": "09bee48261a7e91718432a7b51baaa"
+ }
+}
diff --git a/domains/_github-pages-challenge-deltafumble.deltafumble.json b/domains/_github-pages-challenge-deltafumble.deltafumble.json
new file mode 100644
index 000000000..81a444eda
--- /dev/null
+++ b/domains/_github-pages-challenge-deltafumble.deltafumble.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "deltafumble",
+ "email": "deltafumblecontact@skiff.com"
+ },
+ "record": {
+ "TXT": "39cc94cea6bb9c128a442df111f0c9"
+ }
+}
diff --git a/domains/_github-pages-challenge-dev-420.dev-420.json b/domains/_github-pages-challenge-dev-420.dev-420.json
new file mode 100644
index 000000000..2751e7330
--- /dev/null
+++ b/domains/_github-pages-challenge-dev-420.dev-420.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Dev-420",
+ "email": "imakbss@gmail.com"
+ },
+ "record": {
+ "TXT": "af648cf0502797580ddf061805dad3"
+ }
+}
diff --git a/domains/_github-pages-challenge-dumprr.dumprr.json b/domains/_github-pages-challenge-dumprr.dumprr.json
new file mode 100644
index 000000000..37acbe038
--- /dev/null
+++ b/domains/_github-pages-challenge-dumprr.dumprr.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dumprr",
+ "email": "duhhhmprr@proton.me"
+ },
+ "record": {
+ "TXT": "493971f29452bc15b55966259b43a5"
+ }
+}
diff --git a/domains/_github-pages-challenge-dushmanta05.dushmanta.json b/domains/_github-pages-challenge-dushmanta05.dushmanta.json
new file mode 100644
index 000000000..8f3394198
--- /dev/null
+++ b/domains/_github-pages-challenge-dushmanta05.dushmanta.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dushmanta05",
+ "email": "dushmanta.dev@gmail.com"
+ },
+ "record": {
+ "TXT": "259ff2c88b910f54c7a1ec2d0da405"
+ }
+}
diff --git a/domains/_github-pages-challenge-dvandervlag.dennis.json b/domains/_github-pages-challenge-dvandervlag.dennis.json
new file mode 100644
index 000000000..53deda04d
--- /dev/null
+++ b/domains/_github-pages-challenge-dvandervlag.dennis.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dvandervlag",
+ "email": "dvandervlag@gmail.com"
+ },
+ "record": {
+ "TXT": "e0c9a40b22c0a75c4043ff40e1b926"
+ }
+}
diff --git a/domains/_github-pages-challenge-edenqwq.eden.json b/domains/_github-pages-challenge-edenqwq.eden.json
new file mode 100644
index 000000000..6fd94688a
--- /dev/null
+++ b/domains/_github-pages-challenge-edenqwq.eden.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "EdenQwQ",
+ "email": "lsahlm1eden@gmail.com"
+ },
+ "record": {
+ "TXT": "2babcf1b4a0ae8e0f7bc801719d6af"
+ }
+}
diff --git a/domains/_github-pages-challenge-edwardthelegend.edward.json b/domains/_github-pages-challenge-edwardthelegend.edward.json
new file mode 100644
index 000000000..1e3ed00dc
--- /dev/null
+++ b/domains/_github-pages-challenge-edwardthelegend.edward.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "EdwardTheLegend",
+ "email": "edward@edwardtlowe.com"
+ },
+
+ "record": {
+ "TXT": "fba1c393a4bf816cdb2aa4515feae1"
+ }
+}
diff --git a/domains/_github-pages-challenge-eldano.eldano.json b/domains/_github-pages-challenge-eldano.eldano.json
new file mode 100644
index 000000000..55eae9232
--- /dev/null
+++ b/domains/_github-pages-challenge-eldano.eldano.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "eldano",
+ "email": "eldano.v2@gmail.com"
+ },
+ "record": {
+ "TXT": "f805956b9898312782616bc73ce1cd"
+ }
+}
diff --git a/domains/_github-pages-challenge-eldinesh.eldinesh.json b/domains/_github-pages-challenge-eldinesh.eldinesh.json
new file mode 100644
index 000000000..38a0488ad
--- /dev/null
+++ b/domains/_github-pages-challenge-eldinesh.eldinesh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "eldinesh",
+ "email": "dseera6@gmail.com"
+ },
+ "record": {
+ "TXT": "dafe75727b19da6bd62bf961a94c7d"
+ }
+ }
diff --git a/domains/_github-pages-challenge-endermanbugzjfc.zjfc.json b/domains/_github-pages-challenge-endermanbugzjfc.zjfc.json
new file mode 100644
index 000000000..56b3810db
--- /dev/null
+++ b/domains/_github-pages-challenge-endermanbugzjfc.zjfc.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Endermanbugzjfc",
+ "email": "endermanbugzjfc@gmail.com"
+ },
+ "record": {
+ "TXT": "238acf06da9051a27631863f11abbf"
+ }
+}
diff --git a/domains/_github-pages-challenge-enderpoint07.enderpoint.json b/domains/_github-pages-challenge-enderpoint07.enderpoint.json
new file mode 100644
index 000000000..bee86756a
--- /dev/null
+++ b/domains/_github-pages-challenge-enderpoint07.enderpoint.json
@@ -0,0 +1,13 @@
+{
+ "description": "EnderPoint's dev site",
+ "repo": "https://github.com/EnderPoint07/EnderPoint07.github.io",
+ "owner": {
+ "username": "EnderPoint07",
+ "email": "",
+ "discord": "DotM38#5497",
+ "instagram": "enderpoint07"
+ },
+ "record": {
+ "TXT": "ea82a679a2f0a737ed5a4c6a5d0e2b"
+ }
+}
diff --git a/domains/_github-pages-challenge-fdciabdul.fdciabdul.json b/domains/_github-pages-challenge-fdciabdul.fdciabdul.json
new file mode 100644
index 000000000..6f3e033b2
--- /dev/null
+++ b/domains/_github-pages-challenge-fdciabdul.fdciabdul.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "fdciabdul",
+ "email": "cp@imtaqin.id"
+ },
+ "record": {
+ "TXT": "b300a7cdb4c929b57cae7e0bf0ab69"
+ }
+}
diff --git a/domains/_github-pages-challenge-flazepe.flazepe.json b/domains/_github-pages-challenge-flazepe.flazepe.json
new file mode 100644
index 000000000..0df317748
--- /dev/null
+++ b/domains/_github-pages-challenge-flazepe.flazepe.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "flazepe",
+ "email": "flazepe@gmail.com"
+ },
+ "record": {
+ "TXT": "68edc295b0936fb51d13af5cbbfc3b"
+ }
+}
diff --git a/domains/_github-pages-challenge-flc995.florin.json b/domains/_github-pages-challenge-flc995.florin.json
new file mode 100644
index 000000000..ba21b7cf8
--- /dev/null
+++ b/domains/_github-pages-challenge-flc995.florin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "flc995",
+ "email": "flc995@gmail.com"
+ },
+ "record": {
+ "TXT": "eab0530066ed691b55a4edd424f74b"
+ }
+}
diff --git a/domains/_github-pages-challenge-foxy4096.foxy4096.json b/domains/_github-pages-challenge-foxy4096.foxy4096.json
new file mode 100644
index 000000000..bb079d007
--- /dev/null
+++ b/domains/_github-pages-challenge-foxy4096.foxy4096.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "foxy4096",
+ "email": "adityapriyadarshi669@gmail.com"
+ },
+ "record": {
+ "TXT": "eb006bea4f375b57b795dbfc8dd3fe"
+ }
+}
diff --git a/domains/_github-pages-challenge-frost2k5.frost2k5.json b/domains/_github-pages-challenge-frost2k5.frost2k5.json
new file mode 100644
index 000000000..3a74ce877
--- /dev/null
+++ b/domains/_github-pages-challenge-frost2k5.frost2k5.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "FrosT2k5",
+ "email": "androygaming@gmail.com"
+ },
+ "record": {
+ "TXT": "470d49eac00aadbe7f580a6c455ad9"
+ }
+}
diff --git a/domains/_github-pages-challenge-gautamkrishnar.gkr.json b/domains/_github-pages-challenge-gautamkrishnar.gkr.json
new file mode 100644
index 000000000..5128b0ad1
--- /dev/null
+++ b/domains/_github-pages-challenge-gautamkrishnar.gkr.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "gautamkrishnar",
+ "email": "rgautamkrishna@gmail.com"
+ },
+ "record": {
+ "TXT": "155ab7179ccadb58ed0627f0b45420"
+ }
+}
diff --git a/domains/_github-pages-challenge-habeel06.habeel.json b/domains/_github-pages-challenge-habeel06.habeel.json
new file mode 100644
index 000000000..a8d160e24
--- /dev/null
+++ b/domains/_github-pages-challenge-habeel06.habeel.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "habeel06",
+ "email": ""
+ },
+ "record": {
+ "TXT": "6bbac3351ea3d8ad90603e1318c7ff"
+ }
+}
diff --git a/domains/_github-pages-challenge-harishnkr.hari.json b/domains/_github-pages-challenge-harishnkr.hari.json
new file mode 100644
index 000000000..5380b91fa
--- /dev/null
+++ b/domains/_github-pages-challenge-harishnkr.hari.json
@@ -0,0 +1,10 @@
+{
+ "description": "Github verification",
+ "owner": {
+ "username": "harishnkr",
+ "email": "hari2menon1234@gmail.com"
+ },
+ "record": {
+ "TXT": "7f15aad6874de8ea118574464c8169"
+ }
+}
diff --git a/domains/_github-pages-challenge-hector-vigil.hector-vigil.json b/domains/_github-pages-challenge-hector-vigil.hector-vigil.json
new file mode 100644
index 000000000..e60ad7c0a
--- /dev/null
+++ b/domains/_github-pages-challenge-hector-vigil.hector-vigil.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hector-vigil",
+ "email": "vigilescalera.h@gmail.com"
+ },
+ "record": {
+ "TXT": "01a4ef998725972f99991612a43336"
+ }
+}
diff --git a/domains/_github-pages-challenge-hmonsterg.soap.json b/domains/_github-pages-challenge-hmonsterg.soap.json
new file mode 100644
index 000000000..85ccb3fe3
--- /dev/null
+++ b/domains/_github-pages-challenge-hmonsterg.soap.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "HmonsterG",
+ "email": "Plzdontgethacked@outlook.com"
+ },
+ "record": {
+ "TXT": "e97c07c8d241804c777b23d7015d00"
+ }
+}
diff --git a/domains/_github-pages-challenge-iakzs.iakzs.json b/domains/_github-pages-challenge-iakzs.iakzs.json
new file mode 100644
index 000000000..906e52d2a
--- /dev/null
+++ b/domains/_github-pages-challenge-iakzs.iakzs.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "iakzs",
+ "email": "iakzs@protonmail.com",
+ "discord": "622795838032314388"
+ },
+
+ "record": {
+ "TXT": "e20d874e765da4afd4a221f6c8bce4"
+ }
+}
diff --git a/domains/_github-pages-challenge-iakzs.kz.json b/domains/_github-pages-challenge-iakzs.kz.json
new file mode 100644
index 000000000..7e672213f
--- /dev/null
+++ b/domains/_github-pages-challenge-iakzs.kz.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "iakzs",
+ "email": "iakzs@protonmail.com",
+ "discord": "622795838032314388"
+ },
+
+ "record": {
+ "TXT": "cb7cd68eea57b70a1cd2814629c399"
+ }
+}
diff --git a/domains/_github-pages-challenge-iamrony777.ronit.json b/domains/_github-pages-challenge-iamrony777.ronit.json
new file mode 100644
index 000000000..585d900e8
--- /dev/null
+++ b/domains/_github-pages-challenge-iamrony777.ronit.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "iamrony777",
+ "email": "iamrony777@pm.me"
+ },
+
+ "record": {
+ "TXT": "702edaf64e30be353646b4988cbc26"
+ }
+}
diff --git a/domains/_github-pages-challenge-icky17.jairomorales.json b/domains/_github-pages-challenge-icky17.jairomorales.json
new file mode 100644
index 000000000..0e731476e
--- /dev/null
+++ b/domains/_github-pages-challenge-icky17.jairomorales.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Icky17",
+ "email": "jairomoralesperez0@gmail.com"
+ },
+ "record": {
+ "TXT": "bdff1e7214b7ebd125f3b9e9e9f1cd"
+ }
+}
diff --git a/domains/_github-pages-challenge-icm185.icm.json b/domains/_github-pages-challenge-icm185.icm.json
new file mode 100644
index 000000000..9c8bbd25e
--- /dev/null
+++ b/domains/_github-pages-challenge-icm185.icm.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ICM185",
+ "email": "ironcladmonster185@gmail.com"
+ },
+ "record": {
+ "TXT": "0a7797274484306ed45f07548705fa"
+ }
+}
diff --git a/domains/_github-pages-challenge-impratik7.pratikmali.json b/domains/_github-pages-challenge-impratik7.pratikmali.json
new file mode 100644
index 000000000..cfbfea095
--- /dev/null
+++ b/domains/_github-pages-challenge-impratik7.pratikmali.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "impratik7",
+ "email": "malipratik09@gmail.com"
+ },
+ "record": {
+ "TXT": "31f203aa7f5e0f5c0d7e984a718bc7"
+ }
+}
diff --git a/domains/_github-pages-challenge-inkilu.gautham.json b/domains/_github-pages-challenge-inkilu.gautham.json
new file mode 100644
index 000000000..b140d7ed7
--- /dev/null
+++ b/domains/_github-pages-challenge-inkilu.gautham.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "inkilu",
+ "email": "gauthamgkm@gmail.com"
+ },
+ "record": {
+ "TXT": "c49ff3bbd82885e942c6785d410fd0"
+ }
+}
\ No newline at end of file
diff --git a/domains/_github-pages-challenge-inkilu.inkilu.json b/domains/_github-pages-challenge-inkilu.inkilu.json
new file mode 100644
index 000000000..29c4c880b
--- /dev/null
+++ b/domains/_github-pages-challenge-inkilu.inkilu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "inkilu",
+ "email": "gauthamgkm@gmail.com"
+ },
+ "record": {
+ "TXT": "d84cc8928b4a48588344fd7d279fd6"
+ }
+}
diff --git a/domains/_github-pages-challenge-iraviteja.raviteja.json b/domains/_github-pages-challenge-iraviteja.raviteja.json
new file mode 100644
index 000000000..999103014
--- /dev/null
+++ b/domains/_github-pages-challenge-iraviteja.raviteja.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "iraviteja",
+ "email": "iraviteja77@gmail.com"
+ },
+ "record": {
+ "TXT": "6bb854139d8be9a7f37ccb05319b75"
+ }
+}
diff --git a/domains/_github-pages-challenge-itachisan.giovanni.json b/domains/_github-pages-challenge-itachisan.giovanni.json
new file mode 100644
index 000000000..f24f41cbe
--- /dev/null
+++ b/domains/_github-pages-challenge-itachisan.giovanni.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ItachiSan",
+ "email": "giovannisantini93@yahoo.it"
+ },
+ "record": {
+ "TXT": "e7997ccdbdbbd94187efc184b3acc3"
+ }
+}
diff --git a/domains/_github-pages-challenge-itsnicecraft.itsnicecraft.json b/domains/_github-pages-challenge-itsnicecraft.itsnicecraft.json
new file mode 100644
index 000000000..6b21937d0
--- /dev/null
+++ b/domains/_github-pages-challenge-itsnicecraft.itsnicecraft.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "itsnicecraft",
+ "email": "itsnicecraft@protonmail.com"
+ },
+ "record": {
+ "TXT": "af298352953860816795903319fbc9"
+ }
+}
diff --git a/domains/_github-pages-challenge-itsvick.itsvick.json b/domains/_github-pages-challenge-itsvick.itsvick.json
new file mode 100644
index 000000000..23c499b7e
--- /dev/null
+++ b/domains/_github-pages-challenge-itsvick.itsvick.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "itsvick",
+ "email": "vivek_kasture@techjoomla.com"
+ },
+
+ "record": {
+ "TXT": "6cccc8b9552901f383cdc6a606b185"
+ }
+}
diff --git a/domains/_github-pages-challenge-j3rrythomas.jerry.json b/domains/_github-pages-challenge-j3rrythomas.jerry.json
new file mode 100644
index 000000000..8648e23de
--- /dev/null
+++ b/domains/_github-pages-challenge-j3rrythomas.jerry.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "j3rrythomas",
+ "email": "jerrythomasjohn9@gmail.com"
+ },
+ "record": {
+ "TXT": "8d2b658010e7359f0de68b61b4b6dd"
+ }
+}
diff --git a/domains/_github-pages-challenge-jakethebest1238.jakehe.json b/domains/_github-pages-challenge-jakethebest1238.jakehe.json
new file mode 100644
index 000000000..7cad3e2a5
--- /dev/null
+++ b/domains/_github-pages-challenge-jakethebest1238.jakehe.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jakethebest1238",
+ "email": "jakehe1226@gmail.com"
+ },
+ "record": {
+ "TXT": "d96dac12901888fba491ca3e7666b6"
+ }
+}
diff --git a/domains/_github-pages-challenge-javascript-void0.java.json b/domains/_github-pages-challenge-javascript-void0.java.json
new file mode 100644
index 000000000..79336d6fb
--- /dev/null
+++ b/domains/_github-pages-challenge-javascript-void0.java.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "javascript-void0",
+ "email": "",
+ "discord": "Java#3865"
+ },
+ "record": {
+ "TXT": "ce7434d57dd03085f434bc76dbab2f"
+ }
+}
diff --git a/domains/_github-pages-challenge-jb3.joe.json b/domains/_github-pages-challenge-jb3.joe.json
new file mode 100644
index 000000000..79d775fb8
--- /dev/null
+++ b/domains/_github-pages-challenge-jb3.joe.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jb3",
+ "email": "joe@jb3.dev"
+ },
+ "record": {
+ "TXT": "b10c435ad8d9bb1a305cf52669e9ad"
+ }
+}
diff --git a/domains/_github-pages-challenge-jcarpenter48.jcarpenter.json b/domains/_github-pages-challenge-jcarpenter48.jcarpenter.json
new file mode 100644
index 000000000..2d32ac0a9
--- /dev/null
+++ b/domains/_github-pages-challenge-jcarpenter48.jcarpenter.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jcarpenter48",
+ "email": "jcarpenter48@mail.com"
+ },
+ "record": {
+ "TXT": "2b652a052305150f64e2df88a21d0f"
+ }
+}
diff --git a/domains/_github-pages-challenge-jcgaming-official.jcquieta.json b/domains/_github-pages-challenge-jcgaming-official.jcquieta.json
new file mode 100644
index 000000000..9d88ddde9
--- /dev/null
+++ b/domains/_github-pages-challenge-jcgaming-official.jcquieta.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jcgaming-official",
+ "email": "quieta.johncarl158@gmail.com"
+ },
+ "record": {
+ "TXT": "c7ad513bd1a641f4be43d3ea718a5e"
+ }
+}
diff --git a/domains/_github-pages-challenge-jesgran.jesgran.json b/domains/_github-pages-challenge-jesgran.jesgran.json
new file mode 100644
index 000000000..aa279e5f8
--- /dev/null
+++ b/domains/_github-pages-challenge-jesgran.jesgran.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Jesgran",
+ "email": "calzdani20@libero.it"
+ },
+ "record": {
+ "TXT": "4ca188e02efff19513cd6f803a57e2"
+ }
+}
diff --git a/domains/_github-pages-challenge-jeymen.jeymen.json b/domains/_github-pages-challenge-jeymen.jeymen.json
new file mode 100644
index 000000000..6d20e50fc
--- /dev/null
+++ b/domains/_github-pages-challenge-jeymen.jeymen.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Jeymen",
+ "email": "jeymen11@proton.me"
+ },
+ "record": {
+ "TXT": "d01c3f5f2e886990f511ffb0dc7fcb"
+ }
+}
diff --git a/domains/_github-pages-challenge-joythejoystick1.glqch.json b/domains/_github-pages-challenge-joythejoystick1.glqch.json
new file mode 100644
index 000000000..7b95efe3b
--- /dev/null
+++ b/domains/_github-pages-challenge-joythejoystick1.glqch.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "joythejoystick1",
+ "email": "midoayoub778@gmail.com"
+ },
+ "record": {
+ "TXT": "eb682c2a35bd6139b653df86f7d248"
+ }
+}
diff --git a/domains/_github-pages-challenge-justtobbi.justtobbi.json b/domains/_github-pages-challenge-justtobbi.justtobbi.json
new file mode 100644
index 000000000..5451bef64
--- /dev/null
+++ b/domains/_github-pages-challenge-justtobbi.justtobbi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "justtobbi",
+ "email": "justtobbi@gmail.com"
+ },
+ "record": {
+ "TXT": "40c1c0481529b00233ccf00048c45c"
+ }
+}
diff --git a/domains/_github-pages-challenge-k22rma.k22rma.json b/domains/_github-pages-challenge-k22rma.k22rma.json
new file mode 100644
index 000000000..ab9247e88
--- /dev/null
+++ b/domains/_github-pages-challenge-k22rma.k22rma.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "k22rma",
+ "email": "krrishsharma.ks12345@gmail.com"
+ },
+ "record": {
+ "TXT": "c4d4e7c7ad03a88fd89ea4f1beb994"
+ }
+}
diff --git a/domains/_github-pages-challenge-kaustubhkharvi.kaustubh.json b/domains/_github-pages-challenge-kaustubhkharvi.kaustubh.json
new file mode 100644
index 000000000..9951926b4
--- /dev/null
+++ b/domains/_github-pages-challenge-kaustubhkharvi.kaustubh.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "kaustubhkharvi",
+ "email": "kaustubh_2008@outlook.com",
+ "twitter": "kaustubhkharvi"
+ },
+ "record": {
+ "TXT": "1ac125c3f84f3381a22491edf36bb0"
+ }
+}
diff --git a/domains/_github-pages-challenge-kenwuqianghao.kenwu.json b/domains/_github-pages-challenge-kenwuqianghao.kenwu.json
new file mode 100644
index 000000000..e4e4ccbab
--- /dev/null
+++ b/domains/_github-pages-challenge-kenwuqianghao.kenwu.json
@@ -0,0 +1,12 @@
+{
+ "description": "This is Ken Wu's personal portfolio website.",
+ "repo": "https://github.com/kenwuqianghao/kenwuqianghao.github.io",
+ "owner": {
+ "username": "KenWuqianghao",
+ "email": "wooqianghao@gmail.com",
+ "twitter": "KenWuqianghao"
+ },
+ "record": {
+ "TXT": "ddd9e6fce10cefd43829dc21e9bc09"
+ }
+}
diff --git a/domains/_github-pages-challenge-krix12.krix.json b/domains/_github-pages-challenge-krix12.krix.json
new file mode 100644
index 000000000..b97e41309
--- /dev/null
+++ b/domains/_github-pages-challenge-krix12.krix.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Krix12",
+ "email": "kristjan.kocevar89@gmail.com"
+ },
+ "record": {
+ "TXT": "178ab459221fd277af8029cae84a63"
+ }
+}
diff --git a/domains/_github-pages-challenge-labus3.madhav.json b/domains/_github-pages-challenge-labus3.madhav.json
new file mode 100644
index 000000000..d2de31abb
--- /dev/null
+++ b/domains/_github-pages-challenge-labus3.madhav.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "LaBus3",
+ "email": "madhav.v.1996@gmail.com"
+ },
+ "record": {
+ "TXT": "7362cb36811c9eefc5039e6e6da778"
+ }
+}
diff --git a/domains/_github-pages-challenge-liancastellon.liancg.json b/domains/_github-pages-challenge-liancastellon.liancg.json
new file mode 100644
index 000000000..70d71bcfa
--- /dev/null
+++ b/domains/_github-pages-challenge-liancastellon.liancg.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "liancastellon",
+ "email": "liancg@gmail.com"
+ },
+
+ "record": {
+ "TXT": "de487db710c1daf905269fb57775b6"
+ }
+}
diff --git a/domains/_github-pages-challenge-linuzzx.linusx.json b/domains/_github-pages-challenge-linuzzx.linusx.json
new file mode 100644
index 000000000..901232893
--- /dev/null
+++ b/domains/_github-pages-challenge-linuzzx.linusx.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "linuzzx",
+ "email": "GalaxyLinus@gmail.com"
+ },
+ "record": {
+ "TXT": "029ab228dfd885b308be6aef43066d"
+ }
+}
diff --git a/domains/_github-pages-challenge-loisvelasco.loisvelasco.json b/domains/_github-pages-challenge-loisvelasco.loisvelasco.json
new file mode 100644
index 000000000..f40a9489b
--- /dev/null
+++ b/domains/_github-pages-challenge-loisvelasco.loisvelasco.json
@@ -0,0 +1,10 @@
+{
+ "description": "Github Verification",
+ "owner": {
+ "username": "loiSvelasco",
+ "email": "loisuperficialvelasco@gmail.com"
+ },
+ "record": {
+ "TXT": "e45f5cee8c9438fe563d3bf4b2fbbe"
+ }
+}
diff --git a/domains/_github-pages-challenge-lrxdarkdevil.darkdevil.json b/domains/_github-pages-challenge-lrxdarkdevil.darkdevil.json
new file mode 100644
index 000000000..97d9ca686
--- /dev/null
+++ b/domains/_github-pages-challenge-lrxdarkdevil.darkdevil.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "LRxDarkDevil",
+ "email": "tahaadnanawan@gmail.com"
+ },
+ "record": {
+ "TXT": "13dafb5731efc3b35b3e1fe1a20ac2"
+ }
+}
diff --git a/domains/_github-pages-challenge-madebytragic.madebytragic.json b/domains/_github-pages-challenge-madebytragic.madebytragic.json
new file mode 100644
index 000000000..4c9dbb811
--- /dev/null
+++ b/domains/_github-pages-challenge-madebytragic.madebytragic.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "lrmn7",
+ "email": "lrmnid@gmail.com"
+ },
+ "record": {
+ "TXT": "9693d9e721696f4184aa3abfa35921"
+ }
+}
diff --git a/domains/_github-pages-challenge-marcossatoshi.satoshi.json b/domains/_github-pages-challenge-marcossatoshi.satoshi.json
new file mode 100644
index 000000000..09ab347fc
--- /dev/null
+++ b/domains/_github-pages-challenge-marcossatoshi.satoshi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "marcossatoshi",
+ "email": "marcos.satoshi@gmail.com"
+ },
+ "record": {
+ "TXT": "f3045f0960ac5562a7d764b72d102a"
+ }
+}
diff --git a/domains/_github-pages-challenge-mcotocel.mcotocel.json b/domains/_github-pages-challenge-mcotocel.mcotocel.json
new file mode 100644
index 000000000..d1e2bdd0c
--- /dev/null
+++ b/domains/_github-pages-challenge-mcotocel.mcotocel.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MCotocel",
+ "email": "mcotocel@outlook.com"
+ },
+ "record": {
+ "TXT": "059ac86f94300091a59d2cef8b09a6"
+ }
+}
diff --git a/domains/_github-pages-challenge-mikeymoo5.moothecow.json b/domains/_github-pages-challenge-mikeymoo5.moothecow.json
new file mode 100644
index 000000000..289eb7ee9
--- /dev/null
+++ b/domains/_github-pages-challenge-mikeymoo5.moothecow.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mikeymoo5",
+ "email": "smartguy9964@gmail.com"
+ },
+ "record": {
+ "TXT": "2f899dd96f9394c2c189dc9a31aaf6"
+ }
+}
diff --git a/domains/_github-pages-challenge-mr1cecream.mricecream.json b/domains/_github-pages-challenge-mr1cecream.mricecream.json
new file mode 100644
index 000000000..1c0086982
--- /dev/null
+++ b/domains/_github-pages-challenge-mr1cecream.mricecream.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "mr1cecream",
+ "email": "guy@ochakov.com",
+ "twitter": "Mr__Icecream"
+ },
+ "record": {
+ "TXT": "86fe9c2f7e2d0be6a7a1c16a1c8032"
+ }
+}
diff --git a/domains/_github-pages-challenge-n0r1uno.steffen.json b/domains/_github-pages-challenge-n0r1uno.steffen.json
new file mode 100644
index 000000000..199d4248e
--- /dev/null
+++ b/domains/_github-pages-challenge-n0r1uno.steffen.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "N0r1uno",
+ "email": "steffen.florschuetz@t-online.de"
+ },
+ "record": {
+ "TXT": "06dbcd4fdc6325c0bce9ab6031937a"
+ }
+}
diff --git a/domains/_github-pages-challenge-natblida68.ashwa.json b/domains/_github-pages-challenge-natblida68.ashwa.json
new file mode 100644
index 000000000..3032c35f4
--- /dev/null
+++ b/domains/_github-pages-challenge-natblida68.ashwa.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NatBLida68",
+ "email": "aswajith.jithu888@gmail.com"
+ },
+ "record": {
+ "TXT": "f20bb532af2838eed8bfe622378d4b"
+ }
+}
diff --git a/domains/_github-pages-challenge-night0721.night.json b/domains/_github-pages-challenge-night0721.night.json
new file mode 100644
index 000000000..15d4b7d75
--- /dev/null
+++ b/domains/_github-pages-challenge-night0721.night.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal portfolio for showing my projects, contacts and about me",
+ "repo": "https://github.com/night0721/night0721.github.io",
+ "owner": {
+ "username": "night0721",
+ "email": "nightkalyyy@gmail.com"
+ },
+ "record": {
+ "TXT": "e87fbe224df0c16bf8e0796e229952"
+ }
+}
diff --git a/domains/_github-pages-challenge-noahziheng.noahgao.json b/domains/_github-pages-challenge-noahziheng.noahgao.json
new file mode 100644
index 000000000..7ded89aa7
--- /dev/null
+++ b/domains/_github-pages-challenge-noahziheng.noahgao.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "noahziheng",
+ "email": "noahgaocn@outlook.com"
+ },
+ "record": {
+ "TXT": "a25695a5c49f374f6eb483ff49c7c7"
+ }
+}
diff --git a/domains/_github-pages-challenge-nobody5050.6502.json b/domains/_github-pages-challenge-nobody5050.6502.json
new file mode 100644
index 000000000..0f576e906
--- /dev/null
+++ b/domains/_github-pages-challenge-nobody5050.6502.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nobody5050",
+ "email": "levibelland@gmail.com"
+ },
+ "record": {
+ "TXT": "0648c9309d9441b7f6b0dea3a78194"
+ }
+}
diff --git a/domains/_github-pages-challenge-node0505.node.json b/domains/_github-pages-challenge-node0505.node.json
new file mode 100644
index 000000000..c8f9d1c87
--- /dev/null
+++ b/domains/_github-pages-challenge-node0505.node.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "node0505",
+ "email": "node0505@outlook.com"
+ },
+ "record": {
+ "TXT": "18bf4da227454aaee1c8e2ba62d466"
+ }
+}
diff --git a/domains/_github-pages-challenge-noobshubham.shubham.json b/domains/_github-pages-challenge-noobshubham.shubham.json
new file mode 100644
index 000000000..a8882ab7e
--- /dev/null
+++ b/domains/_github-pages-challenge-noobshubham.shubham.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Portfolio Website",
+ "repo": "https://github.com/noobshubham/Portfolio",
+ "owner": {
+ "username": "noobshubham",
+ "email": "noobshubham65@gmail.com"
+ },
+ "record": {
+ "TXT": "d195c824403985d365b744c05663fb"
+ }
+}
diff --git a/domains/_github-pages-challenge-not-a-ethan.not-ethan.json b/domains/_github-pages-challenge-not-a-ethan.not-ethan.json
new file mode 100644
index 000000000..8d3dad05e
--- /dev/null
+++ b/domains/_github-pages-challenge-not-a-ethan.not-ethan.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "not-a-ethan",
+ "email": "",
+ "discord": "not_ethan."
+ },
+ "record": {
+ "TXT": "72fd44f779f6bd6ad363ff20bdeffb"
+ }
+}
diff --git a/domains/_github-pages-challenge-not-a-ethan.services.not-ethan.json b/domains/_github-pages-challenge-not-a-ethan.services.not-ethan.json
new file mode 100644
index 000000000..16ab59eae
--- /dev/null
+++ b/domains/_github-pages-challenge-not-a-ethan.services.not-ethan.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "not-a-ethan",
+ "email": "",
+ "discord": "not_ethan."
+ },
+ "record": {
+ "TXT": "6a37d74710c72cb55ff05fffd71974"
+ }
+}
diff --git a/domains/_github-pages-challenge-not-coded.notcoded.json b/domains/_github-pages-challenge-not-coded.notcoded.json
new file mode 100644
index 000000000..cd471292d
--- /dev/null
+++ b/domains/_github-pages-challenge-not-coded.notcoded.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "not-coded",
+ "email": "",
+ "discord": "notcoded",
+ "discordUserID": "620662953347121163"
+ },
+ "record": {
+ "TXT": "54806bbd47bc06fa6f626952eb06aa"
+ }
+}
diff --git a/domains/_github-pages-challenge-notnotrachit.rachit.json b/domains/_github-pages-challenge-notnotrachit.rachit.json
new file mode 100644
index 000000000..89cf97685
--- /dev/null
+++ b/domains/_github-pages-challenge-notnotrachit.rachit.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "notnotrachit",
+ "email": "rachitkhurana40@gmail.com"
+ },
+ "record": {
+ "TXT": "934b26e127661bad98765dc4d571f2"
+ }
+}
diff --git a/domains/_github-pages-challenge-nxb1t.nxb1t.json b/domains/_github-pages-challenge-nxb1t.nxb1t.json
new file mode 100644
index 000000000..7da08967a
--- /dev/null
+++ b/domains/_github-pages-challenge-nxb1t.nxb1t.json
@@ -0,0 +1,10 @@
+{
+ "description": "Github verification",
+ "owner": {
+ "username": "nxb1t",
+ "email": "nxb1t@proton.me"
+ },
+ "record": {
+ "TXT": "c18d4423748e2acdfacadefa6495a6"
+ }
+}
diff --git a/domains/_github-pages-challenge-orangeleafdev.orangeleaf36.json b/domains/_github-pages-challenge-orangeleafdev.orangeleaf36.json
new file mode 100644
index 000000000..3ebe04465
--- /dev/null
+++ b/domains/_github-pages-challenge-orangeleafdev.orangeleaf36.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "OrangeLeafDev",
+ "email": "caluzajacob07@gmail.com"
+ },
+ "record": {
+ "TXT": "46dcf591ef5db2595dc3ba5180bfc8"
+ }
+}
diff --git a/domains/_github-pages-challenge-ottercodes101.otter.json b/domains/_github-pages-challenge-ottercodes101.otter.json
new file mode 100644
index 000000000..89938a826
--- /dev/null
+++ b/domains/_github-pages-challenge-ottercodes101.otter.json
@@ -0,0 +1,10 @@
+{
+ "description": "Github verification",
+ "owner": {
+ "username": "OtterCodes101",
+ "email": "oliver.anderson4435@gmail.com"
+ },
+ "record": {
+ "TXT": "088d75670097903fabd47977697d42"
+ }
+}
diff --git a/domains/_github-pages-challenge-oxmc.oxmc.json b/domains/_github-pages-challenge-oxmc.oxmc.json
new file mode 100644
index 000000000..1d97dc9ce
--- /dev/null
+++ b/domains/_github-pages-challenge-oxmc.oxmc.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "oxmc",
+ "email": "oxmc7769.mail@gmail.com",
+ "discord": "oxmc7769"
+ },
+ "record": {
+ "TXT": "eb7d97f93f961fd03de6e26db45846"
+ }
+}
diff --git a/domains/_github-pages-challenge-pansy27.pansy.json b/domains/_github-pages-challenge-pansy27.pansy.json
new file mode 100644
index 000000000..fd1bf5895
--- /dev/null
+++ b/domains/_github-pages-challenge-pansy27.pansy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "pansy27",
+ "email": "uselessshogun99@gmail.com"
+ },
+ "record": {
+ "TXT": "f7dedb2a4d727663fc9b0198fe3797"
+ }
+}
diff --git a/domains/_github-pages-challenge-patrickzhou1234.patrickzhou.json b/domains/_github-pages-challenge-patrickzhou1234.patrickzhou.json
new file mode 100644
index 000000000..12a6c27ee
--- /dev/null
+++ b/domains/_github-pages-challenge-patrickzhou1234.patrickzhou.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "patrickzhou1234",
+ "email": "",
+ "discord": "moist__nugget"
+ },
+ "record": {
+ "TXT": "d7c5e799b2dc38d36cb2345dd0e78d"
+ }
+}
diff --git a/domains/_github-pages-challenge-pingoda.pingoda.json b/domains/_github-pages-challenge-pingoda.pingoda.json
new file mode 100644
index 000000000..829e3424a
--- /dev/null
+++ b/domains/_github-pages-challenge-pingoda.pingoda.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Pingoda",
+ "email": "francescoclem915@gmail.com",
+ "twitter": "Pingoda_"
+ },
+ "record": {
+ "TXT": "9ddc01a76b306b3cef2aba7445689b"
+ }
+}
diff --git a/domains/_github-pages-challenge-pixelgeek.pixelgeek.json b/domains/_github-pages-challenge-pixelgeek.pixelgeek.json
new file mode 100644
index 000000000..cc1ca36ad
--- /dev/null
+++ b/domains/_github-pages-challenge-pixelgeek.pixelgeek.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "pixelgeek",
+ "email": "pxe.geek+github@gmail.com"
+ },
+ "record": {
+ "TXT": "6ca9401189820db4d366aacc7832c3"
+ }
+}
diff --git a/domains/_github-pages-challenge-pjschinske.peter.json b/domains/_github-pages-challenge-pjschinske.peter.json
new file mode 100644
index 000000000..2121a5953
--- /dev/null
+++ b/domains/_github-pages-challenge-pjschinske.peter.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "pjschinske",
+ "email": "pjschinske@gmail.com"
+ },
+
+ "record": {
+ "TXT": "ae060fca298593aaf2b5cc7aec64e6"
+ }
+}
diff --git a/domains/_github-pages-challenge-plu5.ck.json b/domains/_github-pages-challenge-plu5.ck.json
new file mode 100644
index 000000000..ae7d218ab
--- /dev/null
+++ b/domains/_github-pages-challenge-plu5.ck.json
@@ -0,0 +1,11 @@
+{
+ "repo": "https://github.com/plu5/plu5.github.io",
+ "owner": {
+ "username": "plu5",
+ "email": "ctre@users.sourceforge.net",
+ "twitter": "preminster"
+ },
+ "record": {
+ "TXT": "1d92c5eb70762c032ba6d32b9b631e"
+ }
+}
diff --git a/domains/_github-pages-challenge-proudmuslim-dev.proudmuslim.json b/domains/_github-pages-challenge-proudmuslim-dev.proudmuslim.json
new file mode 100644
index 000000000..d7a137996
--- /dev/null
+++ b/domains/_github-pages-challenge-proudmuslim-dev.proudmuslim.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "proudmuslim-dev",
+ "email": "proudmuslim-dev@protonmail.com"
+ },
+ "record": {
+ "TXT": "47cff427b2b6f1e86c38ea84e341f2"
+ }
+}
diff --git a/domains/_github-pages-challenge-quackduck.ishan.json b/domains/_github-pages-challenge-quackduck.ishan.json
new file mode 100644
index 000000000..1be7e5094
--- /dev/null
+++ b/domains/_github-pages-challenge-quackduck.ishan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "quackduck",
+ "email": "igoel.mail@gmail.com"
+ },
+ "record": {
+ "TXT": "14ec35f5a4a8dc217d642452be6b35"
+ }
+}
diff --git a/domains/_github-pages-challenge-revolutionisme.biplob.json b/domains/_github-pages-challenge-revolutionisme.biplob.json
new file mode 100644
index 000000000..ff497e53f
--- /dev/null
+++ b/domains/_github-pages-challenge-revolutionisme.biplob.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "revolutionisme",
+ "email": "revolutionisme@gmail.com"
+ },
+ "record": {
+ "TXT": "96bdd0268b2a0bb2c79eaeae1fd833"
+ }
+}
diff --git a/domains/_github-pages-challenge-roadblockeddev.roadblocked.json b/domains/_github-pages-challenge-roadblockeddev.roadblocked.json
new file mode 100644
index 000000000..18934564f
--- /dev/null
+++ b/domains/_github-pages-challenge-roadblockeddev.roadblocked.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "roadblockeddev",
+ "email": "roadblockeddevcontact@skiff.com"
+ },
+ "record": {
+ "TXT": "f255fd01482003b03f51e13141c132"
+ }
+}
diff --git a/domains/_github-pages-challenge-roktim32.gitninja.json b/domains/_github-pages-challenge-roktim32.gitninja.json
new file mode 100644
index 000000000..9c4b916a2
--- /dev/null
+++ b/domains/_github-pages-challenge-roktim32.gitninja.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "roktim32",
+ "email": "roktimsenapoty2@gmail.com"
+ },
+
+ "record": {
+ "TXT": "d6e6727362997465d332f12898ad6b"
+ }
+}
diff --git a/domains/_github-pages-challenge-roktim32.roktim.json b/domains/_github-pages-challenge-roktim32.roktim.json
new file mode 100644
index 000000000..94a7792a0
--- /dev/null
+++ b/domains/_github-pages-challenge-roktim32.roktim.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "roktim32",
+ "email": "roktimsenapoty2@gmail.com"
+ },
+
+ "record": {
+ "TXT": "9870d553eddd629da2c41de6add304"
+ }
+}
diff --git a/domains/_github-pages-challenge-roktim32.yourdad.json b/domains/_github-pages-challenge-roktim32.yourdad.json
new file mode 100644
index 000000000..ba5758f00
--- /dev/null
+++ b/domains/_github-pages-challenge-roktim32.yourdad.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "roktim32",
+ "email": "roktimsenapoty2@gmail.com"
+ },
+
+ "record": {
+ "TXT": "f2a400f4d62cba7fa18b6c288f38b1"
+ }
+}
diff --git a/domains/_github-pages-challenge-rubinskiy.bob.json b/domains/_github-pages-challenge-rubinskiy.bob.json
new file mode 100644
index 000000000..b4fe2a945
--- /dev/null
+++ b/domains/_github-pages-challenge-rubinskiy.bob.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Rubinskiy",
+ "discord": "rubinskiy#5258",
+ "email": "roebebin@gmail.com"
+ },
+ "record": {
+ "TXT": "c3cc9a1718038c0034ac2b6d16f69e"
+ }
+}
diff --git a/domains/_github-pages-challenge-rv178.rv178.json b/domains/_github-pages-challenge-rv178.rv178.json
new file mode 100644
index 000000000..6d75e0244
--- /dev/null
+++ b/domains/_github-pages-challenge-rv178.rv178.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "rv178",
+ "email": "idliyout@gmail.com"
+ },
+ "record": {
+ "TXT": "e90b3dc10573fa656898bbbf08108c"
+ }
+}
diff --git a/domains/_github-pages-challenge-rwithik.rwithik.json b/domains/_github-pages-challenge-rwithik.rwithik.json
new file mode 100644
index 000000000..5e6acfc84
--- /dev/null
+++ b/domains/_github-pages-challenge-rwithik.rwithik.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "rwithik",
+ "email": "rwithik@gmail.com"
+ },
+ "record": {
+ "TXT": "7a912f12f50a5cd49fc6148d672574"
+ }
+}
diff --git a/domains/_github-pages-challenge-sanchay9.sanchay.json b/domains/_github-pages-challenge-sanchay9.sanchay.json
new file mode 100644
index 000000000..02aa7cb59
--- /dev/null
+++ b/domains/_github-pages-challenge-sanchay9.sanchay.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sanchay9",
+ "email": "sanchaykumar9@gmail.com"
+ },
+ "record": {
+ "TXT": "25bca04982f50f307259901d6f7688"
+ }
+}
diff --git a/domains/_github-pages-challenge-sebitalent04.sebitalent04.json b/domains/_github-pages-challenge-sebitalent04.sebitalent04.json
new file mode 100644
index 000000000..751ba793f
--- /dev/null
+++ b/domains/_github-pages-challenge-sebitalent04.sebitalent04.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SebiTalent04",
+ "email": ""
+ },
+ "record": {
+ "TXT": "8139f556926b84918edeb68fa50b47"
+ }
+}
diff --git a/domains/_github-pages-challenge-sekharmalla.chandra.json b/domains/_github-pages-challenge-sekharmalla.chandra.json
new file mode 100644
index 000000000..ffeee5e5f
--- /dev/null
+++ b/domains/_github-pages-challenge-sekharmalla.chandra.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sekharmalla",
+ "email": "sekharmalla.vfx@gmail.com"
+ },
+ "record": {
+ "TXT": "11ecb44a01a667c78ba76d704d9fc5"
+ }
+}
diff --git a/domains/_github-pages-challenge-seriaati.seria.json b/domains/_github-pages-challenge-seriaati.seria.json
new file mode 100644
index 000000000..4755dc59d
--- /dev/null
+++ b/domains/_github-pages-challenge-seriaati.seria.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "seriaati",
+ "email": "seria.ati@gmail.com"
+ },
+ "record": {
+ "TXT": "2b63f16e0af54ee011fd27e02091a0"
+ }
+}
diff --git a/domains/_github-pages-challenge-sharkaboi.sarath.json b/domains/_github-pages-challenge-sharkaboi.sarath.json
new file mode 100644
index 000000000..cec9443d4
--- /dev/null
+++ b/domains/_github-pages-challenge-sharkaboi.sarath.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Sharkaboi",
+ "email": "sarathsedu@gmail.com"
+ },
+ "record": {
+ "TXT": "9cc661fc83c313e055250b32fedfac"
+ }
+}
diff --git a/domains/_github-pages-challenge-shaunak-pandya.shaunak.json b/domains/_github-pages-challenge-shaunak-pandya.shaunak.json
new file mode 100644
index 000000000..8880d0515
--- /dev/null
+++ b/domains/_github-pages-challenge-shaunak-pandya.shaunak.json
@@ -0,0 +1,10 @@
+{
+ "description": "Verification for shaunak.is-a.dev",
+ "owner": {
+ "username": "Shaunak-Pandya",
+ "email": "shaunak.n.pandya@gmail.com"
+ },
+ "record": {
+ "TXT": "c5b15a4e5d620c286cd1a5dd937560"
+ }
+}
\ No newline at end of file
diff --git a/domains/_github-pages-challenge-shays24.shays.json b/domains/_github-pages-challenge-shays24.shays.json
new file mode 100644
index 000000000..13e1d9a4a
--- /dev/null
+++ b/domains/_github-pages-challenge-shays24.shays.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SHays24",
+ "email": "shays24@student.sacs.nsw.edu.au"
+ },
+ "record": {
+ "TXT": "16d1b82e4e76d05a0301fbf7a80f9b"
+ }
+}
diff --git a/domains/_github-pages-challenge-shinyzenith.aakash.json b/domains/_github-pages-challenge-shinyzenith.aakash.json
new file mode 100644
index 000000000..d014fec6f
--- /dev/null
+++ b/domains/_github-pages-challenge-shinyzenith.aakash.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Shinyzenith",
+ "email": "aakashsensharma@gmail.com"
+ },
+ "record": {
+ "TXT": "6f217d98c6a92f084c092bab59d8b1"
+ }
+}
diff --git a/domains/_github-pages-challenge-shreyas-itb.shreyasitb.json b/domains/_github-pages-challenge-shreyas-itb.shreyasitb.json
new file mode 100644
index 000000000..fecff0dae
--- /dev/null
+++ b/domains/_github-pages-challenge-shreyas-itb.shreyasitb.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal site for github@Shreyas-ITB (GH Pages verification)",
+ "repo": "https://github.com/Shreyas-ITB/Portfolio",
+ "owner": {
+ "username": "Shreyas-ITB",
+ "email": "shreyasbrillint@gmail.com"
+ },
+ "record": {
+ "TXT": "737cf4521bb4d1c2a7530ce67a8304"
+ }
+}
diff --git a/domains/_github-pages-challenge-skandabhairava.terroid.json b/domains/_github-pages-challenge-skandabhairava.terroid.json
new file mode 100644
index 000000000..09fdebe82
--- /dev/null
+++ b/domains/_github-pages-challenge-skandabhairava.terroid.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "skandabhairava",
+ "email": "skandabhairava@gmail.com"
+ },
+ "record": {
+ "TXT": "73004005801e8467de8a643a7c1cf8"
+ }
+}
diff --git a/domains/_github-pages-challenge-sohrubh.saurabh.json b/domains/_github-pages-challenge-sohrubh.saurabh.json
new file mode 100644
index 000000000..83dd2b1bf
--- /dev/null
+++ b/domains/_github-pages-challenge-sohrubh.saurabh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sohrubh",
+ "email": "saurabhyadav5931@gmail.com"
+ },
+ "record": {
+ "TXT": "0c51849fbc5921380ddc445251597b"
+ }
+}
\ No newline at end of file
diff --git a/domains/_github-pages-challenge-spaxly.spaxly.json b/domains/_github-pages-challenge-spaxly.spaxly.json
new file mode 100644
index 000000000..cf7bc9338
--- /dev/null
+++ b/domains/_github-pages-challenge-spaxly.spaxly.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Spaxly",
+ "email": "ohmrc2545@gmail.com"
+ },
+ "record": {
+ "TXT": "94c657ca404ce17483065583db2e61"
+ }
+}
diff --git a/domains/_github-pages-challenge-stardust-kyun.star.json b/domains/_github-pages-challenge-stardust-kyun.star.json
new file mode 100644
index 000000000..f7526d18c
--- /dev/null
+++ b/domains/_github-pages-challenge-stardust-kyun.star.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "stardust-kyun",
+ "email": "stardust-kyun@proton.me"
+ },
+ "record": {
+ "TXT": "714f8a049247726086dbea6777c092"
+ }
+}
diff --git a/domains/_github-pages-challenge-stef-00012.stefdp.json b/domains/_github-pages-challenge-stef-00012.stefdp.json
new file mode 100644
index 000000000..2d58c7dd3
--- /dev/null
+++ b/domains/_github-pages-challenge-stef-00012.stefdp.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Stef-00012",
+ "email": "stefano.delprete.08@gmail.com"
+ },
+ "record": {
+ "TXT": "27c2dc9cd3e8a0a37947e82ab6f637"
+ }
+}
diff --git a/domains/_github-pages-challenge-studiousgamer.natya.json b/domains/_github-pages-challenge-studiousgamer.natya.json
new file mode 100644
index 000000000..f10969e60
--- /dev/null
+++ b/domains/_github-pages-challenge-studiousgamer.natya.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "studiousgamer",
+ "email": "natyavidhanbiswas10@gmail.com"
+ },
+ "record": {
+ "TXT": "4bab75757c1cd0f3fc332eadf5e1a9"
+ }
+}
diff --git a/domains/_github-pages-challenge-suhasdissa.suhasdissa.json b/domains/_github-pages-challenge-suhasdissa.suhasdissa.json
new file mode 100644
index 000000000..612e5e22d
--- /dev/null
+++ b/domains/_github-pages-challenge-suhasdissa.suhasdissa.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SuhasDissa",
+ "email": "suhasdissa@gmail.com"
+ },
+ "record": {
+ "TXT": "50e98ca19e56d314f4ab5b37d19d4b"
+ }
+}
diff --git a/domains/_github-pages-challenge-syahiramali.syahiramali.json b/domains/_github-pages-challenge-syahiramali.syahiramali.json
new file mode 100644
index 000000000..1742811f9
--- /dev/null
+++ b/domains/_github-pages-challenge-syahiramali.syahiramali.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "syahirAmali",
+ "email": "syahirAmali@gmail.com"
+ },
+ "record": {
+ "TXT": "f6c381205b87390aaf3c1eaebc9023"
+ }
+}
diff --git a/domains/_github-pages-challenge-t-dynamos.anshdadwal.json b/domains/_github-pages-challenge-t-dynamos.anshdadwal.json
new file mode 100644
index 000000000..6421e5ab6
--- /dev/null
+++ b/domains/_github-pages-challenge-t-dynamos.anshdadwal.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "T-Dynamos",
+ "email": "anshdadwal298@gmail.com"
+ },
+ "record": {
+ "TXT": "75957defcd9e7e37ed359579a7dc2b"
+ }
+}
diff --git a/domains/_github-pages-challenge-takase1121.takase.json b/domains/_github-pages-challenge-takase1121.takase.json
new file mode 100644
index 000000000..dcac94657
--- /dev/null
+++ b/domains/_github-pages-challenge-takase1121.takase.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "takase1121",
+ "email": "takase1121@proton.me"
+ },
+ "record": {
+ "TXT": "f735d72a61c58977384c6f13305387"
+ }
+}
diff --git a/domains/_github-pages-challenge-talinthedev.talinsharma.json b/domains/_github-pages-challenge-talinthedev.talinsharma.json
new file mode 100644
index 000000000..7c4ba84c9
--- /dev/null
+++ b/domains/_github-pages-challenge-talinthedev.talinsharma.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "TalinTheDev",
+ "email": "talinsharma.dev@gmail.com"
+ },
+ "record": {
+ "TXT": "2f1f6ebe67567dd216878b0619f465"
+ }
+}
diff --git a/domains/_github-pages-challenge-tclement0922.tclement0922.json b/domains/_github-pages-challenge-tclement0922.tclement0922.json
new file mode 100644
index 000000000..cc5b7e8d7
--- /dev/null
+++ b/domains/_github-pages-challenge-tclement0922.tclement0922.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tclement0922",
+ "email": "thibault.clement09@gmail.com"
+ },
+ "record": {
+ "TXT": "9e402ea7933ed1c8da4935e5454fac"
+ }
+}
diff --git a/domains/_github-pages-challenge-technohacker.technohacker.json b/domains/_github-pages-challenge-technohacker.technohacker.json
new file mode 100644
index 000000000..69a98ffad
--- /dev/null
+++ b/domains/_github-pages-challenge-technohacker.technohacker.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Technohacker",
+ "email": "technohacker1995@gmail.com"
+ },
+ "record": {
+ "TXT": "5ad5e489ef3611f4d9a1b21f248218"
+ }
+}
diff --git a/domains/_github-pages-challenge-techpixel.tech.json b/domains/_github-pages-challenge-techpixel.tech.json
new file mode 100644
index 000000000..7b66f9344
--- /dev/null
+++ b/domains/_github-pages-challenge-techpixel.tech.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "techpixel",
+ "email": "manitejb@outlook.com"
+ },
+ "record": {
+ "TXT": "123a1eec949122d5708325108c81b2"
+ }
+}
diff --git a/domains/_github-pages-challenge-testbot-github.mathiscool.json b/domains/_github-pages-challenge-testbot-github.mathiscool.json
new file mode 100644
index 000000000..4c744e650
--- /dev/null
+++ b/domains/_github-pages-challenge-testbot-github.mathiscool.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "testbot-github",
+ "email": "songboosterz.yt@gmail.com"
+ },
+ "record": {
+ "TXT": "9c350d66193d49dec4cb05b15d387b"
+ }
+}
diff --git a/domains/_github-pages-challenge-thehackerdude1083.thehackerdude1083.json b/domains/_github-pages-challenge-thehackerdude1083.thehackerdude1083.json
new file mode 100644
index 000000000..dc913c8db
--- /dev/null
+++ b/domains/_github-pages-challenge-thehackerdude1083.thehackerdude1083.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "TheHackerDude1083",
+ "email": "shaheeransari57@gmail.com"
+ },
+ "record": {
+ "TXT": "66bceec5d092b15c1fcac188b02903"
+ }
+}
diff --git a/domains/_github-pages-challenge-thehatkid.hatkid.json b/domains/_github-pages-challenge-thehatkid.hatkid.json
new file mode 100644
index 000000000..30f3eabd4
--- /dev/null
+++ b/domains/_github-pages-challenge-thehatkid.hatkid.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "thehatkid",
+ "email": "saha22023@gmail.com"
+ },
+ "record": {
+ "TXT": "20405c421d70798fcddcbe0bb3d06d"
+ }
+}
diff --git a/domains/_github-pages-challenge-thesanju.thesanju.json b/domains/_github-pages-challenge-thesanju.thesanju.json
new file mode 100644
index 000000000..505e1b7fe
--- /dev/null
+++ b/domains/_github-pages-challenge-thesanju.thesanju.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "thesanju",
+ "email": "sanjayjr1official@gmail.com"
+ },
+ "record": {
+ "TXT": "1ef563891d9e0572cd59f4a3e80b42"
+ }
+}
diff --git a/domains/_github-pages-challenge-thesct22.sharath.json b/domains/_github-pages-challenge-thesct22.sharath.json
new file mode 100644
index 000000000..e178a474c
--- /dev/null
+++ b/domains/_github-pages-challenge-thesct22.sharath.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "thesct22",
+ "email": "sharathct22@gmail.com"
+ },
+ "record": {
+ "TXT": "1cfa8b70882ea9cdf466e7b40dbe81"
+ }
+}
diff --git a/domains/_github-pages-challenge-thisisthamizh.thamizh.json b/domains/_github-pages-challenge-thisisthamizh.thamizh.json
new file mode 100644
index 000000000..b6aa6a5d1
--- /dev/null
+++ b/domains/_github-pages-challenge-thisisthamizh.thamizh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ThisisThamizh",
+ "email": "venthank88@gmail.com"
+ },
+ "record": {
+ "TXT": "55f7385e475bf5148e262bf6a07289"
+ }
+}
diff --git a/domains/_github-pages-challenge-thou-mayest.amine-brahmi.json b/domains/_github-pages-challenge-thou-mayest.amine-brahmi.json
new file mode 100644
index 000000000..32b401538
--- /dev/null
+++ b/domains/_github-pages-challenge-thou-mayest.amine-brahmi.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "thou-mayest",
+ "email": "",
+ "twitter": "Dr_whoami_"
+ },
+ "record": {
+ "TXT": "8c76c4245faa447e805828e24f3743"
+ }
+}
diff --git a/domains/_github-pages-challenge-thunder-coding.cd.json b/domains/_github-pages-challenge-thunder-coding.cd.json
new file mode 100644
index 000000000..0997b0279
--- /dev/null
+++ b/domains/_github-pages-challenge-thunder-coding.cd.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "thunder-coding",
+ "email": "yakshbari4@gmail.com",
+ "discord": "codingthunder"
+ },
+ "record": {
+ "TXT": "f56bab0740238435ae2bfe3a7d9283"
+ }
+}
diff --git a/domains/_github-pages-challenge-toxocious.toxocious.json b/domains/_github-pages-challenge-toxocious.toxocious.json
new file mode 100644
index 000000000..dd3b2619e
--- /dev/null
+++ b/domains/_github-pages-challenge-toxocious.toxocious.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "toxocious",
+ "email": "toxocious@gmail.com"
+ },
+ "record": {
+ "TXT": "d6440f69b31a9769f46475a3bfd91a"
+ }
+}
diff --git a/domains/_github-pages-challenge-turquoisetnt.tnt.json b/domains/_github-pages-challenge-turquoisetnt.tnt.json
index 55bcde6f9..97919665f 100644
--- a/domains/_github-pages-challenge-turquoisetnt.tnt.json
+++ b/domains/_github-pages-challenge-turquoisetnt.tnt.json
@@ -1,11 +1,9 @@
-
- {
- "owner": {
+{
+ "owner": {
"username": "TurquoiseTNT",
"email": "turquoisetntmultimedia@gmail.com"
- },
- "record": {
+ },
+ "record": {
"TXT": "a70919bec5e292800f53b8bd87da03"
- }
}
-
+}
diff --git a/domains/_github-pages-challenge-turvenuija1.turvenuija.json b/domains/_github-pages-challenge-turvenuija1.turvenuija.json
new file mode 100644
index 000000000..59cca99da
--- /dev/null
+++ b/domains/_github-pages-challenge-turvenuija1.turvenuija.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "turvenuija1",
+ "email": "4209@lattahattu.fi"
+ },
+ "record": {
+ "TXT": "91c902200720c9032d320f25ae736c"
+ }
+}
diff --git a/domains/_github-pages-challenge-vachanmn123.vachanmn.json b/domains/_github-pages-challenge-vachanmn123.vachanmn.json
new file mode 100644
index 000000000..3984c1d87
--- /dev/null
+++ b/domains/_github-pages-challenge-vachanmn123.vachanmn.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vachanmn123",
+ "email": "vachanmn123@gmail.com"
+ },
+ "record": {
+ "TXT": "c8d038d8f44978beb4910c6c425cc8"
+ }
+}
diff --git a/domains/_github-pages-challenge-vasilismylonas.vasilismylonas.json b/domains/_github-pages-challenge-vasilismylonas.vasilismylonas.json
new file mode 100644
index 000000000..9030562df
--- /dev/null
+++ b/domains/_github-pages-challenge-vasilismylonas.vasilismylonas.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "VasilisMylonas",
+ "email": "vasilismylonas@protonmail.com"
+ },
+ "record": {
+ "TXT": "2d79d108f14d2a9587952c4682b285"
+ }
+}
diff --git a/domains/_github-pages-challenge-vikramv20.vikramv20.json b/domains/_github-pages-challenge-vikramv20.vikramv20.json
new file mode 100644
index 000000000..5452fc57d
--- /dev/null
+++ b/domains/_github-pages-challenge-vikramv20.vikramv20.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vikramv20",
+ "email": "vs423502@gmail.com"
+ },
+ "record": {
+ "TXT": "14810aa9ee3adf44431d8a64abc84a"
+ }
+}
diff --git a/domains/_github-pages-challenge-vivek-oraon.vivek.json b/domains/_github-pages-challenge-vivek-oraon.vivek.json
new file mode 100644
index 000000000..af7fe02fc
--- /dev/null
+++ b/domains/_github-pages-challenge-vivek-oraon.vivek.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vivek-oraon",
+ "email": "vivekoraon@pm.me"
+ },
+ "record": {
+ "TXT": "99d887f6958e3be7f2e1972d9ec212"
+ }
+}
diff --git a/domains/_github-pages-challenge-vj-abishek.abishek.json b/domains/_github-pages-challenge-vj-abishek.abishek.json
new file mode 100644
index 000000000..7a4e5fed6
--- /dev/null
+++ b/domains/_github-pages-challenge-vj-abishek.abishek.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vj-abishek",
+ "email": "abigosearch@gmail.com"
+ },
+ "record": {
+ "TXT": "fe9c9b544613d7bf05295ad995cbaa"
+ }
+}
diff --git a/domains/_github-pages-challenge-vncsmnl.vinicius.json b/domains/_github-pages-challenge-vncsmnl.vinicius.json
new file mode 100644
index 000000000..e40943839
--- /dev/null
+++ b/domains/_github-pages-challenge-vncsmnl.vinicius.json
@@ -0,0 +1,13 @@
+{
+ "description": "My personal website",
+ "repo": "https://github.com/vncsmnl",
+ "owner": {
+ "username": "vncsmnl",
+ "email": "",
+ "twitter": "vncsmnl",
+ "discord": "vncsmnl#7835"
+ },
+ "record": {
+ "TXT": "1bb7647bdc766f138d036f6fdbd2e6"
+ }
+}
diff --git a/domains/_github-pages-challenge-vyshuks.vysakh.json b/domains/_github-pages-challenge-vyshuks.vysakh.json
new file mode 100644
index 000000000..c90ab14b0
--- /dev/null
+++ b/domains/_github-pages-challenge-vyshuks.vysakh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vyshuks",
+ "email": "vyshuks@gmail.com"
+ },
+ "record": {
+ "TXT": "0cb8ba615b779ff95bfe738257a888"
+ }
+}
diff --git a/domains/_github-pages-challenge-wdhdev.data.json b/domains/_github-pages-challenge-wdhdev.data.json
index 274f5bd67..36d8e3f0a 100644
--- a/domains/_github-pages-challenge-wdhdev.data.json
+++ b/domains/_github-pages-challenge-wdhdev.data.json
@@ -1,7 +1,7 @@
{
"owner": {
- "username": "WilliamDavidHarrison",
- "email": "william@williamharrison.dev"
+ "username": "is-a-dev",
+ "email": "phenax5@gmail.com"
},
"record": {
diff --git a/domains/_github-pages-challenge-wdhdev.raw-api.json b/domains/_github-pages-challenge-wdhdev.raw-api.json
index 261a097c6..0aeb7a4cf 100644
--- a/domains/_github-pages-challenge-wdhdev.raw-api.json
+++ b/domains/_github-pages-challenge-wdhdev.raw-api.json
@@ -1,7 +1,7 @@
{
"owner": {
- "username": "WilliamDavidHarrison",
- "email": "william@williamharrison.dev"
+ "username": "is-a-dev",
+ "email": "phenax5@gmail.com"
},
"record": {
diff --git a/domains/_github-pages-challenge-window5000.window5.json b/domains/_github-pages-challenge-window5000.window5.json
new file mode 100644
index 000000000..f59ec13f1
--- /dev/null
+++ b/domains/_github-pages-challenge-window5000.window5.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Window5000",
+ "email": "spam.window5.spam@gmail.com"
+ },
+ "record": {
+ "TXT": "e0f44964a7e707b4d78755bb66b3e4"
+ }
+}
diff --git a/domains/_github-pages-challenge-xxtgamerxx.brin.json b/domains/_github-pages-challenge-xxtgamerxx.brin.json
new file mode 100644
index 000000000..140438a05
--- /dev/null
+++ b/domains/_github-pages-challenge-xxtgamerxx.brin.json
@@ -0,0 +1,10 @@
+{
+ "description": "Github verification",
+ "owner": {
+ "username": "xXTgamerXx",
+ "email": "trin.n2848@gmail.com"
+ },
+ "record": {
+ "TXT": "5b311a39ce20cd583c17d400434929"
+ }
+}
diff --git a/domains/_github-pages-challenge-yorodm.yorodm.json b/domains/_github-pages-challenge-yorodm.yorodm.json
new file mode 100644
index 000000000..6a24ccb0c
--- /dev/null
+++ b/domains/_github-pages-challenge-yorodm.yorodm.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "yorodm",
+ "email": "yoandy.rmartinez@gmail.com"
+ },
+ "record": {
+ "TXT": "4e4101d7a9a7606d96f9757829a24d"
+ }
+}
diff --git a/domains/_github-pages-challenge-yourtilak.tilak.json b/domains/_github-pages-challenge-yourtilak.tilak.json
new file mode 100644
index 000000000..704fc54cf
--- /dev/null
+++ b/domains/_github-pages-challenge-yourtilak.tilak.json
@@ -0,0 +1,11 @@
+{
+ "description": "YourTilak.is-a.dev",
+ "repo": "https://github.com/YourTilak/YourTilak.github.io",
+ "owner": {
+ "username": "YourTilak",
+ "email": "rj05tilak@gmail.com"
+ },
+ "record": {
+ "TXT": "c599b4c1ad1e049f9a34ab0534ede8"
+ }
+}
diff --git a/domains/_github-pages-challenge-zyrouge.zyrouge.json b/domains/_github-pages-challenge-zyrouge.zyrouge.json
new file mode 100644
index 000000000..030687aed
--- /dev/null
+++ b/domains/_github-pages-challenge-zyrouge.zyrouge.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "zyrouge",
+ "email": "zyrouge@hotmail.com",
+ "twitter": "_zyrouge_"
+ },
+ "record": {
+ "TXT": "dde2728dbadb035a4ffeda6f696112"
+ }
+}
diff --git a/domains/aaamineee.json b/domains/aaamineee.json
deleted file mode 100644
index cbe0257df..000000000
--- a/domains/aaamineee.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "aaaminee",
- "email": "amineoumellouk@yahoo.com"
- },
- "record": {
- "URL": "https://aaaminee.github.io"
- }
-}
diff --git a/domains/aadi.json b/domains/aadi.json
index d07a533bc..87147f0ea 100644
--- a/domains/aadi.json
+++ b/domains/aadi.json
@@ -8,4 +8,4 @@
"record": {
"CNAME": "ringholder.github.io"
}
-}
+}
diff --git a/domains/aakash.json b/domains/aakash.json
index f81775eca..3c0c2c0ad 100644
--- a/domains/aakash.json
+++ b/domains/aakash.json
@@ -1,4 +1,5 @@
{
+ "repo": "https://github.com/shinyzenith/website",
"owner": {
"username": "Shinyzenith",
"email": "aakashsensharma@gmail.com"
diff --git a/domains/aakrisht.json b/domains/aakrisht.json
new file mode 100644
index 000000000..9712a5ffe
--- /dev/null
+++ b/domains/aakrisht.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AakrishtSP",
+ "email": "akrisht62@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/aantarip.json b/domains/aantarip.json
new file mode 100644
index 000000000..6c6f29227
--- /dev/null
+++ b/domains/aantarip.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "antoripdas",
+ "email": "aantaripdas@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/aaron.json b/domains/aaron.json
new file mode 100644
index 000000000..03a7c8804
--- /dev/null
+++ b/domains/aaron.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "gbgdonttalk",
+ "email": "d1qtwmsmdga@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/aaryan.json b/domains/aaryan.json
deleted file mode 100644
index 596c625f3..000000000
--- a/domains/aaryan.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Aaryan's personal website!",
- "repo": "https://github.com/aaryanporwal/My-website",
- "owner": {
- "username": "aaryanporwal",
- "email": "altaaryan@gmail.com"
- },
- "record": {
- "URL": "https://www.aaryanporwal.me"
- }
-}
diff --git a/domains/abdeljallil.json b/domains/abdeljallil.json
new file mode 100644
index 000000000..e709988a8
--- /dev/null
+++ b/domains/abdeljallil.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AleaToir3",
+ "email": "aleatoir3@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/abdullohalimov.json b/domains/abdullohalimov.json
new file mode 100644
index 000000000..ee61db0a4
--- /dev/null
+++ b/domains/abdullohalimov.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "abdullohalimov",
+ "email": "raistlinmajere10@gmail.com"
+ },
+ "record": {
+ "A": ["91.200.84.14"]
+ }
+}
diff --git a/domains/abegehr.json b/domains/abegehr.json
index f6a99ac85..1aaa3b06c 100644
--- a/domains/abegehr.json
+++ b/domains/abegehr.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "abegehr.github.io"
}
-}
+}
diff --git a/domains/abhijit.json b/domains/abhijit.json
new file mode 100644
index 000000000..d26b45d0e
--- /dev/null
+++ b/domains/abhijit.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "FIRSTB0SS",
+ "email": "abhiwa6@protonmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/abhinav.json b/domains/abhinav.json
new file mode 100644
index 000000000..92a55747a
--- /dev/null
+++ b/domains/abhinav.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "abhinavcool42",
+ "email": "abhinavcool42@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/abhishekpanda.json b/domains/abhishekpanda.json
new file mode 100644
index 000000000..d9f28916f
--- /dev/null
+++ b/domains/abhishekpanda.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "goesbyabhi",
+ "email": "abxisxekpanda@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/abhishekpb.json b/domains/abhishekpb.json
new file mode 100644
index 000000000..0cf904664
--- /dev/null
+++ b/domains/abhishekpb.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "abhishek-pb1",
+ "email": "studentabhishekpb@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/acey.json b/domains/acey.json
index 529e805ba..39b36cb1a 100644
--- a/domains/acey.json
+++ b/domains/acey.json
@@ -1,12 +1,9 @@
{
- "repo": "https://github.com/AceyDoCodes",
- "description": "Email ;-;",
"owner": {
"username": "AceyDoCodes",
"email": "aceygoesboom@gmail.com"
},
"record": {
- "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ "URL": "https://github.com/AceyDoCodes"
}
}
diff --git a/domains/activate.json b/domains/activate.json
new file mode 100644
index 000000000..a88e7a643
--- /dev/null
+++ b/domains/activate.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ActivateClosur3",
+ "email": "activateclosureyt@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
diff --git a/domains/acto.json b/domains/acto.json
new file mode 100644
index 000000000..7322387dc
--- /dev/null
+++ b/domains/acto.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "waitwhatActo",
+ "email": "acton.clever@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/adarsh-a-inamdar.json b/domains/adarsh-a-inamdar.json
new file mode 100644
index 000000000..72637a9e4
--- /dev/null
+++ b/domains/adarsh-a-inamdar.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Adarsh-Inamdar",
+ "email": "adarshinamdar2003@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
diff --git a/domains/adarsh.json b/domains/adarsh.json
index 5c18f12bb..e77137895 100644
--- a/domains/adarsh.json
+++ b/domains/adarsh.json
@@ -1,12 +1,9 @@
{
- "description": "For my portfolio website made by using HTML + CSS and JS",
- "repo": "https://github.com/clumzyofficial/clumzyofficial.github.io",
"owner": {
"username": "clumzyofficial",
- "email": "clumzyofficial@gmail.com",
- "twitter": "binaryadarsh"
+ "email": "adarshshukla0344@gmail.com"
},
"record": {
"CNAME": "clumzyofficial.github.io"
}
-}
+}
diff --git a/domains/aditya-awasthi.json b/domains/aditya-awasthi.json
new file mode 100644
index 000000000..01e7a379b
--- /dev/null
+++ b/domains/aditya-awasthi.json
@@ -0,0 +1,11 @@
+{
+ "description": "This is my personal portfolio website",
+ "repo": "https://github.com/Adityyaaa/adityyaaa.github.io",
+ "owner": {
+ "username": "Adityyaaa",
+ "email": "aditya.awasthi612@gmail.com"
+ },
+ "record": {
+ "CNAME": "adityyaaa.github.io"
+ }
+}
diff --git a/domains/aditya.json b/domains/aditya.json
index cb5889409..36eb0ce3d 100644
--- a/domains/aditya.json
+++ b/domains/aditya.json
@@ -1,12 +1,13 @@
{
- "description": "My Personal Landing Page!",
- "repo": "https://github.com/adityaasyadav/aditya",
- "owner": {
- "username": "adityaasyadav",
- "email": "ishqaddy@gmail.com",
- "twitter": "adityaasyadav"
- },
- "record": {
- "CNAME": "adityaasyadav.github.io"
- }
-}
+ "description": "my personal homepage",
+ "repo": "https://github.com/dedomil",
+ "owner": {
+ "username": "dedomil",
+ "email": "ishqaddy@gmail.com",
+ "twitter": "aadixl",
+ "discord": "dedomil"
+ },
+ "record": {
+ "CNAME": "dedomil.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/adityabh.json b/domains/adityabh.json
new file mode 100644
index 000000000..22cfc4c44
--- /dev/null
+++ b/domains/adityabh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AdityaBhattacharya1",
+ "email": "ec6isyf0@anonaddy.me"
+ },
+ "record": {
+ "CNAME": "adityabhattacharya1.github.io"
+ }
+}
diff --git a/domains/adityabhattacharya.json b/domains/adityabhattacharya.json
new file mode 100644
index 000000000..ccc0759c1
--- /dev/null
+++ b/domains/adityabhattacharya.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AdityaBhattacharya1",
+ "email": "utoprocess@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/adityakotha.json b/domains/adityakotha.json
new file mode 100644
index 000000000..16614ccc8
--- /dev/null
+++ b/domains/adityakotha.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "adityakotha2001",
+ "email": "adityakotha2001@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/adiy.json b/domains/adiy.json
new file mode 100644
index 000000000..095ab4c57
--- /dev/null
+++ b/domains/adiy.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "adiyadav123",
+ "email": "ramanandyadav7650@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/adnan.json b/domains/adnan.json
new file mode 100644
index 000000000..3cc9b43b5
--- /dev/null
+++ b/domains/adnan.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Adnan0131",
+ "email": "sonuadnan6@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "adnan0131.github.io"
+ }
+}
diff --git a/domains/afp.json b/domains/afp.json
index e9b9c21db..ca40eafd9 100644
--- a/domains/afp.json
+++ b/domains/afp.json
@@ -1,11 +1,11 @@
-{
- "owner": {
- "username": "AndreasFxPro",
- "email": "",
- "discord": "AndreasFxPro#9330"
- },
- "description": "this is-a.dev page is for me, i'll post my projects",
- "record": {
- "A": ["140.238.175.208"]
- }
-}
+{
+ "owner": {
+ "username": "AndreasFxPro",
+ "email": "",
+ "discord": "AndreasFxPro#9330"
+ },
+ "description": "this is-a.dev page is for me, i'll post my projects",
+ "record": {
+ "A": ["140.238.175.208"]
+ }
+}
diff --git a/domains/afton.json b/domains/afton.json
index 9e2fec6c8..4ec7acdc6 100644
--- a/domains/afton.json
+++ b/domains/afton.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "williamafton-codes.github.io"
}
-}
+}
diff --git a/domains/agamjot-singh.json b/domains/agamjot-singh.json
index c152dcbfb..3a18e21b3 100644
--- a/domains/agamjot-singh.json
+++ b/domains/agamjot-singh.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "agamjotsingh18.github.io"
}
-}
+}
diff --git a/domains/ahmad-muhajir.json b/domains/ahmad-muhajir.json
new file mode 100644
index 000000000..fd270c337
--- /dev/null
+++ b/domains/ahmad-muhajir.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Portfolio",
+ "repo": "https://github.com/JeremyJFN71/JeremyJFN71.github.io",
+ "owner": {
+ "username": "JeremyJFN71",
+ "email": "jeremyjeferson71@gmail.com"
+ },
+ "record": {
+ "CNAME": "JeremyJFN71.github.io"
+ }
+}
diff --git a/domains/ahuja-m.json b/domains/ahuja-m.json
index 9c030d54f..a21f5cb83 100644
--- a/domains/ahuja-m.json
+++ b/domains/ahuja-m.json
@@ -1,11 +1,11 @@
{
- "description": "This is a user",
- "repo": "https://github.com/ahuja-m/ahuja-m.github.io",
- "owner": {
- "username": "ahuja-m",
- "email": ""
- },
- "record": {
- "CNAME": "ahuja-m.github.io"
- }
+ "description": "This is a user",
+ "repo": "https://github.com/ahuja-m/ahuja-m.github.io",
+ "owner": {
+ "username": "ahuja-m",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "ahuja-m.github.io"
+ }
}
diff --git a/domains/aidan.json b/domains/aidan.json
new file mode 100644
index 000000000..440354659
--- /dev/null
+++ b/domains/aidan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AidanTheJsDev",
+ "email": "24aidanwhite@usd266.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/aikoo7.json b/domains/aikoo7.json
new file mode 100644
index 000000000..b1f682a22
--- /dev/null
+++ b/domains/aikoo7.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "aikooo7",
+ "email": "prozinhopro1973@gmail.com"
+ },
+ "record": {
+ "CNAME": "aikooo7.github.io"
+ }
+}
diff --git a/domains/akash.json b/domains/akash.json
new file mode 100644
index 000000000..93efbb43e
--- /dev/null
+++ b/domains/akash.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "SquareSmp",
+ "email": "squaresmp@asia.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/akpi.json b/domains/akpi.json
new file mode 100644
index 000000000..0790a324e
--- /dev/null
+++ b/domains/akpi.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "akpi816218",
+ "email": "",
+ "discord": "equus_quagga"
+ },
+ "record": {
+ "A": ["185.199.110.153", "185.199.108.153", "185.199.111.153", "185.199.109.153"],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/akshay.json b/domains/akshay.json
index 130700660..3d14f0680 100644
--- a/domains/akshay.json
+++ b/domains/akshay.json
@@ -6,6 +6,7 @@
"email": "phenax5@gmail.com"
},
"record": {
- "URL": "https://phenax.github.io"
+ "URL": "https://ediblemonad.dev",
+ "TXT": [ "Hello there!", "It's me, Akshay" ]
}
}
diff --git a/domains/akshayashok.json b/domains/akshayashok.json
new file mode 100644
index 000000000..8a125a296
--- /dev/null
+++ b/domains/akshayashok.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "akshy3",
+ "email": "akshayashok209@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/akuto.json b/domains/akuto.json
new file mode 100644
index 000000000..3267fe125
--- /dev/null
+++ b/domains/akuto.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "justdont0",
+ "email": "hello.and.ios@gmail.com"
+ },
+ "record": {
+ "CNAME": "akutosait.dsds6.repl.co"
+ }
+}
diff --git a/domains/akvityxs.json b/domains/akvityxs.json
new file mode 100644
index 000000000..b4cb288ea
--- /dev/null
+++ b/domains/akvityxs.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Akvityxs",
+ "email": "akvityxs@gmail.com"
+ },
+ "record": {
+ "A": ["80.87.196.168"]
+ }
+}
diff --git a/domains/al-bagra.json b/domains/al-bagra.json
new file mode 100644
index 000000000..0f4444470
--- /dev/null
+++ b/domains/al-bagra.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "UtsaVy",
+ "email": "utsavk681@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "utsav.github.io"
+ }
+}
diff --git a/domains/albuman.json b/domains/albuman.json
new file mode 100644
index 000000000..9b04706fb
--- /dev/null
+++ b/domains/albuman.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AlbumanO",
+ "email": "oliver.young4@student.education.wa.edu.au"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
diff --git a/domains/alcex.json b/domains/alcex.json
new file mode 100644
index 000000000..201795d0e
--- /dev/null
+++ b/domains/alcex.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Alcexn",
+ "email": "alcexn@163.com"
+ },
+
+ "record": {
+ "A": ["76.223.126.88"]
+ }
+}
diff --git a/domains/alcyoneus.json b/domains/alcyoneus.json
new file mode 100644
index 000000000..04547dd69
--- /dev/null
+++ b/domains/alcyoneus.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "alcyoneuss",
+ "email": "datemage+xd1@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/aldenizenmc.json b/domains/aldenizenmc.json
index a6bc737e4..d6bf95472 100644
--- a/domains/aldenizenmc.json
+++ b/domains/aldenizenmc.json
@@ -2,10 +2,7 @@
"repo": "https://github.com/AldenizenMC/AldenizenMC.github.io",
"owner": {
"username": "AldenizenMC",
- "email": "",
- "discord": "AldenizenMC#1418",
- "twitter": "aldenizenmc",
- "note": "I am never online on twitter, message me on Discord instead. In case my discriminator changes, my user id is 529424782438170679"
+ "email": "aldenizen09@gmail.com"
},
"record": {
"CNAME": "AldenizenMC.github.io"
diff --git a/domains/ale1x.json b/domains/ale1x.json
index b1a9135d6..ddf69879b 100644
--- a/domains/ale1x.json
+++ b/domains/ale1x.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "Ale1x",
- "email": "info@ale1x.com"
- },
- "record": {
- "URL": "https://alee1x.repl.co"
- }
+ "owner": {
+ "username": "Ale1x",
+ "email": "info@ale1x.com"
+ },
+ "record": {
+ "URL": "https://alee1x.repl.co"
+ }
}
diff --git a/domains/alephdiallo.json b/domains/alephdiallo.json
new file mode 100644
index 000000000..8add0f2c9
--- /dev/null
+++ b/domains/alephdiallo.json
@@ -0,0 +1,15 @@
+{
+ "owner": {
+ "username": "alephdfilms",
+ "email": "alephdiallo@gmail.com",
+ "note": "This record was created by is-a.dev Discord bot via discord id: 427265238404956172"
+ },
+
+ "record": {
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
+
+ "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
+
+ "TXT": "forward-email=alephdiallo@mail.com"
+ }
+}
diff --git a/domains/alexanderzhx.json b/domains/alexanderzhx.json
new file mode 100644
index 000000000..0644e2692
--- /dev/null
+++ b/domains/alexanderzhx.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AZ777xx",
+ "email": "bugattiforever@gmail.com"
+ },
+ "record": {
+ "CNAME": "az777xx.github.io"
+ }
+}
diff --git a/domains/alexr.json b/domains/alexr.json
new file mode 100644
index 000000000..ca0678a85
--- /dev/null
+++ b/domains/alexr.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "4lexR",
+ "email": "amelia.R0se@proton.me"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/algoarchive.json b/domains/algoarchive.json
new file mode 100644
index 000000000..95ae15a2c
--- /dev/null
+++ b/domains/algoarchive.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "justdont0",
+ "email": "hello.and.ios@gmail.com",
+ "note": "This record was created by is-a.dev Discord bot via discord id: 981586348198735912"
+ },
+
+ "record": {
+ "CNAME": "698db1dc-bd48-452b-9497-4633804b4225.id.repl.co"
+
+ }
+}
diff --git a/domains/aliazhar.json b/domains/aliazhar.json
new file mode 100644
index 000000000..e12586e58
--- /dev/null
+++ b/domains/aliazhar.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "aliazhar0",
+ "email": "aliazhar1906@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/alkadhumi.json b/domains/alkadhumi.json
new file mode 100644
index 000000000..a075eca1e
--- /dev/null
+++ b/domains/alkadhumi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "alkadhumi",
+ "email": "alihassan7722@gmail.com"
+ },
+ "record": {
+ "URL": "https://alkadhumi.github.io"
+ }
+}
diff --git a/domains/allancoding.json b/domains/allancoding.json
new file mode 100644
index 000000000..c8fab571d
--- /dev/null
+++ b/domains/allancoding.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "allancoding",
+ "email": "allancoding.dev@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/almuqbel.json b/domains/almuqbel.json
new file mode 100644
index 000000000..0896bebd8
--- /dev/null
+++ b/domains/almuqbel.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AMAZINGMAN2",
+ "email": "Hashim.almuqbel@gmail.com"
+ },
+ "record": {
+ "A": ["185.176.43.100"]
+ }
+}
diff --git a/domains/aloo-bun.json b/domains/aloo-bun.json
new file mode 100644
index 000000000..0c0d212b1
--- /dev/null
+++ b/domains/aloo-bun.json
@@ -0,0 +1,11 @@
+{
+ "description": "Aloo Bun Website",
+ "repo": "https://github.com/AshC1ty/ashc1ty.github.io",
+ "owner": {
+ "username": "AshC1ty",
+ "email": "ashcity07734@gmail.com"
+ },
+ "record": {
+ "CNAME": "ashc1ty.github.io"
+ }
+}
diff --git a/domains/alpha.json b/domains/alpha.json
index 09b3944ac..b6ae67c40 100644
--- a/domains/alpha.json
+++ b/domains/alpha.json
@@ -1,10 +1,11 @@
{
- "description": "My Website",
"owner": {
- "username": "kvotrcsgo",
+ "username": "YouFoundAlpha",
"email": "sweepalf@gmail.com"
},
"record": {
- "CNAME": "youfoundalpha.pages.dev"
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/alphabet.json b/domains/alphabet.json
new file mode 100644
index 000000000..72cbedb30
--- /dev/null
+++ b/domains/alphabet.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Commandify",
+ "email": "commandify@gmail.com"
+ },
+
+ "record": {
+ "A": ["68.183.191.223"]
+ }
+}
diff --git a/domains/alphatest.json b/domains/alphatest.json
new file mode 100644
index 000000000..e8b88d53e
--- /dev/null
+++ b/domains/alphatest.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "YouFoundAlpha",
+ "email": "sweepalf@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
diff --git a/domains/amanthakur.json b/domains/amanthakur.json
new file mode 100644
index 000000000..0c9999f30
--- /dev/null
+++ b/domains/amanthakur.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "aman7thakurr",
+ "email": "amant8425@gmail.com",
+ "discord": "523813766295715851"
+ },
+
+ "record": {
+ "CNAME": "aman7thakurr.github.io"
+ }
+}
diff --git a/domains/amazing.devs.json b/domains/amazing.devs.json
new file mode 100644
index 000000000..c55b7045c
--- /dev/null
+++ b/domains/amazing.devs.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "GodfatherX64",
+ "email": "godfather.x64@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/amazing.json b/domains/amazing.json
new file mode 100644
index 000000000..c55b7045c
--- /dev/null
+++ b/domains/amazing.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "GodfatherX64",
+ "email": "godfather.x64@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/amazingdev.json b/domains/amazingdev.json
new file mode 100644
index 000000000..c55b7045c
--- /dev/null
+++ b/domains/amazingdev.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "GodfatherX64",
+ "email": "godfather.x64@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/amazingdevel.json b/domains/amazingdevel.json
new file mode 100644
index 000000000..c55b7045c
--- /dev/null
+++ b/domains/amazingdevel.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "GodfatherX64",
+ "email": "godfather.x64@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/amazingdevels.json b/domains/amazingdevels.json
new file mode 100644
index 000000000..c55b7045c
--- /dev/null
+++ b/domains/amazingdevels.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "GodfatherX64",
+ "email": "godfather.x64@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/amazingdevs.json b/domains/amazingdevs.json
new file mode 100644
index 000000000..c55b7045c
--- /dev/null
+++ b/domains/amazingdevs.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "GodfatherX64",
+ "email": "godfather.x64@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/amelia.json b/domains/amelia.json
new file mode 100644
index 000000000..ca0678a85
--- /dev/null
+++ b/domains/amelia.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "4lexR",
+ "email": "amelia.R0se@proton.me"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/amey.json b/domains/amey.json
new file mode 100644
index 000000000..3f23d09bb
--- /dev/null
+++ b/domains/amey.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "panditamey",
+ "email": "codewithamey@gmail.com"
+ },
+ "record": {
+ "CNAME": "panditamey.github.io"
+ }
+}
diff --git a/domains/ameysawant.json b/domains/ameysawant.json
new file mode 100644
index 000000000..42bab9e6d
--- /dev/null
+++ b/domains/ameysawant.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "amey1355",
+ "email": "assawant06@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
diff --git a/domains/amila.json b/domains/amila.json
new file mode 100644
index 000000000..5840d39b4
--- /dev/null
+++ b/domains/amila.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Y-AmilaNirmal",
+ "email": "yamilanirmal@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "y-amilanirmal.github.io"
+ }
+}
diff --git a/domains/amity.json b/domains/amity.json
new file mode 100644
index 000000000..27e397938
--- /dev/null
+++ b/domains/amity.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "winrg",
+ "email": "alyx@aleteoryx.me"
+ },
+ "record": {
+ "URL": "https://aleteoryx.me"
+ }
+}
diff --git a/domains/ammy.json b/domains/ammy.json
new file mode 100644
index 000000000..768ac3d8b
--- /dev/null
+++ b/domains/ammy.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "panditamey",
+ "email": "codewithamey@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/amulyasingh.json b/domains/amulyasingh.json
new file mode 100644
index 000000000..f91fc50e4
--- /dev/null
+++ b/domains/amulyasingh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AMULYASing",
+ "email": "amulyasingh370@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/amya.json b/domains/amya.json
new file mode 100644
index 000000000..768ac3d8b
--- /dev/null
+++ b/domains/amya.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "panditamey",
+ "email": "codewithamey@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/auth.json b/domains/analytics.json
similarity index 73%
rename from domains/auth.json
rename to domains/analytics.json
index b184c3293..df90b568a 100644
--- a/domains/auth.json
+++ b/domains/analytics.json
@@ -4,6 +4,6 @@
"email": "phenax5@gmail.com"
},
"record": {
- "A": ["199.36.158.100"]
+ "CNAME": "dns.beadman-network.com"
}
}
diff --git a/domains/ananth.json b/domains/ananth.json
new file mode 100644
index 000000000..4b3b51064
--- /dev/null
+++ b/domains/ananth.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal portfolio website",
+ "repo": "https://github.com/ANANTH-SWAMY/ananth-swamy.github.io",
+ "owner": {
+ "username": "ANANTH-SWAMY",
+ "email": "ananth.nps@gmail.com"
+ },
+ "record": {
+ "CNAME": "ananth-swamy.github.io"
+ }
+}
diff --git a/domains/andreat.json b/domains/andreat.json
new file mode 100644
index 000000000..75e29d02c
--- /dev/null
+++ b/domains/andreat.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "AToska21",
+ "email": "toskaandrea@gmail.com"
+ },
+ "record": {
+ "A": ["185.32.21.42"]
+ }
+}
diff --git a/domains/andrews22.json b/domains/andrews22.json
new file mode 100644
index 000000000..4dd4aa718
--- /dev/null
+++ b/domains/andrews22.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "is-a-dev-bot",
+ "email": "is-a-dev@win11react.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/andrewstech.json b/domains/andrewstech.json
index 70591df6b..fb97d0eb3 100644
--- a/domains/andrewstech.json
+++ b/domains/andrewstech.json
@@ -1,12 +1,11 @@
{
- "description": "My Portfolio",
- "repo": "https://github.com/andrewstech/andrewstech",
"owner": {
"username": "andrewstech",
- "email": "hello@andrewstech.me",
- "twitter": "andrewstech1"
+ "email": "andrew@win11react.com"
},
"record": {
- "CNAME": "andrewstech.github.io"
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 mx a:mailx.is-a.dev ip4:217.174.245.249 ~all",
+ "MX": ["mailx.is-a.dev"]
}
}
diff --git a/domains/andrewtest.json b/domains/andrewtest.json
new file mode 100644
index 000000000..4becd0c6d
--- /dev/null
+++ b/domains/andrewtest.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "andrewstech",
+ "email": "is-a-dev@win11react.com"
+ },
+ "record": {
+ "CNAME": "hosts.is-a.dev"
+ }
+}
diff --git a/domains/andrewtest22.json b/domains/andrewtest22.json
new file mode 100644
index 000000000..4dd4aa718
--- /dev/null
+++ b/domains/andrewtest22.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "is-a-dev-bot",
+ "email": "is-a-dev@win11react.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/anime.json b/domains/anime.json
new file mode 100644
index 000000000..66bd72ebc
--- /dev/null
+++ b/domains/anime.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zarqizoubir",
+ "email": "zarqi.ezzoubair@etu.uae.ac.ma"
+ },
+ "record": {
+ "CNAME": "zarqizoubir.github.io"
+ }
+}
diff --git a/domains/anon.json b/domains/anon.json
index 23eacad4e..11d521260 100644
--- a/domains/anon.json
+++ b/domains/anon.json
@@ -6,6 +6,8 @@
"email": "contact@anonym-dev.tk"
},
"record": {
- "CNAME": "anondev.up.railway.app"
+ "A": ["216.24.57.1"],
+ "MX": ["4e7b2afdee66dc77.mx1.emailprofi.seznam.cz", "4e7b2afdee66dc77.mx2.emailprofi.seznam.cz"],
+ "TXT": "v=spf1 include:spf.seznam.cz ~all"
}
}
diff --git a/domains/ansari-atharnadim.json b/domains/ansari-atharnadim.json
index a133e0ccf..f5a717a63 100644
--- a/domains/ansari-atharnadim.json
+++ b/domains/ansari-atharnadim.json
@@ -1,11 +1,11 @@
{
- "description": "This is my website",
- "repo": "https://github.com/ansari-atharnadim/ansari-atharnadim.github.io",
- "owner": {
- "username": "ansari-atharnadim",
- "email": ""
- },
- "record": {
- "CNAME": "ansari-atharnadim.github.io"
- }
+ "description": "This is my website",
+ "repo": "https://github.com/ansari-atharnadim/ansari-atharnadim.github.io",
+ "owner": {
+ "username": "ansari-atharnadim",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "ansari-atharnadim.github.io"
+ }
}
diff --git a/domains/anshbhimani.json b/domains/anshbhimani.json
new file mode 100644
index 000000000..2a831a2f4
--- /dev/null
+++ b/domains/anshbhimani.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AnshBhimani",
+ "email": "anshbhimani2003@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/anshdadwal.json b/domains/anshdadwal.json
new file mode 100644
index 000000000..b8bc72be7
--- /dev/null
+++ b/domains/anshdadwal.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "T-Dynamos",
+ "email": "anshdadwal298@gmail.com"
+ },
+ "record": {
+ "CNAME": "t-dynamos.github.io"
+ }
+}
diff --git a/domains/anto.json b/domains/anto.json
new file mode 100644
index 000000000..07bf9b7df
--- /dev/null
+++ b/domains/anto.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "b5i",
+ "email": "bollengier.antoine@icloud.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/antoine.json b/domains/antoine.json
new file mode 100644
index 000000000..07bf9b7df
--- /dev/null
+++ b/domains/antoine.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "b5i",
+ "email": "bollengier.antoine@icloud.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/antonilin.json b/domains/antonilin.json
new file mode 100644
index 000000000..b929aa3a6
--- /dev/null
+++ b/domains/antonilin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bronislav",
+ "email": "anton@ilin.dn.ua"
+ },
+ "record": {
+ "CNAME": "bronislav.me"
+ }
+}
diff --git a/domains/anujjamdade.json b/domains/anujjamdade.json
new file mode 100644
index 000000000..6a5e935d3
--- /dev/null
+++ b/domains/anujjamdade.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "anujjamdade007",
+ "email": "jamdadeanuj@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/anwar.json b/domains/anwar.json
deleted file mode 100644
index 5451e6598..000000000
--- a/domains/anwar.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Anwar's personal website",
- "repo": "https://github.com/getanwar",
- "owner": {
- "username": "getanwar",
- "email": "say@anwar.im"
- },
- "record": {
- "URL": "https://anwar.im"
- }
-}
diff --git a/domains/aoba.json b/domains/aoba.json
deleted file mode 100644
index b358e08d9..000000000
--- a/domains/aoba.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "A cool looking link for my Discord server! (and maybe sort of other stuff in future... If I can think of one...)",
- "repo": "https://github.com/Hazuki-san",
- "owner": {
- "username": "Hazuki-san",
- "email": "aoba@outlook.co.th",
- "twitter": "AocchiAoba"
- },
- "record": {
- "URL": "https://discord.gg/nKbATcMqSp"
- }
-}
diff --git a/domains/api.anshtyagi.json b/domains/api.anshtyagi.json
new file mode 100644
index 000000000..fa790fa70
--- /dev/null
+++ b/domains/api.anshtyagi.json
@@ -0,0 +1,13 @@
+{
+ "description": "API WEBSITE",
+ "repo": "https://github.com/anshtyagi0",
+ "owner": {
+ "username": "anshtyagi0",
+ "email": "tyagiansh175@gmail.com"
+ },
+ "record": {
+ "A": [
+ "4.224.45.32"
+ ]
+ }
+}
diff --git a/domains/api.json b/domains/api.json
index 72adff01c..2afedf41e 100644
--- a/domains/api.json
+++ b/domains/api.json
@@ -1,7 +1,7 @@
{
"owner": {
- "username": "WilliamDavidHarrison",
- "email": "william@williamharrison.dev"
+ "username": "is-a-dev",
+ "email": "phenax5@gmail.com"
},
"record": {
diff --git a/domains/api.stefdp.json b/domains/api.stefdp.json
new file mode 100644
index 000000000..8925f5839
--- /dev/null
+++ b/domains/api.stefdp.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Stef-00012",
+ "email": "stefano.delprete.08@gmail.com",
+ "discord": "694986201739952229"
+ },
+
+ "record": {
+ "CNAME": "api-stefdp.onrender.com"
+ }
+}
diff --git a/domains/api.taoanhdep.json b/domains/api.taoanhdep.json
new file mode 100644
index 000000000..6fb447243
--- /dev/null
+++ b/domains/api.taoanhdep.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bracou",
+ "email": "bracoui809@gmail.com"
+ },
+ "record": {
+ "CNAME": "f9fbfdf8-17b8-4bce-be7f-34c1f919bb92.id.repl.co"
+ }
+}
diff --git a/domains/apollyon.json b/domains/apollyon.json
deleted file mode 100644
index 3c5820323..000000000
--- a/domains/apollyon.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Develop website",
- "owner": {
- "username": "apollyon9",
- "email": "blzzardst0rm@gmail.com",
- "twitter": "sakurai072"
- },
- "record": {
- "URL": "https://eris9.repl.co"
- }
-}
diff --git a/domains/arab.json b/domains/arab.json
new file mode 100644
index 000000000..f29492c4d
--- /dev/null
+++ b/domains/arab.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "IMudee",
+ "email": "NotMudee@proton.me"
+ },
+ "record": {
+ "CNAME": "hosts.is-a.dev"
+ }
+}
diff --git a/domains/arboy.json b/domains/arboy.json
index 5ac1933b3..75fb23a93 100644
--- a/domains/arboy.json
+++ b/domains/arboy.json
@@ -1,7 +1,7 @@
{
"repo": "https://github.com/ARBoyGo/arboygo.github.io",
"owner": {
- "username": "arboygo",
+ "username": "ARBoyGo",
"email": "arboygo@duck.com"
},
"record": {
diff --git a/domains/arch.json b/domains/arch.json
index d4f1c410d..3ba605b85 100644
--- a/domains/arch.json
+++ b/domains/arch.json
@@ -1,11 +1,11 @@
{
- "description": "My personal website by on arch.is-a.dev",
+ "description": "My personal website on arch.is-a.dev (main files in repo/repository).",
"repo": "https://github.com/Arch881010/Arch881010",
"owner": {
"username": "Arch881010",
- "email": "",
- "discord": "Arch1010#4338",
- "discordid": "410248634593050627"
+ "email": "c1yd4.arch@inbox.testmail.app",
+ "discord": "arch1010",
+ "discord-id": "410248634593050627"
},
"record": {
"CNAME": "arch881010.github.io"
diff --git a/domains/archelaus.json b/domains/archelaus.json
index 6352907b3..fe6ab726d 100644
--- a/domains/archelaus.json
+++ b/domains/archelaus.json
@@ -3,7 +3,7 @@
"repo": "https://github.com/archelaus/archelaus.github.io",
"owner": {
"username": "archelaus",
- "email": "aa.18cs02@thdcihet.ac.in"
+ "email": "archelaus@skiff.com"
},
"record": {
"CNAME": "archelaus.github.io"
diff --git a/domains/arctix.json b/domains/arctix.json
new file mode 100644
index 000000000..4ff651cb4
--- /dev/null
+++ b/domains/arctix.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Sibu07",
+ "email": "sarbes60@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/arda.json b/domains/arda.json
index c1076667c..d1af8b954 100644
--- a/domains/arda.json
+++ b/domains/arda.json
@@ -1,12 +1,12 @@
{
- "description": "arda.is-a.dev",
- "repo": "https://github.com/duzelicem/duzelicem.github.io",
+ "description": "personal website",
+ "repo": "https://github.com/duzelicem",
"owner": {
"username": "duzelicem",
"email": "ardagkc@proton.me",
- "discord": "arda#0666"
+ "discord": "dcez"
},
"record": {
- "CNAME": "duzelicem.github.io"
+ "CNAME": "duzelicem.com"
}
}
diff --git a/domains/arghozali.json b/domains/arghozali.json
new file mode 100644
index 000000000..6a0a6926a
--- /dev/null
+++ b/domains/arghozali.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ARGHOZALI",
+ "email": "arghozalichannel@gmail.com"
+ },
+ "record": {
+ "A": ["47.88.91.10"]
+ }
+}
diff --git a/domains/arwi.json b/domains/arwi.json
new file mode 100644
index 000000000..01e36ac38
--- /dev/null
+++ b/domains/arwi.json
@@ -0,0 +1,11 @@
+{
+ "description": "Arwichok",
+ "repo": "https://github.com/arwichok/arwichok.github.io",
+ "owner": {
+ "username": "arwichok",
+ "email": "arwichok@gmail.com"
+ },
+ "record": {
+ "CNAME": "arwichok.github.io"
+ }
+}
diff --git a/domains/aryamaan.json b/domains/aryamaan.json
index d32032699..691d90fc4 100644
--- a/domains/aryamaan.json
+++ b/domains/aryamaan.json
@@ -4,12 +4,7 @@
"email": "9236.stkabirdio@gmail.com"
},
"record": {
- "A": [
- "185.199.110.153",
- "185.199.108.153",
- "185.199.111.153",
- "185.199.109.153"
- ],
+ "A": ["185.199.110.153", "185.199.108.153", "185.199.111.153", "185.199.109.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/aryan.json b/domains/aryan.json
new file mode 100644
index 000000000..fbb497634
--- /dev/null
+++ b/domains/aryan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ARYANOP-REEF",
+ "email": "aryanmenghare@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ashan.json b/domains/ashan.json
index def2ebdc0..862eb5662 100644
--- a/domains/ashan.json
+++ b/domains/ashan.json
@@ -4,7 +4,7 @@
"owner": {
"username": "SealedSlinger",
"email": "infoxkingyt@gmail.com",
- "twitter": "@AshanInduranga_"
+ "twitter": "AshanInduranga_"
},
"record": {
"CNAME": "SealedSlinger.github.io"
diff --git a/domains/ashc1ty.json b/domains/ashc1ty.json
new file mode 100644
index 000000000..0d564b944
--- /dev/null
+++ b/domains/ashc1ty.json
@@ -0,0 +1,11 @@
+{
+ "description": "AshC1ty's Website",
+ "repo": "https://github.com/AshC1ty/ashc1ty.github.io",
+ "owner": {
+ "username": "AshC1ty",
+ "email": "ashcity07734@gmail.com"
+ },
+ "record": {
+ "CNAME": "ashc1ty.github.io"
+ }
+}
diff --git a/domains/asher.json b/domains/asher.json
new file mode 100644
index 000000000..d6b8339c2
--- /dev/null
+++ b/domains/asher.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "The-Asher",
+ "email": "08.bellaaron@gmail.com"
+ },
+ "record": {
+ "A": ["198.91.81.11"]
+ }
+}
diff --git a/domains/ashesh.json b/domains/ashesh.json
new file mode 100644
index 000000000..27c38f7c4
--- /dev/null
+++ b/domains/ashesh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Ashesh3",
+ "email": "ashesh1708@gmail.com"
+ },
+ "record": {
+ "CNAME": "ashesh3.github.io"
+ }
+}
diff --git a/domains/ashishbinu.json b/domains/ashishbinu.json
new file mode 100644
index 000000000..fc314d529
--- /dev/null
+++ b/domains/ashishbinu.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "ashishbinu",
+ "email": "ashishbinu90@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "ashishbinu.surge.sh"
+ }
+}
diff --git a/domains/asif.json b/domains/asif.json
new file mode 100644
index 000000000..7b000624e
--- /dev/null
+++ b/domains/asif.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Asif404",
+ "email": "asifmohammed4000@gmail.com"
+ },
+ "record": {
+ "CNAME": "asif-bq8.pages.dev"
+ }
+}
diff --git a/domains/asmin.json b/domains/asmin.json
new file mode 100644
index 000000000..11226af27
--- /dev/null
+++ b/domains/asmin.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AsminGiri",
+ "email": "asmingiriofficial@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/asriel.json b/domains/asriel.json
index 9fbdf5162..1016b1dfc 100644
--- a/domains/asriel.json
+++ b/domains/asriel.json
@@ -1,6 +1,6 @@
{
"description": "asriel.is-a.dev",
- "repo": "https://github.com/asrielthegoat/asrielthegoat.github.io/",
+ "repo": "https://github.com/asrielthegoat/asrielthegoat.github.io",
"owner": {
"username": "AsrieltheGoat",
"email": "admin@dreemurrs.eu.org",
diff --git a/domains/asthriona.json b/domains/asthriona.json
new file mode 100644
index 000000000..f4d9c4a39
--- /dev/null
+++ b/domains/asthriona.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Asthriona",
+ "email": "im@asthriona.com"
+ },
+ "record": {
+ "CNAME": "asthriona.pages.dev"
+ }
+}
diff --git a/domains/astrix.json b/domains/astrix.json
new file mode 100644
index 000000000..8d446cff0
--- /dev/null
+++ b/domains/astrix.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "LeGi0N09",
+ "email": "priyanshmodi9@gmail.com",
+ "discord": "712212307585007677"
+ },
+
+ "record": {
+ "CNAME": "b618f6e1-a380-430e-a0cd-d65c68368b5e.id.repl.co"
+ }
+}
diff --git a/domains/aswin-vs.json b/domains/aswin-vs.json
index a749747b8..da7f5ed2f 100644
--- a/domains/aswin-vs.json
+++ b/domains/aswin-vs.json
@@ -1,11 +1,11 @@
-{
- "description": "Portfolio of Aswin V S",
- "repo": "https://github.com/aswin-vs/Portfolio",
- "owner": {
- "username": "aswin-vs",
- "email": "aswinvs.nitt@gmail.com"
- },
- "record": {
- "CNAME": "aswin-vs.github.io"
- }
-}
\ No newline at end of file
+{
+ "description": "Portfolio of Aswin V S",
+ "repo": "https://github.com/aswin-vs/Portfolio",
+ "owner": {
+ "username": "aswin-vs",
+ "email": "aswinvs.nitt@gmail.com"
+ },
+ "record": {
+ "CNAME": "aswin-vs.github.io"
+ }
+}
diff --git a/domains/asyncedd.json b/domains/asyncedd.json
new file mode 100644
index 000000000..80927cee2
--- /dev/null
+++ b/domains/asyncedd.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "asyncedd",
+ "email": "isynqquwu@proton.me"
+ },
+ "record": {
+ "CNAME": "asyncedd.pages.dev"
+ }
+}
diff --git a/domains/ataimpro.json b/domains/ataim.json
similarity index 98%
rename from domains/ataimpro.json
rename to domains/ataim.json
index 7de1afc5a..6e098d7ae 100644
--- a/domains/ataimpro.json
+++ b/domains/ataim.json
@@ -8,4 +8,4 @@
"record": {
"CNAME": "ataim9999.github.io"
}
-}
+}
diff --git a/domains/atharva.json b/domains/atharva.json
index ce05b2a98..98fa0ec8c 100644
--- a/domains/atharva.json
+++ b/domains/atharva.json
@@ -1,11 +1,11 @@
{
- "repo": "https://github.com/atharvalt/atharvalt.github.io",
+ "repo": "https://github.com/atharvaupadhyay/atharvaupadhyay.github.io",
"owner": {
- "username": "atharvalt",
+ "username": "atharvaupadhyay",
"email": "atharva.upadhyay1099@gmail.com",
- "discord": "ã‚·Atharva#5374"
+ "discord": "atharvaupadhyay"
},
"record": {
- "CNAME": "atharvalt.github.io"
+ "CNAME": "atharvaupadhyay.github.io"
}
}
diff --git a/domains/atharvaupadhyay.json b/domains/atharvaupadhyay.json
new file mode 100644
index 000000000..ffcd25ce4
--- /dev/null
+++ b/domains/atharvaupadhyay.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "atharvaupadhyay",
+ "email": "atharva.upadhyay1099@gmail.com"
+ },
+ "record": {
+ "CNAME": "atharvaupadhyay.github.io"
+ }
+}
diff --git a/domains/atuel.json b/domains/atuel.json
new file mode 100644
index 000000000..5251ae8c8
--- /dev/null
+++ b/domains/atuel.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "atuell",
+ "email": "stanasqwe@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/au.json b/domains/au.json
new file mode 100644
index 000000000..05fbe0c32
--- /dev/null
+++ b/domains/au.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zzph",
+ "email": "johnbrettc@gmail.com"
+ },
+ "record": {
+ "CNAME": "zephyr-1.onrender.com"
+ }
+}
diff --git a/domains/auq3l.json b/domains/auq3l.json
new file mode 100644
index 000000000..b7acb8b83
--- /dev/null
+++ b/domains/auq3l.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "l3qua",
+ "email": "lequangthanh260211@gmail.com"
+ },
+ "record": {
+ "CNAME": "l3qua.github.io"
+ }
+}
diff --git a/domains/avi.json b/domains/avi.json
index 278286efd..ecabd2b20 100644
--- a/domains/avi.json
+++ b/domains/avi.json
@@ -1,10 +1,7 @@
{
- "description": "Avi' personal developer website",
- "repo": "https://github.com/avipars/avipars.github.io",
"owner": {
"username": "avipars",
- "email": "dev@aviparshan.com",
- "twitter": "aviinfinity"
+ "email": "avi.pars@gmail.com"
},
"record": {
"CNAME": "avipars.github.io"
diff --git a/domains/avikek.json b/domains/avikek.json
new file mode 100644
index 000000000..6ea85b620
--- /dev/null
+++ b/domains/avikek.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "notabhixhek",
+ "email": "abhishek.fodikar29@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ax.json b/domains/ax.json
deleted file mode 100644
index 7e27bfa8a..000000000
--- a/domains/ax.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Ax's Portfolio",
- "repo": "https://github.com/ax-a-dev",
- "owner": {
- "username": "ax-a-dev",
- "email": "ax_a_dev#3122"
- },
- "record": {
- "URL": "https://axdev.vercel.app"
- }
-}
diff --git a/domains/axd.json b/domains/axd.json
index e027b4dd5..cfe73b8b2 100644
--- a/domains/axd.json
+++ b/domains/axd.json
@@ -1,9 +1,9 @@
{
"owner": {
"username": "alexdhg",
- "email": "me@alexdhg.com"
+ "email": "alex.zr71@gmail.com"
},
"record": {
- "URL": "https://alexdhg.com"
+ "URL": "https://axxd.me"
}
}
diff --git a/domains/axel.json b/domains/axel.json
new file mode 100644
index 000000000..9ff7c9fdb
--- /dev/null
+++ b/domains/axel.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "axelilali",
+ "email": "axel.ilali@yahoo.fr"
+ },
+
+ "record": {
+ "CNAME": "axel-ilali.com"
+ }
+}
diff --git a/domains/axviii3.json b/domains/axviii3.json
index 343179a7c..47c35c9e6 100644
--- a/domains/axviii3.json
+++ b/domains/axviii3.json
@@ -4,12 +4,7 @@
"email": "anirbanrc2286@gmail.com"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/ayaan.json b/domains/ayaan.json
new file mode 100644
index 000000000..c059fac4c
--- /dev/null
+++ b/domains/ayaan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "dexjr",
+ "email": "dexjrdexjr@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/aymenjelassi.json b/domains/aymenjelassi.json
new file mode 100644
index 000000000..3c16e3cf2
--- /dev/null
+++ b/domains/aymenjelassi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "jelassiaymen94",
+ "email": "jelassiaymen094@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/aymo.json b/domains/aymo.json
new file mode 100644
index 000000000..19806f84c
--- /dev/null
+++ b/domains/aymo.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "NotAymo",
+ "email": "ninecraftoff@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ayushmansarkar.json b/domains/ayushmansarkar.json
new file mode 100644
index 000000000..0adb99847
--- /dev/null
+++ b/domains/ayushmansarkar.json
@@ -0,0 +1,11 @@
+{
+ "description": "To Host my personal website :)",
+ "repo": "https://github.com/AyushmanSarkar/terminal-portfolio.github.io",
+ "owner": {
+ "username": "AyushmanSarkar",
+ "email": "aayushmans2008@gmail.com"
+ },
+ "record": {
+ "CNAME": "ayushmansarkar.github.io"
+ }
+}
diff --git a/domains/ayvanov.json b/domains/ayvanov.json
new file mode 100644
index 000000000..1d8e7bb5f
--- /dev/null
+++ b/domains/ayvanov.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ayvanov",
+ "email": "xanderinho@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/azeez.json b/domains/azeez.json
new file mode 100644
index 000000000..b791ca25c
--- /dev/null
+++ b/domains/azeez.json
@@ -0,0 +1,14 @@
+{
+ "description": "azeez.is-a.dev",
+ "repo": "https://github.com/azizbna/azizbna.github.io",
+ "owner": {
+ "username": "azizbna",
+ "email": "",
+ "discord":"azeezbna"
+ },
+ "record": {
+ "A": ["185.199.109.153", "185.199.110.153", "185.199.111.153", "185.199.108.153"],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/azul.json b/domains/azul.json
new file mode 100644
index 000000000..aa6eaf81c
--- /dev/null
+++ b/domains/azul.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "TheRealGeoDash2019",
+ "email": "TheRealGeoDash2019@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
diff --git a/domains/b0q.json b/domains/b0q.json
index 7b808ee28..d8f361965 100644
--- a/domains/b0q.json
+++ b/domains/b0q.json
@@ -1,8 +1,8 @@
{
"owner": {
- "username": "qbebo",
- "email": "qqqbeboo@yahoo.com",
- "discord": "897238854510211143"
+ "username": "qbebo",
+ "email": "qqqbeboo@yahoo.com",
+ "discord": "897238854510211143"
},
"record": {
diff --git a/domains/b5i.json b/domains/b5i.json
new file mode 100644
index 000000000..07bf9b7df
--- /dev/null
+++ b/domains/b5i.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "b5i",
+ "email": "bollengier.antoine@icloud.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/b69029a2925ad960f5af027cd6d10ed9.json b/domains/b69029a2925ad960f5af027cd6d10ed9.json
new file mode 100644
index 000000000..bef44eee2
--- /dev/null
+++ b/domains/b69029a2925ad960f5af027cd6d10ed9.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "is-a-dev-bot",
+ "email": "is-a-dev@win11react.com"
+ },
+ "record": {
+ "CNAME": "verify.bing.com"
+ }
+}
diff --git a/domains/ba9.json b/domains/ba9.json
index 0fff49587..e3eb54898 100644
--- a/domains/ba9.json
+++ b/domains/ba9.json
@@ -4,10 +4,7 @@
"email": "d2a59.ce26a.1@gmail.com"
},
"record": {
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
-}
\ No newline at end of file
+}
diff --git a/domains/baba.json b/domains/baba.json
new file mode 100644
index 000000000..892aaafd8
--- /dev/null
+++ b/domains/baba.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Babakinha",
+ "email": "sangueotario@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/backend.jzitnik.json b/domains/backend.jzitnik.json
new file mode 100644
index 000000000..1e1d45e20
--- /dev/null
+++ b/domains/backend.jzitnik.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "JZITNIK-github",
+ "email": "klindkubak@zohomail.eu",
+ "discord": "jzitnik"
+ },
+ "record": {
+ "CNAME": "backend-92l0.onrender.com"
+ }
+}
diff --git a/domains/bagaz.json b/domains/bagaz.json
new file mode 100644
index 000000000..735fa867d
--- /dev/null
+++ b/domains/bagaz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bl33dz",
+ "email": "bagaz@protonmail.ch"
+ },
+ "record": {
+ "A": ["180.250.135.31"]
+ }
+}
diff --git a/domains/ball.mousemoosz.json b/domains/ball.mousemoosz.json
deleted file mode 100644
index 293d56209..000000000
--- a/domains/ball.mousemoosz.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "The documentation website for Ball discord bot.",
- "owner": {
- "username": "MouseMoosz",
- "email": "mousemoosz@protonmail.com"
- },
- "record": {
- "CNAME": "mousemoosz.github.io"
- }
-}
diff --git a/domains/bampa.json b/domains/bampa.json
new file mode 100644
index 000000000..f1d92badb
--- /dev/null
+++ b/domains/bampa.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "bampenes",
+ "email": "rafinhabampa@hotmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/bao.json b/domains/bao.json
new file mode 100644
index 000000000..49cf955d7
--- /dev/null
+++ b/domains/bao.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "gibaohung-dev",
+ "email": "thisismegiabao@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/bare1.json b/domains/bare1.json
new file mode 100644
index 000000000..1e74f15b9
--- /dev/null
+++ b/domains/bare1.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tiwlinkskwazeh",
+ "email": "kwazehh@proton.me"
+ },
+ "record": {
+ "A": ["18.215.144.92"]
+ }
+}
diff --git a/domains/bashafk.json b/domains/bashafk.json
new file mode 100644
index 000000000..0427a9844
--- /dev/null
+++ b/domains/bashafk.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "IbrahimKhan2004",
+ "email": "OfficialIbrahimKhan2004@proton.me"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/bashou.json b/domains/bashou.json
deleted file mode 100644
index fdf1932a2..000000000
--- a/domains/bashou.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "bashoudev",
- "email": "bashou@luduma.ga",
- "twitter": "bashouuu"
- },
- "record": {
- "URL": "https://bashoudev.ga"
- }
-}
diff --git a/domains/baumistlustig.json b/domains/baumistlustig.json
index 7fbe846e4..5eca5ebfb 100644
--- a/domains/baumistlustig.json
+++ b/domains/baumistlustig.json
@@ -5,6 +5,6 @@
},
"record": {
- "URL": "https://baumistlustig.eu"
+ "CNAME": "hoellwerth.eu"
}
}
diff --git a/domains/bday-list.suki.json b/domains/bday-list.suki.json
index a34c0ee47..fa791d761 100644
--- a/domains/bday-list.suki.json
+++ b/domains/bday-list.suki.json
@@ -4,6 +4,6 @@
"email": "sukimayoo@outlook.com"
},
"record": {
- "CNAME": "65f74b16-32c4-4c9b-b6ae-8fd70c262487.id.repl.co"
+ "CNAME": "65f74b16-32c4-4c9b-b6ae-8fd70c262487.id.repl.co"
}
}
diff --git a/domains/bdfd.json b/domains/bdfd.json
new file mode 100644
index 000000000..c48353767
--- /dev/null
+++ b/domains/bdfd.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "wansie1",
+ "email": "msc2tvdn@duck.com",
+ "discord": "962788530336178236"
+ },
+
+ "record": {
+ "CNAME": "b5a101d0-5527-4851-9c20-3907f2992d26.id.repl.co"
+ }
+}
diff --git a/domains/beabzk.json b/domains/beabzk.json
new file mode 100644
index 000000000..b6ba68ba9
--- /dev/null
+++ b/domains/beabzk.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "beabzk",
+ "email": "beabfekadz@gmail.com"
+ },
+ "record": {
+ "CNAME": "beabzk.github.io"
+ }
+}
diff --git a/domains/beluminh.json b/domains/beluminh.json
new file mode 100644
index 000000000..9465a31d6
--- /dev/null
+++ b/domains/beluminh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "istrueuser",
+ "email": "thisistrueemail@gmail.com"
+ },
+ "record": {
+ "CNAME": "b34f0c07-3581-4a0e-b0be-81eec794837c.id.repl.co"
+ }
+}
diff --git a/domains/benediktreck.json b/domains/benediktreck.json
new file mode 100644
index 000000000..604c5ded1
--- /dev/null
+++ b/domains/benediktreck.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "usr577",
+ "email": "benedikt.reck@oesdorf.de"
+ },
+ "record": {
+ "CNAME": "hosts.is-a.dev"
+ }
+}
diff --git a/domains/benjae.json b/domains/benjae.json
new file mode 100644
index 000000000..68af12f91
--- /dev/null
+++ b/domains/benjae.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "benjiae",
+ "email": "benjaminang2009@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
diff --git a/domains/berzcodetechnologies.json b/domains/berzcodetechnologies.json
new file mode 100644
index 000000000..02a6540e4
--- /dev/null
+++ b/domains/berzcodetechnologies.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "BerzCode",
+ "email": "saurabhkirve@gmail.com"
+ },
+ "record": {
+ "A": ["154.41.233.131"]
+
+ }
+}
diff --git a/domains/berzerk.json b/domains/berzerk.json
new file mode 100644
index 000000000..78df35194
--- /dev/null
+++ b/domains/berzerk.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "BerzCode",
+ "email": "saurabhkirve@gmail.com"
+ },
+ "record": {
+ "A": ["154.41.233.131"]
+ }
+}
diff --git a/domains/beta.json b/domains/beta.json
deleted file mode 100644
index 0fc3a29a3..000000000
--- a/domains/beta.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "is-a-dev",
- "email": "phenax5@gmail.com"
- },
- "record": {
- "URL": "https://register.is-a.dev"
- }
-}
diff --git a/domains/bets.json b/domains/bets.json
new file mode 100644
index 000000000..8afecd8f5
--- /dev/null
+++ b/domains/bets.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Betsthebest",
+ "email": "bets.hassoun@gmail.com"
+ },
+ "record": {
+ "A": ["16.171.139.108"]
+ }
+}
diff --git a/domains/bgz.json b/domains/bgz.json
new file mode 100644
index 000000000..49bf20c35
--- /dev/null
+++ b/domains/bgz.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "bl33dz",
+ "email": "fcb775566@gmail.com"
+ },
+
+ "record": {
+ "A": ["180.250.135.31"]
+ }
+}
diff --git a/domains/bhavyasingh.json b/domains/bhavyasingh.json
new file mode 100644
index 000000000..30d7131fb
--- /dev/null
+++ b/domains/bhavyasingh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "BhavyaSingh2611",
+ "email": "bhavyasingh2611@outlook.com"
+ },
+ "record": {
+ "CNAME": "bhavyasingh2611.github.io"
+ }
+}
diff --git a/domains/bibhu.json b/domains/bibhu.json
index f9407749b..b984c7e89 100644
--- a/domains/bibhu.json
+++ b/domains/bibhu.json
@@ -1,10 +1,10 @@
-{
- "owner": {
- "username": "bibs24",
- "email": "bibhuprasadsaha4@gmail.com"
- },
- "record": {
- "CNAME": "bibs24.github.io"
- },
- "description": "Personal Portfolio"
-}
\ No newline at end of file
+{
+ "owner": {
+ "username": "bibs24",
+ "email": "bibhuprasadsaha4@gmail.com"
+ },
+ "record": {
+ "CNAME": "bibs24.github.io"
+ },
+ "description": "Personal Portfolio"
+}
diff --git a/domains/bing-chilling.json b/domains/bing-chilling.json
index 99fdd57a9..58d1a3ccd 100644
--- a/domains/bing-chilling.json
+++ b/domains/bing-chilling.json
@@ -1,10 +1,10 @@
{
"owner": {
- "username": "TheUnium",
- "email": "ooooooooooooothereal@gmail.com"
- },
+ "username": "TheUnium",
+ "email": "ooooooooooooothereal@gmail.com"
+ },
- "record": {
- "CNAME": "theunium.github.io"
- }
+ "record": {
+ "CNAME": "theunium.github.io"
+ }
}
diff --git a/domains/biplob.json b/domains/biplob.json
index d0b24ffb2..282c462e4 100644
--- a/domains/biplob.json
+++ b/domains/biplob.json
@@ -1,9 +1,7 @@
{
- "description": "Biplob's website",
- "repo": "https://github.com/revolutionisme/revolutionisme.github.io",
"owner": {
"username": "revolutionisme",
- "email": "revolutionisme+github@gmail.com"
+ "email": "revolutionisme@gmail.com"
},
"record": {
"CNAME": "revolutionisme.github.io"
diff --git a/domains/birabittoh.json b/domains/birabittoh.json
new file mode 100644
index 000000000..e81b046ee
--- /dev/null
+++ b/domains/birabittoh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "BiRabittoh",
+ "email": "andronacomarco@gmail.com"
+ },
+ "record": {
+ "CNAME": "birabittoh.github.io"
+ }
+}
diff --git a/domains/bk.json b/domains/bk.json
new file mode 100644
index 000000000..e7d9f49df
--- /dev/null
+++ b/domains/bk.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hbk671104",
+ "email": "hbk671104@gmail.com"
+ },
+ "record": {
+ "CNAME": "hbk671104.github.io"
+ }
+}
diff --git a/domains/bkmd.json b/domains/bkmd.json
new file mode 100644
index 000000000..90e48e005
--- /dev/null
+++ b/domains/bkmd.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Soldierplayz6867",
+ "email": "soldierplayz.tw@gmail.com"
+ },
+ "record": {
+ "CNAME": "da-1.us.hostns.io"
+ }
+}
diff --git a/domains/blankparticle.json b/domains/blankparticle.json
index b7569a880..5cf5c8339 100644
--- a/domains/blankparticle.json
+++ b/domains/blankparticle.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "BlankParticle",
- "email": "hello@blankparticle.me"
- },
- "record": {
- "URL": "https://www.blankparticle.me"
- }
+ "owner": {
+ "username": "BlankParticle",
+ "email": "hello@blankparticle.me"
+ },
+ "record": {
+ "URL": "https://www.blankparticle.me"
+ }
}
diff --git a/domains/blek.json b/domains/blek.json
index 3e45c4c06..3ed49412d 100644
--- a/domains/blek.json
+++ b/domains/blek.json
@@ -2,9 +2,9 @@
"description": "blek is a dev",
"owner": {
"username": "b1ek",
- "email": "me@blek.codes"
+ "email": "me@blek.codes"
},
"record": {
- "A": [ "185.130.226.115" ]
+ "A": ["185.130.226.115"]
}
}
diff --git a/domains/blessingmwiti.json b/domains/blessingmwiti.json
new file mode 100644
index 000000000..5e1ec3e4e
--- /dev/null
+++ b/domains/blessingmwiti.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "blessingmwiti",
+ "email": "blessingmwiti@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/blinx.json b/domains/blinx.json
new file mode 100644
index 000000000..76a343980
--- /dev/null
+++ b/domains/blinx.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "cabingory",
+ "email": "blinxduh@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
diff --git a/domains/blob.json b/domains/blob.json
new file mode 100644
index 000000000..780cfb73f
--- /dev/null
+++ b/domains/blob.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "BlobDeveloper",
+ "email": "blob.dev@protonmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/blob2763.json b/domains/blob2763.json
new file mode 100644
index 000000000..8da1a718d
--- /dev/null
+++ b/domains/blob2763.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Blob2763",
+ "email": "blob2763@gmail.com"
+ },
+ "record": {
+ "CNAME": "blob2763.github.io"
+ }
+}
diff --git a/domains/block.json b/domains/block.json
new file mode 100644
index 000000000..dc3827c88
--- /dev/null
+++ b/domains/block.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "CookieTriste",
+ "email": "romain.tocsin@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/blockchaindevpanther.json b/domains/blockchaindevpanther.json
new file mode 100644
index 000000000..cd4fcebb4
--- /dev/null
+++ b/domains/blockchaindevpanther.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "2618Zahid",
+ "email": "zahidhassankalaroa104@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/blog.aditya.json b/domains/blog.aditya.json
deleted file mode 100644
index 571526b5f..000000000
--- a/domains/blog.aditya.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "description": "A Subdomain For My Blogs!!",
- "repo": "https://github.com/icancodebeauty/blog",
- "owner": {
- "username": "icancodebeauty",
- "email": "ishqaddy@gmail.com",
- "twitter": "CodeWithAadi"
- },
- "record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ]
- }
-}
diff --git a/domains/blog.crystal.json b/domains/blog.crystal.json
index f04028998..346c63b1f 100644
--- a/domains/blog.crystal.json
+++ b/domains/blog.crystal.json
@@ -1,5 +1,4 @@
{
- "description": "Blog",
"owner": {
"username": "crystalbajgai",
"email": "crystalbajgai@gmail.com"
diff --git a/domains/blog.dib.json b/domains/blog.dib.json
deleted file mode 100644
index b7660860b..000000000
--- a/domains/blog.dib.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Blog site for my personal projects.",
- "owner": {
- "username": "DEV-DIBSTER",
- "email": "dibster@danbot.host",
- "twitter": "DEV_DIBSTER"
- },
- "record": {
- "A": ["192.95.42.66"]
- }
-}
diff --git a/domains/blog.efrecon.json b/domains/blog.efrecon.json
new file mode 100644
index 000000000..887f54956
--- /dev/null
+++ b/domains/blog.efrecon.json
@@ -0,0 +1,11 @@
+{
+ "description": "efrecon's blog",
+ "repo": "https://github.com/efrecon/efrecon.github.io",
+ "owner": {
+ "username": "efrecon",
+ "email": "efrecon+github@gmail.com"
+ },
+ "record": {
+ "CNAME": "efrecon.github.io"
+ }
+}
diff --git a/domains/blog.itznesbro.json b/domains/blog.itznesbro.json
new file mode 100644
index 000000000..cd70d939b
--- /dev/null
+++ b/domains/blog.itznesbro.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ItzNesbroDev",
+ "email": "asnesbeer3@gmail.com"
+ },
+ "record": {
+ "CNAME": "hashnode.network"
+ }
+}
diff --git a/domains/blog.ron.json b/domains/blog.ron.json
new file mode 100644
index 000000000..9c98d6524
--- /dev/null
+++ b/domains/blog.ron.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "itsrn",
+ "email": "shalom@itsron.space"
+ },
+ "record": {
+ "CNAME": "itsrn.github.io"
+ }
+}
diff --git a/domains/blog.tnt.json b/domains/blog.tnt.json
new file mode 100644
index 000000000..be2e1ff31
--- /dev/null
+++ b/domains/blog.tnt.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SebTNT",
+ "email": "turquoisetntmultimedia@gmail.com"
+ },
+ "record": {
+ "CNAME": "ghs.google.com"
+ }
+}
diff --git a/domains/blue.json b/domains/blue.json
index 0ed1654b3..febc70c0c 100644
--- a/domains/blue.json
+++ b/domains/blue.json
@@ -1,12 +1,12 @@
{
- "description": "A newbie Python developer who wants to learn more about web design and Python development.",
- "repo": "https://github.com/Jimmy-Blue/jimmy-blue.github.io",
+ "description": "Personal site for b1uedev, a.k.a Blue.",
+ "repo": "https://github.com/B1ue-Dev/b1ue-dev.github.io",
"owner": {
- "username": "Jimmy-Blue",
+ "username": "B1ue-Dev",
"email": "ngolong1396@hotmail.com",
- "twitter": "JimmyBlue00"
+ "twitter": "b1uedev"
},
"record": {
- "CNAME": "jimmy-blue.github.io"
+ "CNAME": "b1ue-dev.github.io"
}
}
diff --git a/domains/bluemoon.json b/domains/bluemoon.json
new file mode 100644
index 000000000..6a0f9e884
--- /dev/null
+++ b/domains/bluemoon.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "amitbartfeld",
+ "email": "amitbartfeld@gmail.com"
+ },
+ "record": {
+ "CNAME": "amithost.com"
+ }
+}
diff --git a/domains/bmbs.json b/domains/bmbs.json
new file mode 100644
index 000000000..2397ce3ce
--- /dev/null
+++ b/domains/bmbs.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "BaamBuus",
+ "email": "bitternoah864@gmail.com"
+ },
+ "record": {
+ "CNAME": "baambuus.github.io"
+ }
+}
diff --git a/domains/bmh.json b/domains/bmh.json
new file mode 100644
index 000000000..99bb03bc0
--- /dev/null
+++ b/domains/bmh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bm-hien",
+ "email": "buiminhhien001@gmail.com"
+ },
+ "record": {
+ "URL": "https://bm-hien.github.io"
+ }
+}
diff --git a/domains/bmhien.json b/domains/bmhien.json
index 4c36c2cc8..f8e3db3bb 100644
--- a/domains/bmhien.json
+++ b/domains/bmhien.json
@@ -3,8 +3,7 @@
"username": "bm-hien",
"email": "buiminhhien001@gmail.com"
},
-
"record": {
- "CNAME": "bmhien.pages.dev"
+ "CNAME": "bm-hien.github.io"
}
}
diff --git a/domains/bob.json b/domains/bob.json
index faabbf279..2418f306f 100644
--- a/domains/bob.json
+++ b/domains/bob.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "rubinskiy.github.io"
}
-}
+}
diff --git a/domains/bogdan.json b/domains/bogdan.json
new file mode 100644
index 000000000..052d58fbe
--- /dev/null
+++ b/domains/bogdan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "MrBogdanYT",
+ "email": "hysbskyblockgod@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/boggy.json b/domains/boggy.json
new file mode 100644
index 000000000..1aabec005
--- /dev/null
+++ b/domains/boggy.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "boggy539",
+ "email": "ethanbogdan@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/borboss.json b/domains/borboss.json
new file mode 100644
index 000000000..33dd07cc7
--- /dev/null
+++ b/domains/borboss.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "borboss",
+ "email": "bobbarosshasnoemail@gmail.com"
+ },
+ "record": {
+ "CNAME": "borboss.github.io"
+ }
+}
diff --git a/domains/boredcodebyk.json b/domains/boredcodebyk.json
index 63ccbb94b..9b3e1a499 100644
--- a/domains/boredcodebyk.json
+++ b/domains/boredcodebyk.json
@@ -3,7 +3,7 @@
"repo": "https://github.com/boredcodebyk/boredcodebyk.github.io",
"owner": {
"username": "boredcodebyk",
- "email": ""
+ "email": "khromabyk+dev@gmail.com"
},
"record": {
"CNAME": "boredcodebyk.github.io"
diff --git a/domains/boston2029.json b/domains/boston2029.json
new file mode 100644
index 000000000..6059e14f4
--- /dev/null
+++ b/domains/boston2029.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "boston2029",
+ "email": "boston2029@outlook.com"
+ },
+ "record": {
+ "CNAME": "215de2e6-27df-4710-82aa-ae0cfa6f19bc.id.repl.co"
+ }
+}
diff --git a/domains/bovas.json b/domains/bovas.json
index 339def193..6f55a92df 100644
--- a/domains/bovas.json
+++ b/domains/bovas.json
@@ -1,10 +1,10 @@
{
"owner": {
- "username": "bovas",
- "email": "bovaskjacobb2009@gmail.com"
- },
+ "username": "bovas",
+ "email": "bovaskjacobb2009@gmail.com"
+ },
- "record": {
- "URL": "https://dev.bovas.repl.co"
- }
+ "record": {
+ "URL": "https://dev.bovas.repl.co"
+ }
}
diff --git a/domains/boxey.json b/domains/boxey.json
new file mode 100644
index 000000000..85b77fcbc
--- /dev/null
+++ b/domains/boxey.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "B0XEY",
+ "email": "gramcooker@gmail.com"
+ },
+ "record": {
+ "URL": "https://sites.google.com/view/boxey-dev/home?authuser=0"
+ }
+}
diff --git a/domains/brandnewwick.json b/domains/brandnewwick.json
new file mode 100644
index 000000000..1674a48de
--- /dev/null
+++ b/domains/brandnewwick.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "alephdfilms",
+ "email": "alephdiallo@mail.com"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ]
+ }
+}
diff --git a/domains/bread.json b/domains/bread.json
new file mode 100644
index 000000000..cc9d2f0cc
--- /dev/null
+++ b/domains/bread.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "soggycatalltheway",
+ "email": "hurvzee+partizao@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/bruhx.json b/domains/bruhx.json
new file mode 100644
index 000000000..7cdeea243
--- /dev/null
+++ b/domains/bruhx.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Bruhxz54",
+ "email": "pollyx73@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/bruhxz.json b/domains/bruhxz.json
new file mode 100644
index 000000000..e43a7b15d
--- /dev/null
+++ b/domains/bruhxz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Bruhxz54",
+ "email": "pollyx73@gmail.com"
+ },
+ "record": {
+ "CNAME": "f2b3938b-4d54-4d87-b941-49461b9d3541.id.repl.co"
+ }
+}
diff --git a/domains/bug-writer.json b/domains/bug-writer.json
new file mode 100644
index 000000000..9b317de89
--- /dev/null
+++ b/domains/bug-writer.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "KeIrNeGn",
+ "email": "terminatorx5e@gmail.com",
+ "discord": "499592235772280842"
+ },
+
+ "record": {
+ "CNAME": "keirnegn.dev"
+ }
+}
diff --git a/domains/bumbleboss.json b/domains/bumbleboss.json
new file mode 100644
index 000000000..c17fa6f6a
--- /dev/null
+++ b/domains/bumbleboss.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Bumbleboss",
+ "email": "me@bumbleboss.xyz"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/bur.json b/domains/bur.json
index cab2abf79..ef7e46335 100644
--- a/domains/bur.json
+++ b/domains/bur.json
@@ -1,16 +1,11 @@
{
- "owner": {
- "username": "burandby",
- "email": "bur.and.by@gmail.com",
- "twitter": "burandby",
- "discord": "burandby"
- },
- "record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ]
- }
+ "owner": {
+ "username": "burandby",
+ "email": "bur.and.by@gmail.com",
+ "twitter": "burandby",
+ "discord": "burandby"
+ },
+ "record": {
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"]
+ }
}
diff --git a/domains/byte.json b/domains/byte.json
new file mode 100644
index 000000000..b25114358
--- /dev/null
+++ b/domains/byte.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SquareSmp",
+ "email": "squaresmp@asia.com"
+ },
+ "record": {
+ "URL": "https://squaresmp.github.io/"
+ }
+}
diff --git a/domains/c00l.json b/domains/c00l.json
index fa7c57df9..bdd33ad63 100644
--- a/domains/c00l.json
+++ b/domains/c00l.json
@@ -1,4 +1,3 @@
-
{
"description": "Heyayyu' game developer",
"repo": "https://github.com/heyayyu/heyyayu.github.io",
diff --git a/domains/callum.json b/domains/callum.json
deleted file mode 100644
index 277cb808e..000000000
--- a/domains/callum.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "My personal site.",
- "repo": "https://github.com/cxllm/website",
- "owner": {
- "username": "cxllm",
- "email": "hello@cxllm.xyz",
- "twitter": "CX11M"
- },
- "record": {
- "URL": "https://cxllm.xyz"
- }
-}
diff --git a/domains/cameo007.json b/domains/cameo007.json
new file mode 100644
index 000000000..3f8373e10
--- /dev/null
+++ b/domains/cameo007.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Cameo007",
+ "email": "pascal.1.dietrich@hotmail.com"
+ },
+ "record": {
+ "CNAME": "mintux.de"
+ }
+}
diff --git a/domains/canarddu38.json b/domains/canarddu38.json
new file mode 100644
index 000000000..5340083ce
--- /dev/null
+++ b/domains/canarddu38.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "canarddu38",
+ "email": "julescanardcoin@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/caodoc.json b/domains/caodoc.json
new file mode 100644
index 000000000..8682070a5
--- /dev/null
+++ b/domains/caodoc.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "caodoc",
+ "email": "dochicao2306@gmail.com"
+ },
+ "record": {
+ "CNAME": "caodoc.github.io"
+ }
+}
diff --git a/domains/carol3n.json b/domains/carol3n.json
new file mode 100644
index 000000000..f03bbd3e0
--- /dev/null
+++ b/domains/carol3n.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Carol3n",
+ "email": "20cs031.caroline@sjec.ac.in"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/casb-netbox.json b/domains/casb-netbox.json
deleted file mode 100644
index 5cbe0b306..000000000
--- a/domains/casb-netbox.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "Qoyyuum",
- "email": "abdul.qoyyuum@gmail.com"
- },
-
- "record": {
- "A": ["35.198.253.237"]
- }
-}
diff --git a/domains/cassie.json b/domains/cassie.json
index f945a4ae4..6357cb664 100644
--- a/domains/cassie.json
+++ b/domains/cassie.json
@@ -1,10 +1,10 @@
{
+ "description": "Personal website",
+ "repo": "https://github.com/diordnas/diordnas.github.io",
"owner": {
"username": "Diordnas",
- "email": "alessandroeliot@gmail.com"
+ "email": "cassthepurple@gmail.com"
},
- "description": "Personal site, as well as hosting a few tools",
- "repo": "https://github.com/diordnas/diordnas.github.io",
"record": {
"CNAME": "diordnas.github.io"
}
diff --git a/domains/catlord.json b/domains/catlord.json
new file mode 100644
index 000000000..39d7be89c
--- /dev/null
+++ b/domains/catlord.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "element10101",
+ "email": "gnoeleht@gmail.com"
+ },
+ "record": {
+ "CNAME": "3722a886-2c2c-40e3-991b-0d4cb5e935b7.id.repl.co"
+ }
+}
diff --git a/domains/ccnicebruh.json b/domains/ccnicebruh.json
index 24bd89a29..98d102505 100644
--- a/domains/ccnicebruh.json
+++ b/domains/ccnicebruh.json
@@ -4,6 +4,8 @@
"email": "tangkeehee2002@gmail.com"
},
"record": {
- "URL": "https://solo.to/ccnicebruh"
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
diff --git a/domains/cd.json b/domains/cd.json
new file mode 100644
index 000000000..3c40f5f81
--- /dev/null
+++ b/domains/cd.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal website of Yaksh Bariya",
+ "repo": "https://github.com/thunder-coding/CodingThunder",
+ "owner": {
+ "username": "thunder-coding",
+ "email": "yakshbari4@gmail.com",
+ "discord": "codingthunder"
+ },
+ "record": {
+ "CNAME": "thunder-coding.github.io"
+ }
+}
diff --git a/domains/cdn.akai.json b/domains/cdn.akai.json
index e8745388a..f3d419188 100644
--- a/domains/cdn.akai.json
+++ b/domains/cdn.akai.json
@@ -1,11 +1,11 @@
{
- "owner": {
- "username": "AmazingAkai",
- "email": "",
- "discord": "Akai#8199"
- },
- "record": {
- "A": ["45.79.247.123"],
- "TXT": "7Yuu0bep"
- }
+ "owner": {
+ "username": "AmazingAkai",
+ "email": "",
+ "discord": "Akai#8199"
+ },
+ "record": {
+ "A": ["45.79.247.123"],
+ "TXT": "7Yuu0bep"
+ }
}
diff --git a/domains/cdn.badboy.json b/domains/cdn.badboy.json
index ddcf893be..9297c19e4 100644
--- a/domains/cdn.badboy.json
+++ b/domains/cdn.badboy.json
@@ -6,6 +6,6 @@
"email": "contact@mail.badboy.is-a.dev"
},
"record": {
- "CNAME": "89b424b5-8e2d-4678-93a9-b793cdf6fceb.id.repl.co"
+ "CNAME": "0b68d425-3b0b-47fc-bd21-66c73ba1cf15.id.repl.co"
}
}
diff --git a/domains/cdn.semant.json b/domains/cdn.semant.json
index 8ea1a2390..ca5bd2b5b 100644
--- a/domains/cdn.semant.json
+++ b/domains/cdn.semant.json
@@ -6,6 +6,6 @@
"email": "contact@semant.is-a.dev"
},
"record": {
- "CNAME": "89b424b5-8e2d-4678-93a9-b793cdf6fceb.id.repl.co"
+ "CNAME": "0b68d425-3b0b-47fc-bd21-66c73ba1cf15.id.repl.co"
}
}
diff --git a/domains/cdn.stefdp.json b/domains/cdn.stefdp.json
new file mode 100644
index 000000000..b10f7e6db
--- /dev/null
+++ b/domains/cdn.stefdp.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Stef-00012",
+ "email": "stefano.delprete.08@gmail.com"
+ },
+ "record": {
+ "CNAME": "cl-gl94ec41ff.gcdn.co"
+ }
+}
diff --git a/domains/celestial.json b/domains/celestial.json
new file mode 100644
index 000000000..53c4070c4
--- /dev/null
+++ b/domains/celestial.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Luongzz",
+ "email": "buivanluong0204@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/cfp.json b/domains/cfp.json
index c17a5a730..83486ccfd 100644
--- a/domains/cfp.json
+++ b/domains/cfp.json
@@ -2,7 +2,7 @@
"owner": {
"username": "cfpwastaken",
"email": "",
- "discord": "cfp#7174"
+ "discord": "cfp"
},
"record": {
"CNAME": "cfp.gotdns.ch"
diff --git a/domains/cha0tic.json b/domains/cha0tic.json
new file mode 100644
index 000000000..ed013d614
--- /dev/null
+++ b/domains/cha0tic.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "cha0ticcoder",
+ "email": "chaoticplayern1@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/chaaya.json b/domains/chaaya.json
new file mode 100644
index 000000000..3a411528e
--- /dev/null
+++ b/domains/chaaya.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Peter-0097",
+ "email": "chaayagames@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/chaey.json b/domains/chaey.json
new file mode 100644
index 000000000..35eb0f53a
--- /dev/null
+++ b/domains/chaey.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "qing762",
+ "email": "threatedblade@outlook.com"
+ },
+ "record": {
+ "URL": "https://qing762.is-a.dev"
+ }
+}
diff --git a/domains/chandra.json b/domains/chandra.json
index 3f1f3fc0e..8c0ba425a 100644
--- a/domains/chandra.json
+++ b/domains/chandra.json
@@ -1,10 +1,7 @@
{
- "description": "An Data Analyst Portfolio",
- "repo": "https://github.com/sekharmalla/portfolio",
"owner": {
"username": "sekharmalla",
- "email": "chandra.malla@msftcommunity.com",
- "twitter": "ChandraSMalla"
+ "email": "sekharmalla.vfx@gmail.com"
},
"record": {
"CNAME": "sekharmalla.github.io"
diff --git a/domains/chandrabose.json b/domains/chandrabose.json
new file mode 100644
index 000000000..39ffd69d3
--- /dev/null
+++ b/domains/chandrabose.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "chandrabosep",
+ "email": "chandrabosep3112@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/chase.json b/domains/chase.json
new file mode 100644
index 000000000..561111d69
--- /dev/null
+++ b/domains/chase.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "trir44",
+ "email": "621969@kernhigh.org"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/cheeriomark1.json b/domains/cheeriomark1.json
new file mode 100644
index 000000000..44a7d8932
--- /dev/null
+++ b/domains/cheeriomark1.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Cheerio-mark-1",
+ "email": "DevilDesk2+new_git_001@hotmail.com"
+ },
+ "record": {
+ "CNAME": "cheerio-mark-1.github.io"
+ }
+}
diff --git a/domains/chenpeng.json b/domains/chenpeng.json
index 34d760b53..dc5669652 100644
--- a/domains/chenpeng.json
+++ b/domains/chenpeng.json
@@ -1,13 +1,11 @@
{
"description": "Patrick Chen's develop site",
- "repo": "https://github.com/ChpShy/ChpShy.github.io.git",
+ "repo": "https://github.com/PatrickChen928/patrickchen928.github.io",
"owner": {
- "username": "chenpeng",
- "email": "cp786156072@gmail.com",
- "twitter": "chepy2019",
- "discord": "Patrick Chen#9900"
+ "username": "PatrickChen928",
+ "email": "cp786156072@gmail.com"
},
"record": {
- "URL": "https://chpshy.github.io"
+ "URL": "https://patrickchen928.github.io"
}
}
diff --git a/domains/chethan.json b/domains/chethan.json
new file mode 100644
index 000000000..75ee85d6e
--- /dev/null
+++ b/domains/chethan.json
@@ -0,0 +1,13 @@
+{
+ "description": "Portfolio of Chethan Yadav",
+ "repo": "https://github.com/chethanyadav456/chethanyadav456.github.io",
+ "owner": {
+ "username": "chethanyadav456",
+ "email": "chethanyadav456@gmail.com",
+ "twitter": "DenRaaz77190",
+ "discord": "raaz6"
+ },
+ "record": {
+ "CNAME": "chethanyadav456.github.io"
+ }
+}
diff --git a/domains/chino.json b/domains/chino.json
index 4ef8d7514..3b3c078ac 100644
--- a/domains/chino.json
+++ b/domains/chino.json
@@ -1,10 +1,11 @@
{
- "description": "My personal page",
+ "description": "My website",
"repo": "https://github.com/AutumnVN/autumnvn.github.io",
"owner": {
"username": "AutumnVN",
- "email": "htuan03@gmail.com",
- "twitter": "dvht0"
+ "email": "autumnvnchino@gmail.com",
+ "twitter": "autumnvnchino",
+ "discord": "autumnvn"
},
"record": {
"CNAME": "chino.pages.dev"
diff --git a/domains/chirag.json b/domains/chirag.json
new file mode 100644
index 000000000..efbc7cd47
--- /dev/null
+++ b/domains/chirag.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ChiragAgg5k",
+ "email": "chiragaggarwal5k@gmail.com"
+ },
+ "record": {
+ "CNAME": "profile-website-5qr.pages.dev"
+ }
+}
diff --git a/domains/chiragnahata.json b/domains/chiragnahata.json
new file mode 100644
index 000000000..324dfe7e2
--- /dev/null
+++ b/domains/chiragnahata.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/chouhi.json b/domains/chouhi.json
deleted file mode 100644
index 032de6f80..000000000
--- a/domains/chouhi.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Chouhict",
- "email": "chouhi@proton.me"
- },
- "record": {
- "URL": "https://chouhi.ml"
- }
-}
diff --git a/domains/chouhict.json b/domains/chouhict.json
index 3841d94d9..73561fe2f 100644
--- a/domains/chouhict.json
+++ b/domains/chouhict.json
@@ -6,12 +6,7 @@
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
diff --git a/domains/chris8889.json b/domains/chris8889.json
index 1c8c19454..9f2669de9 100644
--- a/domains/chris8889.json
+++ b/domains/chris8889.json
@@ -1,11 +1,9 @@
{
- "description": "testing",
"owner": {
"username": "Chris8889",
- "email": "chris88892@protonmail.com",
- "twitter": "Chris8889"
+ "email": "chris88892@protonmail.com"
},
"record": {
- "CNAME": "5d931f3a-d63d-4ccf-b14c-5b566fd0c5f0.id.repl.co"
+ "CNAME": "hosts.is-a.dev"
}
}
diff --git a/domains/christian.json b/domains/christian.json
new file mode 100644
index 000000000..5a1ce84c4
--- /dev/null
+++ b/domains/christian.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "DenDanskeMine",
+ "email": "christianhrose@outlook.dk"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/chrystom.json b/domains/chrystom.json
new file mode 100644
index 000000000..5fdbdded1
--- /dev/null
+++ b/domains/chrystom.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "chrystom",
+ "email": "chrystomt@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "chrystom.github.io"
+ }
+}
diff --git a/domains/cihatksm.json b/domains/cihatksm.json
new file mode 100644
index 000000000..41f6de86c
--- /dev/null
+++ b/domains/cihatksm.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "CihatKsm",
+ "email": "cihatksm@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/circular.json b/domains/circular.json
new file mode 100644
index 000000000..fdeaf3eaa
--- /dev/null
+++ b/domains/circular.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "circularsprojects",
+ "email": "levi97646@gmail.com"
+ },
+ "record": {
+ "URL": "https://circulars.dev"
+ }
+}
diff --git a/domains/clarex.json b/domains/clarex.json
new file mode 100644
index 000000000..48770ed20
--- /dev/null
+++ b/domains/clarex.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "clarexdev",
+ "email": "erenclarex@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/clay.json b/domains/clay.json
new file mode 100644
index 000000000..994a2f470
--- /dev/null
+++ b/domains/clay.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ClaytonTDM",
+ "email": "claytontdm@gmail.com"
+ },
+ "record": {
+ "CNAME": "claytontdm.github.io"
+ }
+}
diff --git a/domains/clicpow.json b/domains/clicpow.json
new file mode 100644
index 000000000..ae347f452
--- /dev/null
+++ b/domains/clicpow.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ClicpoW",
+ "email": "clicpowytb@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/codesz.json b/domains/codesz.json
new file mode 100644
index 000000000..46eb03696
--- /dev/null
+++ b/domains/codesz.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "codeszsoft",
+ "email": "codeszsoftware@gmail.com"
+ },
+ "repo": "https://github.com/codeszsoft/codeszsoft.github.io",
+ "record": {
+ "CNAME": "codeszsoft.github.io"
+ }
+}
diff --git a/domains/community.syntaxloopers.json b/domains/community.syntaxloopers.json
new file mode 100644
index 000000000..324dfe7e2
--- /dev/null
+++ b/domains/community.syntaxloopers.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/contentbot.json b/domains/contentbot.json
new file mode 100644
index 000000000..8abfa1dd0
--- /dev/null
+++ b/domains/contentbot.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Fqcxn",
+ "email": "",
+ "twitter": "FqcxnLmao",
+ "discord": "hong.kong"
+ },
+ "record": {
+ "CNAME": "fqcxn.com"
+ }
+}
diff --git a/domains/coolbots.json b/domains/coolbots.json
new file mode 100644
index 000000000..6d1924bea
--- /dev/null
+++ b/domains/coolbots.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "wansiie",
+ "email": "Janeiscool4ever@web.de"
+ },
+ "record": {
+ "CNAME": "89e1de78ff-hosting.gitbook.io"
+ }
+}
diff --git a/domains/copysland.json b/domains/copysland.json
new file mode 100644
index 000000000..f776f83f2
--- /dev/null
+++ b/domains/copysland.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Hillzacky",
+ "email": "Hilm4nsyah@gmail.com"
+ },
+ "record": {
+ "CNAME": "copysland.github.io"
+ }
+}
diff --git a/domains/core.json b/domains/core.json
new file mode 100644
index 000000000..5f4f24f80
--- /dev/null
+++ b/domains/core.json
@@ -0,0 +1,11 @@
+{
+ "description": "My information.",
+ "repo": "https://github.com/Aidenhtg",
+ "owner": {
+ "username": "Aidenhtg",
+ "email": "aidenhiseh.m.l@gmail.com"
+ },
+ "record": {
+ "CNAME": "b3e47680.corrupted.pages.dev"
+ }
+}
diff --git a/domains/cosmos.json b/domains/cosmos.json
deleted file mode 100644
index a66f262cd..000000000
--- a/domains/cosmos.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "iscosmos",
- "email": "iscosmos@outlook.com"
- },
-
- "record": {
- "URL": "https://iscosmos.github.io"
- }
-}
diff --git a/domains/crackz.json b/domains/crackz.json
deleted file mode 100644
index 5e71ce0f5..000000000
--- a/domains/crackz.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Redirecting to my socials website.",
- "repo": "https://github.com/CRACKz-cyber",
- "owner": {
- "username": "CRACKz-cyber",
- "email": "thomasknekibus@gmail.com"
- },
- "record": {
- "URL": "http://lassewiedemann.de"
- }
-}
diff --git a/domains/crazymax.json b/domains/crazymax.json
new file mode 100644
index 000000000..45d6d04ea
--- /dev/null
+++ b/domains/crazymax.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Crazy-Max-Blog",
+ "email": "Crazy-Max-2011@yandex.ru"
+ },
+ "record": {
+ "CNAME": "crazy-max-blog.github.io"
+ }
+}
diff --git a/domains/cristianmihai.json b/domains/cristianmihai.json
index 22e178f03..ac8b77d9e 100644
--- a/domains/cristianmihai.json
+++ b/domains/cristianmihai.json
@@ -1,11 +1,11 @@
-{
- "description": "My personal dev website.",
- "repo": "https://github.com/CristianEduardMihai/is-a.dev.github.io",
- "owner": {
- "username": "CristianEduardMihai",
- "email": "cristianeduardmihai@gmail.com"
- },
- "record": {
- "CNAME": "cristianeduardmihai.github.io"
- }
-}
+{
+ "description": "My personal dev website.",
+ "repo": "https://github.com/CristianEduardMihai/is-a.dev.github.io",
+ "owner": {
+ "username": "CristianEduardMihai",
+ "email": "cristianeduardmihai@gmail.com"
+ },
+ "record": {
+ "CNAME": "cristianeduardmihai.github.io"
+ }
+}
diff --git a/domains/crystaluptime.json b/domains/crystaluptime.json
deleted file mode 100644
index eaaf9e45c..000000000
--- a/domains/crystaluptime.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "CRYSTAL-HQ",
- "email": "info.crystal.hq@gmail.com"
- },
- "record": {
- "URL": "https://uptime-kuma.crystaluptime.repl.co"
- }
-}
diff --git a/domains/cs.json b/domains/cs.json
index 433f05500..0f765b1d7 100644
--- a/domains/cs.json
+++ b/domains/cs.json
@@ -8,4 +8,4 @@
"record": {
"CNAME": "shorecn.github.io"
}
-}
+}
diff --git a/domains/csprance.json b/domains/csprance.json
new file mode 100644
index 000000000..4fb6bddc6
--- /dev/null
+++ b/domains/csprance.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "csprance",
+ "email": "chrissprance@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/ctk.json b/domains/ctk.json
new file mode 100644
index 000000000..41f6de86c
--- /dev/null
+++ b/domains/ctk.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "CihatKsm",
+ "email": "cihatksm@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/cv.json b/domains/cv.json
new file mode 100644
index 000000000..583ce9bc8
--- /dev/null
+++ b/domains/cv.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "j0code",
+ "discord": "j0code",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "cohalejoja.selfhost.eu"
+ }
+}
diff --git a/domains/cycloneaddons.json b/domains/cycloneaddons.json
new file mode 100644
index 000000000..238eb2e85
--- /dev/null
+++ b/domains/cycloneaddons.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "CycloneAddons",
+ "email": "cycloneaddon@gmail.com"
+ },
+ "record": {
+ "A": ["34.132.134.162"],
+ "TXT": "replit-verify=4aa75152-01c8-46af-b007-80d24ba1a8fa"
+ }
+}
diff --git a/domains/cyr.json b/domains/cyr.json
new file mode 100644
index 000000000..a63186f42
--- /dev/null
+++ b/domains/cyr.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "SoulUchiha",
+ "email": "gameracsyt707@gmail.com",
+ "discord": "978601368950542397"
+ },
+
+ "record": {
+ "CNAME": "b20c0240-8196-4f97-9bfe-f31aa0ce5f8b.id.repl.co"
+ }
+}
diff --git a/domains/cz.json b/domains/cz.json
new file mode 100644
index 000000000..235d26771
--- /dev/null
+++ b/domains/cz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ac009527",
+ "email": "18571853917@163.com"
+ },
+ "record": {
+ "A": ["193.111.31.120"]
+ }
+}
diff --git a/domains/d3admanbot.json b/domains/d3admanbot.json
index 1825961ea..dab4851c6 100644
--- a/domains/d3admanbot.json
+++ b/domains/d3admanbot.json
@@ -1,5 +1,5 @@
{
- "description": "@D3ADVAU 's Telegram Bot | @D3ADMANBOT @D3ADVAU",
+ "description": "D3ADVAU 's Telegram Bot | @D3ADMANBOT @D3ADVAU",
"owner": {
"username": "D3ADVAU",
"email": "deadmanofficial247@gmail.com"
diff --git a/domains/d3c.json b/domains/d3c.json
index 3da1902cc..9daeb5bbb 100644
--- a/domains/d3c.json
+++ b/domains/d3c.json
@@ -1,13 +1,10 @@
{
- "owner": {
- "username": "czb8",
- "email": "czb8.a1@gmail.com"
- },
- "record": {
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
+ "owner": {
+ "username": "czb8",
+ "email": "czb8.a1@gmail.com"
+ },
+ "record": {
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
}
diff --git a/domains/d3nxel.json b/domains/d3nxel.json
new file mode 100644
index 000000000..0bce66a10
--- /dev/null
+++ b/domains/d3nxel.json
@@ -0,0 +1,11 @@
+{
+ "description": "My friends website",
+ "repo": "https://github.com/ExpediteDC/denzel",
+ "owner": {
+ "username": "ExpediteDC",
+ "email": "vien@courvix.com"
+ },
+ "record": {
+ "CNAME": "denzel.pages.dev"
+ }
+}
diff --git a/domains/d3vboi.json b/domains/d3vboi.json
new file mode 100644
index 000000000..cbbec71a4
--- /dev/null
+++ b/domains/d3vboi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "d3vboi",
+ "email": "d3vboi@proton.me"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
diff --git a/domains/daanschenkel.json b/domains/daanschenkel.json
index 71ee24f88..33851d31e 100644
--- a/domains/daanschenkel.json
+++ b/domains/daanschenkel.json
@@ -3,7 +3,6 @@
"username": "daanschenkel",
"email": "daan@daanschenkel.nl"
},
-
"record": {
"URL": "https://daanschenkel.nl"
}
diff --git a/domains/daddy.json b/domains/daddy.json
deleted file mode 100644
index 7d6e17792..000000000
--- a/domains/daddy.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "description": "Redirect to daddy mahir's website",
- "repo": "https://github.com/mtgsquad",
- "owner": {
- "username": "mtgsquad",
- "email": "mahir@molai.dev",
- "twitter": "DevMolai",
- "discord": "molai.dev#2674"
- },
- "record": {
- "URL": "https://molai.dev"
- }
-}
diff --git a/domains/damned-support.json b/domains/damned-support.json
new file mode 100644
index 000000000..809dd2edc
--- /dev/null
+++ b/domains/damned-support.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "keshrlmfao",
+ "email": "kiwipointss555@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/damned.json b/domains/damned.json
index 586a76bc3..af720af97 100644
--- a/domains/damned.json
+++ b/domains/damned.json
@@ -8,4 +8,4 @@
"record": {
"CNAME": "damnedstudios.github.io"
}
-}
+}
diff --git a/domains/danielclarke.json b/domains/danielclarke.json
deleted file mode 100644
index 5a02b320b..000000000
--- a/domains/danielclarke.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Daniel Clarke's website",
- "repo": "https://github.com/DanielWilliamClarke/Cujo",
- "owner": {
- "username": "DanielWilliamClarke",
- "email": "clarkit@gmail.com"
- },
- "record": {
- "URL": "https://danielclarke.tech"
- }
-}
diff --git a/domains/danilofuchs.json b/domains/danilofuchs.json
index c20da8e25..e081cdc8f 100644
--- a/domains/danilofuchs.json
+++ b/domains/danilofuchs.json
@@ -1,6 +1,4 @@
{
- "description": "danilofuchs's is-a.dev domain",
- "repo": "https://github.com/danilofuchs/danilofuchs.github.io",
"owner": {
"username": "danilofuchs",
"email": "danilo_fuchs@hotmail.com"
diff --git a/domains/dantae.json b/domains/dantae.json
new file mode 100644
index 000000000..e6b1be24f
--- /dev/null
+++ b/domains/dantae.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Thedogecraft",
+ "email": "dantaealt@gmail.com"
+ },
+ "record": {
+ "CNAME": "nativegames.net"
+ }
+}
diff --git a/domains/darian.json b/domains/darian.json
new file mode 100644
index 000000000..db4c9a500
--- /dev/null
+++ b/domains/darian.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "justDarian",
+ "email": "Darian.mohaseb@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/dark.json b/domains/dark.json
index 86fd9403d..8078d3770 100644
--- a/domains/dark.json
+++ b/domains/dark.json
@@ -2,8 +2,8 @@
"owner": {
"username": "BruhDark",
"email": "darkpxint@gmail.com"
- },
- "record": {
- "CNAME": "bruhdarkgithubio-production.up.railway.app"
- }
-}
+ },
+ "record": {
+ "CNAME": "website-93d6f.web.app"
+ }
+}
\ No newline at end of file
diff --git a/domains/darkdevil.json b/domains/darkdevil.json
index b70b4b89b..811bff878 100644
--- a/domains/darkdevil.json
+++ b/domains/darkdevil.json
@@ -7,12 +7,7 @@
"discord": "LRxDark Dare Devil#0001"
},
"record": {
- "A": [
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153",
- "185.199.108.153"
- ],
+ "A": ["185.199.109.153", "185.199.110.153", "185.199.111.153", "185.199.108.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/darrem.json b/domains/darrem.json
new file mode 100644
index 000000000..53371c867
--- /dev/null
+++ b/domains/darrem.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DarremMolko",
+ "email": "justdarrem@gmail.com"
+ },
+ "record": {
+ "CNAME": "darrem.alwaysdata.net"
+ }
+}
diff --git a/domains/dasshark.json b/domains/dasshark.json
index 805f30e7a..43482054e 100644
--- a/domains/dasshark.json
+++ b/domains/dasshark.json
@@ -1,10 +1,11 @@
{
"owner": {
"username": "DasSharkk",
- "email": "affenheld@gmx.de"
+ "email": "dassharkk@proton.me"
},
-
"record": {
- "URL": "https://dasshark.me"
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
diff --git a/domains/data.json b/domains/data.json
index 5738c9ef2..10d14c84b 100644
--- a/domains/data.json
+++ b/domains/data.json
@@ -1,7 +1,7 @@
{
"owner": {
- "username": "WilliamDavidHarrison",
- "email": "william@williamharrison.dev"
+ "username": "is-a-dev",
+ "email": "phenax5@gmail.com"
},
"record": {
diff --git a/domains/datamind.json b/domains/datamind.json
new file mode 100644
index 000000000..4e8d9c915
--- /dev/null
+++ b/domains/datamind.json
@@ -0,0 +1,12 @@
+{
+ "description": "personal site",
+ "repo": "https://github.com/DatamindDev/DatamindDev.github.io",
+ "owner": {
+ "username": "DatamindDev",
+ "email": "datamindcontact@gmail.com",
+ "twitter": "i dont use"
+ },
+ "record": {
+ "CNAME": "dataminddev.github.io"
+ }
+}
diff --git a/domains/dave.json b/domains/dave.json
new file mode 100644
index 000000000..a11efd044
--- /dev/null
+++ b/domains/dave.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ceodavee",
+ "email": "ceodavee@icloud.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/david.json b/domains/david.json
deleted file mode 100644
index 41ee262fe..000000000
--- a/domains/david.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Student and developer in the United Kingdom.",
- "repo": "https://github.com/davidjcralph",
- "record": {
- "URL": "https://davidjcralph.co.uk"
- },
- "owner": {
- "username": "davidjcralph",
- "email": "me@davidjcralph.co.uk"
- }
-}
diff --git a/domains/dax.json b/domains/dax.json
new file mode 100644
index 000000000..4ba989fb8
--- /dev/null
+++ b/domains/dax.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "dandepan303",
+ "email": "dandepan303@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/dean.json b/domains/dean.json
new file mode 100644
index 000000000..a2888fa3c
--- /dev/null
+++ b/domains/dean.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "dandepan303",
+ "email": "dandepan303@gmail.com"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ]
+ }
+}
diff --git a/domains/debajyoti.json b/domains/debajyoti.json
index 4441c2b83..862d60053 100644
--- a/domains/debajyoti.json
+++ b/domains/debajyoti.json
@@ -5,6 +5,6 @@
},
"record": {
- "CNAME": "debajyoti.cf"
+ "A": ["152.67.6.15"]
}
}
diff --git a/domains/debjit-mandal.json b/domains/debjit-mandal.json
new file mode 100644
index 000000000..b2434505d
--- /dev/null
+++ b/domains/debjit-mandal.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "debjit-mandal",
+ "email": "debjitmandal8925@gmail.com"
+ },
+ "record": {
+ "CNAME": "debjit-mandal.github.io"
+ }
+}
diff --git a/domains/declan.json b/domains/declan.json
new file mode 100644
index 000000000..5886c6562
--- /dev/null
+++ b/domains/declan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ItsFranklinMyDudes",
+ "email": "franklindudes21@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/deepak.json b/domains/deepak.json
index 30b266e5e..f031c76cd 100644
--- a/domains/deepak.json
+++ b/domains/deepak.json
@@ -1,11 +1,11 @@
-{
- "description": "Deepak's Personal Site",
- "repo": "https://github.com/marchinghunter/deepakportfolio",
- "owner": {
- "username": "marchinghunter",
- "email": "dm6593120@gmail.com"
- },
- "record": {
- "CNAME": "marchinghunter.github.io"
- }
-}
+{
+ "description": "Deepak's Personal Site",
+ "repo": "https://github.com/marchinghunter/marchinghunter.github.io",
+ "owner": {
+ "username": "marchinghunter",
+ "email": "dm6593120@gmail.com"
+ },
+ "record": {
+ "CNAME": "marchinghunter.github.io"
+ }
+}
diff --git a/domains/deepesh.json b/domains/deepesh.json
new file mode 100644
index 000000000..9c5b61bd1
--- /dev/null
+++ b/domains/deepesh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "CycloneAddons",
+ "email": "cycloneaddon@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/delasheras.json b/domains/delasheras.json
index 9dc9857e6..2794d8db2 100644
--- a/domains/delasheras.json
+++ b/domains/delasheras.json
@@ -1,11 +1,9 @@
{
- "owner":{
- "username":"ruben-as",
- "email":"ruben.aja.85@gmail.com"
- },
- "record":{
- "A":[
- "212.227.32.105"
- ]
- }
+ "owner": {
+ "username": "ruben-as",
+ "email": "ruben.aja.85@gmail.com"
+ },
+ "record": {
+ "A": ["212.227.32.105"]
+ }
}
diff --git a/domains/deltafumble.json b/domains/deltafumble.json
new file mode 100644
index 000000000..e8450990a
--- /dev/null
+++ b/domains/deltafumble.json
@@ -0,0 +1,12 @@
+{
+ "description": "My blog",
+ "repo": "https://github.com/deltafumble/deltafumble.github.io",
+ "owner": {
+ "username": "deltafumble",
+ "email": "deltafumblecontact@skiff.com",
+ "twitter": "deltafumble"
+ },
+ "record": {
+ "CNAME": "deltafumble.github.io"
+ }
+}
diff --git a/domains/demongamez.json b/domains/demongamez.json
new file mode 100644
index 000000000..8bab6eb0f
--- /dev/null
+++ b/domains/demongamez.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ShadowPlayzYT22",
+ "email": "peterwyneg@gmail.com",
+ "discord": "1038747272701292584"
+ },
+
+ "record": {
+ "CNAME": "1330d861-7ea5-40e4-aeec-98267aebec75.id.repl.co"
+ }
+}
diff --git a/domains/demonplayz.json b/domains/demonplayz.json
new file mode 100644
index 000000000..8bab6eb0f
--- /dev/null
+++ b/domains/demonplayz.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ShadowPlayzYT22",
+ "email": "peterwyneg@gmail.com",
+ "discord": "1038747272701292584"
+ },
+
+ "record": {
+ "CNAME": "1330d861-7ea5-40e4-aeec-98267aebec75.id.repl.co"
+ }
+}
diff --git a/domains/denboy0123.json b/domains/denboy0123.json
new file mode 100644
index 000000000..818cb69aa
--- /dev/null
+++ b/domains/denboy0123.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "denboy0123",
+ "email": "denhayhan@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/denizak.json b/domains/denizak.json
new file mode 100644
index 000000000..7e05332b5
--- /dev/null
+++ b/domains/denizak.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "denizak",
+ "email": "denizakya@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/denizbee.json b/domains/denizbee.json
new file mode 100644
index 000000000..5d38e857e
--- /dev/null
+++ b/domains/denizbee.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "denizbee",
+ "email": "denizbayramoglu@proton.me"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/dennystc.json b/domains/dennystc.json
new file mode 100644
index 000000000..09e305384
--- /dev/null
+++ b/domains/dennystc.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dtcabrerizo",
+ "email": "cabrerizo@gmail.com"
+ },
+ "record": {
+ "CNAME": "ecodoc.com.br"
+ }
+}
diff --git a/domains/dev-420.json b/domains/dev-420.json
new file mode 100644
index 000000000..8c029e4b8
--- /dev/null
+++ b/domains/dev-420.json
@@ -0,0 +1,12 @@
+{
+ "description": "Just a website for me",
+ "repo": "https://github.com/Dev-420/dev-420.github.io",
+ "owner": {
+ "username": "Dev-420",
+ "email": "imakbss@gmail.com",
+ "discord":"hot_dev"
+ },
+ "record": {
+ "CNAME": "dev-420.github.io"
+ }
+}
diff --git a/domains/deva.json b/domains/deva.json
new file mode 100644
index 000000000..738d70968
--- /dev/null
+++ b/domains/deva.json
@@ -0,0 +1,11 @@
+{
+ "description": "my mail forwarder",
+ "owner": {
+ "username": "turbomaster95",
+ "email": "devamidhun.3c.kmbvm@gmail.com"
+ },
+ "record": {
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/devel.json b/domains/devel.json
new file mode 100644
index 000000000..a0870ea7f
--- /dev/null
+++ b/domains/devel.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Atr-e",
+ "email": "eatr577@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/devfate.json b/domains/devfate.json
index 0bb9c1a2a..f9e1047d6 100644
--- a/domains/devfate.json
+++ b/domains/devfate.json
@@ -1,10 +1,10 @@
{
- "owner":{
- "username":"blackpandan",
- "email": "",
- "twitter": "camzy_l"
- },
- "record":{
- "CNAME":"blackpandan.github.io"
- }
+ "owner": {
+ "username": "blackpandan",
+ "email": "",
+ "twitter": "camzy_l"
+ },
+ "record": {
+ "CNAME": "blackpandan.github.io"
+ }
}
diff --git a/domains/devgd.json b/domains/devgd.json
new file mode 100644
index 000000000..0e409ca14
--- /dev/null
+++ b/domains/devgd.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Dev8H24",
+ "email": "devsteamgaming91@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/devilplayz.json b/domains/devilplayz.json
new file mode 100644
index 000000000..3dcc886a0
--- /dev/null
+++ b/domains/devilplayz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ShadowPlayzYT22",
+ "email": "peterwyneg@gmail.com"
+ },
+ "record": {
+ "CNAME": "1330d861-7ea5-40e4-aeec-98267aebec75.id.repl.co"
+ }
+}
diff --git a/domains/devpanther.json b/domains/devpanther.json
new file mode 100644
index 000000000..cd4fcebb4
--- /dev/null
+++ b/domains/devpanther.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "2618Zahid",
+ "email": "zahidhassankalaroa104@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/devs.json b/domains/devs.json
new file mode 100644
index 000000000..c55b7045c
--- /dev/null
+++ b/domains/devs.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "GodfatherX64",
+ "email": "godfather.x64@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/dew.json b/domains/dew.json
new file mode 100644
index 000000000..0768b84d7
--- /dev/null
+++ b/domains/dew.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "dew-mortal",
+ "email": "dewmortal.cod@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/dexo.json b/domains/dexo.json
index 8274fd193..15ff08cfb 100644
--- a/domains/dexo.json
+++ b/domains/dexo.json
@@ -1,11 +1,9 @@
{
- "description": "Ce cauti ma aici?",
"owner": {
"username": "DeXoHigh",
- "email": "dexocash@gmail.com"
+ "email": "dexo1337@pm.me"
},
"record": {
- "A": ["185.141.25.116"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/dhaval-kareliya.json b/domains/dhaval-kareliya.json
index e7e0654c5..6b1eb3c61 100644
--- a/domains/dhaval-kareliya.json
+++ b/domains/dhaval-kareliya.json
@@ -1,11 +1,11 @@
{
- "description": "This is a personal website",
- "repo": "https://github.com/dhaval-kareliya/dhaval-kareliya.github.io",
- "owner": {
- "username": "dhaval-kareliya",
- "email": ""
- },
- "record": {
- "CNAME": "dhaval-kareliya.github.io"
- }
+ "description": "This is a personal website",
+ "repo": "https://github.com/dhaval-kareliya/dhaval-kareliya.github.io",
+ "owner": {
+ "username": "dhaval-kareliya",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "dhaval-kareliya.github.io"
+ }
}
diff --git a/domains/dhruvil.json b/domains/dhruvil.json
index dbdb03796..04702b8e7 100644
--- a/domains/dhruvil.json
+++ b/domains/dhruvil.json
@@ -6,12 +6,7 @@
"email": "dhruvil1808@gmail.com"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/dhyeypatel.json b/domains/dhyeypatel.json
new file mode 100644
index 000000000..589ac2402
--- /dev/null
+++ b/domains/dhyeypatel.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dh2523",
+ "email": "dhpatel2523@gmail.com"
+ },
+ "record": {
+ "CNAME": "dh2523.github.io"
+ }
+}
diff --git a/domains/dib.json b/domains/dib.json
index 9309e1001..d3f7d039a 100644
--- a/domains/dib.json
+++ b/domains/dib.json
@@ -6,6 +6,6 @@
"twitter": "DEV_DIBSTER"
},
"record": {
- "A": ["192.95.42.66"]
+ "CNAME": "proxy.dib.localplayer.dev"
}
}
diff --git a/domains/dibster.json b/domains/dibster.json
index 37fb8a60e..af0bba065 100644
--- a/domains/dibster.json
+++ b/domains/dibster.json
@@ -6,6 +6,6 @@
"twitter": "DEV_DIBSTER"
},
"record": {
- "A": ["192.95.42.66"]
+ "CNAME": "proxy.dib.localplayer.dev"
}
}
diff --git a/domains/diedyesterday.json b/domains/diedyesterday.json
new file mode 100644
index 000000000..c6df5ca85
--- /dev/null
+++ b/domains/diedyesterday.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "diedyesterdaywashere",
+ "email": "diedyesterdaywashere@gmail.com"
+ },
+ "record": {
+ "CNAME": "diedeyestedaywashere.github.io"
+ }
+}
diff --git a/domains/dinhq.json b/domains/dinhq.json
new file mode 100644
index 000000000..83db2cc7a
--- /dev/null
+++ b/domains/dinhq.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "dinhqvn99",
+ "email": "trinhdinhquy@iesschool.edu.vn"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/dirgha-ukani.json b/domains/dirgha-ukani.json
index 78ca848dd..aacb530ee 100644
--- a/domains/dirgha-ukani.json
+++ b/domains/dirgha-ukani.json
@@ -1,11 +1,11 @@
{
- "description": "This is personal website",
- "repo": "https://github.com/dirgha-ukani/dirgha-ukani.github.io",
- "owner": {
- "username": "dirgha-ukani",
- "email": ""
- },
- "record": {
- "CNAME": "dirgha-ukani.github.io"
- }
+ "description": "This is personal website",
+ "repo": "https://github.com/dirgha-ukani/dirgha-ukani.github.io",
+ "owner": {
+ "username": "dirgha-ukani",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "dirgha-ukani.github.io"
+ }
}
diff --git a/domains/discord-corp.json b/domains/discord-corp.json
new file mode 100644
index 000000000..45c849919
--- /dev/null
+++ b/domains/discord-corp.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "JZ1324",
+ "email": "zheng.joshua2@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/diyar.json b/domains/diyar.json
new file mode 100644
index 000000000..20fb59bab
--- /dev/null
+++ b/domains/diyar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DiyarBakir",
+ "email": "Diyar.Bakir@Hotmail.com"
+ },
+ "record": {
+ "URL": "https://diyar.io"
+ }
+}
diff --git a/domains/dmmay.json b/domains/dmmay.json
new file mode 100644
index 000000000..364f2bc30
--- /dev/null
+++ b/domains/dmmay.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nguoidungkhongdinhdanhh",
+ "email": "azura22@skiff.com"
+ },
+ "record": {
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"]
+ }
+}
diff --git a/domains/dodo1213.json b/domains/dodo1213.json
new file mode 100644
index 000000000..d42596d43
--- /dev/null
+++ b/domains/dodo1213.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Dodo1213",
+ "email": "dodogut602@gmail.com"
+ },
+ "record": {
+ "CNAME": "dodo1213.de"
+ }
+}
diff --git a/domains/domathdotid.json b/domains/domathdotid.json
index dc6d6283d..84c551334 100644
--- a/domains/domathdotid.json
+++ b/domains/domathdotid.json
@@ -1,10 +1,11 @@
{
"owner": {
"username": "DomathID",
- "email": "domath69@gmail.com"
+ "email": "admin@yukinoshita.web.id"
},
-
"record": {
- "CNAME": "domathid.github.io"
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/dominik.json b/domains/dominik.json
new file mode 100644
index 000000000..f76e83c5e
--- /dev/null
+++ b/domains/dominik.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "mezotv",
+ "email": "dominik@koch-bautechnik.de"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/dommor.json b/domains/dommor.json
index 9dc9857e6..2794d8db2 100644
--- a/domains/dommor.json
+++ b/domains/dommor.json
@@ -1,11 +1,9 @@
{
- "owner":{
- "username":"ruben-as",
- "email":"ruben.aja.85@gmail.com"
- },
- "record":{
- "A":[
- "212.227.32.105"
- ]
- }
+ "owner": {
+ "username": "ruben-as",
+ "email": "ruben.aja.85@gmail.com"
+ },
+ "record": {
+ "A": ["212.227.32.105"]
+ }
}
diff --git a/domains/don.json b/domains/don.json
new file mode 100644
index 000000000..d7e85567d
--- /dev/null
+++ b/domains/don.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "DonDoesStuff",
+ "email": "lgamerlivestudios@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/donate.gornostay25.json b/domains/donate.gornostay25.json
index f2ad0d0b6..3636d58ab 100644
--- a/domains/donate.gornostay25.json
+++ b/domains/donate.gornostay25.json
@@ -4,11 +4,6 @@
"email": "me@gornostay25.is-a.dev"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ]
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"]
}
}
diff --git a/domains/donkaos.json b/domains/donkaos.json
index 1c55cbd59..498e90b1c 100644
--- a/domains/donkaos.json
+++ b/domains/donkaos.json
@@ -6,6 +6,6 @@
"email": "donkaos501@outlook.com"
},
"record": {
- "CNAME": "is-a.dev.donkaos.de"
+ "URL": "https://donkaos.de/"
}
}
diff --git a/domains/donno2048.json b/domains/donno2048.json
index f073cb941..9738ca276 100644
--- a/domains/donno2048.json
+++ b/domains/donno2048.json
@@ -1,10 +1,9 @@
-
{
"owner": {
"username": "donno2048",
"email": "just4now666666@gmail.com"
},
"record": {
- "URL": "https://donno2048.github.io/Portfolio/"
+ "URL": "https://donno2048.github.io/Portfolio"
}
-}
+}
diff --git a/domains/downgit.json b/domains/downgit.json
new file mode 100644
index 000000000..bb6f0264a
--- /dev/null
+++ b/domains/downgit.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "InvalidNoah",
+ "discord": "invalidnoah#0",
+ "email": "zjustmarcel@gmail.com"
+ },
+ "record": {
+ "CNAME": "invalidnoah.github.io"
+ }
+}
diff --git a/domains/dqmn.json b/domains/dqmn.json
index 1121848e0..f8cb5eedc 100644
--- a/domains/dqmn.json
+++ b/domains/dqmn.json
@@ -1,11 +1,11 @@
{
- "description": "dqmn.is-a.dev",
- "repo": "https://github.com/dqmn/dqmn.github.io",
- "owner": {
- "username": "dqmn",
- "email": "dqmnbackup@gmail.com"
- },
- "record": {
- "CNAME": "dqmn.github.io"
- }
+ "description": "dqmn.is-a.dev",
+ "repo": "https://github.com/dqmn/dqmn.github.io",
+ "owner": {
+ "username": "dqmn",
+ "email": "dqmnbackup@gmail.com"
+ },
+ "record": {
+ "CNAME": "dqmn.github.io"
+ }
}
diff --git a/domains/dr-therapy.json b/domains/dr-therapy.json
new file mode 100644
index 000000000..b7dede2db
--- /dev/null
+++ b/domains/dr-therapy.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "drtherapy2023",
+ "email": "sitehesap@proton.me",
+ "discord": "706419336235188264"
+ },
+
+ "record": {
+ "CNAME": "drtherapy2023.github.io"
+ }
+}
diff --git a/domains/drenxhyliqi.json b/domains/drenxhyliqi.json
new file mode 100644
index 000000000..cf1076cd1
--- /dev/null
+++ b/domains/drenxhyliqi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "drenxhyliqi",
+ "email": "drenxhyliqi3@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/drizion.json b/domains/drizion.json
new file mode 100644
index 000000000..70090b594
--- /dev/null
+++ b/domains/drizion.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "drizion",
+ "email": "gabrieldasilvadevargas@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=drizion.is-a.dev,6f313e7f58cf1bdb9801"
+ }
+}
diff --git a/domains/drmzahid.json b/domains/drmzahid.json
new file mode 100644
index 000000000..cd4fcebb4
--- /dev/null
+++ b/domains/drmzahid.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "2618Zahid",
+ "email": "zahidhassankalaroa104@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/drpleaserespect.json b/domains/drpleaserespect.json
new file mode 100644
index 000000000..5ca6c4b45
--- /dev/null
+++ b/domains/drpleaserespect.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "DrPleaseRespect",
+ "email": "juliannayr2007@gmail.com",
+ "discord": "300641942646161409"
+ },
+
+ "record": {
+ "CNAME": "drpleaserespect.pages.dev"
+ }
+}
diff --git a/domains/drtherapy.json b/domains/drtherapy.json
new file mode 100644
index 000000000..a589a2654
--- /dev/null
+++ b/domains/drtherapy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "drtherapy2023",
+ "email": "sitehesap@proton.me"
+ },
+ "record": {
+ "CNAME": "drtherapy2023.github.io"
+ }
+}
diff --git a/domains/dsgaasdgsdag.json b/domains/dsgaasdgsdag.json
new file mode 100644
index 000000000..809dd2edc
--- /dev/null
+++ b/domains/dsgaasdgsdag.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "keshrlmfao",
+ "email": "kiwipointss555@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/dsgamer.json b/domains/dsgamer.json
new file mode 100644
index 000000000..66f4945ff
--- /dev/null
+++ b/domains/dsgamer.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "DhruvGamingzsoft",
+ "email": "dgashost@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ducky.json b/domains/ducky.json
deleted file mode 100644
index 012aafbf0..000000000
--- a/domains/ducky.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "My website for random stuff",
- "repo": "https://github.com/WhoTook7050/WhoTook7050.github.io",
- "owner": {
- "username": "WhoTook7050",
- "email": "tosonana@tuta.io"
- },
- "record": {
- "CNAME": "WhoTook7050.github.io"
- }
-}
diff --git a/domains/dudeinski.json b/domains/dudeinski.json
new file mode 100644
index 000000000..03c0191c2
--- /dev/null
+++ b/domains/dudeinski.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kaio-lord",
+ "email": "mataerick855@gmail.com"
+ },
+ "record": {
+ "CNAME": "2ecfaa94-1335-4e48-82a2-0c93451c2c30.id.repl.co"
+ }
+}
diff --git a/domains/dumprr.json b/domains/dumprr.json
new file mode 100644
index 000000000..e02aa7a2b
--- /dev/null
+++ b/domains/dumprr.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/dumprr/dumprr.github.io",
+ "owner": {
+ "username": "dumprr",
+ "email": "duhhhmprr@proton.me"
+ },
+ "record": {
+ "CNAME": "dumprr.github.io"
+ }
+}
diff --git a/domains/durlavkalita.json b/domains/durlavkalita.json
new file mode 100644
index 000000000..e88d69b50
--- /dev/null
+++ b/domains/durlavkalita.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio/blog of Durlav Kalita",
+ "repo": "https://github.com/durlavkalita/durlavkalita.github.io",
+ "owner": {
+ "username": "durlavkalita",
+ "email": "durlavk98@gmail.com"
+ },
+ "record": {
+ "CNAME": "durlavkalita.github.io"
+ }
+}
diff --git a/domains/dushmanta.json b/domains/dushmanta.json
index 3da0519e7..3d2daafbb 100644
--- a/domains/dushmanta.json
+++ b/domains/dushmanta.json
@@ -3,7 +3,7 @@
"repo": "https://github.com/dushmanta05/dushmanta05.github.io",
"owner": {
"username": "dushmanta05",
- "email": "dushmanta0511@gmail.com",
+ "email": "dushmanta.dev@gmail.com",
"twitter": "dushmanta05"
},
"record": {
diff --git a/domains/duy.json b/domains/duy.json
new file mode 100644
index 000000000..3a30b641f
--- /dev/null
+++ b/domains/duy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DuykhanhGaming",
+ "email": "andickhead124@gmail.com"
+ },
+ "record": {
+ "CNAME": "dreemurrs.eu.org"
+ }
+}
diff --git a/domains/duyeric.json b/domains/duyeric.json
new file mode 100644
index 000000000..998d83e96
--- /dev/null
+++ b/domains/duyeric.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "duyeric",
+ "email": "duyericmmo@gmail.com"
+ },
+ "record": {
+ "A": ["172.245.139.131"]
+ }
+}
diff --git a/domains/duynguyen.json b/domains/duynguyen.json
new file mode 100644
index 000000000..998d83e96
--- /dev/null
+++ b/domains/duynguyen.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "duyeric",
+ "email": "duyericmmo@gmail.com"
+ },
+ "record": {
+ "A": ["172.245.139.131"]
+ }
+}
diff --git a/domains/dwk.json b/domains/dwk.json
new file mode 100644
index 000000000..01be5e070
--- /dev/null
+++ b/domains/dwk.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Brickmasterr",
+ "email": "dwiki200304@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/dylanmarsili.json b/domains/dylanmarsili.json
index 806a7d125..d27a31aec 100644
--- a/domains/dylanmarsili.json
+++ b/domains/dylanmarsili.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "dylan-marsili.github.io"
}
-}
+}
diff --git a/domains/dynamic-homepage.json b/domains/dynamic-homepage.json
new file mode 100644
index 000000000..706cf81de
--- /dev/null
+++ b/domains/dynamic-homepage.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "vikramv20",
+ "email": "vs423502@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/easlo.json b/domains/easlo.json
new file mode 100644
index 000000000..4bb1b57f3
--- /dev/null
+++ b/domains/easlo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "roktim32",
+ "email": "roktimsenapoty2@gmail.com"
+ },
+ "record": {
+ "TXT": "google-site-verification=I-qh4G6_-4yoA7JYUS8D8xFLDBgmCWToJisBGZYIqw0"
+ }
+}
diff --git a/domains/eax.json b/domains/eax.json
deleted file mode 100644
index ee469555d..000000000
--- a/domains/eax.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "is-a.dev website of eaxly",
- "repo": "https://codeberg.org/eax/website",
- "owner": {
- "username": "eaxly",
- "email": "extinctaxolotl@protonmail.com"
- },
- "record": {
- "URL": "https://site.eax.li"
- }
-}
diff --git a/domains/eclair.json b/domains/eclair.json
new file mode 100644
index 000000000..b7844089f
--- /dev/null
+++ b/domains/eclair.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "assjgejcitif",
+ "email": "fluffy@dmc.chat"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/eden.json b/domains/eden.json
new file mode 100644
index 000000000..c5521af52
--- /dev/null
+++ b/domains/eden.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/edenqwq/edenqwq.github.io",
+ "owner": {
+ "username": "EdenQwQ",
+ "email": "lsahlm1eden@gmail.com"
+ },
+ "record": {
+ "CNAME": "edenqwq.github.io"
+ }
+}
diff --git a/domains/edmonddevera.json b/domains/edmonddevera.json
index a017288b4..8fe1e6321 100644
--- a/domains/edmonddevera.json
+++ b/domains/edmonddevera.json
@@ -1,11 +1,11 @@
-{
- "description": "To create a portfolio and use in web development ",
- "repo": "https://tsuuukiii.github.io/PortfolioWebsite",
- "owner": {
- "username": "Tsuuukiii",
- "email": "deverajan6@gmail.com"
- },
- "record": {
- "CNAME": "tsuuukiii.github.io"
- }
-}
+{
+ "description": "To create a portfolio and use in web development ",
+ "repo": "https://tsuuukiii.github.io/PortfolioWebsite",
+ "owner": {
+ "username": "Tsuuukiii",
+ "email": "deverajan6@gmail.com"
+ },
+ "record": {
+ "CNAME": "tsuuukiii.github.io"
+ }
+}
diff --git a/domains/edson.json b/domains/edson.json
new file mode 100644
index 000000000..36fb93ff2
--- /dev/null
+++ b/domains/edson.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "edsonbittencourt",
+ "email": "edson.bittencourt@outlook.com"
+ },
+
+ "record": {
+ "A": ["168.138.228.142"]
+ }
+}
diff --git a/domains/eevee.json b/domains/eevee.json
new file mode 100644
index 000000000..a8b644af0
--- /dev/null
+++ b/domains/eevee.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Eevee-Gaming",
+ "email": "nonothug59@gmail.com"
+ },
+ "record": {
+ "URL": "https://eeveegaming.cf"
+ }
+}
diff --git a/domains/efrecon.json b/domains/efrecon.json
new file mode 100644
index 000000000..c2c8c9e61
--- /dev/null
+++ b/domains/efrecon.json
@@ -0,0 +1,11 @@
+{
+ "description": "efrecon's github",
+ "repo": "https://github.com/efrecon/",
+ "owner": {
+ "username": "efrecon",
+ "email": "efrecon+github@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/efrecon/"
+ }
+}
diff --git a/domains/ejaz.json b/domains/ejaz.json
index 060d912f0..47050836e 100644
--- a/domains/ejaz.json
+++ b/domains/ejaz.json
@@ -1,12 +1,9 @@
{
- "description": "My personal portfolio site.",
- "repo": "https://github.com/ejaz/ejaz4.github.io",
"owner": {
"username": "ejaz4",
- "email": "ejaz@ceccun.com",
- "twitter": "ejazaIi"
+ "email": "ejazali4@protonmail.ch"
},
"record": {
- "CNAME": "ejaz4.github.io"
+ "CNAME": "ejaz4.github.io"
}
}
diff --git a/domains/elbenja.json b/domains/elbenja.json
index 34b563feb..9f1fae5db 100644
--- a/domains/elbenja.json
+++ b/domains/elbenja.json
@@ -1,8 +1,8 @@
{
"owner": {
- "username": "iakzs",
- "email": "iakzs@protonmail.com",
- "discord": "622795838032314388"
+ "username": "iakzs",
+ "email": "iakzs@protonmail.com",
+ "discord": "622795838032314388"
},
"record": {
diff --git a/domains/elbernaoui.json b/domains/elbernaoui.json
index 13e5ce133..31d9ff7a8 100644
--- a/domains/elbernaoui.json
+++ b/domains/elbernaoui.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "el-bernaoui.github.io"
}
-}
+}
diff --git a/domains/elian.json b/domains/elian.json
deleted file mode 100644
index cb5d4af25..000000000
--- a/domains/elian.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "hoangdev09",
- "email": "tranconghoang18@gmail.com"
- },
- "record": {
- "URL": "https://hoangdev09.github.io/infomation"
- }
-}
diff --git a/domains/eliteflix.json b/domains/eliteflix.json
new file mode 100644
index 000000000..d05378754
--- /dev/null
+++ b/domains/eliteflix.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Legend256",
+ "email": "heroku.1st.dyno@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/elixss.json b/domains/elixss.json
new file mode 100644
index 000000000..25cb935ef
--- /dev/null
+++ b/domains/elixss.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "elixss",
+ "email": "elias.jaeger2004@gmail.com"
+ },
+ "record": {
+ "A": ["45.81.232.16"]
+ }
+}
diff --git a/domains/endercass.json b/domains/endercass.json
new file mode 100644
index 000000000..b3da1c574
--- /dev/null
+++ b/domains/endercass.json
@@ -0,0 +1,11 @@
+{
+ "description": "Endercass Portfolio",
+ "owner": {
+ "username": "Endercass",
+ "email": "",
+ "discord": "endercass"
+ },
+ "record": {
+ "URL": "https://endercass.me"
+ }
+}
diff --git a/domains/enderpoint.json b/domains/enderpoint.json
index e02cbad16..7770ee2a1 100644
--- a/domains/enderpoint.json
+++ b/domains/enderpoint.json
@@ -1,13 +1,13 @@
{
- "description": "EnderPoint's dev site",
- "repo": "https://github.com/EnderPoint07/EnderPoint07.github.io",
- "owner": {
- "username": "EnderPoint07",
- "email": "",
- "discord": "DotM38#5497",
- "instagram": "enderpoint07"
- },
- "record": {
- "CNAME": "enderpoint07.github.io"
- }
+ "description": "EnderPoint's dev site",
+ "repo": "https://github.com/EnderPoint07/EnderPoint07.github.io",
+ "owner": {
+ "username": "EnderPoint07",
+ "email": "",
+ "discord": "DotM38#5497",
+ "instagram": "enderpoint07"
+ },
+ "record": {
+ "CNAME": "enderpoint07.github.io"
+ }
}
diff --git a/domains/enoughsdv.json b/domains/enoughsdv.json
new file mode 100644
index 000000000..6bf271ed7
--- /dev/null
+++ b/domains/enoughsdv.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/Enoughsdv/Enoughsdv.github.io",
+ "owner": {
+ "username": "Enoughsdv",
+ "email": "enoughsdv@gmail.com"
+ },
+ "record": {
+ "CNAME": "enoughsdv.github.io"
+ }
+}
diff --git a/domains/eray.json b/domains/eray.json
new file mode 100644
index 000000000..23d1405ab
--- /dev/null
+++ b/domains/eray.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "erayreperit",
+ "email": "eray6421@proton.me"
+ },
+ "record": {
+ "CNAME": "erayreperit.github.io"
+ }
+}
diff --git a/domains/erdem.json b/domains/erdem.json
index c9009269f..202405794 100644
--- a/domains/erdem.json
+++ b/domains/erdem.json
@@ -1,12 +1,9 @@
{
- "description": "erdem's personal website",
- "repo": "https://github.com/erdem85/website",
"owner": {
"username": "erdem85",
- "email": "erdm@disroot.org",
- "twitter": "erdemhso"
+ "email": "erdm@disroot.org"
},
"record": {
- "URL": "https://erdem.js.org"
+ "URL": "https://erdem.lol"
}
-}
+}
diff --git a/domains/eren.json b/domains/eren.json
new file mode 100644
index 000000000..c3364f4fc
--- /dev/null
+++ b/domains/eren.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "KeIrNeGn",
+ "email": "terminatorx5e@gmail.com",
+ "discord": "499592235772280842"
+ },
+
+ "record": {
+ "URL": "https://keirnegn.dev"
+ }
+}
diff --git a/domains/ericpessoa.json b/domains/ericpessoa.json
new file mode 100644
index 000000000..8fc334f68
--- /dev/null
+++ b/domains/ericpessoa.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Eric-Pessoa",
+ "email": "pessoa.eric@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
diff --git a/domains/ermal.json b/domains/ermal.json
index d54a575ab..45ba4f7c4 100644
--- a/domains/ermal.json
+++ b/domains/ermal.json
@@ -6,12 +6,7 @@
"email": "ermalhasani15@gmail.com"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/error404.json b/domains/error404.json
index 830132fb4..10e108849 100644
--- a/domains/error404.json
+++ b/domains/error404.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "cabrothers.github.io"
}
-}
+}
diff --git a/domains/errornointernet.json b/domains/errornointernet.json
new file mode 100644
index 000000000..64c0b592f
--- /dev/null
+++ b/domains/errornointernet.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ErrorNoInternet",
+ "email": "error.nointernet@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
\ No newline at end of file
diff --git a/domains/esp.json b/domains/esp.json
new file mode 100644
index 000000000..a2db3432b
--- /dev/null
+++ b/domains/esp.json
@@ -0,0 +1,11 @@
+{
+ "description": "portfolio",
+ "owner": {
+ "username": "fakeesp",
+ "email": "esp.python.dev@gmail.com",
+ "telegram": "fakeesp"
+ },
+ "record": {
+ "A": ["144.91.110.55"]
+ }
+}
diff --git a/domains/essiessara.json b/domains/essiessara.json
new file mode 100644
index 000000000..55ab50927
--- /dev/null
+++ b/domains/essiessara.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "essieessara",
+ "email": "esraaaebdelrehime@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/eternal-network.json b/domains/eternal-network.json
new file mode 100644
index 000000000..c39e1befe
--- /dev/null
+++ b/domains/eternal-network.json
@@ -0,0 +1,11 @@
+{
+ "description": "eternal-network.is-a.dev",
+ "repo": "https://github.com/Eternal-Network/eternal-network.github.io",
+ "owner": {
+ "username": "Eternal-Network",
+ "email": "neealdon2@proton.me"
+ },
+ "record": {
+ "CNAME": "eternal-network.github.io"
+ }
+}
diff --git a/domains/eternalnetwork.json b/domains/eternalnetwork.json
new file mode 100644
index 000000000..6520e9f8e
--- /dev/null
+++ b/domains/eternalnetwork.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "neealdon3",
+ "email": "neealdon3@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ethereal.json b/domains/ethereal.json
index a0d7c6bd8..45e7ccfa4 100644
--- a/domains/ethereal.json
+++ b/domains/ethereal.json
@@ -1,11 +1,11 @@
-{
- "owner": {
- "username": "EtherealTheDev",
- "email": "",
- "twitter": "EtherealTheDev",
- "discord": "Ethereal#0908"
- },
- "record": {
- "CNAME": "92073eed-80b5-4f2f-b84a-0121b7ec69bb.id.repl.co"
- }
+{
+ "owner": {
+ "username": "EtherealTheDev",
+ "email": "",
+ "twitter": "EtherealTheDev",
+ "discord": "Ethereal#0908"
+ },
+ "record": {
+ "CNAME": "92073eed-80b5-4f2f-b84a-0121b7ec69bb.id.repl.co"
+ }
}
diff --git a/domains/evelio.json b/domains/evelio.json
index 564cf902d..fc0f69022 100644
--- a/domains/evelio.json
+++ b/domains/evelio.json
@@ -7,12 +7,7 @@
"discord": "SrEvelioツ#3906"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/ezzoubair.json b/domains/ezzoubair.json
new file mode 100644
index 000000000..66bd72ebc
--- /dev/null
+++ b/domains/ezzoubair.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zarqizoubir",
+ "email": "zarqi.ezzoubair@etu.uae.ac.ma"
+ },
+ "record": {
+ "CNAME": "zarqizoubir.github.io"
+ }
+}
diff --git a/domains/falguni-prajapati.json b/domains/falguni-prajapati.json
index faea36c15..c012b9bd8 100644
--- a/domains/falguni-prajapati.json
+++ b/domains/falguni-prajapati.json
@@ -1,11 +1,11 @@
{
- "description": "This is falguni prajapati",
- "repo": "https://github.com/falguni-prajapati/falguni-prajapati.github.io",
- "owner": {
- "username": "falguni-prajapati",
- "email": ""
- },
- "record": {
- "CNAME": "falguni-prajapati.github.io"
- }
+ "description": "This is falguni prajapati",
+ "repo": "https://github.com/falguni-prajapati/falguni-prajapati.github.io",
+ "owner": {
+ "username": "falguni-prajapati",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "falguni-prajapati.github.io"
+ }
}
diff --git a/domains/fallen.json b/domains/fallen.json
deleted file mode 100644
index bfb1e1737..000000000
--- a/domains/fallen.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Website Redirect",
- "repo": "https://github.com/ThingsOfFallen/Website",
- "owner": {
- "username": "TheFallenSpirit",
- "email": "thefallenspirit@outlook.com",
- "twitter": "FallenCodes"
- },
- "record": {
- "URL": "https://fallenspirit.dev"
- }
-}
diff --git a/domains/farag.json b/domains/farag.json
new file mode 100644
index 000000000..c55b7045c
--- /dev/null
+++ b/domains/farag.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "GodfatherX64",
+ "email": "godfather.x64@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/fasdaa.json b/domains/fasdaa.json
new file mode 100644
index 000000000..7004eafa8
--- /dev/null
+++ b/domains/fasdaa.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "boomer4boomer",
+ "email": "abdulkx06epic@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
\ No newline at end of file
diff --git a/domains/fauzi.json b/domains/fauzi.json
new file mode 100644
index 000000000..496e14d2d
--- /dev/null
+++ b/domains/fauzi.json
@@ -0,0 +1,11 @@
+{
+ "description": "My Portfolio web",
+ "repo": "https://github.com/FauziFerdiansyah/fauziferdiansyah.github.io",
+ "owner": {
+ "username": "FauziFerdiansyah",
+ "email": "fetruzie2@gmail.com"
+ },
+ "record": {
+ "CNAME": "FauziFerdiansyah.github.io"
+ }
+}
diff --git a/domains/fayyadh.json b/domains/fayyadh.json
deleted file mode 100644
index 39dba30f6..000000000
--- a/domains/fayyadh.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "My Personal Website",
- "repo": "https://github.com/Abdurrahman075/fayyadh-my-id",
- "owner": {
- "username": "Fayyadh",
- "email": "fayyadh.abdurrahman007@gmail.com"
- },
- "record": {
- "URL": "https://fayyadh.my.id"
- }
-}
diff --git a/domains/fd-gods-clan.json b/domains/fd-gods-clan.json
new file mode 100644
index 000000000..5979a0f57
--- /dev/null
+++ b/domains/fd-gods-clan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ShadowPlayzYT22",
+ "email": "peterwyneg@gmail.com",
+ "discord": "1038747272701292584"
+ },
+
+ "record": {
+ "CNAME": "shadowplayzyt22.github.io"
+ }
+}
diff --git a/domains/felixtpg.json b/domains/felixtpg.json
new file mode 100644
index 000000000..58af6322e
--- /dev/null
+++ b/domains/felixtpg.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "FelixTPG",
+ "email": "bufex09@icloud.com"
+ },
+ "record": {
+ "CNAME": "felixtpg.eu"
+ }
+}
diff --git a/domains/femboy.json b/domains/femboy.json
new file mode 100644
index 000000000..dc7133f05
--- /dev/null
+++ b/domains/femboy.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "antithense",
+ "email": "nuffimail33@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/files.dqmn.json b/domains/files.dqmn.json
index cd09f820c..00a56a724 100644
--- a/domains/files.dqmn.json
+++ b/domains/files.dqmn.json
@@ -1,10 +1,10 @@
{
- "description": "files.dqmn.is-a.dev - this will be my 'cloud' for files",
- "owner": {
- "username": "dqmn",
- "email": "dqmnbackup@gmail.com"
- },
- "record": {
- "CNAME": "dqmnfiles.000webhostapp.com"
- }
+ "description": "files.dqmn.is-a.dev - this will be my 'cloud' for files",
+ "owner": {
+ "username": "dqmn",
+ "email": "dqmnbackup@gmail.com"
+ },
+ "record": {
+ "CNAME": "dqmnfiles.000webhostapp.com"
+ }
}
diff --git a/domains/files.hosts.json b/domains/files.hosts.json
new file mode 100644
index 000000000..6ec5353f8
--- /dev/null
+++ b/domains/files.hosts.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "is-a-dev-bot",
+ "email": "is-a-dev@win11react.com",
+ "discord": "1094272477137481810"
+ },
+
+ "record": {
+ "CNAME": "net.beadman-network.com"
+ }
+}
diff --git a/domains/filip-razek.json b/domains/filip-razek.json
new file mode 100644
index 000000000..b0d361569
--- /dev/null
+++ b/domains/filip-razek.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "FilipRazek",
+ "email": "filip.razek@protonmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/filo.json b/domains/filo.json
new file mode 100644
index 000000000..93d0bdbd2
--- /dev/null
+++ b/domains/filo.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Filo6699",
+ "email": "karka2-6@rambler.ru"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/finny.json b/domains/finny.json
new file mode 100644
index 000000000..991efa2b2
--- /dev/null
+++ b/domains/finny.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "FinnyMarigold58",
+ "email": "teganherring2016@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/firedemon.json b/domains/firedemon.json
new file mode 100644
index 000000000..5979a0f57
--- /dev/null
+++ b/domains/firedemon.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ShadowPlayzYT22",
+ "email": "peterwyneg@gmail.com",
+ "discord": "1038747272701292584"
+ },
+
+ "record": {
+ "CNAME": "shadowplayzyt22.github.io"
+ }
+}
diff --git a/domains/fireredz.json b/domains/fireredz.json
deleted file mode 100644
index fbeac143e..000000000
--- a/domains/fireredz.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "rosenishere",
- "email": "",
- "twitter": "rosenishere"
- },
- "record": {
- "URL": "https://rosenishere.github.io/fireredzsite"
- }
-}
diff --git a/domains/firstboss.json b/domains/firstboss.json
new file mode 100644
index 000000000..d26b45d0e
--- /dev/null
+++ b/domains/firstboss.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "FIRSTB0SS",
+ "email": "abhiwa6@protonmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/fitrahmunir.json b/domains/fitrahmunir.json
index dc4117aa5..bab2e1793 100644
--- a/domains/fitrahmunir.json
+++ b/domains/fitrahmunir.json
@@ -1,11 +1,11 @@
{
- "description": "FitrahFM's .is-a.dev domain",
- "repo": "https://github.com/fitrahfm",
- "owner": {
- "username": "fitrahfm",
- "email": "fitrhmnr+is-a-dev@gmail.com"
- },
- "record": {
- "CNAME": "fitrahmunir.pages.dev"
- }
+ "description": "FitrahFM's .is-a.dev domain",
+ "repo": "https://github.com/fitrahfm",
+ "owner": {
+ "username": "fitrahfm",
+ "email": "fitrhmnr+is-a-dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "fitrahmunir.pages.dev"
+ }
}
diff --git a/domains/fjuro.json b/domains/fjuro.json
new file mode 100644
index 000000000..d6c77f408
--- /dev/null
+++ b/domains/fjuro.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Fjuro",
+ "email": "ifjuro@proton.me"
+ },
+ "record": {
+ "CNAME": "fjuro.github.io"
+ }
+}
diff --git a/domains/flazepe.json b/domains/flazepe.json
index a51351960..69cb91e4d 100644
--- a/domains/flazepe.json
+++ b/domains/flazepe.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "flazepe",
- "email": "",
- "discord": "flazepe"
- },
- "record": {
- "CNAME": "flazepe.github.io"
- }
+ "owner": {
+ "username": "flazepe",
+ "email": "",
+ "discord": "flazepe"
+ },
+ "record": {
+ "CNAME": "flazepe.github.io"
+ }
}
diff --git a/domains/floppa.json b/domains/floppa.json
index 9cdbfb720..5ff7a8db6 100644
--- a/domains/floppa.json
+++ b/domains/floppa.json
@@ -1,9 +1,11 @@
{
"owner": {
"username": "Luxxy-GF",
- "email": "floppa@luxxy.xyz"
+ "email": "deniedaddicted@gmail.com"
},
"record": {
- "CNAME": "sophie-is-sexy.co.uk"
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/flow-os.liquid.json b/domains/flow-os.liquid.json
new file mode 100644
index 000000000..b4e7a00e1
--- /dev/null
+++ b/domains/flow-os.liquid.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ThinLiquid",
+ "email": "thnlqd@gmail.com"
+ },
+ "record": {
+ "A": ["155.248.212.141"]
+ }
+}
diff --git a/domains/flyingcheese41.json b/domains/flyingcheese41.json
index 93aab671b..8b001bf68 100644
--- a/domains/flyingcheese41.json
+++ b/domains/flyingcheese41.json
@@ -4,6 +4,6 @@
"email": "FlyingCheese43@gmail.com"
},
"record": {
- "CNAME": "FlyingCheese41.github.io"
+ "CNAME": "52d970d2-6085-4811-b3d1-8b3bd898b014.id.repl.co"
}
}
diff --git a/domains/flymeth.json b/domains/flymeth.json
index 599fc81c2..9b5e94c12 100644
--- a/domains/flymeth.json
+++ b/domains/flymeth.json
@@ -1,11 +1,11 @@
{
- "record": {
- "URL": "https://flymeth.net"
- },
- "owner": {
- "username": "Flymeth",
- "email": "flymeth.yt@gmail.com",
- "twitter": "flymeth"
- },
- "description": "I'm a dev and I love to be that"
+ "record": {
+ "URL": "https://flymeth.net"
+ },
+ "owner": {
+ "username": "Flymeth",
+ "email": "flymeth.yt@gmail.com",
+ "twitter": "flymeth"
+ },
+ "description": "I'm a dev and I love to be that"
}
diff --git a/domains/fndn.json b/domains/fndn.json
new file mode 100644
index 000000000..79ac44dcf
--- /dev/null
+++ b/domains/fndn.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "TrivCodez",
+ "email": "Jayeshpoudel+ha@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/fong.json b/domains/fong.json
new file mode 100644
index 000000000..158a0fef0
--- /dev/null
+++ b/domains/fong.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "cnu4",
+ "email": "fangxw1004@qq.com"
+ },
+ "record": {
+ "CNAME": "fangxw.me"
+ }
+}
diff --git a/domains/fordevs.json b/domains/fordevs.json
new file mode 100644
index 000000000..6b4de7a3b
--- /dev/null
+++ b/domains/fordevs.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "neopromic",
+ "email": "cusaowesley1@gmail.com"
+ },
+ "record": {
+ "URL": "https://for-devs.vercel.app"
+ }
+}
diff --git a/domains/foxie.arman.json b/domains/foxie.arman.json
index 90023567d..47665244c 100644
--- a/domains/foxie.arman.json
+++ b/domains/foxie.arman.json
@@ -6,11 +6,6 @@
"email": "contact@mail.arman.is-a.dev"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ]
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"]
}
}
diff --git a/domains/foxsden.json b/domains/foxsden.json
new file mode 100644
index 000000000..04fb9f06b
--- /dev/null
+++ b/domains/foxsden.json
@@ -0,0 +1,16 @@
+{
+ "owner": {
+ "username": "FoxsDenYT",
+ "email": "techseal14@gmail.com"
+ },
+ "record": {
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": ["mx1.forwardemail.net"],
+ "TXT": "forward-email=foxsdenyt@gmail.com"
+ }
+}
diff --git a/domains/fqcxn.json b/domains/fqcxn.json
new file mode 100644
index 000000000..0bc31d071
--- /dev/null
+++ b/domains/fqcxn.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Fqcxn",
+ "email": "",
+ "twitter": "FqcxnLmao",
+ "discord": "hong.kong"
+ },
+ "record": {
+ "CNAME": "fqcxn.github.io"
+ }
+}
diff --git a/domains/fuccsoc.json b/domains/fuccsoc.json
index b4b4e1622..a6d5eff39 100644
--- a/domains/fuccsoc.json
+++ b/domains/fuccsoc.json
@@ -1,10 +1,10 @@
-{
- "owner": {
+
+ {
+ "owner": {
"username": "fuccsoc",
"email": "me@fuccsoc.com"
- },
-
- "record": {
- "URL": "https://fuccsoc.com"
- }
-}
+ },
+ "record": {
+ "URL": "https://fuccsoc.me"
+ }
+ }
diff --git a/domains/fun-random-api.json b/domains/fun-random-api.json
new file mode 100644
index 000000000..65119128d
--- /dev/null
+++ b/domains/fun-random-api.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "njanemmu",
+ "email": "aneenababu71901@gmail.com"
+ },
+ "record": {
+ "CNAME": "fbf6f1ec-874e-4ec5-b02e-c4cfdbaa148d.id.repl.co"
+ }
+}
diff --git a/domains/fundid.json b/domains/fundid.json
new file mode 100644
index 000000000..853ddc73b
--- /dev/null
+++ b/domains/fundid.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "fundid",
+ "email": "fundidennis@protonmail.com"
+ },
+ "record": {
+ "CNAME": "fundid.github.io"
+ }
+}
diff --git a/domains/furry.json b/domains/furry.json
new file mode 100644
index 000000000..8da97f979
--- /dev/null
+++ b/domains/furry.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Furrycality",
+ "email": "furrycality@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/furrycality.json b/domains/furrycality.json
new file mode 100644
index 000000000..8da97f979
--- /dev/null
+++ b/domains/furrycality.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Furrycality",
+ "email": "furrycality@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/g-pratik.json b/domains/g-pratik.json
index dc793000b..8659f82e0 100644
--- a/domains/g-pratik.json
+++ b/domains/g-pratik.json
@@ -1,11 +1,11 @@
{
- "description": "This is my website",
- "repo": "https://github.com/g-pratik/g-pratik.github.io",
- "owner": {
- "username": "g-pratik",
- "email": ""
- },
- "record": {
- "CNAME": "g-pratik.github.io"
- }
+ "description": "This is my website",
+ "repo": "https://github.com/g-pratik/g-pratik.github.io",
+ "owner": {
+ "username": "g-pratik",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "g-pratik.github.io"
+ }
}
diff --git a/domains/gabimaciel.json b/domains/gabimaciel.json
index 0e253e615..06411540b 100644
--- a/domains/gabimaciel.json
+++ b/domains/gabimaciel.json
@@ -7,10 +7,6 @@
},
"record": {
"A": ["147.182.139.182"],
- "MX": [
- "ns1.digitalocean.com",
- "ns2.digitalocean.com",
- "ns3.digitalocean.com"
- ]
+ "MX": ["ns1.digitalocean.com", "ns2.digitalocean.com", "ns3.digitalocean.com"]
}
}
diff --git a/domains/gamedevdylan.json b/domains/gamedevdylan.json
new file mode 100644
index 000000000..f3913a8ae
--- /dev/null
+++ b/domains/gamedevdylan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "GameDeveloperDylan",
+ "email": "dylan10109101010910@gmail.com"
+ },
+ "record": {
+ "CNAME": "164dbfde-80d8-4920-b392-dfd67063c694.id.repl.co"
+ }
+}
diff --git a/domains/gamerzam.json b/domains/gamerzam.json
new file mode 100644
index 000000000..f0f9d68eb
--- /dev/null
+++ b/domains/gamerzam.json
@@ -0,0 +1,11 @@
+{
+ "description": "my bio links",
+ "repo": "lividevergreenengineers.bitohofo.repl.co",
+ "owner": {
+ "username": "GamerTheDev",
+ "email": "gamersstreak24@gmail.com"
+ },
+ "record": {
+ "CNAME": "lividevergreenengineers-2.bitohofo.repl.co"
+ }
+}
diff --git a/domains/gapindang.json b/domains/gapindang.json
new file mode 100644
index 000000000..907d20837
--- /dev/null
+++ b/domains/gapindang.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "pindang-cloud",
+ "email": "gavinku890@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/gaurav87565.json b/domains/gaurav87565.json
new file mode 100644
index 000000000..78a731243
--- /dev/null
+++ b/domains/gaurav87565.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "gaurav87565",
+ "email": "pavithrashreeuchil@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/gautham.json b/domains/gautham.json
new file mode 100644
index 000000000..61dc2a366
--- /dev/null
+++ b/domains/gautham.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "inkilu",
+ "email": "gauthamgkm@gmail.com"
+ },
+ "record": {
+ "CNAME": "inkilu.is-a.dev"
+ }
+}
diff --git a/domains/gaz.json b/domains/gaz.json
new file mode 100644
index 000000000..735fa867d
--- /dev/null
+++ b/domains/gaz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bl33dz",
+ "email": "bagaz@protonmail.ch"
+ },
+ "record": {
+ "A": ["180.250.135.31"]
+ }
+}
diff --git a/domains/gcc.json b/domains/gcc.json
new file mode 100644
index 000000000..c4cd0ab8a
--- /dev/null
+++ b/domains/gcc.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "zachcool",
+ "email": "zach24willow@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/geckopico.json b/domains/geckopico.json
new file mode 100644
index 000000000..98c06df3d
--- /dev/null
+++ b/domains/geckopico.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "davior",
+ "email": "david.iorlano@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/genevera.json b/domains/genevera.json
new file mode 100644
index 000000000..35805d653
--- /dev/null
+++ b/domains/genevera.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "genevera",
+ "email": "genevera.codes+github@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
\ No newline at end of file
diff --git a/domains/georgee.json b/domains/georgee.json
deleted file mode 100644
index 73c3251dc..000000000
--- a/domains/georgee.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "Georgee1337",
-
- "email": "contact@georgexv.ru"
- },
- "record": {
- "URL": "https://georgexv.ru"
- }
-}
diff --git a/domains/gfn.json b/domains/gfn.json
new file mode 100644
index 000000000..424b83cd4
--- /dev/null
+++ b/domains/gfn.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "kolims",
+ "email": "kolimss1111@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/gfn1.json b/domains/gfn1.json
new file mode 100644
index 000000000..4e085b5d5
--- /dev/null
+++ b/domains/gfn1.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kolims",
+ "email": "kolimss1111@gmail.com"
+ },
+ "record": {
+ "CNAME": "f678c241-9a2f-46ae-a11a-5362a049e37a.id.repl.co"
+ }
+}
diff --git a/domains/gfn2.json b/domains/gfn2.json
new file mode 100644
index 000000000..4e085b5d5
--- /dev/null
+++ b/domains/gfn2.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kolims",
+ "email": "kolimss1111@gmail.com"
+ },
+ "record": {
+ "CNAME": "f678c241-9a2f-46ae-a11a-5362a049e37a.id.repl.co"
+ }
+}
diff --git a/domains/gggedr.json b/domains/gggedr.json
deleted file mode 100644
index 4ed01cb9f..000000000
--- a/domains/gggedr.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "Vladimir-Urik",
- "email": "gggedr@protonmail.com"
- },
- "record": {
- "URL": "https://gggedr.lol"
- }
-}
diff --git a/domains/gigwanoob.json b/domains/gigwanoob.json
new file mode 100644
index 000000000..d668ca1f5
--- /dev/null
+++ b/domains/gigwanoob.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "gigwanoobstudios",
+ "email": "tplink3116@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
diff --git a/domains/giovannirapa.json b/domains/giovannirapa.json
new file mode 100644
index 000000000..456522d66
--- /dev/null
+++ b/domains/giovannirapa.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Givaa",
+ "email": "rapagiovanni@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/git-hoe.json b/domains/git-hoe.json
new file mode 100644
index 000000000..5ebd4b3d1
--- /dev/null
+++ b/domains/git-hoe.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "git-hoe",
+ "email": "haxer@disroot.org"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
\ No newline at end of file
diff --git a/domains/git.json b/domains/git.json
new file mode 100644
index 000000000..a4b5610d5
--- /dev/null
+++ b/domains/git.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "git-hoe",
+ "email": "haxer@disroot.org"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
diff --git a/domains/github.json b/domains/github.json
new file mode 100644
index 000000000..66bd72ebc
--- /dev/null
+++ b/domains/github.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zarqizoubir",
+ "email": "zarqi.ezzoubair@etu.uae.ac.ma"
+ },
+ "record": {
+ "CNAME": "zarqizoubir.github.io"
+ }
+}
diff --git a/domains/gitninja.json b/domains/gitninja.json
new file mode 100644
index 000000000..f5d16fdcf
--- /dev/null
+++ b/domains/gitninja.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "roktim32",
+ "email": "roktimsenapoty2@gmail.com"
+ },
+ "record": {
+ "CNAME": "roktim32.github.io"
+ }
+}
diff --git a/domains/givinghawk.json b/domains/givinghawk.json
deleted file mode 100644
index 572fc728b..000000000
--- a/domains/givinghawk.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "My is-a.dev cname record",
- "repo": "https://github.com/givinghawk",
- "owner": {
- "username": "givinghawk",
- "email": "gh@givinghawk.xyz"
- },
- "record": {
- "URL": "https://givinghawk.xyz"
- }
-}
diff --git a/domains/gizzy.json b/domains/gizzy.json
index 2b17f8147..afb595e09 100644
--- a/domains/gizzy.json
+++ b/domains/gizzy.json
@@ -1,15 +1,12 @@
-{
- "description": "gizzy.is-a.dev",
- "owner": {
- "username": "NeroGizmoUwU",
- "email": "nerop455@gmail.com",
- "discord": "gizzyuwu"
- },
- "record": {
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
-}
\ No newline at end of file
+{
+ "description": "gizzy.is-a.dev",
+ "owner": {
+ "username": "NeroGizmoUwU",
+ "email": "nerop455@gmail.com",
+ "discord": "gizzyuwu"
+ },
+ "record": {
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/glomdom.json b/domains/glomdom.json
new file mode 100644
index 000000000..42a2e4b56
--- /dev/null
+++ b/domains/glomdom.json
@@ -0,0 +1,11 @@
+{
+ "description": "projects",
+ "repo": "https://github.com/glomdom/glomdom.github.io",
+ "owner": {
+ "username": "glomdom",
+ "email": "22115@uktc-bg.com"
+ },
+ "record": {
+ "CNAME": "glomdom.github.io"
+ }
+}
diff --git a/domains/glqch.json b/domains/glqch.json
index 2999ff98f..1679a75ca 100644
--- a/domains/glqch.json
+++ b/domains/glqch.json
@@ -1,12 +1,11 @@
{
- "description": "Describe the use of this subdomain",
- "repo": "https://github.com/joythejoystick1/glqch.github.io",
"owner": {
"username": "joythejoystick1",
- "email": "bridgerbusiness2@gmail.com",
- "twitter": ""
+ "email": "midoayoub778@gmail.com"
},
"record": {
- "CNAME": "2af8afea-16e6-4242-a9eb-f251017b0c5a.id.repl.co"
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
-}
+}
diff --git a/domains/gooplancton.json b/domains/gooplancton.json
new file mode 100644
index 000000000..8479a8096
--- /dev/null
+++ b/domains/gooplancton.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "gooplancton",
+ "email": "gooplancton@outlook.com"
+ },
+ "record": {
+ "A": ["93.93.117.164"]
+ }
+}
diff --git a/domains/gopalji.json b/domains/gopalji.json
new file mode 100644
index 000000000..8fc8f6aef
--- /dev/null
+++ b/domains/gopalji.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "gopaljigaur",
+ "email": "contact@gopalji.me"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
diff --git a/domains/gpchn.json b/domains/gpchn.json
new file mode 100644
index 000000000..acf95d7a3
--- /dev/null
+++ b/domains/gpchn.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "gpchn",
+ "email": "gprogrammer@163.com"
+ },
+ "record": {
+ "CNAME": "gpchn.pages.dev"
+ }
+}
diff --git a/domains/gruu.json b/domains/gruu.json
new file mode 100644
index 000000000..031eea1a9
--- /dev/null
+++ b/domains/gruu.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "gruufr",
+ "email": "tirisxz@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/gs.json b/domains/gs.json
deleted file mode 100644
index b503a3abb..000000000
--- a/domains/gs.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Gokul's Personal Site",
- "repo": "https://github.com/JavaCafe01/javacafe01.github.io",
- "owner": {
- "username": "JavaCafe01",
- "email": "",
- "twitter": "javacafe01"
- },
- "record": {
- "CNAME": "javacafe01.github.io"
- }
-}
diff --git a/domains/guess-who.json b/domains/guess-who.json
new file mode 100644
index 000000000..f12b139a1
--- /dev/null
+++ b/domains/guess-who.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Rayrsn",
+ "email": "rayrsn@proton.me"
+ },
+ "record": {
+ "URL": "https://rayr.link"
+ }
+}
diff --git a/domains/gurubhai.json b/domains/gurubhai.json
new file mode 100644
index 000000000..bd3a9672d
--- /dev/null
+++ b/domains/gurubhai.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "Guru322",
+ "email": "sahoogurucharan00@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/habeel.json b/domains/habeel.json
index b12856481..ffb9cf4df 100644
--- a/domains/habeel.json
+++ b/domains/habeel.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "Habeel06.github.io"
}
-}
+}
diff --git a/domains/habib.json b/domains/habib.json
new file mode 100644
index 000000000..abcb98df9
--- /dev/null
+++ b/domains/habib.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "HabibMollah",
+ "email": "habib.prodev@gmail.com"
+ },
+ "record": {
+ "URL": "https://mollah.vercel.app"
+ }
+}
diff --git a/domains/hackerhawks.json b/domains/hackerhawks.json
index 5b51f3b2d..6830e4799 100644
--- a/domains/hackerhawks.json
+++ b/domains/hackerhawks.json
@@ -1,13 +1,10 @@
{
- "owner": {
- "username": "HackerHawks",
- "email": "robohawks.dev@gmail.com"
- },
- "record": {
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
+ "owner": {
+ "username": "HackerHawks",
+ "email": "robohawks.dev@gmail.com"
+ },
+ "record": {
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
}
diff --git a/domains/halelui.json b/domains/halelui.json
new file mode 100644
index 000000000..f5abf567d
--- /dev/null
+++ b/domains/halelui.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Legend256",
+ "email": "heroku.1st.dyno@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/halil.json b/domains/halil.json
new file mode 100644
index 000000000..985ab99b5
--- /dev/null
+++ b/domains/halil.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ConnorDoesDev",
+ "email": "halil_ismail@yahoo.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/hanchow.json b/domains/hanchow.json
index e073d643b..80c8b43c5 100644
--- a/domains/hanchow.json
+++ b/domains/hanchow.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "zhhlmr.github.io"
}
-}
+}
diff --git a/domains/happyenderman.json b/domains/happyenderman.json
new file mode 100644
index 000000000..cb4ba2f7d
--- /dev/null
+++ b/domains/happyenderman.json
@@ -0,0 +1,11 @@
+{
+ "description":"happyenderman.is-a.dev",
+ "repo": "https://github.com/happyendermangit/happyendermangit.github.io",
+ "owner": {
+ "username": "happyendermangit",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "happyendermangit.github.io"
+ }
+}
diff --git a/domains/hari.json b/domains/hari.json
index a9fe026b7..b5bbad1ac 100644
--- a/domains/hari.json
+++ b/domains/hari.json
@@ -1,11 +1,11 @@
{
"description": "Hari's portfolio",
- "repo": "https://github.com/Haritronic909/Haritronic909.github.io",
+ "repo": "https://github.com/harishnkr/harishnkr.github.io",
"owner": {
- "username": "Haritronic909",
+ "username": "harishnkr",
"email": "hari2menon1234@gmail.com"
},
"record": {
- "CNAME": "haritronic909.github.io"
+ "CNAME": "harishnkr.github.io"
}
}
diff --git a/domains/hariienesh.json b/domains/hariienesh.json
new file mode 100644
index 000000000..5b51b7ced
--- /dev/null
+++ b/domains/hariienesh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "CosmicCodeBase",
+ "email": "hariienesh.cool@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/haris.json b/domains/haris.json
deleted file mode 100644
index 02fcfc195..000000000
--- a/domains/haris.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "HarisETH",
- "email": "hariskumar.eth@gmail.com"
- },
- "record": {
- "URL": "https://haris.one"
- }
-}
diff --git a/domains/harsh-mehta.json b/domains/harsh-mehta.json
index 8460b5b84..7f9d23fc1 100644
--- a/domains/harsh-mehta.json
+++ b/domains/harsh-mehta.json
@@ -1,6 +1,6 @@
{
"description": "harsh-mehta.is-a.dev",
- "repo": "https://harsh05dev.github.io/My_Portfolio_2023/",
+ "repo": "https://harsh05dev.github.io/My_Portfolio_2023",
"owner": {
"username": "Harsh05dev",
"email": "harshmehta1505@gmail.com"
diff --git a/domains/hashir.json b/domains/hashir.json
index 920391b11..7aa4b07cb 100644
--- a/domains/hashir.json
+++ b/domains/hashir.json
@@ -1,11 +1,11 @@
-{
- "owner": {
- "email": "harishbb168@gmail.com",
- "username": "harish"
- },
- "description": "My portfolio website",
- "repo": "https://github.com/HarishB167/hs-app",
- "record": {
- "URL": "https://hmser.netlify.app"
- }
- }
+{
+ "owner": {
+ "email": "harishbb168@gmail.com",
+ "username": "harish"
+ },
+ "description": "My portfolio website",
+ "repo": "https://github.com/HarishB167/hs-app",
+ "record": {
+ "URL": "https://hmser.netlify.app"
+ }
+}
diff --git a/domains/hassenmajor.json b/domains/hassenmajor.json
new file mode 100644
index 000000000..8f8c9811d
--- /dev/null
+++ b/domains/hassenmajor.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "hassenmajor",
+ "email": "hassenmajor@gmail.com"
+ },
+ "description": "This is my personal portfolio.",
+ "record": {
+ "CNAME": "hassenmajor.github.io"
+ }
+}
diff --git a/domains/hatkid.json b/domains/hatkid.json
index 238d10fc8..14bb7fed7 100644
--- a/domains/hatkid.json
+++ b/domains/hatkid.json
@@ -1,9 +1,10 @@
{
- "description": "Hat Kid's domain! (hat_kid)",
+ "description": "hat_kid's domain!",
"repo": "https://github.com/thehatkid/thehatkid.github.io",
"owner": {
"username": "thehatkid",
- "email": "saha22023@gmail.com"
+ "email": "saha22023@gmail.com",
+ "discord": "hat_kid"
},
"record": {
"CNAME": "thehatkid.github.io"
diff --git a/domains/haubaka.json b/domains/haubaka.json
index 2a4f589a1..cca90542d 100644
--- a/domains/haubaka.json
+++ b/domains/haubaka.json
@@ -8,4 +8,4 @@
"record": {
"CNAME": "haubaka.github.io"
}
-}
+}
diff --git a/domains/hazelnut.json b/domains/hazelnut.json
new file mode 100644
index 000000000..ae5caae10
--- /dev/null
+++ b/domains/hazelnut.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "TheMrRedstone",
+ "email": "hazelnutzhoney@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/hazib.brahim.json b/domains/hazib.brahim.json
new file mode 100644
index 000000000..66bd72ebc
--- /dev/null
+++ b/domains/hazib.brahim.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zarqizoubir",
+ "email": "zarqi.ezzoubair@etu.uae.ac.ma"
+ },
+ "record": {
+ "CNAME": "zarqizoubir.github.io"
+ }
+}
diff --git a/domains/hcs.json b/domains/hcs.json
index a3e3c1c81..b585e5e80 100644
--- a/domains/hcs.json
+++ b/domains/hcs.json
@@ -1,10 +1,9 @@
{
- "description": "Personal Page",
- "owner": {
- "username": "hcs1219",
- "email": "hcskaiask@gmail.com"
- },
- "record": {
- "URL": "http://dono-01.danbot.host:1378/hcs"
- }
+ "owner": {
+ "username": "hcs1219",
+ "email": "hcskaiask@gmail.com"
+ },
+ "record": {
+ "CNAME": "hcs1219.github.io"
+ }
}
diff --git a/domains/hecterbonha.json b/domains/hecterbonha.json
index 968d60afe..3d5ed03cd 100644
--- a/domains/hecterbonha.json
+++ b/domains/hecterbonha.json
@@ -3,8 +3,9 @@
"username": "hecterbonha",
"email": "untungsoandryanto@gmail.com"
},
-
"record": {
- "CNAME": "hecterbonha.github.io"
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
diff --git a/domains/hekker.json b/domains/hekker.json
new file mode 100644
index 000000000..271862721
--- /dev/null
+++ b/domains/hekker.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "hekker4404",
+ "email": "akhil.ambati@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/hello.qqg00.json b/domains/hello.qqg00.json
new file mode 100644
index 000000000..dd140730e
--- /dev/null
+++ b/domains/hello.qqg00.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ppg00",
+ "email": "vx2dsk@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/helman.json b/domains/helman.json
new file mode 100644
index 000000000..0d7e70887
--- /dev/null
+++ b/domains/helman.json
@@ -0,0 +1,10 @@
+{
+ "description": "helman.is-a.dev",
+ "owner": {
+ "username": "helman",
+ "email": "all22.helman@gmail.com"
+ },
+ "record": {
+ "CNAME": "blog.heldes.com"
+ }
+}
diff --git a/domains/herckun.json b/domains/herckun.json
deleted file mode 100644
index 0ed1fdca6..000000000
--- a/domains/herckun.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "owner": {
- "username": "herckun",
- "email": "",
- "twitter": "herckun",
- "discord": "herckun#2055"
- },
- "description": "Personal portfolio website",
- "record": {
- "URL": "https://herckun.xyz"
- }
-}
diff --git a/domains/hero.json b/domains/hero.json
new file mode 100644
index 000000000..9f01c892a
--- /dev/null
+++ b/domains/hero.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "maanya125",
+ "email": "maanya125@gmail.com"
+ },
+ "record": {
+ "CNAME": "hosts.is-a.dev"
+ }
+}
diff --git a/domains/hexxy.json b/domains/hexxy.json
new file mode 100644
index 000000000..a9e8ff105
--- /dev/null
+++ b/domains/hexxy.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "heatherdevx",
+ "email": "heather.sysdev@gmail.com"
+ },
+
+ "record": {
+ "A": ["129.151.221.53"]
+ }
+}
diff --git a/domains/heyjumanji.json b/domains/heyjumanji.json
new file mode 100644
index 000000000..a1fd687e9
--- /dev/null
+++ b/domains/heyjumanji.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "heyjumanji",
+ "email": "madhuchutiya.unhinge650@silomails.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/hifzur.json b/domains/hifzur.json
new file mode 100644
index 000000000..499abbbea
--- /dev/null
+++ b/domains/hifzur.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hifzurmax",
+ "email": "hifzur.syl@gmail.com"
+ },
+ "record": {
+ "CNAME": "hifzurmax.github.io"
+ }
+}
diff --git a/domains/hilmansyah.json b/domains/hilmansyah.json
new file mode 100644
index 000000000..893b3ca17
--- /dev/null
+++ b/domains/hilmansyah.json
@@ -0,0 +1,13 @@
+{
+ "description": "Hillzacky is Hilmansyah",
+ "repo": "https://github.com/Hillzacky/hillzacky.github.io",
+ "owner": {
+ "username": "Hillzacky",
+ "email": "hilmansyah@xhr.my.id",
+ "twitter": "hillzacky",
+ "discord": "830349326785314846"
+ },
+ "record": {
+ "CNAME": "hillzacky.github.io"
+ }
+}
diff --git a/domains/himanshusardana.json b/domains/himanshusardana.json
new file mode 100644
index 000000000..d67350783
--- /dev/null
+++ b/domains/himanshusardana.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "HimanshuSardana",
+ "email": "himanshusardana2005@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/himanshusri.json b/domains/himanshusri.json
new file mode 100644
index 000000000..236382677
--- /dev/null
+++ b/domains/himanshusri.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "himanshuSri24",
+ "email": "himanshu20032002@gmail.com"
+ },
+ "record": {
+ "CNAME": "himanshusri24.github.io"
+ }
+}
diff --git a/domains/hirako.json b/domains/hirako.json
new file mode 100644
index 000000000..da22d3c01
--- /dev/null
+++ b/domains/hirako.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hirakotm",
+ "email": "hirakoo@proton.me"
+ },
+ "record": {
+ "CNAME": "website-5xr.pages.dev"
+ }
+}
diff --git a/domains/hiwind.json b/domains/hiwind.json
new file mode 100644
index 000000000..1c1326f20
--- /dev/null
+++ b/domains/hiwind.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jaydoublay",
+ "email": "jeremy@jaydoublay.com"
+ },
+ "record": {
+ "URL": "https://www.hiwind.me"
+ }
+}
diff --git a/domains/hkamran.json b/domains/hkamran.json
new file mode 100644
index 000000000..3710123e0
--- /dev/null
+++ b/domains/hkamran.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hkamran80",
+ "email": "hkamran@hkamran.com"
+ },
+ "record": {
+ "URL": "https://hkamran.com/?ref=isadev"
+ }
+}
diff --git a/domains/hntr.json b/domains/hntr.json
new file mode 100644
index 000000000..83474d31e
--- /dev/null
+++ b/domains/hntr.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "HunterAPI",
+ "email": "forsynapse123@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/hoang3409.json b/domains/hoang3409.json
index a57bfc244..d6323c21a 100644
--- a/domains/hoang3409.json
+++ b/domains/hoang3409.json
@@ -1,10 +1,10 @@
-{
- "description": "Portfolio redirect for Hoang3409",
- "owner": {
- "username": "hoang3409",
- "email": "nvh.02021995@gmail.com"
- },
- "record": {
- "CNAME": "hoang3402.github.io"
- }
-}
\ No newline at end of file
+{
+ "description": "Portfolio redirect for Hoang3409",
+ "owner": {
+ "username": "hoang3409",
+ "email": "nvh.02021995@gmail.com"
+ },
+ "record": {
+ "CNAME": "hoang3402.github.io"
+ }
+}
diff --git a/domains/hokkqi.json b/domains/hokkqi.json
deleted file mode 100644
index d09a10c8a..000000000
--- a/domains/hokkqi.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Portfolio redirect for Hokkqi",
- "repo": "https://werewolf.codes",
- "owner": {
- "username": "hokkqi",
- "email": "lio@werewolf.design"
- },
- "record": {
- "URL": "https://werewolf.design"
- }
-}
diff --git a/domains/home.semant.json b/domains/home.semant.json
deleted file mode 100644
index 2160ac944..000000000
--- a/domains/home.semant.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "My Website",
- "owner": {
- "username": "s3mant",
- "email": "contact@semant.is-a.dev",
- "discord": "445073800850046977"
- },
- "record": {
- "CNAME": "2755c31d-6389-4f53-8fd7-b83f99037ffd.id.repl.co"
- }
-}
diff --git a/domains/horn7x.json b/domains/horn7x.json
new file mode 100644
index 000000000..d49b3cfe3
--- /dev/null
+++ b/domains/horn7x.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "horn7x",
+ "email": "horn7x@gmail.com"
+ },
+ "record": {
+ "CNAME": "horn7x.github.io"
+ }
+}
diff --git a/domains/host.dexo.json b/domains/host.dexo.json
new file mode 100644
index 000000000..ba35b3c3c
--- /dev/null
+++ b/domains/host.dexo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DeXoHigh",
+ "email": "dexo1337@pm.me"
+ },
+ "record": {
+ "A": ["54.93.225.90"]
+ }
+}
diff --git a/domains/hosting-test.json b/domains/hosting-test.json
new file mode 100644
index 000000000..4f6c3f917
--- /dev/null
+++ b/domains/hosting-test.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "is-a-dev-bot",
+ "email": "is-a-dev@win11react.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
\ No newline at end of file
diff --git a/domains/preview.beta.json b/domains/hosts.json
similarity index 73%
rename from domains/preview.beta.json
rename to domains/hosts.json
index 17ebbe84d..df90b568a 100644
--- a/domains/preview.beta.json
+++ b/domains/hosts.json
@@ -4,6 +4,6 @@
"email": "phenax5@gmail.com"
},
"record": {
- "CNAME": "is-a-dev-bot.github.io"
+ "CNAME": "dns.beadman-network.com"
}
}
diff --git a/domains/hot-dev.json b/domains/hot-dev.json
deleted file mode 100644
index be8316ea9..000000000
--- a/domains/hot-dev.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Just a website for me",
- "repo": "https://github.com/gamerz420/gamerz420.github.io",
- "owner": {
- "username": "gamerz420",
- "email": "imakbss@gmail.com",
- "discord": "gamerz420#6200"
- },
- "record": {
- "CNAME": "gamerz420.github.io"
- }
-}
diff --git a/domains/hotspot.json b/domains/hotspot.json
new file mode 100644
index 000000000..ca1821523
--- /dev/null
+++ b/domains/hotspot.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "wansie1",
+ "email": "msc2tvdn@duck.com",
+ "discord": "962788530336178236"
+ },
+
+ "record": {
+ "A": ["213.238.183.171"]
+ }
+}
diff --git a/domains/houlton.json b/domains/houlton.json
new file mode 100644
index 000000000..8416f290e
--- /dev/null
+++ b/domains/houlton.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ahoulton",
+ "email": "ignhoulton@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/houxiaozhao.json b/domains/houxiaozhao.json
new file mode 100644
index 000000000..219f19c40
--- /dev/null
+++ b/domains/houxiaozhao.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "houxiaozhao",
+ "email": "891855179@qq.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/hozzywozzy.json b/domains/hozzywozzy.json
index 4d3a30839..dfe4605d0 100644
--- a/domains/hozzywozzy.json
+++ b/domains/hozzywozzy.json
@@ -1,11 +1,11 @@
{
- "owner": {
- "username": "hozzywozzy",
- "email": "hozzywozzy@terrorist.lol"
- },
- "description": "domain for testing purposes",
- "repo": "https://github.com/hozzywozzy/hozzywozzy",
- "record": {
- "CNAME": "hozzywozzy.github.io"
- }
+ "owner": {
+ "username": "hozzywozzy",
+ "email": "hozzywozzy@terrorist.lol"
+ },
+ "description": "domain for testing purposes",
+ "repo": "https://github.com/hozzywozzy/hozzywozzy",
+ "record": {
+ "CNAME": "hozzywozzy.github.io"
+ }
}
diff --git a/domains/hs50.json b/domains/hs50.json
index 5f509db6c..3cfef85ee 100644
--- a/domains/hs50.json
+++ b/domains/hs50.json
@@ -1,11 +1,11 @@
-{
- "description": "Another way to visit my website.",
- "repo": "https://github.com/Naibuu/website",
- "owner": {
- "username": "Naibuu",
- "email": "contact@hs50.cc"
- },
- "record": {
- "CNAME": "hs50.cc"
- }
-}
\ No newline at end of file
+{
+ "description": "Another way to visit my website.",
+ "repo": "https://github.com/Naibuu/website",
+ "owner": {
+ "username": "Naibuu",
+ "email": "contact@hs50.cc"
+ },
+ "record": {
+ "CNAME": "hs50.cc"
+ }
+}
diff --git a/domains/hsgamer.json b/domains/hsgamer.json
deleted file mode 100644
index 2a6fefad7..000000000
--- a/domains/hsgamer.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "HSGamer",
- "email": "huynhqtienvtag@gmail.com"
- },
-
- "record": {
- "CNAME": "hsgamer.github.io"
- }
-}
diff --git a/domains/httphypixelnet.json b/domains/httphypixelnet.json
new file mode 100644
index 000000000..6bf9f5a3f
--- /dev/null
+++ b/domains/httphypixelnet.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "httphypixelnet",
+ "email": "intenstudios369@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/hvlxh.json b/domains/hvlxh.json
index fbc86a328..0a38e3699 100644
--- a/domains/hvlxh.json
+++ b/domains/hvlxh.json
@@ -1,11 +1,11 @@
{
- "owner": {
- "username": "hvlxh",
- "email": "monsta22019@gmail.com",
- "discord": "hvlxh#0001"
- },
+ "owner": {
+ "username": "hvlxh",
+ "email": "monsta22019@gmail.com",
+ "discord": "hvlxh#0001"
+ },
- "record": {
- "URL": "https://hvlxh.tk"
- }
+ "record": {
+ "URL": "https://hvlxh.tk"
+ }
}
diff --git a/domains/hyderite.json b/domains/hyderite.json
new file mode 100644
index 000000000..0ad231d0b
--- /dev/null
+++ b/domains/hyderite.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Hyderite",
+ "email": "hyderiteyt@gmail.com"
+ },
+ "record": {
+ "CNAME": "df204146-7b3d-4adf-8150-d9cbf33a4a73.id.repl.co"
+ }
+}
diff --git a/domains/hypernexus.json b/domains/hypernexus.json
new file mode 100644
index 000000000..36451cae8
--- /dev/null
+++ b/domains/hypernexus.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "notHyperNexus",
+ "email": "phamvansau234@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/hzf.json b/domains/hzf.json
new file mode 100644
index 000000000..57e13a395
--- /dev/null
+++ b/domains/hzf.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "huhao0208",
+ "email": "123huzhifeng@163.com"
+ },
+ "record": {
+ "A": ["124.90.69.145"]
+ }
+}
diff --git a/domains/i2rys.json b/domains/i2rys.json
new file mode 100644
index 000000000..2a1e9802d
--- /dev/null
+++ b/domains/i2rys.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "I2rys",
+ "email": "i2rys@protonmail.com"
+ },
+ "record": {
+ "URL": "https://i2rys.vercel.app"
+ }
+}
diff --git a/domains/iakzs.json b/domains/iakzs.json
index 229cb8381..5ed05c4ca 100644
--- a/domains/iakzs.json
+++ b/domains/iakzs.json
@@ -6,12 +6,7 @@
"email": "iakzs@protonmail.com"
},
"record": {
- "A": [
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153",
- "185.199.108.153"
- ],
+ "A": ["185.199.109.153", "185.199.110.153", "185.199.111.153", "185.199.108.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~allCOPY"
}
diff --git a/domains/iamchoiiril.json b/domains/iamchoiiril.json
new file mode 100644
index 000000000..e1c0a9693
--- /dev/null
+++ b/domains/iamchoiiril.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Cfhoiril",
+ "email": "iamchoirilfk@gmail.com"
+ },
+ "record": {
+ "CNAME": "cfhoiril.github.io"
+ }
+}
diff --git a/domains/iammithani.json b/domains/iammithani.json
index da7150b05..136dda0ab 100644
--- a/domains/iammithani.json
+++ b/domains/iammithani.json
@@ -1,11 +1,11 @@
{
"owner": {
- "username": "MuhammadUsmanMithani",
- "email": "muhammadusmanmithani@gmail.com",
- "note": "This record was created by is-a.dev Discord bot via discord id: 632157019960377349"
- },
+ "username": "MuhammadUsmanMithani",
+ "email": "muhammadusmanmithani@gmail.com",
+ "note": "This record was created by is-a.dev Discord bot via discord id: 632157019960377349"
+ },
- "record": {
- "CNAME": "iammithani-portfolio.pages.dev"
- }
+ "record": {
+ "CNAME": "iammithani-portfolio.pages.dev"
+ }
}
diff --git a/domains/icevixen.json b/domains/icevixen.json
new file mode 100644
index 000000000..11ce7ceb0
--- /dev/null
+++ b/domains/icevixen.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Zirmith",
+ "email": "f2v74yt@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/icy.json b/domains/icy.json
new file mode 100644
index 000000000..320dd2aa3
--- /dev/null
+++ b/domains/icy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "IcyonGit",
+ "email": "Jazzyvela2009@outlook.com"
+ },
+ "record": {
+ "CNAME": "icyongit.github.io"
+ }
+}
diff --git a/domains/ikd.json b/domains/ikd.json
index 018ada623..299cae2f6 100644
--- a/domains/ikd.json
+++ b/domains/ikd.json
@@ -1,11 +1,11 @@
-{
- "owner": {
- "username": "its-id",
- "email": "",
- "twitter": "its_ikD"
- },
-
- "record": {
- "CNAME": "portfolio-main-production.up.railway.app"
- }
-}
+{
+ "owner": {
+ "username": "its-id",
+ "email": "",
+ "twitter": "its_ikD"
+ },
+
+ "record": {
+ "CNAME": "portfolio-main-production.up.railway.app"
+ }
+}
diff --git a/domains/ikraiyan.json b/domains/ikraiyan.json
index 13480a4db..557edefbd 100644
--- a/domains/ikraiyan.json
+++ b/domains/ikraiyan.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "ikraiyan.github.io"
}
-}
+}
diff --git a/domains/imat.json b/domains/imat.json
new file mode 100644
index 000000000..e58a3c5c1
--- /dev/null
+++ b/domains/imat.json
@@ -0,0 +1,13 @@
+{
+ "description": "Developer portfolio",
+ "repo": "https://github.com/imatx/imatx.github.io",
+ "owner": {
+ "username": "imatx",
+ "email": "adam.essakhi16+github@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 mx a:mailx.is-a.dev ip4:217.174.245.249 ~all",
+ "MX": ["mailx.is-a.dev"]
+ }
+}
diff --git a/domains/imdsamimakhter.json b/domains/imdsamimakhter.json
new file mode 100644
index 000000000..85ed004a4
--- /dev/null
+++ b/domains/imdsamimakhter.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "imdsamimakhter",
+ "email": "mdsamimakhter2001@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/imran.json b/domains/imran.json
new file mode 100644
index 000000000..931f387ff
--- /dev/null
+++ b/domains/imran.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ahmedimran35",
+ "email": "romeorajkumar098@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/imu.json b/domains/imu.json
new file mode 100644
index 000000000..931f387ff
--- /dev/null
+++ b/domains/imu.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ahmedimran35",
+ "email": "romeorajkumar098@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/imzihad21.json b/domains/imzihad21.json
index e94fb477c..2caf19341 100644
--- a/domains/imzihad21.json
+++ b/domains/imzihad21.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "IMZihad21",
- "email": "imzihad@gmail.com"
- },
- "record": {
- "A": ["52.77.224.107"],
- "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
- "TXT": "forward-email=imzihad@gmail.com"
- }
+ "owner": {
+ "username": "IMZihad21",
+ "email": "imzihad@gmail.com"
+ },
+ "record": {
+ "CNAME": "ec2-13-250-29-91.ap-southeast-1.compute.amazonaws.com"
+ }
}
diff --git a/domains/inf.json b/domains/inf.json
index cf6acd955..04169951f 100644
--- a/domains/inf.json
+++ b/domains/inf.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "InfinityDevTech",
+ "owner": {
+ "username": "InfinityDevTech",
"email": "",
- "discord": "inf5"
- },
- "record": {
- "URL": "https://infdev.netlify.app"
- }
+ "discord": "inf5"
+ },
+ "record": {
+ "URL": "https://infdev.netlify.app"
+ }
}
diff --git a/domains/infinitelearning.json b/domains/infinitelearning.json
new file mode 100644
index 000000000..1e74f15b9
--- /dev/null
+++ b/domains/infinitelearning.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tiwlinkskwazeh",
+ "email": "kwazehh@proton.me"
+ },
+ "record": {
+ "A": ["18.215.144.92"]
+ }
+}
diff --git a/domains/infiniteloop.json b/domains/infiniteloop.json
new file mode 100644
index 000000000..f5d16fdcf
--- /dev/null
+++ b/domains/infiniteloop.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "roktim32",
+ "email": "roktimsenapoty2@gmail.com"
+ },
+ "record": {
+ "CNAME": "roktim32.github.io"
+ }
+}
diff --git a/domains/instapi.aditya.json b/domains/instapi.aditya.json
deleted file mode 100644
index bcc1daa27..000000000
--- a/domains/instapi.aditya.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "owner": {
- "username": "pythonmcpi",
- "email": "user3456@insomnia247.nl",
- "irc": "user3456@irc.insomnia247.nl/#shells",
- "discord": "Little Furret#7901",
- "note": "That email address is not my main email. It has email forwarding enabled, but the spam filter doesn't like the forwarding. It is probably faster to contact me on Discord or irc."
- },
- "description": "I'll probably put some project pages on 0x0.is-a.dev. ¯\\_(ツ)_/¯",
- "record": {
- "A": ["76.223.55.44"]
- }
-}
diff --git a/domains/interstellar.json b/domains/interstellar.json
new file mode 100644
index 000000000..6c986115d
--- /dev/null
+++ b/domains/interstellar.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "jacksoncraft859",
+ "email": "pollardjackson@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/interstellar.ultrix.json b/domains/interstellar.ultrix.json
new file mode 100644
index 000000000..6c986115d
--- /dev/null
+++ b/domains/interstellar.ultrix.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "jacksoncraft859",
+ "email": "pollardjackson@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/invalidnoah.json b/domains/invalidnoah.json
index 5c75c72a5..d5a14efe5 100644
--- a/domains/invalidnoah.json
+++ b/domains/invalidnoah.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "invalidnoah.github.io"
}
-}
+}
diff --git a/domains/ipuppyyt.json b/domains/ipuppyyt.json
index a2d56dd85..cc652b18d 100644
--- a/domains/ipuppyyt.json
+++ b/domains/ipuppyyt.json
@@ -7,12 +7,7 @@
"discord": "iPuppyYT#3684"
},
"record": {
- "A": [
- "185.199.110.153",
- "185.199.108.153",
- "185.199.111.153",
- "185.199.109.153"
- ],
+ "A": ["185.199.110.153", "185.199.108.153", "185.199.111.153", "185.199.109.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/is-a-dev-testing.json b/domains/is-a-dev-testing.json
new file mode 100644
index 000000000..4f6c3f917
--- /dev/null
+++ b/domains/is-a-dev-testing.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "is-a-dev-bot",
+ "email": "is-a-dev@win11react.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
\ No newline at end of file
diff --git a/domains/isa.json b/domains/isa.json
index 5d46a37b7..16a4c20ee 100644
--- a/domains/isa.json
+++ b/domains/isa.json
@@ -1,12 +1,12 @@
{
- "description": "This is for bobthedev90368 cool stuff",
- "repo": "https://github.com/bobthedev90368/bobthedev90368.github.io",
+ "description": "This is for nottisa cool stuff",
+ "repo": "https://github.com/nottisa/nottisa.github.io",
"owner": {
- "username": "bobthedev90368",
+ "username": "nottisa",
"email": "theonewhohasthisemail@gmail.com",
"twitter": "_bob90368"
},
"record": {
- "CNAME": "bobthedev90368.github.io"
+ "CNAME": "nottisa.github.io"
}
-}
+}
diff --git a/domains/isabelrosillo.json b/domains/isabelrosillo.json
index 9dc9857e6..2794d8db2 100644
--- a/domains/isabelrosillo.json
+++ b/domains/isabelrosillo.json
@@ -1,11 +1,9 @@
{
- "owner":{
- "username":"ruben-as",
- "email":"ruben.aja.85@gmail.com"
- },
- "record":{
- "A":[
- "212.227.32.105"
- ]
- }
+ "owner": {
+ "username": "ruben-as",
+ "email": "ruben.aja.85@gmail.com"
+ },
+ "record": {
+ "A": ["212.227.32.105"]
+ }
}
diff --git a/domains/isdwk.json b/domains/isdwk.json
new file mode 100644
index 000000000..01be5e070
--- /dev/null
+++ b/domains/isdwk.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Brickmasterr",
+ "email": "dwiki200304@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/issai.json b/domains/issai.json
deleted file mode 100644
index fcba6f9d5..000000000
--- a/domains/issai.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "owner": {
- "username": "TheLimifiedLime",
- "email": "",
- "twitter": "TheLimifiedLime"
- },
- "description": "I will use this to redirect to my main domain",
- "repo": "https://github.com/TheLimifiedLime/issai.club",
- "record": {
- "URL": "https://issai.club"
- }
-}
diff --git a/domains/itsdemongamez.json b/domains/itsdemongamez.json
new file mode 100644
index 000000000..8dbd2ff9f
--- /dev/null
+++ b/domains/itsdemongamez.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "DemonGamez",
+ "email": "peterwyneg@gmail.com",
+ "discord": "1038747272701292584"
+ },
+
+ "record": {
+ "CNAME": "DemonGamez.github.io"
+ }
+}
diff --git a/domains/itsmealdo.json b/domains/itsmealdo.json
index 0dc4ce2b0..54bf5594f 100644
--- a/domains/itsmealdo.json
+++ b/domains/itsmealdo.json
@@ -8,4 +8,4 @@
"record": {
"CNAME": "itsmealdo.github.io"
}
-}
+}
diff --git a/domains/iucc.json b/domains/iucc.json
new file mode 100644
index 000000000..fa92c3cd7
--- /dev/null
+++ b/domains/iucc.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "IuCC123",
+ "email": "raccoon.pw.main@gmail.com"
+ },
+ "record": {
+ "CNAME": "1e080129-14d6-480b-9abb-390879d573cf.id.repl.co"
+ }
+}
diff --git a/domains/j0.json b/domains/j0.json
new file mode 100644
index 000000000..583ce9bc8
--- /dev/null
+++ b/domains/j0.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "j0code",
+ "discord": "j0code",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "cohalejoja.selfhost.eu"
+ }
+}
diff --git a/domains/j0code.json b/domains/j0code.json
new file mode 100644
index 000000000..583ce9bc8
--- /dev/null
+++ b/domains/j0code.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "j0code",
+ "discord": "j0code",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "cohalejoja.selfhost.eu"
+ }
+}
diff --git a/domains/jackbillstrom.json b/domains/jackbillstrom.json
new file mode 100644
index 000000000..24a291a3e
--- /dev/null
+++ b/domains/jackbillstrom.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "jackbillstrom",
+ "email": "jackbillstrom@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "swedish.codes"
+ }
+}
diff --git a/domains/jackson.json b/domains/jackson.json
index ef55172d6..292e2b55b 100644
--- a/domains/jackson.json
+++ b/domains/jackson.json
@@ -5,11 +5,6 @@
"discord": "jackson!#0001"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ]
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"]
}
}
diff --git a/domains/jacobi09.json b/domains/jacobi09.json
new file mode 100644
index 000000000..3f78f3789
--- /dev/null
+++ b/domains/jacobi09.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jacobi090",
+ "email": "jacobi090@outlook.com"
+ },
+ "record": {
+ "CNAME": "11a5227b-1286-4b6c-9741-b0e69e913c6f.id.repl.co"
+ }
+}
diff --git a/domains/jacobtm.json b/domains/jacobtm.json
deleted file mode 100644
index e7c8fc79b..000000000
--- a/domains/jacobtm.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "About me.",
- "repo": "https://github.com/Jacob1Tm",
- "owner": {
- "username": "Jacob1Tm",
- "email": "",
- "twitter": "Jacob1_Tm"
- },
- "record": {
- "URL": "https://jacobtm.tk"
- }
-}
diff --git a/domains/mail.aditya.json b/domains/jadebetty.json
similarity index 59%
rename from domains/mail.aditya.json
rename to domains/jadebetty.json
index 0ea9ff1a9..a57e8ac6f 100644
--- a/domains/mail.aditya.json
+++ b/domains/jadebetty.json
@@ -1,10 +1,8 @@
{
- "description": "A Subdomain For Mails!!",
- "repo": "https://github.com/icancodebeauty/mail",
"owner": {
- "username": "icancodebeauty",
- "email": "ishqaddy@gmail.com",
- "twitter": "CodeWithAadi"
+ "username": "JadeBetty",
+ "email": "",
+ "discord": "758617912566087681"
},
"record": {
"A": [
diff --git a/domains/jagi.json b/domains/jagi.json
new file mode 100644
index 000000000..502076c72
--- /dev/null
+++ b/domains/jagi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "javhaa07",
+ "email": "jjagi02@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/jainam.json b/domains/jainam.json
new file mode 100644
index 000000000..365a787c5
--- /dev/null
+++ b/domains/jainam.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jainamoswal",
+ "email": "me@jainam.me"
+ },
+ "record": {
+ "URL": "http://jainam.me"
+ }
+}
diff --git a/domains/jairomorales.json b/domains/jairomorales.json
index 8d166f142..15ebc8074 100644
--- a/domains/jairomorales.json
+++ b/domains/jairomorales.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "icky17.github.io"
}
-}
+}
diff --git a/domains/jake.json b/domains/jake.json
new file mode 100644
index 000000000..13d7afcd1
--- /dev/null
+++ b/domains/jake.json
@@ -0,0 +1,11 @@
+{
+ "description": "Jake's personal website and blog.",
+ "repo": "https://github.com/j-eo/j-eo.github.io",
+ "owner": {
+ "username": "j-eo",
+ "email": "website-contact.nem2h@silomails.com"
+ },
+ "record": {
+ "CNAME": "jakeanto.pages.dev"
+ }
+}
diff --git a/domains/jamez.json b/domains/jamez.json
new file mode 100644
index 000000000..c392e4547
--- /dev/null
+++ b/domains/jamez.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "jamesisacutedog",
+ "email": "jamezemailreal@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/janmb.json b/domains/janmb.json
new file mode 100644
index 000000000..ca1821523
--- /dev/null
+++ b/domains/janmb.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "wansie1",
+ "email": "msc2tvdn@duck.com",
+ "discord": "962788530336178236"
+ },
+
+ "record": {
+ "A": ["213.238.183.171"]
+ }
+}
diff --git a/domains/janmikowa.json b/domains/janmikowa.json
new file mode 100644
index 000000000..3faf3a917
--- /dev/null
+++ b/domains/janmikowa.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Maritsu",
+ "email": "maritsuqnn@gmail.com"
+ },
+ "record": {
+ "CNAME": "maritsu.github.io"
+ }
+}
diff --git a/domains/jasonthomas.json b/domains/jasonthomas.json
new file mode 100644
index 000000000..25fd6253b
--- /dev/null
+++ b/domains/jasonthomas.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Wizrst641",
+ "email": "slxppyznet18@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/jatinkr.json b/domains/jatinkr.json
new file mode 100644
index 000000000..ace384aa0
--- /dev/null
+++ b/domains/jatinkr.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jatinkumarg",
+ "email": "jatinkr@duck.com"
+ },
+ "record": {
+ "CNAME": "jatinkumarg.github.io"
+ }
+}
diff --git a/domains/javier.json b/domains/javier.json
index 87b7f3b12..be9ad7ff2 100644
--- a/domains/javier.json
+++ b/domains/javier.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "jzaleta.github.io"
}
-}
+}
diff --git a/domains/javierpastore.json b/domains/javierpastore.json
new file mode 100644
index 000000000..bf621a217
--- /dev/null
+++ b/domains/javierpastore.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "yangxiaokun",
+ "email": "619742721@qq.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/jayg.json b/domains/jayg.json
index cbf36d580..f23d0a0a8 100644
--- a/domains/jayg.json
+++ b/domains/jayg.json
@@ -8,10 +8,7 @@
},
"record": {
"URL": "https://jayg.top",
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
}
diff --git a/domains/jbugel.json b/domains/jbugel.json
new file mode 100644
index 000000000..c8a7b686d
--- /dev/null
+++ b/domains/jbugel.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "jbugel-lol",
+ "email": "jbugel.lol.github@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/jbyt27.json b/domains/jbyt27.json
deleted file mode 100644
index ce7616272..000000000
--- a/domains/jbyt27.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "JBYT27",
- "email": "beol0127@gmail.com"
- },
- "record": {
- "URL": "https://jbyt27.jbloves27.repl.co"
- }
-}
diff --git a/domains/jcarpenter.json b/domains/jcarpenter.json
index debc073aa..0be501ccb 100644
--- a/domains/jcarpenter.json
+++ b/domains/jcarpenter.json
@@ -8,4 +8,4 @@
"record": {
"CNAME": "jcarpenter48.github.io"
}
-}
+}
diff --git a/domains/jcs.json b/domains/jcs.json
new file mode 100644
index 000000000..682f8310d
--- /dev/null
+++ b/domains/jcs.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bi0hazarDD",
+ "email": "jonathan-8@hotmail.co.uk"
+ },
+ "record": {
+ "CNAME": "bi0hazardd.github.io"
+ }
+}
diff --git a/domains/jdszekeres.json b/domains/jdszekeres.json
index aba19acf6..fadf7dabf 100644
--- a/domains/jdszekeres.json
+++ b/domains/jdszekeres.json
@@ -7,4 +7,4 @@
"record": {
"CNAME": "jdszekeres.github.io"
}
-}
+}
diff --git a/domains/jean-arthur.json b/domains/jean-arthur.json
index fecf7925e..9bd5d7dd1 100644
--- a/domains/jean-arthur.json
+++ b/domains/jean-arthur.json
@@ -1,4 +1,3 @@
-
{
"description": "Part of my portfolio website",
"repo": "https://github.com/8n9ght/univers",
@@ -9,4 +8,4 @@
"record": {
"CNAME": "8n9ght.github.io"
}
-}
+}
diff --git a/domains/jefferson.json b/domains/jefferson.json
index a747e33ef..b8bc13ce6 100644
--- a/domains/jefferson.json
+++ b/domains/jefferson.json
@@ -8,4 +8,4 @@
"record": {
"URL": "https://github.com/jeffersonjpr/jeffersonjpr"
}
-}
\ No newline at end of file
+}
diff --git a/domains/jeymen.json b/domains/jeymen.json
index 633eda166..17a476555 100644
--- a/domains/jeymen.json
+++ b/domains/jeymen.json
@@ -1,10 +1,22 @@
{
"owner": {
"username": "Jeymen",
- "email": "",
- "discord": "Jeymen#5269"
+ "email": "jeymen11@proton.me"
},
"record": {
- "CNAME": "jeymen.github.io"
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+
+ "MX": [
+ "mx.zoho.eu",
+ "mx2.zoho.eu",
+ "mx3.zoho.eu"
+ ],
+
+ "TXT": "v=spf1 include:zoho.eu ~all"
}
}
diff --git a/domains/jim.json b/domains/jim.json
new file mode 100644
index 000000000..bd5bc1e67
--- /dev/null
+++ b/domains/jim.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "jimmy20180130",
+ "email": "jimmy20180130@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/jj.json b/domains/jj.json
index 33574b092..a05eda828 100644
--- a/domains/jj.json
+++ b/domains/jj.json
@@ -6,12 +6,7 @@
"email": "TheBotlyNoob@gmail.com"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.111.153",
- "185.199.110.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.111.153", "185.199.110.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/jlalfonso21.json b/domains/jlalfonso21.json
new file mode 100644
index 000000000..2ca0563b0
--- /dev/null
+++ b/domains/jlalfonso21.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "jlalfonso21",
+ "email": "jlalfonso21@gmail.com"
+ },
+ "record": {
+ "A": ["89.147.111.78"]
+ }
+}
diff --git a/domains/joao.json b/domains/joao.json
new file mode 100644
index 000000000..1489c645b
--- /dev/null
+++ b/domains/joao.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "felipeiracloud",
+ "email": "joaofelipegamer23@gmail.com"
+ },
+ "record": {
+ "A": ["191.233.29.127"]
+ }
+}
diff --git a/domains/joaovitorzv.json b/domains/joaovitorzv.json
index e7d88731a..11cb87ab9 100644
--- a/domains/joaovitorzv.json
+++ b/domains/joaovitorzv.json
@@ -1,5 +1,5 @@
{
- "description": "@joaovitorzv blog",
+ "description": "joaovitorzv blog",
"repo": "https://github.com/joaovitorzv/joaovitorzv.github.io",
"owner": {
"username": "joaovitorzv",
diff --git a/domains/joaozeira.json b/domains/joaozeira.json
new file mode 100644
index 000000000..b0ef44d55
--- /dev/null
+++ b/domains/joaozeira.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "joaozeiradev",
+ "email": "joaofelipegamer24@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/joesjourney.json b/domains/joesjourney.json
index 68e3484ac..aa69ddf65 100644
--- a/domains/joesjourney.json
+++ b/domains/joesjourney.json
@@ -5,15 +5,7 @@
},
"record": {
- "A": [
- "185.199.108.153",
-
- "185.199.109.153",
-
- "185.199.110.153",
-
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx.mailtie.com"],
"TXT": "mailtie=joesjourney500@gmail.com"
}
diff --git a/domains/johan-stickman.json b/domains/johan-stickman.json
index 295f229dd..0877408d5 100644
--- a/domains/johan-stickman.json
+++ b/domains/johan-stickman.json
@@ -4,9 +4,9 @@
"username": "johan-perso",
"email": "johan_stickman@proton.me",
"twitter": "Johan_Stickman",
- "discord": "Johan#8021"
+ "discord": "jsuismoi"
},
"record": {
- "URL": "https://johanstick.me"
+ "URL": "https://johanstick.fr"
}
}
diff --git a/domains/johna.json b/domains/johna.json
index 4e0164d06..dfd3b98fd 100644
--- a/domains/johna.json
+++ b/domains/johna.json
@@ -6,6 +6,6 @@
"email": "j-verstraaten@hotmail.com"
},
"record": {
- "CNAME": "johna.deno.dev"
+ "URL": "https://johna.is-a-fullstack.dev"
}
-}
+}
diff --git a/domains/johndoe.json b/domains/johndoe.json
new file mode 100644
index 000000000..550a484c2
--- /dev/null
+++ b/domains/johndoe.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "pythonhuman",
+ "email": "sai.pasumarthi@stu.argyleisd.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/jojojux.json b/domains/jojojux.json
new file mode 100644
index 000000000..3a3e7ebca
--- /dev/null
+++ b/domains/jojojux.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "J0J0HA",
+ "email": "info@jojojux.de"
+ },
+ "record": {
+ "URL": "https://jojojux.de"
+ }
+}
diff --git a/domains/jonathancarrillo.json b/domains/jonathancarrillo.json
new file mode 100644
index 000000000..682f8310d
--- /dev/null
+++ b/domains/jonathancarrillo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bi0hazarDD",
+ "email": "jonathan-8@hotmail.co.uk"
+ },
+ "record": {
+ "CNAME": "bi0hazardd.github.io"
+ }
+}
diff --git a/domains/jpedro.json b/domains/jpedro.json
new file mode 100644
index 000000000..6579832c4
--- /dev/null
+++ b/domains/jpedro.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal blog",
+ "repo": "https://github.com/jpedro/jpedro.github.io",
+ "owner": {
+ "username": "jpedro",
+ "email": "github@jpedro.dev"
+ },
+ "record": {
+ "CNAME": "jpedro.github.io"
+ }
+}
diff --git a/domains/julio.json b/domains/julio.json
new file mode 100644
index 000000000..ec44f209a
--- /dev/null
+++ b/domains/julio.json
@@ -0,0 +1,11 @@
+{
+ "description": "My work portfolio",
+ "repo": "https://github.com/thatsquite",
+ "owner": {
+ "username": "thatsquite",
+ "email": "juliocesar.santos@making.com"
+ },
+ "record": {
+ "CNAME": "thatsquite.github.io"
+ }
+}
diff --git a/domains/juliocesar.json b/domains/juliocesar.json
new file mode 100644
index 000000000..6148b124e
--- /dev/null
+++ b/domains/juliocesar.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "jcwisniewski",
+ "email": "julio.wisnieski@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/jumanji.json b/domains/jumanji.json
new file mode 100644
index 000000000..c354d0c6f
--- /dev/null
+++ b/domains/jumanji.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "heyjumanji",
+ "email": "madhuchutiya.unhinge650@silomails.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/junior.json b/domains/junior.json
new file mode 100644
index 000000000..ac014dd71
--- /dev/null
+++ b/domains/junior.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "juniorbutyeah",
+ "email": "junior4u@reborn.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+ }
\ No newline at end of file
diff --git a/domains/just-muzz.json b/domains/just-muzz.json
new file mode 100644
index 000000000..a64ecbd10
--- /dev/null
+++ b/domains/just-muzz.json
@@ -0,0 +1,12 @@
+{
+ "description": "Portfolio site",
+ "repo": "https://github.com/just-muzz/just-muzz.github.io",
+ "owner": {
+ "username": "just-Muzz",
+ "email": "idrisking759@gmail.com",
+ "twitter": "just_Muzz"
+ },
+ "record": {
+ "CNAME": "just-muzz.github.io"
+ }
+}
diff --git a/domains/justcody.json b/domains/justcody.json
new file mode 100644
index 000000000..f9afe869c
--- /dev/null
+++ b/domains/justcody.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "JWeinelt",
+ "email": "julian.weinelt@outlook.de"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/justevil.json b/domains/justevil.json
new file mode 100644
index 000000000..c44d509b4
--- /dev/null
+++ b/domains/justevil.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "EvilG-MC",
+ "email": "thatjustevil@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/jz.json b/domains/jz.json
new file mode 100644
index 000000000..45c849919
--- /dev/null
+++ b/domains/jz.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "JZ1324",
+ "email": "zheng.joshua2@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/jzitnik.json b/domains/jzitnik.json
index ae16e0934..a23342b0c 100644
--- a/domains/jzitnik.json
+++ b/domains/jzitnik.json
@@ -5,12 +5,7 @@
"discord": "KLIND#1906"
},
"record": {
- "A": [
- "216.24.57.1"
- ],
- "MX": [
- "a257fec0e9137cd3.mx2.emailprofi.seznam.cz",
- "a257fec0e9137cd3.mx1.emailprofi.seznam.cz"
- ]
+ "A": ["216.24.57.1"],
+ "MX": ["a257fec0e9137cd3.mx2.emailprofi.seznam.cz", "a257fec0e9137cd3.mx1.emailprofi.seznam.cz"]
}
}
diff --git a/domains/k22rma.json b/domains/k22rma.json
new file mode 100644
index 000000000..b47f99a31
--- /dev/null
+++ b/domains/k22rma.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "k22rma",
+ "email": "krrishsharma.ks12345@gmail.com"
+ },
+ "record": {
+ "CNAME": "k22rma.github.io"
+ }
+}
diff --git a/domains/kaden.json b/domains/kaden.json
new file mode 100644
index 000000000..905fb46a3
--- /dev/null
+++ b/domains/kaden.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "KadenAE",
+ "email": "kadeinwales@gmail.com"
+ },
+ "record": {
+ "CNAME": "hosts.is-a.dev"
+ }
+}
diff --git a/domains/kainer.json b/domains/kainer.json
new file mode 100644
index 000000000..c60567d15
--- /dev/null
+++ b/domains/kainer.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ue5377",
+ "email": "kai.ner.h13r@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kaizin.json b/domains/kaizin.json
new file mode 100644
index 000000000..61c458efc
--- /dev/null
+++ b/domains/kaizin.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "kaizinbr",
+ "email": "kaiolucas1812@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kamek.json b/domains/kamek.json
new file mode 100644
index 000000000..01e8825f0
--- /dev/null
+++ b/domains/kamek.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Kamek437",
+ "email": "hidden_tuetle427@protonmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kamishi.json b/domains/kamishi.json
new file mode 100644
index 000000000..c2de37447
--- /dev/null
+++ b/domains/kamishi.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "KamishiRewrote",
+ "email": "",
+ "discord": "kamishi_x"
+ },
+ "record": {
+ "CNAME": "kamishi.kamishiyt.repl.co"
+ }
+}
diff --git a/domains/kapoor.json b/domains/kapoor.json
index a2bce61a6..eb5a37762 100644
--- a/domains/kapoor.json
+++ b/domains/kapoor.json
@@ -1,11 +1,11 @@
-{
- "owner": {
- "username": "kapoorsaumitra",
- "email": "saumitrakapoor24@gmail.com",
- "twitter": "0xKapoor"
- },
-
- "record": {
- "URL": "https://kapoorportfolio.vercel.app"
- }
-}
+{
+ "owner": {
+ "username": "kapoorsaumitra",
+ "email": "saumitrakapoor24@gmail.com",
+ "twitter": "0xKapoor"
+ },
+
+ "record": {
+ "URL": "https://kapoorportfolio.vercel.app"
+ }
+}
diff --git a/domains/karan.json b/domains/karan.json
new file mode 100644
index 000000000..e79fdef54
--- /dev/null
+++ b/domains/karan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Karandev2007",
+ "email": "karangamerz207@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
diff --git a/domains/kashif-kadri.json b/domains/kashif-kadri.json
index 2e92c4aea..e87b6ce5a 100644
--- a/domains/kashif-kadri.json
+++ b/domains/kashif-kadri.json
@@ -1,11 +1,11 @@
{
- "description": "This is personal website",
- "repo": "https://github.com/kashif-kadri/kashif-kadri.github.io",
- "owner": {
- "username": "kashif-kadri",
- "email": ""
- },
- "record": {
- "URL": "https://kashif-kadri.github.io"
- }
+ "description": "This is personal website",
+ "repo": "https://github.com/kashif-kadri/kashif-kadri.github.io",
+ "owner": {
+ "username": "kashif-kadri",
+ "email": ""
+ },
+ "record": {
+ "URL": "https://kashif-kadri.github.io"
+ }
}
diff --git a/domains/kasmatic.json b/domains/kasmatic.json
new file mode 100644
index 000000000..3e9dbf32d
--- /dev/null
+++ b/domains/kasmatic.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "PHYT90DitYT",
+ "email": "chess049@rsdmo.org"
+ },
+ "record": {
+ "CNAME": "i-think-i.lol"
+ }
+}
diff --git a/domains/kasmatica.json b/domains/kasmatica.json
new file mode 100644
index 000000000..3e9dbf32d
--- /dev/null
+++ b/domains/kasmatica.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "PHYT90DitYT",
+ "email": "chess049@rsdmo.org"
+ },
+ "record": {
+ "CNAME": "i-think-i.lol"
+ }
+}
diff --git a/domains/kasu.json b/domains/kasu.json
new file mode 100644
index 000000000..437840057
--- /dev/null
+++ b/domains/kasu.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Trandang-hiendev",
+ "email": "trandanghien120@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kasun.json b/domains/kasun.json
new file mode 100644
index 000000000..399897a55
--- /dev/null
+++ b/domains/kasun.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ka0un",
+ "email": "givemelognotes@gmail.com"
+ },
+ "record": {
+ "URL": "https://ka0un.github.io"
+ }
+}
diff --git a/domains/kasuu.json b/domains/kasuu.json
new file mode 100644
index 000000000..437840057
--- /dev/null
+++ b/domains/kasuu.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Trandang-hiendev",
+ "email": "trandanghien120@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kaushal.json b/domains/kaushal.json
new file mode 100644
index 000000000..11a564a78
--- /dev/null
+++ b/domains/kaushal.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "kks007",
+ "email": "kaushalkishor10702@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kaustubh.json b/domains/kaustubh.json
new file mode 100644
index 000000000..ae152c53d
--- /dev/null
+++ b/domains/kaustubh.json
@@ -0,0 +1,12 @@
+{
+ "description": "For my portfolio website made by using HTML + CSS and JS",
+ "repo": "https://github.com/kaustubhkharvi/kaustubhkharvi.github.io",
+ "owner": {
+ "username": "kaustubhkharvi",
+ "email": "kaustubh_2008@outlook.com",
+ "twitter": "Kaustubhkharvi"
+ },
+ "record": {
+ "CNAME": "kaustubhkharvi.github.io"
+ }
+}
diff --git a/domains/kavinned.json b/domains/kavinned.json
new file mode 100644
index 000000000..d12a04d9d
--- /dev/null
+++ b/domains/kavinned.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "kafeicheez2",
+ "email": "kavin.ned@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kayden.json b/domains/kayden.json
new file mode 100644
index 000000000..b253da134
--- /dev/null
+++ b/domains/kayden.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "leekayden",
+ "email": "kaydenleefale@gmail.com"
+ },
+
+ "record": {
+ "A": ["103.7.8.238"]
+ }
+}
diff --git a/domains/kcasm.json b/domains/kcasm.json
new file mode 100644
index 000000000..eac9d55ed
--- /dev/null
+++ b/domains/kcasm.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "PHYT90DitYT",
+ "email": "chess049@rsdmo.org",
+ "discord": "798934178783559710"
+ },
+
+ "record": {
+ "CNAME": "i-think-i.lol"
+ }
+}
diff --git a/domains/keirnegn.json b/domains/keirnegn.json
new file mode 100644
index 000000000..c3364f4fc
--- /dev/null
+++ b/domains/keirnegn.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "KeIrNeGn",
+ "email": "terminatorx5e@gmail.com",
+ "discord": "499592235772280842"
+ },
+
+ "record": {
+ "URL": "https://keirnegn.dev"
+ }
+}
diff --git a/domains/kelvinmjr707.json b/domains/kelvinmjr707.json
new file mode 100644
index 000000000..9b3d13779
--- /dev/null
+++ b/domains/kelvinmjr707.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "KelvinMJr707",
+ "email": "KelvinMJr707@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
diff --git a/domains/kenanneo.json b/domains/kenanneo.json
new file mode 100644
index 000000000..186e9d707
--- /dev/null
+++ b/domains/kenanneo.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "kenanneo",
+ "email": "kenanneo2@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kerlos.json b/domains/kerlos.json
new file mode 100644
index 000000000..3e261b8ce
--- /dev/null
+++ b/domains/kerlos.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kerlos",
+ "email": "ker.los@hotmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/kerlos"
+ }
+}
diff --git a/domains/kevvyyn.json b/domains/kevvyyn.json
new file mode 100644
index 000000000..83d1df3b9
--- /dev/null
+++ b/domains/kevvyyn.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "BiometricGlitch",
+ "email": "smellysocks0147@gmail.com"
+ },
+ "record": {
+ "CNAME": "19e5bf8c-21c4-458c-aade-3d247b901526.id.repl.co"
+ }
+}
diff --git a/domains/keyaan.json b/domains/keyaan.json
new file mode 100644
index 000000000..dd2c1497b
--- /dev/null
+++ b/domains/keyaan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "keyhacker786",
+ "email": "keyhacker786@gmail.com",
+ "discord": "693533573105451089"
+ },
+
+ "record": {
+ "URL": "http://ka4ma.unaux.com"
+ }
+}
diff --git a/domains/khasan-tokhirov.json b/domains/khasan-tokhirov.json
new file mode 100644
index 000000000..c9d227101
--- /dev/null
+++ b/domains/khasan-tokhirov.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "FrostOnFire",
+ "email": "khasan.tokhirov@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/killerf.json b/domains/killerf.json
index 00deef209..dcc4e7dd6 100644
--- a/domains/killerf.json
+++ b/domains/killerf.json
@@ -1,11 +1,11 @@
{
- "description": "The Person Who Hacked QLASH RP And got away with it with nothing to lose, An Exploiter to say the least; Welcome to Grove Street",
- "repo": "https://discord.gg/groove-community-875725991551569960",
- "owner": {
- "username": "MohamexDR",
- "email": "loliehentaixd@gmail.com"
- },
- "record": {
- "URL": "https://discord.gg/groove-community-875725991551569960"
- }
+ "description": "The Person Who Hacked QLASH RP And got away with it with nothing to lose, An Exploiter to say the least; Welcome to Grove Street",
+ "repo": "https://discord.gg/groove-community-875725991551569960",
+ "owner": {
+ "username": "MohamexDR",
+ "email": "loliehentaixd@gmail.com"
+ },
+ "record": {
+ "URL": "https://discord.gg/groove-community-875725991551569960"
+ }
}
diff --git a/domains/kime.json b/domains/kime.json
new file mode 100644
index 000000000..a59158a93
--- /dev/null
+++ b/domains/kime.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Mikelikesgames1",
+ "email": "mikeyhackjob21@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
diff --git a/domains/kio.json b/domains/kio.json
new file mode 100644
index 000000000..2cb8062e3
--- /dev/null
+++ b/domains/kio.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "YoruAkio",
+ "email": "yoruakio@proton.me"
+ },
+
+ "record": {
+ "CNAME": "nakio.pages.dev"
+ }
+}
diff --git a/domains/kira.json b/domains/kira.json
new file mode 100644
index 000000000..ba2f95c6f
--- /dev/null
+++ b/domains/kira.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "jwan9714",
+ "email": "jwan9714@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kishannnn.json b/domains/kishannnn.json
new file mode 100644
index 000000000..367c6e940
--- /dev/null
+++ b/domains/kishannnn.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "CycloneAddons",
+ "email": "cycloneaddon@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/kleb.json b/domains/kleb.json
new file mode 100644
index 000000000..0b322c817
--- /dev/null
+++ b/domains/kleb.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "KrazyKleb",
+ "email": "krazyklebyt@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kntlpop.json b/domains/kntlpop.json
new file mode 100644
index 000000000..7921d30b1
--- /dev/null
+++ b/domains/kntlpop.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "suhujetlag5",
+ "email": "suhujetlag5@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/korigamik.json b/domains/korigamik.json
new file mode 100644
index 000000000..5abd47d36
--- /dev/null
+++ b/domains/korigamik.json
@@ -0,0 +1,12 @@
+{
+ "description": "The Portfolio of KorigamiK",
+ "repo": "https://github.com/KorigamiK/korigamik.github.io",
+ "owner": {
+ "username": "KorigamiK",
+ "email": "korigamik@gmail.com",
+ "twitter": "https://twitter.com/iamkorigamik"
+ },
+ "record": {
+ "CNAME": "korigamik.github.io"
+ }
+}
diff --git a/domains/kramiikk.json b/domains/kramiikk.json
new file mode 100644
index 000000000..92e7cb91e
--- /dev/null
+++ b/domains/kramiikk.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "kramiikk",
+ "email": "hifund@yandex.ru"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kresswell.json b/domains/kresswell.json
new file mode 100644
index 000000000..fa05957b0
--- /dev/null
+++ b/domains/kresswell.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Kresswell",
+ "email": "simonecresswell@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/krinzal.json b/domains/krinzal.json
new file mode 100644
index 000000000..bad4dc5c6
--- /dev/null
+++ b/domains/krinzal.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "krinzal",
+ "email": "krinzal54@gmail.com"
+ },
+
+ "record": {
+ "URL": "https://krinzal.vercel.app"
+ }
+}
diff --git a/domains/kris-patel.json b/domains/kris-patel.json
new file mode 100644
index 000000000..7c5fc33ae
--- /dev/null
+++ b/domains/kris-patel.json
@@ -0,0 +1,12 @@
+
+{
+ "description": "Prorammer , Developer and Student",
+ "repo": "https://github.com/Kris0011",
+ "owner": {
+ "username": "Kris Patel",
+ "email": "krishp759@gmail.com"
+ },
+ "record": {
+ "URL": "https://personalportfolio.kris-patelpatel.repl.co/"
+ }
+}
\ No newline at end of file
diff --git a/domains/krishna.json b/domains/krishna.json
new file mode 100644
index 000000000..0e3a89e67
--- /dev/null
+++ b/domains/krishna.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Krishnabohra",
+ "email": "Krishnabohra2013@gmail.com",
+ "discord": "328135638358687746"
+ },
+
+ "record": {
+ "CNAME": "krishnabohra.github.io"
+ }
+}
diff --git a/domains/krishna03.json b/domains/krishna03.json
new file mode 100644
index 000000000..2928020e6
--- /dev/null
+++ b/domains/krishna03.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Krishnabohra",
+ "email": "Krishnabohra2013@gmail.com",
+ "discord": "328135638358687746"
+ },
+
+ "record": {
+ "URL": "https://replit.com/@krishnabohra03/discord-portfolio"
+ }
+}
diff --git a/domains/kronifer.json b/domains/kronifer.json
new file mode 100644
index 000000000..ef189b0ea
--- /dev/null
+++ b/domains/kronifer.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Kronifer",
+ "email": "dillonr5@live.wsd1.org"
+ },
+ "record": {
+ "A": ["147.182.152.211"]
+ }
+}
diff --git a/domains/kryclopz.json b/domains/kryclopz.json
new file mode 100644
index 000000000..43c418f05
--- /dev/null
+++ b/domains/kryclopz.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "kryclopz-development",
+ "email": "officialkryclopz@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
\ No newline at end of file
diff --git a/domains/ksingh.json b/domains/ksingh.json
new file mode 100644
index 000000000..179f4c18b
--- /dev/null
+++ b/domains/ksingh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "KSinghofficial",
+ "email": "ksinghofficial@proton.me"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kuat.json b/domains/kuat.json
new file mode 100644
index 000000000..92e7cb91e
--- /dev/null
+++ b/domains/kuat.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "kramiikk",
+ "email": "hifund@yandex.ru"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kuba.json b/domains/kuba.json
index 76651a44c..1f6b0e6d5 100644
--- a/domains/kuba.json
+++ b/domains/kuba.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "kob-kuba",
- "telegram": "kob_kuba",
- "email": "admin@kobb.tech"
- },
- "record": {
- "URL": "https://kob.gay"
- }
+ "owner": {
+ "username": "kob-kuba",
+ "telegram": "kob_kuba",
+ "email": "admin@kobb.tech"
+ },
+ "record": {
+ "URL": "https://kob.gay"
+ }
}
diff --git a/domains/kuyacarlos.json b/domains/kuyacarlos.json
index 5b3f73673..dab4ac778 100644
--- a/domains/kuyacarlos.json
+++ b/domains/kuyacarlos.json
@@ -1,10 +1,10 @@
-{
- "description": "A personal portfolio to showcase my skills",
- "owner": {
- "username": "CarlosNatanauan",
- "email": "carlosbenedictn@gmail.com"
- },
- "record": {
- "CNAME": "CarlosNatanauan.github.io"
- }
-}
+{
+ "description": "A personal portfolio to showcase my skills",
+ "owner": {
+ "username": "CarlosNatanauan",
+ "email": "carlosbenedictn@gmail.com"
+ },
+ "record": {
+ "CNAME": "CarlosNatanauan.github.io"
+ }
+}
diff --git a/domains/kuzey.json b/domains/kuzey.json
new file mode 100644
index 000000000..51b28e454
--- /dev/null
+++ b/domains/kuzey.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "duzelicem",
+ "email": "ardagokce0682@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kweeper.json b/domains/kweeper.json
new file mode 100644
index 000000000..81c8c51f2
--- /dev/null
+++ b/domains/kweeper.json
@@ -0,0 +1,10 @@
+{
+ "description": "kweeper.is-a.dev",
+ "owner": {
+ "username": "kweeperdotjs",
+ "email": "kweeper@protonmail.com"
+ },
+ "record": {
+ "CNAME": "kweeperdotjs.pages.dev"
+ }
+}
diff --git a/domains/kxtz.json b/domains/kxtz.json
new file mode 100644
index 000000000..46e49f825
--- /dev/null
+++ b/domains/kxtz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "kxtzownsu",
+ "email": "kxtzownsu@gmail.com"
+ },
+ "record": {
+ "CNAME": "ef93d84a-155f-4365-86a0-9dcc1d445acf.id.repl.co"
+ }
+}
diff --git a/domains/kyakou.json b/domains/kyakou.json
new file mode 100644
index 000000000..95f22f401
--- /dev/null
+++ b/domains/kyakou.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "kyakou",
+ "email": "ali_a19@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/kz.json b/domains/kz.json
new file mode 100644
index 000000000..2f7184e83
--- /dev/null
+++ b/domains/kz.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "iakzs",
+ "email": "iakzs@protonmail.com",
+ "discord": "622795838032314388"
+ },
+
+ "record": {
+ "MX": ["mx1.improvmx.com"]
+ }
+}
diff --git a/domains/lacyx.json b/domains/lacyx.json
new file mode 100644
index 000000000..0cdd45522
--- /dev/null
+++ b/domains/lacyx.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "LacyXosu",
+ "email": "nozoska@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/laluxx.json b/domains/laluxx.json
new file mode 100644
index 000000000..8aac87995
--- /dev/null
+++ b/domains/laluxx.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "laluxx",
+ "email": "lorenzoaddamo10@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/lam.json b/domains/lam.json
new file mode 100644
index 000000000..ff23456c3
--- /dev/null
+++ b/domains/lam.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Syxaaa",
+ "email": "nguyenlamyou@gmail.com"
+ },
+ "record": {
+ "CNAME": "thelastprofilecard.pages.dev"
+ }
+}
diff --git a/domains/lamdev.json b/domains/lamdev.json
new file mode 100644
index 000000000..83fdc615a
--- /dev/null
+++ b/domains/lamdev.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "kentjuno7z",
+ "email": "lamdev1212@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
\ No newline at end of file
diff --git a/domains/lamnotadev.json b/domains/lamnotadev.json
new file mode 100644
index 000000000..49555658c
--- /dev/null
+++ b/domains/lamnotadev.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Syxaaa",
+ "email": "nguyenlamyou@gmail.com"
+ },
+ "record": {
+ "CNAME": "chubedanprofile.justtakarin.repl.co"
+ }
+}
diff --git a/domains/lap.json b/domains/lap.json
new file mode 100644
index 000000000..e08febfd4
--- /dev/null
+++ b/domains/lap.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ItsLap",
+ "email": "alexanderpaulwheeler15@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/laqie.json b/domains/laqie.json
new file mode 100644
index 000000000..dea9a8023
--- /dev/null
+++ b/domains/laqie.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "laqie",
+ "email": "ave.lucky@gmail.com"
+ },
+ "record": {
+ "A": ["34.120.54.55"]
+ }
+}
diff --git a/domains/larei.json b/domains/larei.json
index 5b5ede737..05d79d9bf 100644
--- a/domains/larei.json
+++ b/domains/larei.json
@@ -1,11 +1,11 @@
{
- "description": "larei's personal website.",
- "repo": "https://github.com/lareithen/lareithen.github.io",
+ "description": "larei's cool website.",
+ "repo": "https://github.com/lareii/lareii.github.io",
"owner": {
- "username": "lareithen",
+ "username": "lareii",
"email": "lareithen@gmail.com"
},
"record": {
- "CNAME": "lareithen.github.io"
+ "CNAME": "lareii.github.io"
}
}
diff --git a/domains/latealways.json b/domains/latealways.json
index 115b1a16f..820ffc877 100644
--- a/domains/latealways.json
+++ b/domains/latealways.json
@@ -1,9 +1,9 @@
{
"owner": {
- "username": "Sky-FoxGAMING",
- "email": "jparedesmoure@awakenclient.com"
+ "username": "LateAlways",
+ "email": "latealways@i-am-a.fuchsiax.dev"
},
"record": {
- "CNAME": "Sky-FoxGAMING.github.io"
+ "A": ["85.239.250.3"]
}
}
diff --git a/domains/latuh.json b/domains/latuh.json
new file mode 100644
index 000000000..fe8e7d0ee
--- /dev/null
+++ b/domains/latuh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "latuh",
+ "email": "latitud@duck.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/lcdled.json b/domains/lcdled.json
new file mode 100644
index 000000000..85993512c
--- /dev/null
+++ b/domains/lcdled.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "LCDLED",
+ "email": "TheCatatomic@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/learn-to-code-now.json b/domains/learn-to-code-now.json
new file mode 100644
index 000000000..8228b5a6c
--- /dev/null
+++ b/domains/learn-to-code-now.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "qloakongithub",
+ "email": "7469931481@stu.gcsnc.com"
+ },
+ "record": {
+ "CNAME": "qloakongithub.github.io"
+ }
+}
diff --git a/domains/legalise.json b/domains/legalise.json
new file mode 100644
index 000000000..b39362a36
--- /dev/null
+++ b/domains/legalise.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Rahib777-7",
+ "email": "rahibrahman1210@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/legend-sabbir.json b/domains/legend-sabbir.json
new file mode 100644
index 000000000..0dfcc44fa
--- /dev/null
+++ b/domains/legend-sabbir.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "legend-sabbir",
+ "email": "sabbirhossain.trash@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/lemmy.json b/domains/lemmy.json
new file mode 100644
index 000000000..583ce9bc8
--- /dev/null
+++ b/domains/lemmy.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "j0code",
+ "discord": "j0code",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "cohalejoja.selfhost.eu"
+ }
+}
diff --git a/domains/lemon.json b/domains/lemon.json
new file mode 100644
index 000000000..99e6ae8e8
--- /dev/null
+++ b/domains/lemon.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "PassiveLemon",
+ "email": "lemonl3mn@protonmail.com"
+ },
+ "record": {
+ "CNAME": "citrus-tree.xyz"
+ }
+}
diff --git a/domains/lenn106.json b/domains/lenn106.json
new file mode 100644
index 000000000..5436a8c28
--- /dev/null
+++ b/domains/lenn106.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Lenn106",
+ "email": "lennongreyson@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/lf.json b/domains/lf.json
new file mode 100644
index 000000000..71a3f0d3b
--- /dev/null
+++ b/domains/lf.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "lfom",
+ "email": "",
+ "matrix": "@lfdev:envs.net"
+ },
+ "record": {
+ "URL": "https://lfdev.envs.net"
+ }
+}
diff --git a/domains/liam-h.json b/domains/liam-h.json
new file mode 100644
index 000000000..9b0d635b5
--- /dev/null
+++ b/domains/liam-h.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Lonyx-H",
+ "email": "liam.hedin.pro@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/likalium.json b/domains/likalium.json
index 782ee0b87..d8653bf85 100644
--- a/domains/likalium.json
+++ b/domains/likalium.json
@@ -1,13 +1,13 @@
{
- "description": "Likalium's personal website",
- "repo": "https://github.com/likalium/likalium.github.io",
- "owner": {
- "username": "likalium",
- "email": "",
- "twitter": "likalium",
- "discord": "likalium#2870"
- },
- "record" : {
- "CNAME": "likalium.github.io"
- }
+ "description": "Likalium's personal website",
+ "repo": "https://github.com/likalium/likalium.github.io",
+ "owner": {
+ "username": "likalium",
+ "email": "",
+ "twitter": "likalium",
+ "discord": "likalium#2870"
+ },
+ "record": {
+ "CNAME": "likalium.github.io"
+ }
}
diff --git a/domains/links.aditya.json b/domains/links.aditya.json
deleted file mode 100644
index 9e4866a91..000000000
--- a/domains/links.aditya.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "A Subdomain For My Links Redirection!!",
- "repo": "https://github.com/icancodebeauty/links",
- "owner": {
- "username": "icancodebeauty",
- "email": "ishqaddy@gmail.com",
- "twitter": "CodeWithAadi"
- },
- "record": {
- "CNAME": "a.redirect.pizza"
- }
-}
diff --git a/domains/littleneko.json b/domains/littleneko.json
new file mode 100644
index 000000000..143add315
--- /dev/null
+++ b/domains/littleneko.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "CnyAnime",
+ "email": "mrdriveappstudios@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/liztochekcode.json b/domains/liztochekcode.json
deleted file mode 100644
index 869827228..000000000
--- a/domains/liztochekcode.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "LiztochekCode",
- "email": "liztochekcode@gmail.com"
- },
-
- "record": {
- "URL": "https://liztochekcode.epizy.com"
- }
-}
diff --git a/domains/llko.json b/domains/llko.json
new file mode 100644
index 000000000..345c40265
--- /dev/null
+++ b/domains/llko.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "LLKO101",
+ "email": "yo1sefooop@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/lndr2501.json b/domains/lndr2501.json
index bbf5e3f2f..5057158d8 100644
--- a/domains/lndr2501.json
+++ b/domains/lndr2501.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "Lndr2501",
- "email": ""
- },
- "repo": "https://github.com/Lndr2501/Lndr2501",
- "record": {
- "CNAME": "lndr2501.github.io"
- }
+ "owner": {
+ "username": "Lndr2501",
+ "email": ""
+ },
+ "repo": "https://github.com/Lndr2501/Lndr2501",
+ "record": {
+ "CNAME": "lndr2501.github.io"
+ }
}
diff --git a/domains/logan2005.json b/domains/logan2005.json
new file mode 100644
index 000000000..3d59d5654
--- /dev/null
+++ b/domains/logan2005.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "soviet783",
+ "email": "logannorman2005@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/logxnic.json b/domains/logxnic.json
new file mode 100644
index 000000000..cbc953a16
--- /dev/null
+++ b/domains/logxnic.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Nexus-sudo",
+ "email": "loganlarwood2019@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/lolz.json b/domains/lolz.json
new file mode 100644
index 000000000..be4dc5d57
--- /dev/null
+++ b/domains/lolz.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "LolzTheDev",
+ "email": "lolzthegreat.0223@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/loser.json b/domains/loser.json
index 24919c764..de3c186ce 100644
--- a/domains/loser.json
+++ b/domains/loser.json
@@ -6,12 +6,7 @@
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
diff --git a/domains/losr.json b/domains/losr.json
index 24919c764..de3c186ce 100644
--- a/domains/losr.json
+++ b/domains/losr.json
@@ -6,12 +6,7 @@
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
diff --git a/domains/lpkeates.json b/domains/lpkeates.json
index 258571dad..9c28b33c6 100644
--- a/domains/lpkeates.json
+++ b/domains/lpkeates.json
@@ -1,10 +1,7 @@
{
- "description": "This is to show my projects; current, in progress etc.",
- "repo": "https://github.com/lpkeates/lpkeates.github.io",
"owner": {
"username": "lpkeates",
- "email": "",
- "discord": "MrDragonBoi#7894"
+ "email": "realuprising2005@gmail.com"
},
"record": {
"CNAME": "lpkeates.github.io"
diff --git a/domains/lrmn.json b/domains/lrmn.json
index 532c9e1a0..330959adc 100644
--- a/domains/lrmn.json
+++ b/domains/lrmn.json
@@ -1,11 +1,11 @@
-{
- "description": "lrmn.is-a.dev",
- "repo": "https://github.com/lrmn7/lrmn7.github.io",
- "owner": {
- "username": "lrmn7",
- "email": "lrmnid@gmail.com"
- },
- "record": {
- "CNAME": "lrmn7.github.io"
- }
-}
\ No newline at end of file
+{
+ "description": "lrmn.is-a.dev",
+ "repo": "https://github.com/lrmn7/lrmn7.github.io",
+ "owner": {
+ "username": "lrmn7",
+ "email": "lrmnid@gmail.com"
+ },
+ "record": {
+ "CNAME": "lrmn7.github.io"
+ }
+}
diff --git a/domains/luca.json b/domains/luca.json
index ac9388f7b..14ed30edc 100644
--- a/domains/luca.json
+++ b/domains/luca.json
@@ -1,13 +1,9 @@
{
- "description": "Redirection service (URL shortener)",
- "repo": "https://github.com/lucatolton",
"owner": {
"username": "lucatolton",
- "email": "hi@lucatolton.me"
+ "email": "luto281@outlook.com"
},
"record": {
- "A": ["168.119.228.144"],
- "MX": ["mail.lucatolton.me"],
- "TXT": "v=spf1 +a +mx +a:optimistic-wiles.168-119-228-144.plesk.page -all"
+ "CNAME": "hosts.is-a.dev"
}
}
diff --git a/domains/lucy.json b/domains/lucy.json
new file mode 100644
index 000000000..77a4d065a
--- /dev/null
+++ b/domains/lucy.json
@@ -0,0 +1,12 @@
+{
+ "description": "Lucy.is-a.dev",
+ "repo": "https://github.com/Hai-Lucy/Hai-Lucy.github.io",
+ "owner": {
+ "username": "lrmn7",
+ "email": "lrmn.dev@gmail.com",
+ "discord": "romanromannya"
+ },
+ "record": {
+ "CNAME": "Hai-Lucy.github.io"
+ }
+}
diff --git a/domains/lucyjs.json b/domains/lucyjs.json
deleted file mode 100644
index 42b276cd7..000000000
--- a/domains/lucyjs.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "LucyJS-Dev",
- "email": "pumimail9@gmail.com"
- },
-
- "record": {
- "URL": "http://lucyjs.de"
- }
-}
diff --git a/domains/ludwig.json b/domains/ludwig.json
new file mode 100644
index 000000000..862f74ba9
--- /dev/null
+++ b/domains/ludwig.json
@@ -0,0 +1,13 @@
+{
+ "owner": {
+ "username": "ludwig7685",
+ "email": "ludwig@courvix.com"
+ },
+ "record": {
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/luni.json b/domains/luni.json
index aa726b525..f8bfad635 100644
--- a/domains/luni.json
+++ b/domains/luni.json
@@ -4,6 +4,6 @@
"email": "lukasbatema@mg.batemadevelopment.com"
},
"record": {
- "URL": "https://en.pronouns.page/@luni_batema"
+ "URL": "https://en.pronouns.page/@luni_moon"
}
}
diff --git a/domains/luqmanity.json b/domains/luqmanity.json
new file mode 100644
index 000000000..618bfe59a
--- /dev/null
+++ b/domains/luqmanity.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "luqmanity",
+ "email": "luqman.yazrie@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/luxxy.json b/domains/luxxy.json
new file mode 100644
index 000000000..18234c694
--- /dev/null
+++ b/domains/luxxy.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Luxxy-GF",
+ "email": "deniedaddicted@gmail.com"
+ },
+
+ "record": {
+ "A": ["178.33.110.212"]
+ }
+}
diff --git a/domains/luzivr.json b/domains/luzivr.json
new file mode 100644
index 000000000..7f6a4bc9f
--- /dev/null
+++ b/domains/luzivr.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "zjeffro",
+ "email": "jdvanlear@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/lyessa.json b/domains/lyessa.json
deleted file mode 100644
index 862d91dce..000000000
--- a/domains/lyessa.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "lyessa website uwu",
- "repo": "https://github.com/lyessa-web",
- "owner": {
- "username": "lyertia",
- "email": "camahmut7@gmail.com"
- },
- "record": {
- "URL": "https://lyessa.live"
- }
-}
diff --git a/domains/lynix.json b/domains/lynix.json
new file mode 100644
index 000000000..ae43967bc
--- /dev/null
+++ b/domains/lynix.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "lynix27",
+ "email": "vncntwbr0207@gmail.com"
+ },
+ "record": {
+ "URL": "https://linktr.ee/lynix27"
+ }
+}
diff --git a/domains/machi.json b/domains/machi.json
new file mode 100644
index 000000000..044b55d86
--- /dev/null
+++ b/domains/machi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "femachi",
+ "email": "ocubrisme@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/madebytragic.json b/domains/madebytragic.json
index 67b3133f3..d9c1a6c2d 100644
--- a/domains/madebytragic.json
+++ b/domains/madebytragic.json
@@ -3,7 +3,6 @@
"username": "lrmn7",
"email": "lrmnid@gmail.com"
},
-
"record": {
"CNAME": "madebytragic.github.io"
}
diff --git a/domains/madhavgupta.json b/domains/madhavgupta.json
new file mode 100644
index 000000000..0f62be966
--- /dev/null
+++ b/domains/madhavgupta.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "M4dhav",
+ "email": "madhav.gupta7674@gmail.com"
+ },
+ "record": {
+ "URL": "https://madhavgupta.vercel.app"
+ }
+}
diff --git a/domains/madhavjhawar.json b/domains/madhavjhawar.json
index ef4fe1877..625c59111 100644
--- a/domains/madhavjhawar.json
+++ b/domains/madhavjhawar.json
@@ -8,4 +8,4 @@
"record": {
"CNAME": "madhav32x.github.io"
}
-}
+}
diff --git a/domains/madhead341.json b/domains/madhead341.json
index 24919c764..de3c186ce 100644
--- a/domains/madhead341.json
+++ b/domains/madhead341.json
@@ -6,12 +6,7 @@
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
diff --git a/domains/maestro194.json b/domains/maestro194.json
new file mode 100644
index 000000000..3ec47d987
--- /dev/null
+++ b/domains/maestro194.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "maestro194",
+ "email": "dongboy1904@gmail.com"
+ },
+ "record": {
+ "CNAME": "maestro194.github.io"
+ }
+}
diff --git a/domains/mafarag.json b/domains/mafarag.json
new file mode 100644
index 000000000..c55b7045c
--- /dev/null
+++ b/domains/mafarag.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "GodfatherX64",
+ "email": "godfather.x64@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/magdi.json b/domains/magdi.json
new file mode 100644
index 000000000..1ef3bd905
--- /dev/null
+++ b/domains/magdi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "coeur85",
+ "email": "ahmed.magdi@msn.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/magniquick.json b/domains/magniquick.json
index 031709adc..298b8f93d 100644
--- a/domains/magniquick.json
+++ b/domains/magniquick.json
@@ -7,12 +7,7 @@
"discord": "Magniquick#5003"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/mahmoud.json b/domains/mahmoud.json
index 4d84e811b..d491fab63 100644
--- a/domains/mahmoud.json
+++ b/domains/mahmoud.json
@@ -1,18 +1,13 @@
{
- "owner": {
- "username": "oMvhmoud",
- "email": "contact@mahmoud.is-a.dev",
- "discord": "927876264826650684"
- },
- "repo": "https://github.com/oMvhmoud/oMvhmoud.github.io",
- "record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
- "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
+ "owner": {
+ "username": "oMvhmoud",
+ "email": "contact@mahmoud.is-a.dev",
+ "discord": "927876264826650684"
+ },
+ "repo": "https://github.com/oMvhmoud/oMvhmoud.github.io",
+ "record": {
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
}
diff --git a/domains/mai.json b/domains/mai.json
index 8b5b5827b..d59898ec4 100644
--- a/domains/mai.json
+++ b/domains/mai.json
@@ -1,10 +1,9 @@
{
- "description": "Mai's personal developer website",
"owner": {
"username": "Mai1ii",
- "email": "mail@apexure.cf"
+ "email": "micomacabali14@gmail.com"
},
"record": {
- "CNAME": "mai1ii.github.io"
+ "CNAME": "hosts.is-a.dev"
}
}
diff --git a/domains/mail.acey.json b/domains/mail.acey.json
new file mode 100644
index 000000000..aea7771d4
--- /dev/null
+++ b/domains/mail.acey.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "AceyDoCodes",
+ "email": "aceygoesboom@gmail.com"
+ },
+ "record": {
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/mail.arman.json b/domains/mail.arman.json
index df449b568..8ea8cf992 100644
--- a/domains/mail.arman.json
+++ b/domains/mail.arman.json
@@ -6,12 +6,7 @@
},
"repo": "https://github.com/ItzArman09/mail.git",
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/mail.badboy.json b/domains/mail.badboy.json
index ad3bc1e9f..701d48e10 100644
--- a/domains/mail.badboy.json
+++ b/domains/mail.badboy.json
@@ -8,12 +8,7 @@
"note": "My Discord ID is 445073800850046977."
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all",
"URL": "https://badboy.is-a.dev/contact"
diff --git a/domains/mail.enderpoint.json b/domains/mail.enderpoint.json
new file mode 100644
index 000000000..8725e52e8
--- /dev/null
+++ b/domains/mail.enderpoint.json
@@ -0,0 +1,17 @@
+{
+ "description": "EnderPoint's dev site",
+ "owner": {
+ "username": "EnderPoint07",
+ "email": "",
+ "discord": "DotM38#5497",
+ "instagram": "enderpoint07"
+ },
+ "record": {
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/mail.mxnticek.json b/domains/mail.mxnticek.json
index 72d6985c5..b0604cc9b 100644
--- a/domains/mail.mxnticek.json
+++ b/domains/mail.mxnticek.json
@@ -5,9 +5,6 @@
"email": "plainrock@seznam.cz"
},
"record": {
- "MX": [
- "d9025d2074984e72.mx2.emailprofi.seznam.cz",
- "d9025d2074984e72.mx1.emailprofi.seznam.cz"
- ]
+ "MX": ["d9025d2074984e72.mx2.emailprofi.seznam.cz", "d9025d2074984e72.mx1.emailprofi.seznam.cz"]
}
}
diff --git a/domains/mail.rika.json b/domains/mail.rika.json
index abdd6fd62..922042038 100644
--- a/domains/mail.rika.json
+++ b/domains/mail.rika.json
@@ -6,12 +6,7 @@
"email": "cainiao1509@gmail.com"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/mail.suki.json b/domains/mail.suki.json
deleted file mode 100644
index f0cbc988a..000000000
--- a/domains/mail.suki.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "SukiPlayz",
- "email": "sukimayoo@outlook.com"
- },
- "record": {
- "A": ["212.193.3.66"]
- }
-}
diff --git a/domains/mailx.json b/domains/mailx.json
index 551983ff8..839f88c94 100644
--- a/domains/mailx.json
+++ b/domains/mailx.json
@@ -1,10 +1,10 @@
{
"owner": {
- "username": "is-a-dev-bot",
- "email": "is-a-dev@win11react.com"
+ "username": "is-a-dev",
+ "email": "phenax5@gmail.com"
},
"record": {
- "A": ["217.174.245.249"]
+ "A": ["85.31.233.170"]
}
}
diff --git a/domains/maindak.json b/domains/maindak.json
new file mode 100644
index 000000000..43cb372a5
--- /dev/null
+++ b/domains/maindak.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "masroof-maindak",
+ "email": "mujtaba.asim.amin@gmail.com"
+ },
+ "record": {
+ "CNAME": "masroof-maindak.github.io"
+ }
+}
diff --git a/domains/maintainers.json b/domains/maintainers.json
index aaca41559..e080ed5f4 100644
--- a/domains/maintainers.json
+++ b/domains/maintainers.json
@@ -4,7 +4,8 @@
"email": "phenax5@gmail.com"
},
"record": {
+ "URL": "https://team.is-a.dev",
"MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
- "TXT": "forward-email=isdevmail.beadman-network.com"
+ "TXT": "forward-email=isdevmail.beadman-network.com,andrew@win11react.com"
}
}
diff --git a/domains/majorhead.json b/domains/majorhead.json
new file mode 100644
index 000000000..2f3667679
--- /dev/null
+++ b/domains/majorhead.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "alephdfilms",
+ "email": "alephdiallo@mail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
diff --git a/domains/makeshiftartist.json b/domains/makeshiftartist.json
new file mode 100644
index 000000000..ddcf47993
--- /dev/null
+++ b/domains/makeshiftartist.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "MakeShiftArtist",
+ "email": "MakeShiftDevelopment@proton.me"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["mx1.improvmx.com.", "mx2.improvmx.com."],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 include:spf.improvmx.com ~all"
+ }
+}
diff --git a/domains/mako.json b/domains/mako.json
new file mode 100644
index 000000000..332c2795d
--- /dev/null
+++ b/domains/mako.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "GoldenFire2317",
+ "email": "buttersword2017@gmail.com"
+ },
+ "record": {
+ "CNAME": "mako.mkoca.org"
+ }
+}
diff --git a/domains/malfunzionato.json b/domains/malfunzionato.json
new file mode 100644
index 000000000..382a331d5
--- /dev/null
+++ b/domains/malfunzionato.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "P0rc0D10",
+ "email": "grazioligiuliano52@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/p0rc0d10"
+ }
+}
diff --git a/domains/malware.json b/domains/malware.json
deleted file mode 100644
index 3de1cadbe..000000000
--- a/domains/malware.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "themalware",
- "email": "daredevil.vikrant@gmail.com"
- },
- "record": {
- "URL": "https://themalware.tk"
- }
-}
diff --git a/domains/mammad.json b/domains/mammad.json
new file mode 100644
index 000000000..bd83ea47b
--- /dev/null
+++ b/domains/mammad.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "mammadzali",
+ "email": "mohamadzali@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/live.preview.beta.json b/domains/manage.json
similarity index 72%
rename from domains/live.preview.beta.json
rename to domains/manage.json
index 09b4f1ae3..ef2dd2748 100644
--- a/domains/live.preview.beta.json
+++ b/domains/manage.json
@@ -3,7 +3,8 @@
"username": "is-a-dev",
"email": "phenax5@gmail.com"
},
+
"record": {
- "A": ["140.238.66.199"]
+ "CNAME": "dns.beadman-network.com"
}
}
diff --git a/domains/manas.json b/domains/manas.json
new file mode 100644
index 000000000..58a2e319c
--- /dev/null
+++ b/domains/manas.json
@@ -0,0 +1,11 @@
+{
+ "description": "Manas' Portfolio Website",
+ "repo": "https://github.com/manas140/manas140.github.io",
+ "owner": {
+ "username": "Manas140",
+ "email": "manas140@protonmail.com"
+ },
+ "record": {
+ "CNAME": "manas140.github.io"
+ }
+}
diff --git a/domains/manga.json b/domains/manga.json
new file mode 100644
index 000000000..45475b8a4
--- /dev/null
+++ b/domains/manga.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zarqizoubir",
+ "email": "zarqi.ezzoubair@etu.uae.ac.ma"
+ },
+ "record": {
+ "CNAME": "hosts.is-a.dev"
+ }
+}
diff --git a/domains/manjushri.json b/domains/manjushri.json
deleted file mode 100644
index 7a43a575b..000000000
--- a/domains/manjushri.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "manjushri",
- "email": "btinformativemessenger@gmail.com",
- "telegram": "dreynakchung"
- },
- "record": {
- "URL": "https://www.manjushri.dev"
- }
-}
diff --git a/domains/marby.json b/domains/marby.json
new file mode 100644
index 000000000..8b0cdace2
--- /dev/null
+++ b/domains/marby.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "stanasxd",
+ "email": "stanasarts@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mario.annier.json b/domains/mario.annier.json
new file mode 100644
index 000000000..a2f635579
--- /dev/null
+++ b/domains/mario.annier.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "marioannier",
+ "email": "mario.annier@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/marioannier.json b/domains/marioannier.json
new file mode 100644
index 000000000..43d54e5c9
--- /dev/null
+++ b/domains/marioannier.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "marioannier",
+ "email": "mario.annier@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
+
\ No newline at end of file
diff --git a/domains/marketplace.syntaxloopers.json b/domains/marketplace.syntaxloopers.json
new file mode 100644
index 000000000..a23664d55
--- /dev/null
+++ b/domains/marketplace.syntaxloopers.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/massick.json b/domains/massick.json
index e958a8578..c11336a71 100644
--- a/domains/massick.json
+++ b/domains/massick.json
@@ -1,11 +1,9 @@
{
"owner": {
"username": "M4ss1ck",
- "email": "4ndyraul@gmail.com",
- "twitter": "M4ss1ck"
+ "email": "4ndyraul@gmail.com"
},
- "repo": "https://github.com/M4ss1ck/massick-portfolio",
"record": {
- "URL": "https://massick.gatsbyjs.io"
+ "URL": "https://massick.netlify.app"
}
}
diff --git a/domains/master.json b/domains/master.json
new file mode 100644
index 000000000..6c05eaf9c
--- /dev/null
+++ b/domains/master.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "TheMaster223",
+ "email": "masteriscool223@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mastodon.dainfloop.json b/domains/mastodon.dainfloop.json
deleted file mode 100644
index 859ebd4e9..000000000
--- a/domains/mastodon.dainfloop.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "DaInfLoop",
- "email": "backupharoongames100@gmail.com"
- },
-
- "record": {
- "A": ["34.132.134.162"]
- }
-}
diff --git a/domains/match.json b/domains/match.json
index 415ff8eec..d235b0afd 100644
--- a/domains/match.json
+++ b/domains/match.json
@@ -6,11 +6,6 @@
"email": "imad.kh@outlook.com"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ]
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"]
}
}
diff --git a/domains/matrix.vi0leta.json b/domains/matrix.vi0leta.json
new file mode 100644
index 000000000..eed253c13
--- /dev/null
+++ b/domains/matrix.vi0leta.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "vi0letadev",
+ "email": "vi0leta@riseup.net"
+ },
+
+ "record": {
+ "A": ["143.47.191.152"]
+ }
+}
diff --git a/domains/mattdestroyer.json b/domains/mattdestroyer.json
deleted file mode 100644
index 02bd4151e..000000000
--- a/domains/mattdestroyer.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Matt-DESTROYER's Website",
- "owner": {
- "username": "Matt-DESTROYER",
- "email": "mattdestroyerpro@gmail.com"
- },
- "record": {
- "URL": "https://mattdestroyer.replit.app"
- }
-}
diff --git a/domains/maxired.json b/domains/maxired.json
new file mode 100644
index 000000000..e0f2bfa64
--- /dev/null
+++ b/domains/maxired.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "maxired",
+ "email": "github@maxired.fr"
+ },
+ "record": {
+ "CNAME": "www.maxired.fr"
+ }
+}
diff --git a/domains/mayank-rathva.json b/domains/mayank-rathva.json
index cec200e71..84948dd07 100644
--- a/domains/mayank-rathva.json
+++ b/domains/mayank-rathva.json
@@ -1,11 +1,11 @@
{
- "description": "This is personal website",
- "repo": "https://github.com/mayank-rathva/mayank-rathva.github.io",
- "owner": {
- "username": "mayank-rathva",
- "email": ""
- },
- "record": {
- "CNAME": "mayank-rathva.github.io"
- }
+ "description": "This is personal website",
+ "repo": "https://github.com/mayank-rathva/mayank-rathva.github.io",
+ "owner": {
+ "username": "mayank-rathva",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "mayank-rathva.github.io"
+ }
}
diff --git a/domains/mayerfried.json b/domains/mayerfried.json
index 85b531275..2adcfa228 100644
--- a/domains/mayerfried.json
+++ b/domains/mayerfried.json
@@ -1,11 +1,11 @@
{
- "description": "Mayer Fried Is A Dev",
- "repo": "https://github.com/mfried40",
- "owner": {
- "username": "mfried40",
- "email": "mayer@mayerfried.com"
- },
- "record": {
- "CNAME": "me.mayerfried.com"
- }
+ "description": "Mayer Fried Is A Dev",
+ "repo": "https://github.com/mfried40",
+ "owner": {
+ "username": "mfried40",
+ "email": "mayer@mayerfried.com"
+ },
+ "record": {
+ "CNAME": "me.mayerfried.com"
+ }
}
diff --git a/domains/mbenetta.json b/domains/mbenetta.json
new file mode 100644
index 000000000..2794d8db2
--- /dev/null
+++ b/domains/mbenetta.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ruben-as",
+ "email": "ruben.aja.85@gmail.com"
+ },
+ "record": {
+ "A": ["212.227.32.105"]
+ }
+}
diff --git a/domains/mbg.json b/domains/mbg.json
new file mode 100644
index 000000000..b4c01c595
--- /dev/null
+++ b/domains/mbg.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MBG1337",
+ "email": "MBGx1337@gmail.com"
+ },
+ "record": {
+ "A": ["3.120.250.108"]
+ }
+}
diff --git a/domains/mc.badboy.json b/domains/mc.badboy.json
deleted file mode 100644
index e914b46fd..000000000
--- a/domains/mc.badboy.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Minecraft server.",
- "owner": {
- "username": "bad-boy-codes",
- "email": "contact@mail.badboy.is-a.dev"
- },
- "record": {
- "URL": "https://bigpp.ml"
- }
-}
diff --git a/domains/mc.mousemoosz.json b/domains/mc.mousemoosz.json
deleted file mode 100644
index df531cdad..000000000
--- a/domains/mc.mousemoosz.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "For my Minecraft server",
- "owner": {
- "username": "MouseMoosz",
- "email": "mousemoosz@protonmail.com"
- },
- "record": {
- "CNAME": "ge.terohost.com"
- }
-}
diff --git a/domains/mcgraph.json b/domains/mcgraph.json
index b01696408..043e6a35f 100644
--- a/domains/mcgraph.json
+++ b/domains/mcgraph.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "playstation452",
- "email": "oscarlin1026@gmail.com"
- },
- "record": {
- "CNAME": "justaminecraftgraph.swapniladhikari.com.np"
- }
+ "owner": {
+ "username": "playstation452",
+ "email": "oscarlin1026@gmail.com"
+ },
+ "record": {
+ "CNAME": "justaminecraftgraph.swapniladhikari.com.np"
+ }
}
diff --git a/domains/mcio.json b/domains/mcio.json
new file mode 100644
index 000000000..5ad1cbb1f
--- /dev/null
+++ b/domains/mcio.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "PHYT90DitYT",
+ "email": "chess049@rsdmo.org",
+ "discord": "798934178783559710"
+ },
+
+ "record": {
+ "CNAME": "mine-craft.io"
+ }
+}
diff --git a/domains/mdbesoain.json b/domains/mdbesoain.json
index 350b116ba..36e233813 100644
--- a/domains/mdbesoain.json
+++ b/domains/mdbesoain.json
@@ -4,6 +4,8 @@
"email": "mdbesoain@gmail.com"
},
"record": {
- "URL": "https://mdbesoain.cl"
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
diff --git a/domains/meen.json b/domains/meen.json
deleted file mode 100644
index 99bace5f3..000000000
--- a/domains/meen.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Patcharapol's personal site!",
- "repo": "https://github.com/msp5382/personal",
- "owner": {
- "username": "msp5382",
- "email": "meen.sankaew@gmail.com"
- },
- "record": {
- "URL": "https://patcharapol.dev"
- }
-}
diff --git a/domains/meenbeese.json b/domains/meenbeese.json
index 627c66add..3650d4b63 100644
--- a/domains/meenbeese.json
+++ b/domains/meenbeese.json
@@ -6,4 +6,4 @@
"record": {
"CNAME": "meenbeese.github.io"
}
-}
\ No newline at end of file
+}
diff --git a/domains/melvin.json b/domains/melvin.json
new file mode 100644
index 000000000..1123ef63a
--- /dev/null
+++ b/domains/melvin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "melvinjjoseph",
+ "email": "melvinjjoseph2002@gmail.com"
+ },
+ "record": {
+ "CNAME": "melvinjjoseph.github.io"
+ }
+}
diff --git a/domains/mert.json b/domains/mert.json
index 8541c92eb..cd85b3c32 100644
--- a/domains/mert.json
+++ b/domains/mert.json
@@ -1,9 +1,7 @@
{
- "description": "Mert's personal developer website",
- "repo": "https://github.com/mertcelik2196",
"owner": {
- "username": "mertcelik2196",
- "email": "mertcelik2196@gmail.com"
+ "username": "DevJustMert",
+ "email": "mertcelik0541@gmail.com"
},
"record": {
"URL": "https://mert.vercel.app"
diff --git a/domains/mfarag.json b/domains/mfarag.json
new file mode 100644
index 000000000..c55b7045c
--- /dev/null
+++ b/domains/mfarag.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "GodfatherX64",
+ "email": "godfather.x64@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mfused.json b/domains/mfused.json
new file mode 100644
index 000000000..b9dccc513
--- /dev/null
+++ b/domains/mfused.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Mfused07",
+ "email": "fiverronlyokay@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mhmd.json b/domains/mhmd.json
new file mode 100644
index 000000000..0327e8e2c
--- /dev/null
+++ b/domains/mhmd.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "mjnaous",
+ "email": "mj@naous.eu.org"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mihrpsah.json b/domains/mihrpsah.json
new file mode 100644
index 000000000..5349738c2
--- /dev/null
+++ b/domains/mihrpsah.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mihrpsah",
+ "email": "smihirp1@gmail.com"
+ },
+ "record": {
+ "CNAME": "mihrpsah.github.io"
+ }
+}
diff --git a/domains/mikapikazo.json b/domains/mikapikazo.json
new file mode 100644
index 000000000..af9e9074e
--- /dev/null
+++ b/domains/mikapikazo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "rinxyzz",
+ "email": "putriimuttzz.cantikk@gmail.com"
+ },
+ "record": {
+ "CNAME": "rinxyzz-github-io.pages.dev"
+ }
+}
diff --git a/domains/milcon-uptimer.json b/domains/milcon-uptimer.json
new file mode 100644
index 000000000..8471985a7
--- /dev/null
+++ b/domains/milcon-uptimer.json
@@ -0,0 +1,10 @@
+{
+ "description": "Uptimer site",
+ "owner": {
+ "username": "njanemmu",
+ "email": "aneenababu71901@gmail.com"
+ },
+ "record": {
+ "CNAME": "ce061efe-4c98-41af-b793-2e0d4e4322a1.id.repl.co"
+ }
+}
diff --git a/domains/milind.json b/domains/milind.json
new file mode 100644
index 000000000..796b5eca4
--- /dev/null
+++ b/domains/milind.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "milindmadhukar",
+ "email": "m.milind15@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/milindmadhukar"
+ }
+}
diff --git a/domains/milkshake.json b/domains/milkshake.json
new file mode 100644
index 000000000..0895868e1
--- /dev/null
+++ b/domains/milkshake.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "FloatingMilkshake",
+ "email": "me@floatingmilkshake.com"
+ },
+ "record": {
+ "URL": "https://floatingmilkshake.com"
+ }
+}
diff --git a/domains/mingihihi.json b/domains/mingihihi.json
new file mode 100644
index 000000000..957f0af69
--- /dev/null
+++ b/domains/mingihihi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ModelVNN",
+ "email": "modelvnn@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/minh2000.json b/domains/minh2000.json
new file mode 100644
index 000000000..d639e5be6
--- /dev/null
+++ b/domains/minh2000.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "minnb-bit",
+ "email": "mn9173024@gmail.com",
+ "discord": "634263941153030175"
+ },
+
+ "record": {
+ "CNAME": "minnb-bit.github.io"
+ }
+}
diff --git a/domains/minhmmb.json b/domains/minhmmb.json
new file mode 100644
index 000000000..266f16992
--- /dev/null
+++ b/domains/minhmmb.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "minnb-bit",
+ "email": "mn9173024@gmail.com"
+ },
+ "record": {
+ "CNAME": "minnb-bit.github.io"
+ }
+}
diff --git a/domains/miniexploit.json b/domains/miniexploit.json
new file mode 100644
index 000000000..f22688d71
--- /dev/null
+++ b/domains/miniexploit.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "miniexploit",
+ "email": "miniexploitttt@gmail.com"
+ },
+ "record": {
+ "A": ["14.232.197.17"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:14.232.197.17 ~all"
+ }
+}
diff --git a/domains/minihoot.json b/domains/minihoot.json
new file mode 100644
index 000000000..b3f5dde2c
--- /dev/null
+++ b/domains/minihoot.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Hoot679",
+ "email": "henrymahlberg65@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/minion.json b/domains/minion.json
new file mode 100644
index 000000000..6c6b8d540
--- /dev/null
+++ b/domains/minion.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "joaozeiradev",
+ "email": "joaofelipegamer24@gmail.com"
+ },
+
+ "record": {
+ "A": ["191.233.30.89"]
+ }
+}
diff --git a/domains/minnb-bit.json b/domains/minnb-bit.json
new file mode 100644
index 000000000..d639e5be6
--- /dev/null
+++ b/domains/minnb-bit.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "minnb-bit",
+ "email": "mn9173024@gmail.com",
+ "discord": "634263941153030175"
+ },
+
+ "record": {
+ "CNAME": "minnb-bit.github.io"
+ }
+}
diff --git a/domains/minto.json b/domains/minto.json
new file mode 100644
index 000000000..a85df0c4e
--- /dev/null
+++ b/domains/minto.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "m1ntooo",
+ "email": "yht413@i.softbank.jp"
+ },
+ "record": {
+ "URL": "https://m1ntooo.com"
+ }
+}
diff --git a/domains/mirozr.json b/domains/mirozr.json
new file mode 100644
index 000000000..1d454bc32
--- /dev/null
+++ b/domains/mirozr.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/Miroslavchen/hatynka_0A.github.io",
+ "owner": {
+ "username": "miroslavchen",
+ "email": "miroslavnezgoduk8@gmail.com"
+ },
+ "record": {
+ "CNAME": "miroslavchen.github.io"
+ }
+}
diff --git a/domains/mitchellecamacho.json b/domains/mitchellecamacho.json
new file mode 100644
index 000000000..df53227ed
--- /dev/null
+++ b/domains/mitchellecamacho.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mitchcam81",
+ "email": "mocamacho.works@gmail.com"
+ },
+ "record": {
+ "CNAME": "mitchellecamacho.com"
+ }
+}
diff --git a/domains/miti.json b/domains/miti.json
new file mode 100644
index 000000000..35a777101
--- /dev/null
+++ b/domains/miti.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tiennm99",
+ "email": "minhtienit99@gmail.com"
+ },
+ "record": {
+ "CNAME": "miti.eu.org"
+ }
+}
diff --git a/domains/miti99.json b/domains/miti99.json
index 3cb9a1c05..35a777101 100644
--- a/domains/miti99.json
+++ b/domains/miti99.json
@@ -1,9 +1,9 @@
{
"owner": {
"username": "tiennm99",
- "email": "tiennm99@outlook.com"
+ "email": "minhtienit99@gmail.com"
},
"record": {
- "CNAME": "miti99.eu.org"
+ "CNAME": "miti.eu.org"
}
}
diff --git a/domains/miu.json b/domains/miu.json
new file mode 100644
index 000000000..5fa89c39b
--- /dev/null
+++ b/domains/miu.json
@@ -0,0 +1,12 @@
+{
+ "description": "Miu.is-a.dev",
+ "repo": "https://github.com/Miu-Discord/Miu-Discord.github.io",
+ "owner": {
+ "username": "lrmn7",
+ "email": "lrmn.dev@gmail.com",
+ "discord": "romanromannya"
+ },
+ "record": {
+ "CNAME": "Miu-Discord.github.io"
+ }
+}
diff --git a/domains/mizu.json b/domains/mizu.json
index 2a4dd4913..dffe052c1 100644
--- a/domains/mizu.json
+++ b/domains/mizu.json
@@ -5,9 +5,9 @@
"username": "miyagawamizu",
"email": "miyagawamizu@gmail.com",
"twitter": "miyagawamizu",
- "discord": "Mizu#2203"
+ "discord": "miyagawamizu"
},
"record": {
- "CNAME": "miyagawamizu.github.io"
+ "CNAME": "mizu.pages.dev"
}
}
diff --git a/domains/mjs.json b/domains/mjs.json
new file mode 100644
index 000000000..2b39ed2a1
--- /dev/null
+++ b/domains/mjs.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "Mohdjariullah",
+ "email": "mohdjariullah@gmail.com",
+ "note": "This record was created by is-a.dev Discord bot via discord id: 890323443252351046"
+ },
+
+ "record": {
+ "CNAME": "fdf28412-bb15-46fb-97b5-e4ea905c949b.id.repl.co"
+
+ }
+}
diff --git a/domains/moca.json b/domains/moca.json
new file mode 100644
index 000000000..cf47ef3f1
--- /dev/null
+++ b/domains/moca.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MocaSrour",
+ "email": "mukarramsrour@gmail.com"
+ },
+ "record": {
+ "CNAME": "mocasrour.github.io"
+ }
+}
diff --git a/domains/mohab.json b/domains/mohab.json
new file mode 100644
index 000000000..01b5231c3
--- /dev/null
+++ b/domains/mohab.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Zyelixify",
+ "email": "heroxmain@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mohamad.json b/domains/mohamad.json
new file mode 100644
index 000000000..73a41d9f2
--- /dev/null
+++ b/domains/mohamad.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mjnaous",
+ "email": "mj@naous.eu.org"
+ },
+ "record": {
+ "CNAME": "mjnaous.github.io"
+ }
+}
diff --git a/domains/mohamed.json b/domains/mohamed.json
new file mode 100644
index 000000000..a3e7bb756
--- /dev/null
+++ b/domains/mohamed.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "negativems",
+ "email": "mohamedbenhamzaa@gmail.com"
+ },
+ "record": {
+ "URL": "https://mmbh.dev"
+ }
+}
diff --git a/domains/mohammed.json b/domains/mohammed.json
new file mode 100644
index 000000000..dd140730e
--- /dev/null
+++ b/domains/mohammed.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ppg00",
+ "email": "vx2dsk@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mohand.json b/domains/mohand.json
new file mode 100644
index 000000000..68156f035
--- /dev/null
+++ b/domains/mohand.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "mohandaklii",
+ "email": "mohandakliamara09@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mohdjariullah.json b/domains/mohdjariullah.json
new file mode 100644
index 000000000..aa70ee03d
--- /dev/null
+++ b/domains/mohdjariullah.json
@@ -0,0 +1,14 @@
+{
+ "owner": {
+ "username": "Mohdjariullah",
+ "email": "mohdjariullah@gmail.com",
+ "twitter": "mohdjariullah",
+ "discord": "@jariullah"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
+
diff --git a/domains/mohdsohel.json b/domains/mohdsohel.json
index 10fda800f..ae062d7de 100644
--- a/domains/mohdsohel.json
+++ b/domains/mohdsohel.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "realsohel.github.io"
}
-}
+}
diff --git a/domains/molai777.json b/domains/molai777.json
new file mode 100644
index 000000000..2514d322c
--- /dev/null
+++ b/domains/molai777.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mtgsquad",
+ "email": "mahir@molai.dev"
+ },
+ "record": {
+ "CNAME": "hosts.is-a.dev"
+ }
+}
diff --git a/domains/monissh.json b/domains/monissh.json
new file mode 100644
index 000000000..4d539f85a
--- /dev/null
+++ b/domains/monissh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Monsstor",
+ "email": "itsamemonissh@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/moothecow.json b/domains/moothecow.json
new file mode 100644
index 000000000..a98de9ddd
--- /dev/null
+++ b/domains/moothecow.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Mikeymoo5",
+ "email": "moodids@outlook.com"
+ },
+ "record": {
+ "CNAME": "mikeymoo5.github.io"
+ }
+}
diff --git a/domains/mosa.json b/domains/mosa.json
new file mode 100644
index 000000000..2c26d4a80
--- /dev/null
+++ b/domains/mosa.json
@@ -0,0 +1,10 @@
+{
+ "description": "For my portfolio website made by using HTML + CSS and JS",
+ "owner": {
+ "username": "mosageneral",
+ "email": "mosageneral@gmail.com"
+ },
+ "record": {
+ "A": ["130.162.168.84"]
+ }
+}
diff --git a/domains/mosaab.json b/domains/mosaab.json
index c46686309..f6e3e27f2 100644
--- a/domains/mosaab.json
+++ b/domains/mosaab.json
@@ -1,21 +1,13 @@
{
"description": "Personal website of MosaabGKA",
- "repo": "https://github.com/MosaabGKA/MosaabGKA.github.io/",
+ "repo": "https://github.com/MosaabGKA/MosaabGKA.github.io",
"owner": {
"username": "MosaabGKA",
"email": "mosaabgka@outlook.com"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
}
diff --git a/domains/mostafizurrahman.json b/domains/mostafizurrahman.json
new file mode 100644
index 000000000..339a082ba
--- /dev/null
+++ b/domains/mostafizurrahman.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "gigwanoobstudios",
+ "email": "tplink3116@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/motion42.json b/domains/motion42.json
deleted file mode 100644
index 67a1410f6..000000000
--- a/domains/motion42.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Motions's personal developer website",
- "repo": "https://github.com/DevJustForever",
- "owner": {
- "username": "DevJustForever",
- "email": "mertcelik0541@gmail.com"
- },
- "record": {
- "URL": "https://motion42.ml"
- }
-}
diff --git a/domains/motortruck1221.json b/domains/motortruck1221.json
new file mode 100644
index 000000000..10aace18c
--- /dev/null
+++ b/domains/motortruck1221.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MotorTruck1221",
+ "email": "tuckerj0606@icloud.com"
+ },
+ "record": {
+ "CNAME": "motortruck1221.github.io"
+ }
+}
diff --git a/domains/mqhirr.json b/domains/mqhirr.json
index ae6e8ae4c..56b14d7eb 100644
--- a/domains/mqhirr.json
+++ b/domains/mqhirr.json
@@ -1,12 +1,12 @@
{
- "owner": {
- "username": "mqhirr",
- "email": "",
- "discord": "mqhirr"
- },
+ "owner": {
+ "username": "mqhirr",
+ "email": "",
+ "discord": "mqhirr"
+ },
- "repo": "https://github.com/mqhirr/webnn_live",
- "record": {
- "CNAME": "mqhirr.github.io"
- }
+ "repo": "https://github.com/mqhirr/webnn_live",
+ "record": {
+ "CNAME": "mqhirr.github.io"
+ }
}
diff --git a/domains/mrj.json b/domains/mrj.json
index a4d0a1fee..f3e362dd2 100644
--- a/domains/mrj.json
+++ b/domains/mrj.json
@@ -4,6 +4,8 @@
"email": "illegalhacker2.0@gmail.com"
},
"record": {
- "CNAME": "glitch.edgeapp.net"
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
}
diff --git a/domains/mrlol.json b/domains/mrlol.json
deleted file mode 100644
index 11f868f51..000000000
--- a/domains/mrlol.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Hi, I'm MrlolDev, I'm a web developer with little experience but who never tires of learning.",
- "repo": "https://github.com/MrlolGFX/mrlol",
- "owner": {
- "username": "MrlolGFX",
- "email": "mrlol.yt.oficial@gmail.com",
- "twitter": "MrlolGFX"
- },
- "record": {
- "URL": "https://mrlol.loick.team"
- }
-}
diff --git a/domains/mrprime.json b/domains/mrprime.json
index 8462c7010..a61ad73a2 100644
--- a/domains/mrprime.json
+++ b/domains/mrprime.json
@@ -3,7 +3,7 @@
"owner": {
"username": "MrPrimeDev",
"email": "justmeprime@gmail.com",
- "twitter": "@RealMrPrime",
+ "twitter": "RealMrPrime",
"discord": "MrPrime#9636"
},
"record": {
diff --git a/domains/mrrob0t.json b/domains/mrrob0t.json
new file mode 100644
index 000000000..c55b7045c
--- /dev/null
+++ b/domains/mrrob0t.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "GodfatherX64",
+ "email": "godfather.x64@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mrrobot.json b/domains/mrrobot.json
new file mode 100644
index 000000000..c55b7045c
--- /dev/null
+++ b/domains/mrrobot.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "GodfatherX64",
+ "email": "godfather.x64@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mrweez.json b/domains/mrweez.json
new file mode 100644
index 000000000..9671d7f2f
--- /dev/null
+++ b/domains/mrweez.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MrWeez",
+ "email": "arsenyplis2018@gmail.com"
+ },
+ "record": {
+ "CNAME": "mrweez.depcloud.xyz"
+ }
+}
diff --git a/domains/mthia.json b/domains/mthia.json
index 52a8bd50c..278b6b128 100644
--- a/domains/mthia.json
+++ b/domains/mthia.json
@@ -1,11 +1,11 @@
-{
- "description": "mthia page",
- "owner": {
- "username": "Mthia727",
- "email": "mthia@xdd.moe",
- "discord": "443794213524733962"
- },
- "record": {
- "CNAME": "mthia.xdd.moe"
- }
-}
+{
+ "description": "mthia page",
+ "owner": {
+ "username": "Mthia727",
+ "email": "mthia@xdd.moe",
+ "discord": "443794213524733962"
+ },
+ "record": {
+ "CNAME": "mthia.xdd.moe"
+ }
+}
diff --git a/domains/mubashiryasin.json b/domains/mubashiryasin.json
new file mode 100644
index 000000000..b9dccc513
--- /dev/null
+++ b/domains/mubashiryasin.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Mfused07",
+ "email": "fiverronlyokay@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mudee.json b/domains/mudee.json
new file mode 100644
index 000000000..f29492c4d
--- /dev/null
+++ b/domains/mudee.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "IMudee",
+ "email": "NotMudee@proton.me"
+ },
+ "record": {
+ "CNAME": "hosts.is-a.dev"
+ }
+}
diff --git a/domains/muhammadbasitobaid.json b/domains/muhammadbasitobaid.json
new file mode 100644
index 000000000..df274c031
--- /dev/null
+++ b/domains/muhammadbasitobaid.json
@@ -0,0 +1,10 @@
+{
+ "description": "muhammadbasitobaid.is-a.dev",
+ "owner": {
+ "username": "muhammadbasitobaid",
+ "email": "muhammadbasitobaid@gmail.com"
+ },
+ "record": {
+ "CNAME": "muhammadbasitobaid.github.io"
+ }
+}
diff --git a/domains/mukeshkumarcharak.json b/domains/mukeshkumarcharak.json
index 728311da0..ded434679 100644
--- a/domains/mukeshkumarcharak.json
+++ b/domains/mukeshkumarcharak.json
@@ -1,10 +1,11 @@
{
"owner": {
"username": "hakxcore",
- "email": "mukeshkumarcharak@gmail.com"
+ "email": "kumarm_1@rknec.edu"
},
-
"record": {
- "A": ["185.199.108.153"]
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/musikid.json b/domains/musikid.json
new file mode 100644
index 000000000..140b15419
--- /dev/null
+++ b/domains/musikid.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Musikid-Official",
+ "email": "musikid@proton.me"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/mytac.json b/domains/mytac.json
new file mode 100644
index 000000000..8cf69cd63
--- /dev/null
+++ b/domains/mytac.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "mytac",
+ "email": "my_tac@126.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/myvps.json b/domains/myvps.json
new file mode 100644
index 000000000..a7b7e07f9
--- /dev/null
+++ b/domains/myvps.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "irawancandra6699",
+ "email": "irawancandra6699@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/n1ka.json b/domains/n1ka.json
deleted file mode 100644
index 062014929..000000000
--- a/domains/n1ka.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "N1kaCode",
- "email": "jeanlukashoffmann@gmail.com"
- },
- "record": {
- "URL": "https://beacons.ai/n1kacode"
- }
-}
diff --git a/domains/n4n5.json b/domains/n4n5.json
new file mode 100644
index 000000000..75b8dbbe7
--- /dev/null
+++ b/domains/n4n5.json
@@ -0,0 +1,11 @@
+{
+ "description": "redirects to my website",
+ "repo": "https://github.com/Its-Just-Nans",
+ "owner": {
+ "username": "Its-Just-Nans",
+ "email": ""
+ },
+ "record": {
+ "URL": "https://n4n5.dev"
+ }
+}
diff --git a/domains/naki.json b/domains/naki.json
new file mode 100644
index 000000000..2cb8062e3
--- /dev/null
+++ b/domains/naki.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "YoruAkio",
+ "email": "yoruakio@proton.me"
+ },
+
+ "record": {
+ "CNAME": "nakio.pages.dev"
+ }
+}
diff --git a/domains/namishpande.json b/domains/namishpande.json
new file mode 100644
index 000000000..3c2962721
--- /dev/null
+++ b/domains/namishpande.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "chadcat7",
+ "email": "namishpande2007@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "chadcat7.github.io"
+ }
+}
diff --git a/domains/narayana.json b/domains/narayana.json
index eb747b6c6..6a99954bd 100644
--- a/domains/narayana.json
+++ b/domains/narayana.json
@@ -1,10 +1,10 @@
{
- "description": "I am going to use it to test out my creations and share with my friends. As a student, I can't get actual domains, so I will be using this.",
- "owner": {
- "username": "nvnarayna",
- "email": "nemaninarayna@gmail.com"
- },
- "record": {
- "CNAME": "proxy.divahosting.net"
- }
+ "description": "I am going to use it to test out my creations and share with my friends. As a student, I can't get actual domains, so I will be using this.",
+ "owner": {
+ "username": "nvnarayna",
+ "email": "nemaninarayna@gmail.com"
+ },
+ "record": {
+ "CNAME": "proxy.divahosting.net"
+ }
}
diff --git a/domains/nassro.json b/domains/nassro.json
new file mode 100644
index 000000000..2fdfb1833
--- /dev/null
+++ b/domains/nassro.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nassro199",
+ "email": "nasrohasini19ny@gmail.com"
+ },
+ "record": {
+ "URL": "https://nassro.vercel.app"
+ }
+}
diff --git a/domains/nayam.json b/domains/nayam.json
new file mode 100644
index 000000000..417175ba1
--- /dev/null
+++ b/domains/nayam.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "NayamAmarshe",
+ "email": "nayam.emikx@aleeas.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/nc.json b/domains/nc.json
new file mode 100644
index 000000000..208184fdc
--- /dev/null
+++ b/domains/nc.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NCCoder1",
+ "email": "nikhilchhawacharia@gmail.com"
+ },
+ "record": {
+ "A": ["192.168.1.100"]
+ }
+}
diff --git a/domains/nedosite.json b/domains/nedosite.json
new file mode 100644
index 000000000..9911cbb9f
--- /dev/null
+++ b/domains/nedosite.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SpaceProjects",
+ "email": "maksim1961space@gmail.com"
+ },
+ "record": {
+ "A": ["185.228.233.148"]
+ }
+}
diff --git a/domains/neelsani.json b/domains/neelsani.json
index 011aa5eaa..78fa6bac7 100644
--- a/domains/neelsani.json
+++ b/domains/neelsani.json
@@ -4,7 +4,6 @@
"owner": {
"username": "neelsani",
"email": "neel2645s@gmail.com"
-
},
"record": {
"CNAME": "neelsani.github.io"
diff --git a/domains/negodev.json b/domains/negodev.json
new file mode 100644
index 000000000..3eb73d60b
--- /dev/null
+++ b/domains/negodev.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "kardespro",
+ "email": "kardesdcys@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/nekoibot.json b/domains/nekoibot.json
new file mode 100644
index 000000000..924d2fdd3
--- /dev/null
+++ b/domains/nekoibot.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "DomathID",
+ "email": "domath69@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "DomathID.github.io"
+ }
+}
diff --git a/domains/nengsriaryati.json b/domains/nengsriaryati.json
new file mode 100644
index 000000000..604ecab09
--- /dev/null
+++ b/domains/nengsriaryati.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Hillzacky",
+ "email": "Hilm4nsyah@gmail.com"
+ },
+ "record": {
+ "CNAME": "nengsriaryati.github.io"
+ }
+}
diff --git a/domains/neo.json b/domains/neo.json
new file mode 100644
index 000000000..9680f6dc9
--- /dev/null
+++ b/domains/neo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "onem0",
+ "email": "kremersneo0@gmail.com"
+ },
+ "record": {
+ "A": ["173.212.227.74"]
+ }
+}
diff --git a/domains/neomc.xyz.json b/domains/neomc.xyz.json
new file mode 100644
index 000000000..784f5a66a
--- /dev/null
+++ b/domains/neomc.xyz.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ssoonu",
+ "email": "saiifksa509@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/neon.json b/domains/neon.json
index 808dff17d..36721ad70 100644
--- a/domains/neon.json
+++ b/domains/neon.json
@@ -3,21 +3,13 @@
"repo": "https://github.com/GoodBoyNeon/goodboyneon.github.io",
"owner": {
"username": "GoodBoyNeon",
- "discord": "GoodBoyNeon#2424",
+ "discord": "neonthedeveloper",
"twitter": "NeonTheNerd",
"email": "goodboyneon03@gmail.com"
},
"record": {
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
}
diff --git a/domains/nexacopic.json b/domains/nexacopic.json
new file mode 100644
index 000000000..80b66bb96
--- /dev/null
+++ b/domains/nexacopic.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "nexacopic",
+ "email": "nexacopic@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/nfason.json b/domains/nfason.json
new file mode 100644
index 000000000..9ee4b12ea
--- /dev/null
+++ b/domains/nfason.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nfason",
+ "email": "nfason@uab.edu"
+ },
+ "record": {
+ "CNAME": "nfason.com"
+ }
+}
diff --git a/domains/nhemgomia.json b/domains/nhemgomia.json
index b052188f0..a029c3689 100644
--- a/domains/nhemgomia.json
+++ b/domains/nhemgomia.json
@@ -2,11 +2,11 @@
"description": "Nhem Gomia portfolio website.",
"repo": "https://github.com/nhemgomia/nhemgomia.github.io",
"owner": {
- "username": "nhemgomia",
- "email": "",
- "discord": "nhemdgaf"
+ "username": "nhemgomia",
+ "email": "",
+ "discord": "nhemdgaf"
},
"record": {
"CNAME": "nhemgomia.github.io"
}
-}
+}
diff --git a/domains/niceeli.json b/domains/niceeli.json
new file mode 100644
index 000000000..8c6d38da1
--- /dev/null
+++ b/domains/niceeli.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "niceEli",
+ "email": "EliCardoso2009@gmail.com"
+ },
+ "record": {
+ "CNAME": "niceeli.github.io"
+ }
+}
diff --git a/domains/nicekun.json b/domains/nicekun.json
new file mode 100644
index 000000000..b3eec57b5
--- /dev/null
+++ b/domains/nicekun.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "CcNicebruh",
+ "email": "tangkeehee2002@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/nickooms.json b/domains/nickooms.json
new file mode 100644
index 000000000..c7e16fb95
--- /dev/null
+++ b/domains/nickooms.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "nickooms",
+ "email": "oomsni@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/nidhis-patel.json b/domains/nidhis-patel.json
index f384a7ea0..47e21b7b1 100644
--- a/domains/nidhis-patel.json
+++ b/domains/nidhis-patel.json
@@ -1,11 +1,11 @@
{
- "description": "This is a personal",
- "repo": "https://github.com/nidhis-patel/nidhis-patel.github.io",
- "owner": {
- "username": "nidhis-patel",
- "email": ""
- },
- "record": {
- "URL": "https://nidhis-patel.github.io"
- }
+ "description": "This is a personal",
+ "repo": "https://github.com/nidhis-patel/nidhis-patel.github.io",
+ "owner": {
+ "username": "nidhis-patel",
+ "email": ""
+ },
+ "record": {
+ "URL": "https://nidhis-patel.github.io"
+ }
}
diff --git a/domains/niemiets.json b/domains/niemiets.json
new file mode 100644
index 000000000..d235aac44
--- /dev/null
+++ b/domains/niemiets.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Niemiets",
+ "email": "niemiec123123123@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
diff --git a/domains/nihaltm.json b/domains/nihaltm.json
new file mode 100644
index 000000000..79190a806
--- /dev/null
+++ b/domains/nihaltm.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "n1haldev",
+ "email": "nihaltmdev@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/nikeedev.json b/domains/nikeedev.json
deleted file mode 100644
index e47111189..000000000
--- a/domains/nikeedev.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "Profile page for nikeedev",
- "repo": "https://github.com/nikeedev/nikeedev.github.io",
- "owner": {
- "username": "nikeedev",
- "email": "nikita.gon.dev@gmail.com",
- "twitter": "nikeedev"
- },
- "record": {
- "CNAME": "nikeedev.github.io"
- }
-}
diff --git a/domains/niklas.json b/domains/niklas.json
index e7ffb0e40..538900125 100644
--- a/domains/niklas.json
+++ b/domains/niklas.json
@@ -1,11 +1,11 @@
{
- "description": "I'm a dev from austria.",
+ "description": "Dev from Austria who loves Java and the world.",
"owner": {
"username": "NiHaiden",
- "email": "niklas@haiden.ch",
- "twitter": "niklashdev"
+ "email": "niklas@niklas.tech",
+ "twitter": "nklsdev"
},
"record": {
- "URL": "https://nhaiden.dev"
+ "URL": "https://niklas.tech"
}
}
diff --git a/domains/nino.json b/domains/nino.json
index 23ab8b52f..32cc48ea7 100644
--- a/domains/nino.json
+++ b/domains/nino.json
@@ -10,4 +10,4 @@
"record": {
"CNAME": "TokisakiNinoVn.github.io"
}
-}
+}
diff --git a/domains/nischay.json b/domains/nischay.json
index 0c4e67f6c..6468efc0d 100644
--- a/domains/nischay.json
+++ b/domains/nischay.json
@@ -9,12 +9,7 @@
"discord": "OGGY#9889"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/nishantb.json b/domains/nishantb.json
new file mode 100644
index 000000000..365f87e4d
--- /dev/null
+++ b/domains/nishantb.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Nishant-Bharwani",
+ "email": "nbtaylor1031@gmail.com"
+ },
+ "record": {
+ "URL": "https://nishantdev.netlify.app"
+ }
+}
diff --git a/domains/nix.json b/domains/nix.json
new file mode 100644
index 000000000..d99db5263
--- /dev/null
+++ b/domains/nix.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "linuxhoe",
+ "email": "b0t@disroot.org"
+ },
+ "record": {
+ "CNAME": "linuxhoe.github.io"
+ }
+}
diff --git a/domains/nixon.json b/domains/nixon.json
new file mode 100644
index 000000000..d8f227f54
--- /dev/null
+++ b/domains/nixon.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NxnRmz",
+ "email": "nxnrmz@gmail.com"
+ },
+ "record": {
+ "A": ["44.203.96.123"]
+ }
+}
diff --git a/domains/nixxvl.json b/domains/nixxvl.json
new file mode 100644
index 000000000..d1b4d3d3c
--- /dev/null
+++ b/domains/nixxvl.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nixxvl",
+ "email": "noyboyroblox@gmail.com"
+ },
+ "record": {
+ "CNAME": "nixxvl.space"
+ }
+}
diff --git a/domains/njfamirm.json b/domains/njfamirm.json
index a54cc4233..00e382514 100644
--- a/domains/njfamirm.json
+++ b/domains/njfamirm.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "njfamirm",
- "email": "njfamirm@gmail.com"
- },
- "repo": "https://github.com/njfamirm/njfamirm.ir",
- "record": {
- "CNAME": "njfamirm.ir"
- }
+ "owner": {
+ "username": "njfamirm",
+ "email": "njfamirm@gmail.com"
+ },
+ "repo": "https://github.com/njfamirm/njfamirm.ir",
+ "record": {
+ "CNAME": "njfamirm.ir"
+ }
}
diff --git a/domains/noah.json b/domains/noah.json
new file mode 100644
index 000000000..6cd243341
--- /dev/null
+++ b/domains/noah.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "NoahPrm",
+ "email": "noah.parmentier@icloud.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/noahvocat.json b/domains/noahvocat.json
new file mode 100644
index 000000000..fbb65dfec
--- /dev/null
+++ b/domains/noahvocat.json
@@ -0,0 +1,12 @@
+{
+ "description": "A dumb kid who like da computer",
+ "repo": "https://github.com/nvct-website/website/settings/pages",
+ "owner": {
+ "username": "Noahvocat (also known as NVCT, Noahvocado or Noahvocados)",
+ "email": "",
+ "discord": "noahvocat"
+ },
+ "record": {
+ "CNAME": "nvct-website.github.io"
+ }
+}
diff --git a/domains/node-appwrite.json b/domains/node-appwrite.json
deleted file mode 100644
index 99f4be133..000000000
--- a/domains/node-appwrite.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "appwrite",
- "email": "mohamed.haneefa@agiratech.com"
- },
- "record": {
- "URL": "https://www.appwrite-node.com"
- }
-}
diff --git a/domains/noflare.json b/domains/noflare.json
new file mode 100644
index 000000000..3eac8f9f5
--- /dev/null
+++ b/domains/noflare.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Noflare",
+ "email": "Noflare.dev@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/nonograms.talinsharma.json b/domains/nonograms.talinsharma.json
new file mode 100644
index 000000000..72577e571
--- /dev/null
+++ b/domains/nonograms.talinsharma.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "TalinTheDev",
+ "email": "talinsharma.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "talinthedev.github.io"
+ }
+}
diff --git a/domains/noob.json b/domains/noob.json
new file mode 100644
index 000000000..9b317de89
--- /dev/null
+++ b/domains/noob.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "KeIrNeGn",
+ "email": "terminatorx5e@gmail.com",
+ "discord": "499592235772280842"
+ },
+
+ "record": {
+ "CNAME": "keirnegn.dev"
+ }
+}
diff --git a/domains/nooz.json b/domains/nooz.json
index 9caa10ce7..68b2023c2 100644
--- a/domains/nooz.json
+++ b/domains/nooz.json
@@ -7,12 +7,7 @@
"discord": "Nooz#0816"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/not-ethan.json b/domains/not-ethan.json
index 421f4674b..4baeb1a42 100644
--- a/domains/not-ethan.json
+++ b/domains/not-ethan.json
@@ -1,12 +1,12 @@
-{
- "description": "Ethan's website",
- "repo": "https://github.com/0x3st/0x3st.github.io",
- "owner": {
- "username": "not-a-ethan",
- "email": "",
- "discord": "not_ethan."
- },
- "record": {
- "CNAME": "not-a-ethan.github.io"
- }
-}
\ No newline at end of file
+{
+ "owner": {
+ "username": "not-a-ethan",
+ "email": "",
+ "discord": "not_ethan."
+ },
+ "record": {
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all",
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"]
+ }
+}
diff --git a/domains/notarya.json b/domains/notarya.json
index 13e403f82..27f10eee3 100644
--- a/domains/notarya.json
+++ b/domains/notarya.json
@@ -1,11 +1,11 @@
{
- "description": "NotArya Website",
- "repo": "https://github.com/NotAryaaa/notaryaaa.github.io",
"owner": {
- "username": "notaryaaa",
- "email": "abiix.messanger@gmail.com"
+ "username": "not-arya",
+ "email": "abiixmessanger@gmail.com"
},
"record": {
- "CNAME": "notarya.github.io"
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
}
-}
+}
\ No newline at end of file
diff --git a/domains/notaussie.json b/domains/notaussie.json
index dc3011272..baeb70f8e 100644
--- a/domains/notaussie.json
+++ b/domains/notaussie.json
@@ -1,6 +1,6 @@
{
"description": "Personal site / Portafolio.",
- "repo": "https://github.com/NotAussie/NotAussieIsADev/",
+ "repo": "https://github.com/NotAussie/NotAussieIsADev",
"owner": {
"username": "NotAussie",
"email": "Aussie_Okay@protonmail.com"
diff --git a/domains/notfenixio.json b/domains/notfenixio.json
new file mode 100644
index 000000000..f54e3ca4e
--- /dev/null
+++ b/domains/notfenixio.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NotFenixio",
+ "email": "josueart40@gmail.com"
+ },
+ "record": {
+ "CNAME": "notfenixio.github.io"
+ }
+}
diff --git a/domains/notgoogle.json b/domains/notgoogle.json
index cf03fa5d9..396dc59f4 100644
--- a/domains/notgoogle.json
+++ b/domains/notgoogle.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "uugghhwhy",
- "email": "",
- "discord": "[]#4604"
- },
- "record": {
- "CNAME": "873cf0d8-4ae8-4a9c-9a48-b58ac4c67f3d.id.repl.co"
- }
+ "owner": {
+ "username": "uugghhwhy",
+ "email": "",
+ "discord": "[]#4604"
+ },
+ "record": {
+ "CNAME": "873cf0d8-4ae8-4a9c-9a48-b58ac4c67f3d.id.repl.co"
+ }
}
diff --git a/domains/notify-api.json b/domains/notify-api.json
index 6e00c3f20..ef2dd2748 100644
--- a/domains/notify-api.json
+++ b/domains/notify-api.json
@@ -1,11 +1,10 @@
{
"owner": {
- "username": "andrewstech",
- "email": "Andrewbuild48@gmail.com",
- "note": "This record was created by is-a.dev Discord bot via discord id: 598245488977903688"
- },
+ "username": "is-a-dev",
+ "email": "phenax5@gmail.com"
+ },
- "record": {
- "CNAME": "net.beadman-network.com"
- }
+ "record": {
+ "CNAME": "dns.beadman-network.com"
+ }
}
diff --git a/domains/notjadeja.json b/domains/notjadeja.json
index d32032699..691d90fc4 100644
--- a/domains/notjadeja.json
+++ b/domains/notjadeja.json
@@ -4,12 +4,7 @@
"email": "9236.stkabirdio@gmail.com"
},
"record": {
- "A": [
- "185.199.110.153",
- "185.199.108.153",
- "185.199.111.153",
- "185.199.109.153"
- ],
+ "A": ["185.199.110.153", "185.199.108.153", "185.199.111.153", "185.199.109.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/notskillz.json b/domains/notskillz.json
new file mode 100644
index 000000000..5fe751c74
--- /dev/null
+++ b/domains/notskillz.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "PsxScriptsW",
+ "email": "jacob.blits@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/notugotskillz.json b/domains/notugotskillz.json
new file mode 100644
index 000000000..5fe751c74
--- /dev/null
+++ b/domains/notugotskillz.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "PsxScriptsW",
+ "email": "jacob.blits@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/nova.json b/domains/nova.json
index 924ad4d90..b1d378527 100644
--- a/domains/nova.json
+++ b/domains/nova.json
@@ -3,9 +3,9 @@
"owner": {
"username": "LunarN0v4",
"email": "zeus@zeusteam.dev",
- "discord": "N0v4#4471"
+ "discord": "lunarn0v4"
},
"record": {
- "A": ["170.39.215.57"]
+ "A": ["170.39.215.45"]
}
}
diff --git a/domains/noxsin.json b/domains/noxsin.json
index bd2c44a04..e15031fcb 100644
--- a/domains/noxsin.json
+++ b/domains/noxsin.json
@@ -4,7 +4,7 @@
"owner": {
"username": "komysh",
"email": "arcteac@gmail.com",
- "telegram": "@mentolbot"
+ "telegram": "mentolbot"
},
"record": {
"CNAME": "komysh.github.io"
diff --git a/domains/npc.json b/domains/npc.json
new file mode 100644
index 000000000..5eb5e5abe
--- /dev/null
+++ b/domains/npc.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "npc-123",
+ "email": "aziznasrul85@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/nubi.json b/domains/nubi.json
new file mode 100644
index 000000000..04b0efafb
--- /dev/null
+++ b/domains/nubi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "nubi1337",
+ "email": "jutendo112233@gmail.com"
+ },
+ "record": {
+ "A": ["45.142.107.232"]
+ }
+}
diff --git a/domains/nxn.json b/domains/nxn.json
new file mode 100644
index 000000000..d8f227f54
--- /dev/null
+++ b/domains/nxn.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NxnRmz",
+ "email": "nxnrmz@gmail.com"
+ },
+ "record": {
+ "A": ["44.203.96.123"]
+ }
+}
diff --git a/domains/nxnlab.json b/domains/nxnlab.json
new file mode 100644
index 000000000..9d569bd91
--- /dev/null
+++ b/domains/nxnlab.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NxnRmz",
+ "email": "nxnrmz@gmail.com"
+ },
+ "record": {
+ "CNAME": "nxnrmz.github.io"
+ }
+}
diff --git a/domains/nxrmqlly.json b/domains/nxrmqlly.json
new file mode 100644
index 000000000..b9aeb3834
--- /dev/null
+++ b/domains/nxrmqlly.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal website",
+ "repo": "https://github.com/nxrmqlly/nxrmqlly.github.io",
+ "owner": {
+ "username": "nxrmqlly",
+ "email": "ritam.das3110@outlook.com",
+ "twitter": ""
+ },
+ "record": {
+ "CNAME": "nxrmqlly.github.io"
+ }
+}
diff --git a/domains/nxyoo.json b/domains/nxyoo.json
new file mode 100644
index 000000000..c7c4552fd
--- /dev/null
+++ b/domains/nxyoo.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "nxyoo",
+ "email": "armqnd.pro@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+ }
\ No newline at end of file
diff --git a/domains/nxyy.json b/domains/nxyy.json
new file mode 100644
index 000000000..8d5dea42c
--- /dev/null
+++ b/domains/nxyy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NxyyLOL",
+ "email": "nxyylol@protonmail.com"
+ },
+ "record": {
+ "CNAME": "hosts.is-a.dev"
+ }
+}
diff --git a/domains/nyan.json b/domains/nyan.json
index 2d479ccd9..ca556afbd 100644
--- a/domains/nyan.json
+++ b/domains/nyan.json
@@ -2,7 +2,7 @@
"owner": {
"username": "aeongdesu",
"email": "",
- "revolt": "@Nyan",
+ "revolt": "Nyan",
"discord": "Bread#2635",
"note": "discord id: 548821619661864962"
},
diff --git a/domains/nyda.json b/domains/nyda.json
new file mode 100644
index 000000000..fd2f10143
--- /dev/null
+++ b/domains/nyda.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Nydauron",
+ "email": "jarethgomes@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "jarethgomes.com"
+ }
+}
diff --git a/domains/obaydmerz.json b/domains/obaydmerz.json
new file mode 100644
index 000000000..4b09f8493
--- /dev/null
+++ b/domains/obaydmerz.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "obaydmerz",
+ "email": "obaydmerz@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ocloo.json b/domains/ocloo.json
deleted file mode 100644
index 49aefc66c..000000000
--- a/domains/ocloo.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "dev0cloo",
- "email": "etor.ocloo@gmail.com"
- },
- "record": {
- "URL": "https://dev0cloo.netlify.app"
- }
-}
diff --git a/domains/ofv.json b/domains/ofv.json
index 9dc9857e6..2794d8db2 100644
--- a/domains/ofv.json
+++ b/domains/ofv.json
@@ -1,11 +1,9 @@
{
- "owner":{
- "username":"ruben-as",
- "email":"ruben.aja.85@gmail.com"
- },
- "record":{
- "A":[
- "212.227.32.105"
- ]
- }
+ "owner": {
+ "username": "ruben-as",
+ "email": "ruben.aja.85@gmail.com"
+ },
+ "record": {
+ "A": ["212.227.32.105"]
+ }
}
diff --git a/domains/ohgodanoob.json b/domains/ohgodanoob.json
new file mode 100644
index 000000000..b1a76a6e4
--- /dev/null
+++ b/domains/ohgodanoob.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "OhGodANoob",
+ "email": "ohgodanoob@protonmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ohm.json b/domains/ohm.json
new file mode 100644
index 000000000..377c9e4a5
--- /dev/null
+++ b/domains/ohm.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "sujandeb",
+ "email": "work@sujandeb.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ohmdeb.json b/domains/ohmdeb.json
new file mode 100644
index 000000000..377c9e4a5
--- /dev/null
+++ b/domains/ohmdeb.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "sujandeb",
+ "email": "work@sujandeb.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ohqte.json b/domains/ohqte.json
index 5e36b62c6..def7881ea 100644
--- a/domains/ohqte.json
+++ b/domains/ohqte.json
@@ -5,10 +5,7 @@
},
"record": {
"URL": "https://ohqte.vercel.app",
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
}
diff --git a/domains/ole.json b/domains/ole.json
deleted file mode 100644
index 3059021da..000000000
--- a/domains/ole.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "ole.is-a.dev",
- "repo": "https://github.com/olebohmbach/olebohmbach.github.io",
- "owner": {
- "username": "olenohmbach",
- "email": "ole@ole-is-live.de",
- "twitter": "OleBohmbach"
- },
- "record": {
- "CNAME": "ole-is-live.de"
- }
-}
diff --git a/domains/omer.json b/domains/omer.json
deleted file mode 100644
index cc93b8344..000000000
--- a/domains/omer.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "omercup's personal website",
- "repo": "https://github.com/omercup/omercup.github.io",
- "owner": {
- "username": "omercup",
- "email": "",
- "twitter": "heisomercup"
- },
- "record": {
- "CNAME": "omercup.github.io"
- }
-}
diff --git a/domains/omera.json b/domains/omera.json
index 9dc9857e6..2794d8db2 100644
--- a/domains/omera.json
+++ b/domains/omera.json
@@ -1,11 +1,9 @@
{
- "owner":{
- "username":"ruben-as",
- "email":"ruben.aja.85@gmail.com"
- },
- "record":{
- "A":[
- "212.227.32.105"
- ]
- }
+ "owner": {
+ "username": "ruben-as",
+ "email": "ruben.aja.85@gmail.com"
+ },
+ "record": {
+ "A": ["212.227.32.105"]
+ }
}
diff --git a/domains/omne.json b/domains/omne.json
new file mode 100644
index 000000000..d47950056
--- /dev/null
+++ b/domains/omne.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "notomne",
+ "email": "charmquark314@proton.me"
+ },
+ "record": {
+ "A": ["44.240.31.54"]
+ }
+}
diff --git a/domains/optidium.json b/domains/optidium.json
new file mode 100644
index 000000000..40b3cea5d
--- /dev/null
+++ b/domains/optidium.json
@@ -0,0 +1,11 @@
+{
+ "description": "A little project with the help of my friends",
+ "repo": "https://github.com/XMODERLIVE/Optidium.github.io",
+ "owner": {
+ "username": "XMODERLIVE",
+ "email": "ka237133@gmail.com"
+ },
+ "record": {
+ "CNAME": "XMODERLIVE.github.io"
+ }
+}
diff --git a/domains/orange.json b/domains/orange.json
new file mode 100644
index 000000000..3fbf7db35
--- /dev/null
+++ b/domains/orange.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sahmed011",
+ "email": "sufyanmishal@gmail.com"
+ },
+ "record": {
+ "CNAME": "sahmed011.github.io"
+ }
+}
diff --git a/domains/orangeleaf36.json b/domains/orangeleaf36.json
new file mode 100644
index 000000000..fd071cb3a
--- /dev/null
+++ b/domains/orangeleaf36.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "OrangeLeafDev",
+ "email": "caluzajacob07@gmail.com"
+ },
+ "record": {
+ "CNAME": "orangeleafdev.github.io"
+ }
+}
diff --git a/domains/orestsaban.json b/domains/orestsaban.json
index 5e424a540..14609db3e 100644
--- a/domains/orestsaban.json
+++ b/domains/orestsaban.json
@@ -5,12 +5,7 @@
"email": "OrestSaban@OrestSaban.is-a.dev"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"]
}
}
diff --git a/domains/orhanyigitdurmaz.json b/domains/orhanyigitdurmaz.json
new file mode 100644
index 000000000..b9445d7dd
--- /dev/null
+++ b/domains/orhanyigitdurmaz.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "OrhanYigitDurmaz",
+ "email": "orhanyigitv2durmaz@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/orion.json b/domains/orion.json
new file mode 100644
index 000000000..1324ecaf8
--- /dev/null
+++ b/domains/orion.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "oriionn",
+ "email": "contact@oriondev.fr",
+ "twitter": "orion_offi",
+ "discord": "orion_off"
+ },
+ "record": {
+ "URL": "https://oriondev.fr"
+ }
+}
diff --git a/domains/osakihsieh.json b/domains/osakihsieh.json
new file mode 100644
index 000000000..6793003bb
--- /dev/null
+++ b/domains/osakihsieh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "osakihsieh",
+ "email": "aspdoctor@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/otter.json b/domains/otter.json
index e10a93302..828c268f7 100644
--- a/domains/otter.json
+++ b/domains/otter.json
@@ -8,4 +8,4 @@
"record": {
"CNAME": "ottercodes101.github.io"
}
-}
+}
diff --git a/domains/ovidiuradu.json b/domains/ovidiuradu.json
new file mode 100644
index 000000000..1e1d545fb
--- /dev/null
+++ b/domains/ovidiuradu.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Oxidiu",
+ "email": "oxidiu777@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/owonico.json b/domains/owonico.json
new file mode 100644
index 000000000..fde4663df
--- /dev/null
+++ b/domains/owonico.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "OwoNico",
+ "email": "nicoytwastaken@gmail.com"
+ },
+ "record": {
+ "URL": "https://www.owonico.cf"
+ }
+}
diff --git a/domains/oxmc.json b/domains/oxmc.json
new file mode 100644
index 000000000..4cd7a7415
--- /dev/null
+++ b/domains/oxmc.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "oxmc",
+ "email": "oxmc7769.mail@gmail.com",
+ "discord": "oxmc7769"
+ },
+ "record": {
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
+ "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
+ "TXT": "forward-email=contact:oxmc7769.mail@gmail.com"
+ }
+}
diff --git a/domains/p3nguin.json b/domains/p3nguin.json
new file mode 100644
index 000000000..565b0bf41
--- /dev/null
+++ b/domains/p3nguin.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "p3nguin-kun",
+ "email": "p3nguinkun@proton.me"
+ },
+ "record": {
+ "CNAME": "p3nguin-kun.github.io"
+ }
+}
diff --git a/domains/paiva.json b/domains/paiva.json
new file mode 100644
index 000000000..d865fda03
--- /dev/null
+++ b/domains/paiva.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "dpaiv0",
+ "email": "david.paiva+github@my.istec.pt",
+ "discord": "764778654626349086"
+ },
+
+ "record": {
+ "CNAME": "dpaiv0.github.io"
+ }
+}
diff --git a/domains/panchal-meet.json b/domains/panchal-meet.json
index c9d5c9c40..6b5029311 100644
--- a/domains/panchal-meet.json
+++ b/domains/panchal-meet.json
@@ -1,11 +1,11 @@
{
- "description": "This is a panchal meet",
- "repo": "https://github.com/panchal-meet/panchal-meet.github.io",
- "owner": {
- "username": "panchal-meet",
- "email": ""
- },
- "record": {
- "CNAME": "panchal-meet.github.io"
- }
+ "description": "This is a panchal meet",
+ "repo": "https://github.com/panchal-meet/panchal-meet.github.io",
+ "owner": {
+ "username": "panchal-meet",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "panchal-meet.github.io"
+ }
}
diff --git a/domains/panel-luxxy.json b/domains/panel-luxxy.json
new file mode 100644
index 000000000..b3693e48f
--- /dev/null
+++ b/domains/panel-luxxy.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "Luxxy-GF",
+ "email": "deniedaddicted@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "panel.luxxy.xyz"
+ }
+}
diff --git a/domains/panther.json b/domains/panther.json
new file mode 100644
index 000000000..cd4233fa9
--- /dev/null
+++ b/domains/panther.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "2618Zahid",
+ "email": "zahidhassankalaroa104@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/pasindu.json b/domains/pasindu.json
new file mode 100644
index 000000000..1affe2bf2
--- /dev/null
+++ b/domains/pasindu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "PasinduUpendra",
+ "email": "pasinduupendra@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/pasinduupendra"
+ }
+}
diff --git a/domains/patel-komal.json b/domains/patel-komal.json
index 5e6625cb2..0b186a899 100644
--- a/domains/patel-komal.json
+++ b/domains/patel-komal.json
@@ -1,11 +1,11 @@
{
- "description": "This is komal patel",
- "repo": "https://github.com/patel-komal/patel-komal.github.io",
- "owner": {
- "username": "patel-komal",
- "email": ""
- },
- "record": {
- "CNAME": "patel-komal.github.io"
- }
+ "description": "This is komal patel",
+ "repo": "https://github.com/patel-komal/patel-komal.github.io",
+ "owner": {
+ "username": "patel-komal",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "patel-komal.github.io"
+ }
}
diff --git a/domains/patel-monal.json b/domains/patel-monal.json
index 1a9a80ccb..11e9e3c21 100644
--- a/domains/patel-monal.json
+++ b/domains/patel-monal.json
@@ -1,11 +1,11 @@
{
- "description": "This is personal website",
- "repo": "https://github.com/patel-monal/patel-monal.github.io",
- "owner": {
- "username": "patel-monal",
- "email": ""
- },
- "record": {
- "CNAME": "patel-monal.github.io"
- }
+ "description": "This is personal website",
+ "repo": "https://github.com/patel-monal/patel-monal.github.io",
+ "owner": {
+ "username": "patel-monal",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "patel-monal.github.io"
+ }
}
diff --git a/domains/patel-parthiv.json b/domains/patel-parthiv.json
index ee84827b8..a2865d43e 100644
--- a/domains/patel-parthiv.json
+++ b/domains/patel-parthiv.json
@@ -6,6 +6,6 @@
"email": ""
},
"record": {
- "CNAME": "patel-parthiv.github.io"
+ "CNAME": "patel-parthiv.github.io"
}
}
diff --git a/domains/pathdog.json b/domains/pathdog.json
new file mode 100644
index 000000000..d8f2eaa87
--- /dev/null
+++ b/domains/pathdog.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "NIKODEMUSLORD",
+ "email": "hannah.valdez@cetys.edu.mx"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/patrickzhou.json b/domains/patrickzhou.json
index f02262bdb..a97febea4 100644
--- a/domains/patrickzhou.json
+++ b/domains/patrickzhou.json
@@ -2,7 +2,7 @@
"owner": {
"username": "patrickzhou1234",
"email": "",
- "discord": "Moist Nugget#5050"
+ "discord": "moist__nugget"
},
"record": {
"CNAME": "patrickzhou1234.github.io"
diff --git a/domains/payidar.json b/domains/payidar.json
deleted file mode 100644
index ce10ee0fe..000000000
--- a/domains/payidar.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Payidars's personal developer website",
- "repo": "https://github.com/payidarofficial",
- "owner": {
- "username": "payidar",
- "email": "mertcelik2196@gmail.com"
- },
- "record": {
- "URL": "https://payidarofficial.xyz"
- }
-}
diff --git a/domains/peacy.json b/domains/peacy.json
new file mode 100644
index 000000000..8971e9386
--- /dev/null
+++ b/domains/peacy.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Peaqcy",
+ "email": "kiwibird211@icloud.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/peak.json b/domains/peak.json
new file mode 100644
index 000000000..234428160
--- /dev/null
+++ b/domains/peak.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NottPeak",
+ "email": "quirkyfishyt@gmail.com"
+ },
+ "record": {
+ "A": ["129.213.82.186"]
+ }
+}
diff --git a/domains/pengubin.json b/domains/pengubin.json
new file mode 100644
index 000000000..5948519e2
--- /dev/null
+++ b/domains/pengubin.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Piplup7575",
+ "email": "piplup7575@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/penguin.json b/domains/penguin.json
index 70d9fccdb..915899352 100644
--- a/domains/penguin.json
+++ b/domains/penguin.json
@@ -4,12 +4,7 @@
"email": "br14n.universe@gmail.com"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx.zoho.com.au", "mx2.zoho.com.au", "mx3.zoho.com.au"],
"TXT": "v=spf1 include:zoho.com.au ~all"
}
diff --git a/domains/phakh.json b/domains/phakh.json
new file mode 100644
index 000000000..3f13c37c3
--- /dev/null
+++ b/domains/phakh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "textures1245",
+ "email": "sirprak1245@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/phoenix.json b/domains/phoenix.json
new file mode 100644
index 000000000..2df38dc56
--- /dev/null
+++ b/domains/phoenix.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "PhoenixOrigin",
+ "email": "phoenixorigin171@gmail.com"
+ },
+ "record": {
+ "A": ["130.162.166.134"],
+ "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
+ "TXT": "forward-email=phoenixorigin171@gmail.com"
+ }
+}
diff --git a/domains/phuc.json b/domains/phuc.json
new file mode 100644
index 000000000..8b6c0c700
--- /dev/null
+++ b/domains/phuc.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "phucbm",
+ "email": "phucbm.dev@gmail.com"
+ },
+ "record": {
+ "URL": "https://buiminhphuc.com"
+ }
+}
diff --git a/domains/pi.json b/domains/pi.json
new file mode 100644
index 000000000..c3f46e605
--- /dev/null
+++ b/domains/pi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "4pii4",
+ "email": "naivenevaii@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/pic.cfp.json b/domains/pic.cfp.json
new file mode 100644
index 000000000..83486ccfd
--- /dev/null
+++ b/domains/pic.cfp.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "cfpwastaken",
+ "email": "",
+ "discord": "cfp"
+ },
+ "record": {
+ "CNAME": "cfp.gotdns.ch"
+ }
+}
diff --git a/domains/picosvelte.zarqi.json b/domains/picosvelte.zarqi.json
new file mode 100644
index 000000000..66bd72ebc
--- /dev/null
+++ b/domains/picosvelte.zarqi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zarqizoubir",
+ "email": "zarqi.ezzoubair@etu.uae.ac.ma"
+ },
+ "record": {
+ "CNAME": "zarqizoubir.github.io"
+ }
+}
diff --git a/domains/pie.json b/domains/pie.json
new file mode 100644
index 000000000..c3f46e605
--- /dev/null
+++ b/domains/pie.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "4pii4",
+ "email": "naivenevaii@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/pipc.json b/domains/pipc.json
new file mode 100644
index 000000000..2c48c1b36
--- /dev/null
+++ b/domains/pipc.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "PiPc1",
+ "email": "rhileighc9@gmail.com"
+ },
+ "record": {
+ "CNAME": "pipc1.github.io"
+ }
+}
diff --git a/domains/piplup7575.json b/domains/piplup7575.json
new file mode 100644
index 000000000..5948519e2
--- /dev/null
+++ b/domains/piplup7575.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Piplup7575",
+ "email": "piplup7575@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/pixelbots.json b/domains/pixelbots.json
new file mode 100644
index 000000000..6d1924bea
--- /dev/null
+++ b/domains/pixelbots.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "wansiie",
+ "email": "Janeiscool4ever@web.de"
+ },
+ "record": {
+ "CNAME": "89e1de78ff-hosting.gitbook.io"
+ }
+}
diff --git a/domains/pixelgeek.json b/domains/pixelgeek.json
index 5e46be32f..dafa90bd6 100644
--- a/domains/pixelgeek.json
+++ b/domains/pixelgeek.json
@@ -1,7 +1,7 @@
{
"owner": {
"username": "pixelgeek",
- "email": "pixelgeek@intel.com"
+ "email": "pxe.geek+github@gmail.com"
},
"record": {
"CNAME": "pixelgeek.github.io"
diff --git a/domains/pixelnest.json b/domains/pixelnest.json
new file mode 100644
index 000000000..6d1924bea
--- /dev/null
+++ b/domains/pixelnest.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "wansiie",
+ "email": "Janeiscool4ever@web.de"
+ },
+ "record": {
+ "CNAME": "89e1de78ff-hosting.gitbook.io"
+ }
+}
diff --git a/domains/pixelnestbots.json b/domains/pixelnestbots.json
new file mode 100644
index 000000000..6d1924bea
--- /dev/null
+++ b/domains/pixelnestbots.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "wansiie",
+ "email": "Janeiscool4ever@web.de"
+ },
+ "record": {
+ "CNAME": "89e1de78ff-hosting.gitbook.io"
+ }
+}
diff --git a/domains/pixelsbots.json b/domains/pixelsbots.json
new file mode 100644
index 000000000..6d1924bea
--- /dev/null
+++ b/domains/pixelsbots.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "wansiie",
+ "email": "Janeiscool4ever@web.de"
+ },
+ "record": {
+ "CNAME": "89e1de78ff-hosting.gitbook.io"
+ }
+}
diff --git a/domains/pixelwhiz.json b/domains/pixelwhiz.json
new file mode 100644
index 000000000..7f8ea3675
--- /dev/null
+++ b/domains/pixelwhiz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "pixelwhiz",
+ "email": "daffa01futn@gmail.com"
+ },
+ "record": {
+ "CNAME": "pixelwhiz.github.io"
+ }
+}
diff --git a/domains/pixie.json b/domains/pixie.json
new file mode 100644
index 000000000..fd7bebff6
--- /dev/null
+++ b/domains/pixie.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Salmontrap26283627",
+ "email": "soudeur-epicier.0x@icloud.com"
+ },
+ "record": {
+ "URL": "https://html-starter-seven-umber.vercel.app"
+ }
+}
diff --git a/domains/plague.json b/domains/plague.json
new file mode 100644
index 000000000..07852e74a
--- /dev/null
+++ b/domains/plague.json
@@ -0,0 +1,12 @@
+{
+ "description": "My souper personal domain.",
+ "repo": "https://github.com/pl4g/pl4g.github.io",
+ "owner": {
+ "username": "pl4g",
+ "email": "viniciuslucianocardoso@gmail.com",
+ "discord": "plague🥣#8408"
+ },
+ "record": {
+ "CNAME": "pl4g.github.io"
+ }
+}
diff --git a/domains/play.json b/domains/play.json
new file mode 100644
index 000000000..816c23629
--- /dev/null
+++ b/domains/play.json
@@ -0,0 +1,11 @@
+
+ {
+ "owner": {
+ "username": "CcNicebruh",
+ "email": "tangkeehee2002@gmail.com"
+ },
+ "record": {
+ "A": ["49.231.43.12"]
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/plush.json b/domains/plush.json
new file mode 100644
index 000000000..eaf887a0a
--- /dev/null
+++ b/domains/plush.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Plushhh",
+ "email": "umer.farooq0@icloud.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/polosteor.json b/domains/polosteor.json
new file mode 100644
index 000000000..29f69c7c7
--- /dev/null
+++ b/domains/polosteor.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "polosteor",
+ "email": "polosteor@gmail.com"
+ },
+ "record": {
+ "URL": "https://polosteor.com"
+ }
+}
diff --git a/domains/polygon6233.json b/domains/polygon6233.json
new file mode 100644
index 000000000..6a85ec40e
--- /dev/null
+++ b/domains/polygon6233.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "polygon6233",
+ "email": "nikitasitter@gmail.com"
+ },
+ "record": {
+ "CNAME": "polygon6233.github.io"
+ }
+}
diff --git a/domains/ponich-sandbox.json b/domains/ponich-sandbox.json
new file mode 100644
index 000000000..10f458466
--- /dev/null
+++ b/domains/ponich-sandbox.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "ponich",
+ "email": "n.ponich@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "dev.ponich.com"
+ }
+}
diff --git a/domains/porary.json b/domains/porary.json
deleted file mode 100644
index 268098ef6..000000000
--- a/domains/porary.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "GotoShoraro",
- "email": "info@porary.net"
- },
-
- "record": {
- "URL": "https://porary.net"
- }
-}
diff --git a/domains/portal-slot-gacor.json b/domains/portal-slot-gacor.json
deleted file mode 100644
index cbd81609d..000000000
--- a/domains/portal-slot-gacor.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Demo Spining wheeles slot Gacor",
- "repo": "https://github.com/cewemanja/portal-slot-gacor",
- "owner": {
- "username": "cewemanja",
- "email": "slotgacor@id123.uno"
- },
- "record": {
- "URL": "https://cewemanja.github.io/portal-slot-gacor"
- }
-}
diff --git a/domains/ppg00.json b/domains/ppg00.json
new file mode 100644
index 000000000..0e16b4ba3
--- /dev/null
+++ b/domains/ppg00.json
@@ -0,0 +1,12 @@
+{
+ "description": "for my personal website ^_^",
+ "repo": "https://github.com/ppg00/ppg00.github.io",
+ "owner": {
+ "username": "ppg00",
+ "email": "ppqg00@gmail.com",
+ "twitter": "qqg00"
+ },
+ "record": {
+ "CNAME": "ppg00.github.io"
+ }
+}
diff --git a/domains/prabin.json b/domains/prabin.json
index e906afebd..9dd64045e 100644
--- a/domains/prabin.json
+++ b/domains/prabin.json
@@ -6,6 +6,6 @@
"email": "prabinsubedi2016@gmail.com"
},
"record": {
- "URL": "https://prabin.tech"
+ "URL": "https://prabincankod.me"
}
}
diff --git a/domains/prafit.json b/domains/prafit.json
new file mode 100644
index 000000000..1e3036641
--- /dev/null
+++ b/domains/prafit.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ExRonin",
+ "email": "palvido81@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/prajjwal.json b/domains/prajjwal.json
new file mode 100644
index 000000000..9c5b61bd1
--- /dev/null
+++ b/domains/prajjwal.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "CycloneAddons",
+ "email": "cycloneaddon@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/pranjal.json b/domains/pranjal.json
new file mode 100644
index 000000000..aeca0df34
--- /dev/null
+++ b/domains/pranjal.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Pranjal-SB",
+ "email": "psbhatnagar.in@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/pranjalrastogi.json b/domains/pranjalrastogi.json
new file mode 100644
index 000000000..d82c6fb40
--- /dev/null
+++ b/domains/pranjalrastogi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "PjrCodes",
+ "email": "pranjal.j.rastogi@gmail.com"
+ },
+ "record": {
+ "CNAME": "thepjr.com"
+ }
+}
diff --git a/domains/prasadbobby.json b/domains/prasadbobby.json
deleted file mode 100644
index 95b551215..000000000
--- a/domains/prasadbobby.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Edu Manager",
- "repo": "https://github.com/prasadbobby",
- "owner": {
- "username": "prasadbobby",
- "email": "prasadbobby057@gmail.com"
- },
- "record": {
- "URL": "http://prasadbobby.me"
- }
-}
diff --git a/domains/prasadsawant.json b/domains/prasadsawant.json
new file mode 100644
index 000000000..e428a7bc5
--- /dev/null
+++ b/domains/prasadsawant.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "prasadsawant7",
+ "email": "prasadsawant7git@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
diff --git a/domains/prathamesh.json b/domains/prathamesh.json
new file mode 100644
index 000000000..542ba6fe7
--- /dev/null
+++ b/domains/prathamesh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "PrathameshhW",
+ "email": "prathameshj0407@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/pratikmali.json b/domains/pratikmali.json
new file mode 100644
index 000000000..0db647f19
--- /dev/null
+++ b/domains/pratikmali.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "impratik7",
+ "email": "malipratik09@gmail.com"
+ },
+ "record": {
+ "CNAME": "impratik7.github.io"
+ }
+}
diff --git a/domains/pratikp-patel.json b/domains/pratikp-patel.json
index 3f6311ed9..97cd353dd 100644
--- a/domains/pratikp-patel.json
+++ b/domains/pratikp-patel.json
@@ -1,11 +1,11 @@
{
- "description": "This is a website",
- "repo": "https://github.com/pratikp-patel/pratikp-patel.github.io",
- "owner": {
- "username": "pratikp-patel",
- "email": ""
- },
- "record": {
- "CNAME": "pratikp-patel.github.io"
- }
+ "description": "This is a website",
+ "repo": "https://github.com/pratikp-patel/pratikp-patel.github.io",
+ "owner": {
+ "username": "pratikp-patel",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "pratikp-patel.github.io"
+ }
}
diff --git a/domains/pratyaydeep.json b/domains/pratyaydeep.json
deleted file mode 100644
index ad6f689b1..000000000
--- a/domains/pratyaydeep.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Pratyaydeep's Microblog",
- "repo": "https://github.com/pratyaydeep",
- "owner": {
- "username": "pratyaydeep",
- "email": "pratyaydeep@yahoo.com"
- },
- "record": {
- "URL": "https://pratya.pythonanywhere.com"
- }
-}
diff --git a/domains/earthrulerr.json b/domains/prisems.json
similarity index 81%
rename from domains/earthrulerr.json
rename to domains/prisems.json
index 0d9964675..14d923705 100644
--- a/domains/earthrulerr.json
+++ b/domains/prisems.json
@@ -1,6 +1,6 @@
{
"owner": {
- "username": "EarthRulerr",
+ "username": "prisems",
"email": "earthrulerr@gmail.com"
},
"record": {
diff --git a/domains/privacy.json b/domains/privacy.json
index 447383cfa..e080ed5f4 100644
--- a/domains/privacy.json
+++ b/domains/privacy.json
@@ -4,13 +4,8 @@
"email": "phenax5@gmail.com"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "URL": "https://team.is-a.dev",
"MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
- "TXT": "forward-email=privacy.isdev.localplayer.dev"
+ "TXT": "forward-email=isdevmail.beadman-network.com,andrew@win11react.com"
}
}
diff --git a/domains/proautotest.json b/domains/proautotest.json
new file mode 100644
index 000000000..3fa09b421
--- /dev/null
+++ b/domains/proautotest.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "XeeRooX",
+ "email": "akkaunt7931@gmail.com"
+ },
+ "record": {
+ "A": ["92.119.90.217"]
+ }
+}
diff --git a/domains/probir-sarkar.json b/domains/probir-sarkar.json
new file mode 100644
index 000000000..199f0e6e0
--- /dev/null
+++ b/domains/probir-sarkar.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "probir-sarkar",
+ "email": "me@probir.dev"
+ },
+
+ "record": {
+ "URL": "https://probir-sarkar.vercel.app"
+ }
+}
diff --git a/domains/prodefix.json b/domains/prodefix.json
new file mode 100644
index 000000000..74d9272c4
--- /dev/null
+++ b/domains/prodefix.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "PRODEFIX",
+ "email": "felaloula@hotmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/proxyjohnny.json b/domains/proxyjohnny.json
new file mode 100644
index 000000000..ab31877db
--- /dev/null
+++ b/domains/proxyjohnny.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ProxyJohnny",
+ "email": "johnnydx7@gmail.com"
+ },
+ "record": {
+ "CNAME": "proxyjohnny.pages.dev"
+ }
+}
diff --git a/domains/prtksunal.json b/domains/prtksunal.json
new file mode 100644
index 000000000..a4e5ac574
--- /dev/null
+++ b/domains/prtksunal.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "prateekmedia",
+ "email": "prtksunal@gmail.com"
+ },
+ "record": {
+ "CNAME": "prateekmedia.github.io"
+ }
+}
diff --git a/domains/pshock.oxmc.json b/domains/pshock.oxmc.json
new file mode 100644
index 000000000..98b4ff968
--- /dev/null
+++ b/domains/pshock.oxmc.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "oxmc",
+ "email": "oxmc7769.mail@gmail.com",
+ "discord": "oxmc7769"
+ },
+ "record": {
+ "CNAME": "protoshock-utils.000webhostapp.com"
+ }
+}
diff --git a/domains/puchikat.json b/domains/puchikat.json
new file mode 100644
index 000000000..83fdc615a
--- /dev/null
+++ b/domains/puchikat.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "kentjuno7z",
+ "email": "lamdev1212@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
\ No newline at end of file
diff --git a/domains/pythonscratcher.json b/domains/pythonscratcher.json
new file mode 100644
index 000000000..70c99e17e
--- /dev/null
+++ b/domains/pythonscratcher.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "PythonScratcher",
+ "email": "callumcardy7@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "pythonscratcher.github.io"
+ }
+}
diff --git a/domains/q31265503-bio.json b/domains/q31265503-bio.json
new file mode 100644
index 000000000..253d2ddea
--- /dev/null
+++ b/domains/q31265503-bio.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "artfadeev40",
+ "email": "fedulai195@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/q31265503.json b/domains/q31265503.json
new file mode 100644
index 000000000..253d2ddea
--- /dev/null
+++ b/domains/q31265503.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "artfadeev40",
+ "email": "fedulai195@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/qing762.json b/domains/qing762.json
new file mode 100644
index 000000000..190fa7137
--- /dev/null
+++ b/domains/qing762.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "qing762",
+ "email": "threatedblade@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/qna.suki.json b/domains/qna.suki.json
deleted file mode 100644
index dbf9639a5..000000000
--- a/domains/qna.suki.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "SukiPlayz",
- "email": "sukimayoo@outlook.com"
- },
- "record": {
- "CNAME": "247eddef-406f-4ce3-87ae-b3515f3aa876.id.repl.co"
- }
-}
diff --git a/domains/qnm1.json b/domains/qnm1.json
new file mode 100644
index 000000000..85f743039
--- /dev/null
+++ b/domains/qnm1.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "questonomemio1",
+ "email": "lorenzomusto.dbz@gmail.com"
+ },
+ "record": {
+ "URL": "https://dev-questonomemio1.pantheonsite.io"
+ }
+}
diff --git a/domains/qqg00.json b/domains/qqg00.json
new file mode 100644
index 000000000..dd140730e
--- /dev/null
+++ b/domains/qqg00.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ppg00",
+ "email": "vx2dsk@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/quantamphysics.json b/domains/quantamphysics.json
new file mode 100644
index 000000000..cb35e6f92
--- /dev/null
+++ b/domains/quantamphysics.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Quantamyt",
+ "email": "Sujataghosal05@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ra.json b/domains/ra.json
new file mode 100644
index 000000000..2148b17d0
--- /dev/null
+++ b/domains/ra.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "RizmyAbdulla",
+ "email": "rizmyabdulla@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/rachmadsuharja.json b/domains/rachmadsuharja.json
new file mode 100644
index 000000000..eb178a153
--- /dev/null
+++ b/domains/rachmadsuharja.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "rachmadsuharja",
+ "email": "rachmadsuharja123@gmail.com"
+ },
+ "record": {
+ "CNAME": "rachmadsuharja.github.io"
+ }
+}
diff --git a/domains/rafal.json b/domains/rafal.json
new file mode 100644
index 000000000..951e7480c
--- /dev/null
+++ b/domains/rafal.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "TheRafal",
+ "email": "therafal@proton.me"
+ },
+ "record": {
+ "A": ["178.159.197.126"]
+ }
+}
diff --git a/domains/rafsanrakib.json b/domains/rafsanrakib.json
new file mode 100644
index 000000000..306f4f8bf
--- /dev/null
+++ b/domains/rafsanrakib.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "rafsaaanrakib",
+ "email": "rakibyt13155@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/raghavkorde.json b/domains/raghavkorde.json
new file mode 100644
index 000000000..4bb5ab689
--- /dev/null
+++ b/domains/raghavkorde.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "raghavkorde",
+ "email": "raghavkorde4@gmail.com"
+ },
+ "record": {
+ "CNAME": "web-resume-b8p.pages.dev"
+ }
+}
diff --git a/domains/rahul-rabari.json b/domains/rahul-rabari.json
index 5a171c90d..07c8f6430 100644
--- a/domains/rahul-rabari.json
+++ b/domains/rahul-rabari.json
@@ -1,11 +1,11 @@
{
- "description": "This is personal website",
- "repo": "https://github.com/rahul-rabari/rahul-rabari.github.io",
- "owner": {
- "username": "rahul-rabari",
- "email": ""
- },
- "record": {
- "CNAME": "rahul-rabari.github.io"
- }
+ "description": "This is personal website",
+ "repo": "https://github.com/rahul-rabari/rahul-rabari.github.io",
+ "owner": {
+ "username": "rahul-rabari",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "rahul-rabari.github.io"
+ }
}
diff --git a/domains/rahulol.json b/domains/rahulol.json
new file mode 100644
index 000000000..09894d160
--- /dev/null
+++ b/domains/rahulol.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "rahulsingh2312",
+ "email": "rahulsinghhh2312@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/raiin.json b/domains/raiin.json
new file mode 100644
index 000000000..ae347f452
--- /dev/null
+++ b/domains/raiin.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ClicpoW",
+ "email": "clicpowytb@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/rajasbhagatkar.json b/domains/rajasbhagatkar.json
new file mode 100644
index 000000000..fb081b667
--- /dev/null
+++ b/domains/rajasbhagatkar.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "RajasBhagatkar",
+ "email": "rajasbhagatkar@gmail.com"
+ },
+ "record": {
+ "CNAME": "rajasbhagatkar.github.io"
+ }
+}
diff --git a/domains/rakibahmed.json b/domains/rakibahmed.json
new file mode 100644
index 000000000..306f4f8bf
--- /dev/null
+++ b/domains/rakibahmed.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "rafsaaanrakib",
+ "email": "rakibyt13155@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/rakibrafsaaan.json b/domains/rakibrafsaaan.json
new file mode 100644
index 000000000..306f4f8bf
--- /dev/null
+++ b/domains/rakibrafsaaan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "rafsaaanrakib",
+ "email": "rakibyt13155@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/rakibrafsan.json b/domains/rakibrafsan.json
new file mode 100644
index 000000000..306f4f8bf
--- /dev/null
+++ b/domains/rakibrafsan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "rafsaaanrakib",
+ "email": "rakibyt13155@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/rana.json b/domains/rana.json
new file mode 100644
index 000000000..1db84fe1b
--- /dev/null
+++ b/domains/rana.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "rannawe",
+ "email": "rannawe.x64@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ranamoh.json b/domains/ranamoh.json
new file mode 100644
index 000000000..1db84fe1b
--- /dev/null
+++ b/domains/ranamoh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "rannawe",
+ "email": "rannawe.x64@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/raofin.json b/domains/raofin.json
index 3073e98c7..50455cdcc 100644
--- a/domains/raofin.json
+++ b/domains/raofin.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "raofin",
- "email": "contact@raofin.net"
- },
- "record": {
- "CNAME": "rao-dev.pages.dev"
- }
+ "owner": {
+ "username": "raofin",
+ "email": "contact@raofin.net"
+ },
+ "record": {
+ "CNAME": "rao-dev.pages.dev"
+ }
}
diff --git a/domains/raven.json b/domains/raven.json
index fe24aaa2f..7c38585da 100644
--- a/domains/raven.json
+++ b/domains/raven.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "bubby932",
- "email": "raven@az-raven.com"
- },
- "description": "Redirection domain for https://az-raven.com.",
- "record": {
- "URL": "https://az-raven.com"
- }
+ "owner": {
+ "username": "bubby932",
+ "email": "raven@az-raven.com"
+ },
+ "description": "Redirection domain for https://az-raven.com.",
+ "record": {
+ "URL": "https://az-raven.com"
+ }
}
diff --git a/domains/raw-api.json b/domains/raw-api.json
index 5738c9ef2..10d14c84b 100644
--- a/domains/raw-api.json
+++ b/domains/raw-api.json
@@ -1,7 +1,7 @@
{
"owner": {
- "username": "WilliamDavidHarrison",
- "email": "william@williamharrison.dev"
+ "username": "is-a-dev",
+ "email": "phenax5@gmail.com"
},
"record": {
diff --git a/domains/raw.json b/domains/raw.json
deleted file mode 100644
index a20b7e4df..000000000
--- a/domains/raw.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "is-a-dev-raw api",
- "repo": "https://github.com/andrewstech/is-a-dev-raw-api",
- "owner": {
- "username": "andrewstech",
- "email": "hello@andrewstech.me",
- "twitter": "andrewstech1"
- },
- "record": {
- "CNAME": "andrewstech.github.io"
- }
-}
diff --git a/domains/rayr.json b/domains/rayr.json
new file mode 100644
index 000000000..f12b139a1
--- /dev/null
+++ b/domains/rayr.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Rayrsn",
+ "email": "rayrsn@proton.me"
+ },
+ "record": {
+ "URL": "https://rayr.link"
+ }
+}
diff --git a/domains/rdc.json b/domains/rdc.json
new file mode 100644
index 000000000..2794d8db2
--- /dev/null
+++ b/domains/rdc.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ruben-as",
+ "email": "ruben.aja.85@gmail.com"
+ },
+ "record": {
+ "A": ["212.227.32.105"]
+ }
+}
diff --git a/domains/reading.json b/domains/reading.json
index 17bb56ee2..64c0fde4d 100644
--- a/domains/reading.json
+++ b/domains/reading.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "ReadandProgress.github.io"
}
-}
+}
diff --git a/domains/rebokdev.json b/domains/rebokdev.json
new file mode 100644
index 000000000..ab0218719
--- /dev/null
+++ b/domains/rebokdev.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "rebokdev",
+ "email": "rebok@duck.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/reef.json b/domains/reef.json
new file mode 100644
index 000000000..e14593559
--- /dev/null
+++ b/domains/reef.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ReefSalty",
+ "email": "reefsalter@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/reefsalty.json b/domains/reefsalty.json
index 59fb384d1..cb967f686 100644
--- a/domains/reefsalty.json
+++ b/domains/reefsalty.json
@@ -1,12 +1,12 @@
{
- "description": "ReefSalty",
- "repo": "https://github.com/github-username/ReefSalty.github.io",
- "owner": {
- "username": "ReefSalty",
- "email": "reefsalter@hotmail.com",
- "twitter": "ReefSalty"
- },
- "record": {
- "CNAME": "reefsalty.github.io"
- }
+ "description": "ReefSalty",
+ "repo": "https://github.com/github-username/reefsalty.github.io",
+ "owner": {
+ "username": "ReefSalty",
+ "email": "hi@reefsalty.co.uk",
+ "twitter": "ReefSalty"
+ },
+ "record": {
+ "CNAME": "ReefSalty.github.io"
+ }
}
diff --git a/domains/refactoring.json b/domains/refactoring.json
new file mode 100644
index 000000000..bbf235f6f
--- /dev/null
+++ b/domains/refactoring.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "refactoringg",
+ "email": "renflenpersonal@gmail.com"
+ },
+ "record": {
+ "CNAME": "hosts.is-a.dev"
+ }
+}
diff --git a/domains/register-bot.json b/domains/register-bot.json
index 652d7ea34..1afde3af6 100644
--- a/domains/register-bot.json
+++ b/domains/register-bot.json
@@ -2,9 +2,8 @@
"description": "Register-bot",
"repo": "https://github.com/andrewstech/is-a-dev-bot",
"owner": {
- "username": "andrewstech",
- "email": "hello@andrewstech.me",
- "twitter": "andrewstech1"
+ "username": "is-a-dev",
+ "email": "phenax5@gmail.com"
},
"record": {
"CNAME": "dns.beadman-network.com"
diff --git a/domains/register.json b/domains/register.json
index 3ad1822b5..397791b43 100644
--- a/domains/register.json
+++ b/domains/register.json
@@ -5,6 +5,6 @@
},
"record": {
- "CNAME": "isaregister.pages.dev"
+ "URL": "https://manage.is-a.dev"
}
}
diff --git a/domains/rehanaf.json b/domains/rehanaf.json
new file mode 100644
index 000000000..a13acad34
--- /dev/null
+++ b/domains/rehanaf.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "rehanaf",
+ "email": "rehanalfaqih287@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "rehanaf.github.io"
+ }
+}
diff --git a/domains/reizy.json b/domains/reizy.json
index a3f23a106..d89e98a4a 100644
--- a/domains/reizy.json
+++ b/domains/reizy.json
@@ -4,6 +4,6 @@
"email": "grazioligiuliano52@gmail.com"
},
"record": {
- "URL": "https://reizy.eu"
+ "CNAME": "hosts.is-a.dev"
}
}
diff --git a/domains/ren.json b/domains/ren.json
new file mode 100644
index 000000000..966df3d9c
--- /dev/null
+++ b/domains/ren.json
@@ -0,0 +1,11 @@
+{
+ "description": "is-a.dev subdomain for my portfolio",
+ "repo": "https://github.com/rendotpy/portfolio",
+ "owner": {
+ "username": "rendotpy",
+ "email": "arugh3@gmail.com"
+ },
+ "record": {
+ "CNAME": "rendotpy.github.io"
+ }
+}
diff --git a/domains/renata.json b/domains/renata.json
new file mode 100644
index 000000000..57db3a46a
--- /dev/null
+++ b/domains/renata.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "xrenata",
+ "email": "emirhan@duck.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/replit.json b/domains/replit.json
new file mode 100644
index 000000000..e4b56d679
--- /dev/null
+++ b/domains/replit.json
@@ -0,0 +1,10 @@
+{
+ "description": "Setup is-a.dev domain with Replit",
+ "owner": {
+ "username": "VaibhavSys",
+ "email": "vaibhavsys@protonmail.com"
+ },
+ "record": {
+ "CNAME": "ff4ced07-325d-4fbd-8fcc-d3ae663f2a60.id.repl.co"
+ }
+}
diff --git a/domains/respect.json b/domains/respect.json
new file mode 100644
index 000000000..c8350ebe9
--- /dev/null
+++ b/domains/respect.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "rq9s",
+ "email": "valdemarbirker@gmail.com"
+ },
+ "record": {
+ "A": ["198.251.89.164"]
+ }
+}
diff --git a/domains/restart.json b/domains/restart.json
new file mode 100644
index 000000000..c55b7045c
--- /dev/null
+++ b/domains/restart.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "GodfatherX64",
+ "email": "godfather.x64@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/return.json b/domains/return.json
new file mode 100644
index 000000000..2d85844dc
--- /dev/null
+++ b/domains/return.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "returnxd",
+ "email": "hc_2583@naver.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/reyzo.json b/domains/reyzo.json
new file mode 100644
index 000000000..9abe02bec
--- /dev/null
+++ b/domains/reyzo.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Nolaxyy",
+ "email": "konectplay2008@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/rhylso.json b/domains/rhylso.json
new file mode 100644
index 000000000..b7d96f6ec
--- /dev/null
+++ b/domains/rhylso.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "rhylso",
+ "email": "rhylso@proton.me"
+ },
+ "record": {
+ "CNAME": "rhylso.pages.dev"
+ }
+}
diff --git a/domains/riannegreiros.json b/domains/riannegreiros.json
index d43673872..04b9c38f9 100644
--- a/domains/riannegreiros.json
+++ b/domains/riannegreiros.json
@@ -4,6 +4,6 @@
"email": "riannegreiros@gmail.com"
},
"record": {
- "CNAME": "portfolio-production-c1eb.up.railway.app"
+ "CNAME": "blog-client-66ki.onrender.com"
}
}
diff --git a/domains/richard.json b/domains/richard.json
index bf38bc608..dd5a80e9e 100644
--- a/domains/richard.json
+++ b/domains/richard.json
@@ -1,6 +1,6 @@
{
"description": "My Portfolio",
- "link": "https://richardshaju.github.io/portfolio/",
+ "link": "https://richardshaju.github.io/portfolio",
"owner": {
"username": "richardshaju",
"email": "richardshaju66@gmail.com",
diff --git a/domains/rifkisaputra.json b/domains/rifkisaputra.json
new file mode 100644
index 000000000..ed2d54e62
--- /dev/null
+++ b/domains/rifkisaputra.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "rifki-saputra",
+ "email": "rifkimuhamad0987@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/rihards.json b/domains/rihards.json
new file mode 100644
index 000000000..773e09ec9
--- /dev/null
+++ b/domains/rihards.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "dexit",
+ "email": "dexit@dyc.lv"
+ },
+ "record": {
+ "CNAME": "dexit.github.io"
+ }
+}
diff --git a/domains/riko.json b/domains/riko.json
new file mode 100644
index 000000000..9029c0da9
--- /dev/null
+++ b/domains/riko.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "GoldenFire2317",
+ "email": "buttersword2017@gmail.com"
+ },
+ "record": {
+ "CNAME": "riko.mkoca.org"
+ }
+}
diff --git a/domains/rikosnapse.json b/domains/rikosnapse.json
new file mode 100644
index 000000000..9029c0da9
--- /dev/null
+++ b/domains/rikosnapse.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "GoldenFire2317",
+ "email": "buttersword2017@gmail.com"
+ },
+ "record": {
+ "CNAME": "riko.mkoca.org"
+ }
+}
diff --git a/domains/ringoxd.json b/domains/ringoxd.json
new file mode 100644
index 000000000..89b26aaae
--- /dev/null
+++ b/domains/ringoxd.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ringo360",
+ "email": "nep360i@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
\ No newline at end of file
diff --git a/domains/ririxi.json b/domains/ririxi.json
deleted file mode 100644
index 2cbaabeb0..000000000
--- a/domains/ririxi.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "repo": "https://github.com/ririxichan",
- "owner": {
- "username": "ririxichan",
- "email": "",
- "twitter": "ririxichan"
- },
- "record": {
- "URL": "https://ririxi.dev"
- }
-}
diff --git a/domains/riviox.json b/domains/riviox.json
new file mode 100644
index 000000000..6b323db18
--- /dev/null
+++ b/domains/riviox.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "RivioxGaming",
+ "email": "rivioxyt@hotmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
diff --git a/domains/rize.json b/domains/rize.json
new file mode 100644
index 000000000..4d0a9db37
--- /dev/null
+++ b/domains/rize.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "l1gm4b4lls",
+ "email": "mejmayfoof@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/rizky.json b/domains/rizky.json
new file mode 100644
index 000000000..c181e6a0b
--- /dev/null
+++ b/domains/rizky.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "schummler",
+ "email": "markwilkens102@gmail.com"
+ },
+ "record": {
+ "CNAME": "stellaris.rf.gd"
+ }
+}
diff --git a/domains/rizmyabdulla.json b/domains/rizmyabdulla.json
new file mode 100644
index 000000000..a027cb9fa
--- /dev/null
+++ b/domains/rizmyabdulla.json
@@ -0,0 +1,12 @@
+{
+ "description": "Welcome to my creative haven! Explore a collection of my finest works that blend passion, innovation, and artistry. From captivating visual designs to thought-provoking written pieces, this portfolio domain showcases my journey as a versatile creator. Join me in celebrating the beauty of imagination and the power of expression",
+ "repo": "https://github.com/rizmyabdulla/rizmyabdulla",
+ "owner": {
+ "username": "rizmyabdulla",
+ "email": "rizmyabdulla@gmail.com",
+ "twitter": "_rizmyabdulla"
+ },
+ "record": {
+ "CNAME": "rizmyabdulla.github.io"
+ }
+}
diff --git a/domains/rnv.json b/domains/rnv.json
new file mode 100644
index 000000000..1a8810506
--- /dev/null
+++ b/domains/rnv.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ZeroDeaths379",
+ "email": "arnavp651@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/roadblocked.json b/domains/roadblocked.json
new file mode 100644
index 000000000..d4ee94502
--- /dev/null
+++ b/domains/roadblocked.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "roadblockeddev",
+ "email": "roadblocked@skiff.com"
+ },
+ "record": {
+ "CNAME": "roadblocked.github.io"
+ }
+}
diff --git a/domains/robskan.json b/domains/robskan.json
new file mode 100644
index 000000000..a32859b2f
--- /dev/null
+++ b/domains/robskan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Robskan5300",
+ "email": "rrsnijder@yahoo.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/rockstarbuddies.json b/domains/rockstarbuddies.json
new file mode 100644
index 000000000..851091c22
--- /dev/null
+++ b/domains/rockstarbuddies.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "RockstarBuddies",
+ "email": "yourrockingbuddy@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/rohansharma.json b/domains/rohansharma.json
new file mode 100644
index 000000000..a9a47bcc7
--- /dev/null
+++ b/domains/rohansharma.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "rohansharma-developer",
+ "email": "rohansharma.developer@gmail.com"
+ },
+ "record": {
+ "URL": "https://rohansharma.me"
+ }
+}
diff --git a/domains/ron.json b/domains/ron.json
new file mode 100644
index 000000000..ba6fba4b5
--- /dev/null
+++ b/domains/ron.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "itsrn",
+ "email": "shalom@itsron.space"
+ },
+ "record": {
+ "CNAME": "itsrn.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/royalahmed.json b/domains/royalahmed.json
new file mode 100644
index 000000000..b006ea4f7
--- /dev/null
+++ b/domains/royalahmed.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "RoyalAhmed347",
+ "email": "bahiahmed347@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
\ No newline at end of file
diff --git a/domains/rpj.json b/domains/rpj.json
index 1d090920f..9188386e3 100644
--- a/domains/rpj.json
+++ b/domains/rpj.json
@@ -1,6 +1,6 @@
{
"description": "Portfolio website",
- "repo": "https://rpj09.github.io/Portfolio/",
+ "repo": "https://rpj09.github.io/Portfolio",
"owner": {
"username": "rpj09",
"email": "singhripunjay09@gmail.com",
@@ -9,4 +9,4 @@
"record": {
"CNAME": "rpj09.github.io"
}
-}
+}
diff --git a/domains/rrrokhtar.json b/domains/rrrokhtar.json
index fb469485f..8fd8b3235 100644
--- a/domains/rrrokhtar.json
+++ b/domains/rrrokhtar.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "rrrokhtar.github.io"
}
-}
+}
diff --git a/domains/rtxeon.json b/domains/rtxeon.json
new file mode 100644
index 000000000..18ffbd525
--- /dev/null
+++ b/domains/rtxeon.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Rtxeon",
+ "email": "AdityaSuthar13@outlook.com"
+ },
+ "record": {
+ "CNAME": "rtxeon-portfolio-isadev.onrender.com"
+ }
+}
diff --git a/domains/rubensalinas.json b/domains/rubensalinas.json
new file mode 100644
index 000000000..ecd78a03c
--- /dev/null
+++ b/domains/rubensalinas.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "rubensalinas",
+ "email": "ruben.asg@gmail.com"
+ },
+ "record": {
+ "A": ["154.53.55.74"]
+ }
+}
diff --git a/domains/rubiin.json b/domains/rubiin.json
new file mode 100644
index 000000000..4be5a80da
--- /dev/null
+++ b/domains/rubiin.json
@@ -0,0 +1,10 @@
+{
+ "description": "Rubin's Website",
+ "owner": {
+ "username": "rubiin",
+ "email": "roobin.bhandari@gmail.com"
+ },
+ "record": {
+ "CNAME": "rubiin.pages.dev"
+ }
+}
diff --git a/domains/rudra.json b/domains/rudra.json
index a39151cb4..c37c3dcf9 100644
--- a/domains/rudra.json
+++ b/domains/rudra.json
@@ -1,14 +1,12 @@
{
- "owner": {
- "username": "FireHead90544",
- "email": "rudranshjoshi1806@gmail.com",
- "discord": "#2022"
- },
- "description": "Domain for my personal portfolio written w/ Django & TailwindCSS",
- "repo": "https://github.com/FireHead90544/rudra-django/",
- "record": {
- "A": [
- "20.219.132.8"
- ]
- }
+ "owner": {
+ "username": "FireHead90544",
+ "email": "rudranshjoshi1806@gmail.com",
+ "discord": "#2022"
+ },
+ "description": "Domain for my personal portfolio written w/ Django & TailwindCSS",
+ "repo": "https://github.com/FireHead90544/rudra-django",
+ "record": {
+ "A": ["20.219.132.8"]
+ }
}
diff --git a/domains/rudransh.json b/domains/rudransh.json
new file mode 100644
index 000000000..380dd0e4c
--- /dev/null
+++ b/domains/rudransh.json
@@ -0,0 +1,13 @@
+{
+ "owner": {
+ "username": "rudransh-shrivastava",
+ "email": "rudransh.shr@gmail.com",
+ "discord": "rudransh.bf",
+ "twitter": "rudranshstwt"
+ },
+ "description": "Domain for my personal portfolio written w/ Html, CSS and JavaScript",
+ "repo": "https://github.com/rudransh-shrivastava/rudransh-shrivastava.github.io/",
+ "record": {
+ "A": ["140.238.251.183"]
+ }
+}
diff --git a/domains/ruu3f.json b/domains/ruu3f.json
index b502cb4cc..0ced44472 100644
--- a/domains/ruu3f.json
+++ b/domains/ruu3f.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "Ruu3f",
- "email": "",
- "discord": "Ruu3f#7942"
- },
- "record": {
- "CNAME": "ruu3f.github.io"
- }
+ "owner": {
+ "username": "Ruu3f",
+ "email": "",
+ "discord": "Ruu3f#7942"
+ },
+ "record": {
+ "CNAME": "ruu3f.github.io"
+ }
}
diff --git a/domains/ryan.ginut.json b/domains/ryan.ginut.json
index cbf4b6c8a..f394ad535 100644
--- a/domains/ryan.ginut.json
+++ b/domains/ryan.ginut.json
@@ -5,6 +5,6 @@
},
"record": {
- "MX": ["mx1.improvmx.com","mx2.improvmx.com"]
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"]
}
}
diff --git a/domains/ryan.json b/domains/ryan.json
deleted file mode 100644
index 508f57fee..000000000
--- a/domains/ryan.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "is-a.dev domain",
- "repo": "https://github.com/ryan0204",
- "owner": {
- "username": "Ryan0204",
- "email": "ryan@ssrv.xyz"
- },
- "record": {
- "URL": "https://ssrv.xyz"
- }
-}
diff --git a/domains/ryanzam.json b/domains/ryanzam.json
new file mode 100644
index 000000000..5754f2a49
--- /dev/null
+++ b/domains/ryanzam.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ryanzam",
+ "email": "ryanzam2005@yahoo.com"
+ },
+ "record": {
+ "CNAME": "icy-coast-0d7690d03.3.azurestaticapps.net"
+ }
+}
diff --git a/domains/ryo.json b/domains/ryo.json
new file mode 100644
index 000000000..345c40265
--- /dev/null
+++ b/domains/ryo.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "LLKO101",
+ "email": "yo1sefooop@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ryun.json b/domains/ryun.json
new file mode 100644
index 000000000..1bfae5a46
--- /dev/null
+++ b/domains/ryun.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ryun",
+ "email": "humtech@gmail.com"
+ },
+ "record": {
+ "CNAME": "humboldtweb.com"
+ }
+}
diff --git a/domains/s4ib0t.json b/domains/s4ib0t.json
new file mode 100644
index 000000000..c0dddb4f2
--- /dev/null
+++ b/domains/s4ib0t.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Hillzacky",
+ "email": "Hilm4nsyah@gmail.com",
+ "discord": "830349326785314846"
+ },
+
+ "record": {
+ "MX": ["mx1.forwardemail.net"]
+ }
+}
diff --git a/domains/s4il.json b/domains/s4il.json
index 4df612bb4..0c72d59e3 100644
--- a/domains/s4il.json
+++ b/domains/s4il.json
@@ -5,6 +5,6 @@
"email": "s4il.teacher.scratch@gmail.com"
},
"record": {
- "CNAME": "s4il.repl.co"
+ "CNAME": "a765d103-b175-43ba-b8ef-8c541cb7d0b3.id.repl.co"
}
}
diff --git a/domains/saahil.json b/domains/saahil.json
index 9c0db343d..0016c12cc 100644
--- a/domains/saahil.json
+++ b/domains/saahil.json
@@ -1,10 +1,9 @@
{
- "description": "this is my about me page, - neongamerbot",
"owner": {
- "username": "neongamerbot",
- "email": "saahilattud@gmail.com"
+ "username": "NeonGamerBot-QK",
+ "email": "neon+domain@saahild.com"
},
"record": {
- "CNAME": "a58b11f7-e44a-4ebc-811d-22105a51b9b7.repl.co"
+ "A": ["185.250.37.86"]
}
}
diff --git a/domains/saatvik.json b/domains/saatvik.json
new file mode 100644
index 000000000..4dfeac60c
--- /dev/null
+++ b/domains/saatvik.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "atharvalt",
+ "email": "beast.gaming1099@gmail.com"
+ },
+ "record": {
+ "CNAME": "atharvaupadhyay.github.io"
+ }
+}
diff --git a/domains/sadiz.json b/domains/sadiz.json
new file mode 100644
index 000000000..9943a93fa
--- /dev/null
+++ b/domains/sadiz.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Sadishru",
+ "email": "hellosadish@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/saeful.json b/domains/saeful.json
new file mode 100644
index 000000000..d2f484458
--- /dev/null
+++ b/domains/saeful.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "saefulbarkah",
+ "email": "saefulbarkah03@gmail.com"
+ },
+ "record": {
+ "URL": "https://eful.netlify.app"
+ }
+}
diff --git a/domains/safin.json b/domains/safin.json
deleted file mode 100644
index cc95b0ccf..000000000
--- a/domains/safin.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Safin's is-a-dev domain!",
- "repo": "https://github.com/safinsingh",
- "owner": {
- "username": "safinsingh",
- "email": "safin.singh@gmail.com"
- },
- "record": {
- "URL": "https://safin.dev"
- }
-}
diff --git a/domains/sai-mehar.json b/domains/sai-mehar.json
new file mode 100644
index 000000000..c5af18fac
--- /dev/null
+++ b/domains/sai-mehar.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "sai-mehar",
+ "email": "saimehar2005@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/saifrahman.json b/domains/saifrahman.json
index 428c1a6f5..a2d73093a 100644
--- a/domains/saifrahman.json
+++ b/domains/saifrahman.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "saifrahmn.github.io"
}
-}
+}
diff --git a/domains/saiganeshganoju.json b/domains/saiganeshganoju.json
new file mode 100644
index 000000000..4d73b2aa7
--- /dev/null
+++ b/domains/saiganeshganoju.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "saiganesh0084",
+ "email": "saiganeshganoju@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/saikat.json b/domains/saikat.json
new file mode 100644
index 000000000..77709d152
--- /dev/null
+++ b/domains/saikat.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "mirzasaikatahmmed",
+ "email": "contact@saikat.com.bd"
+ },
+
+ "record": {
+ "CNAME": "saikat.com.bd"
+ }
+}
diff --git a/domains/sameer.json b/domains/sameer.json
new file mode 100644
index 000000000..000fd7678
--- /dev/null
+++ b/domains/sameer.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "carnotweat",
+ "email": "jasitis@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/samet.json b/domains/samet.json
index 74edf7498..a9b912db7 100644
--- a/domains/samet.json
+++ b/domains/samet.json
@@ -5,7 +5,7 @@
"username": "Samett",
"email": "sametak3210@gmail.com",
"discord": "Samett#8519",
- "discordID": "894594782897262635"
+ "discord-id": "894594782897262635"
},
"record": {
diff --git a/domains/sami.json b/domains/sami.json
new file mode 100644
index 000000000..f7bcef69b
--- /dev/null
+++ b/domains/sami.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "obstructed",
+ "email": "scamstur@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
\ No newline at end of file
diff --git a/domains/sanelkukic.json b/domains/sanelkukic.json
deleted file mode 100644
index bc02cdc58..000000000
--- a/domains/sanelkukic.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Sanel's website for his open-source projects and stuff",
- "repo": "https://github.com/sanelk2004",
- "owner": {
- "username": "sanelk2004",
- "email": "sanelk2004@icloud.com"
- },
- "record": {
- "URL": "https://sanelkukic.us.eu.org"
- }
-}
diff --git a/domains/sanidhya.json b/domains/sanidhya.json
index aa83c3c2d..212ea4550 100644
--- a/domains/sanidhya.json
+++ b/domains/sanidhya.json
@@ -3,11 +3,11 @@
"repo": "https://github.com/CoderSoNet/codersonetwebsite.github.io",
"owner": {
"username": "CoderSoNet",
- "email": "support@sanidhya.is-a.dev",
+ "email": "sonetspprt@gmail.com",
"twitter": "ShanuUniyal_On",
"discord": "781127625263415326"
},
"record": {
- "CNAME": "cc997d0e-83bb-487d-bb27-acbc00b59adb.id.repl.co"
+ "CNAME": "3303bc99-e9eb-489a-96c3-138398c9dae5.id.repl.co"
}
}
diff --git a/domains/sanni.json b/domains/sanni.json
new file mode 100644
index 000000000..af6740e27
--- /dev/null
+++ b/domains/sanni.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sannidhyaroy",
+ "email": "roysannidhya@gmail.com"
+ },
+ "record": {
+ "CNAME": "sannidhya.pages.dev"
+ }
+}
diff --git a/domains/sannidhya.json b/domains/sannidhya.json
new file mode 100644
index 000000000..882b46ae1
--- /dev/null
+++ b/domains/sannidhya.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sannidhyaroy",
+ "email": "roysannidhya@gmail.com"
+ },
+ "record": {
+ "URL": "https://sanni.is-a.dev"
+ }
+}
diff --git a/domains/saqlainbrawl.json b/domains/saqlainbrawl.json
new file mode 100644
index 000000000..ec50cc74e
--- /dev/null
+++ b/domains/saqlainbrawl.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "SaqlainBrawl",
+ "email": "saqlainbrawl@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sarang.json b/domains/sarang.json
new file mode 100644
index 000000000..f13285897
--- /dev/null
+++ b/domains/sarang.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "i-supermario",
+ "email": "sarang1699@gmail.com"
+ },
+ "record": {
+ "URL": "https://main--sarang-portfolio-site.netlify.app"
+ }
+}
diff --git a/domains/sarcaster.json b/domains/sarcaster.json
new file mode 100644
index 000000000..a8c19e256
--- /dev/null
+++ b/domains/sarcaster.json
@@ -0,0 +1,13 @@
+{
+ "description": "Personal Website of Sarcaster",
+ "repo": "https://github.com/sarcasterXO/sarcasterxo.github.io",
+ "owner": {
+ "username": "sarcasterXO",
+ "email": "sarcasteryt@gmail.com",
+ "twitter": "sarcasterXO",
+ "discord": "sarcasterxo"
+ },
+ "record": {
+ "CNAME": "sarcasterxo.github.io"
+ }
+}
diff --git a/domains/saturn-net.json b/domains/saturn-net.json
new file mode 100644
index 000000000..61e34301a
--- /dev/null
+++ b/domains/saturn-net.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "LCDLED",
+ "email": "TheCatatomic@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/satvikg7.json b/domains/satvikg7.json
new file mode 100644
index 000000000..15654ad31
--- /dev/null
+++ b/domains/satvikg7.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "satvikg7",
+ "email": "satvik.g.code@gmail.com"
+ },
+ "record": {
+ "CNAME": "satvikg7.gitlab.io"
+ }
+}
diff --git a/domains/satya.json b/domains/satya.json
new file mode 100644
index 000000000..8998daf00
--- /dev/null
+++ b/domains/satya.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "satyaidk",
+ "email": "nikadisatyanarayana@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/saumon.json b/domains/saumon.json
new file mode 100644
index 000000000..2040d27f0
--- /dev/null
+++ b/domains/saumon.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "saumonarcenciel",
+ "email": "viala38000@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/saurabh-kirve.json b/domains/saurabh-kirve.json
new file mode 100644
index 000000000..afd47a19a
--- /dev/null
+++ b/domains/saurabh-kirve.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "BerzCode",
+ "email": "saurabhkirve@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/saurabhkirve.json b/domains/saurabhkirve.json
new file mode 100644
index 000000000..07906eb42
--- /dev/null
+++ b/domains/saurabhkirve.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "BerzCode",
+ "email": "saurabhkirve@gmail.com"
+ },
+ "record": {
+ "CNAME": "berzcode.github.io"
+ }
+}
diff --git a/domains/sayantan.json b/domains/sayantan.json
new file mode 100644
index 000000000..138802c0b
--- /dev/null
+++ b/domains/sayantan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "legendsayantan",
+ "email": "legendsayantanpaul@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/scfp.json b/domains/scfp.json
index 51fbe8372..e87d18a2f 100644
--- a/domains/scfp.json
+++ b/domains/scfp.json
@@ -3,7 +3,7 @@
"owner": {
"username": "cfpwastaken",
"email": "",
- "discord": "cfp#7174"
+ "discord": "cfp"
},
"record": {
"CNAME": "cfp.gotdns.ch"
diff --git a/domains/school.json b/domains/school.json
new file mode 100644
index 000000000..5fe751c74
--- /dev/null
+++ b/domains/school.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "PsxScriptsW",
+ "email": "jacob.blits@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/scor32k.json b/domains/scor32k.json
new file mode 100644
index 000000000..dd1a67730
--- /dev/null
+++ b/domains/scor32k.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "scorcism",
+ "email": "abhishekpathak1720@gmail.com"
+ },
+ "record": {
+ "URL": "https://scor32k.vercel.app/"
+ }
+}
diff --git a/domains/scorcism.json b/domains/scorcism.json
new file mode 100644
index 000000000..04606b840
--- /dev/null
+++ b/domains/scorcism.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "scorcism",
+ "email": "abhishekpathak1720@gmail.com"
+ },
+ "record": {
+ "URL": "https://github.com/scorcism"
+ }
+}
diff --git a/domains/scott.json b/domains/scott.json
new file mode 100644
index 000000000..426cc7e7f
--- /dev/null
+++ b/domains/scott.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "scott1991",
+ "email": "cakepbm@gmail.com"
+ },
+ "record": {
+ "A": ["128.22.136.213"]
+ }
+}
diff --git a/domains/sebastian.json b/domains/sebastian.json
index 3bf831ee6..82bb17628 100644
--- a/domains/sebastian.json
+++ b/domains/sebastian.json
@@ -4,12 +4,7 @@
"email": "wwpoqpua@anonaddy.me"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com -all"
}
diff --git a/domains/sedat.json b/domains/sedat.json
new file mode 100644
index 000000000..07c775c62
--- /dev/null
+++ b/domains/sedat.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "sedat342042",
+ "email": "sedat342042@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/seizedforge.json b/domains/seizedforge.json
new file mode 100644
index 000000000..faaff9bd3
--- /dev/null
+++ b/domains/seizedforge.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "GamebringerDev",
+ "email": "gamebringerdev@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/selenite.json b/domains/selenite.json
new file mode 100644
index 000000000..1943cc900
--- /dev/null
+++ b/domains/selenite.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "skysthelimitt",
+ "email": "skysth3limit@pm.me"
+ },
+ "record": {
+ "CNAME": "selenite.pages.dev"
+ }
+}
diff --git a/domains/semant.json b/domains/semant.json
index 366e13b09..8ad7632e7 100644
--- a/domains/semant.json
+++ b/domains/semant.json
@@ -6,12 +6,7 @@
"email": "contact@semant.is-a.dev"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/sematary.json b/domains/sematary.json
new file mode 100644
index 000000000..dc3f098bc
--- /dev/null
+++ b/domains/sematary.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "h3artcrushz",
+ "email": "egokillerthusky@gmail.com"
+ },
+ "record": {
+ "CNAME": "b7297ef8-036a-4483-a5b3-bbfa441ba7fc.id.repl.co"
+ }
+}
diff --git a/domains/senzore.json b/domains/senzore.json
new file mode 100644
index 000000000..39dbb2af0
--- /dev/null
+++ b/domains/senzore.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SanUwU",
+ "email": "sanjayakunz@gmail.com"
+ },
+ "record": {
+ "URL": "https://senzore.carrd.co"
+ }
+}
diff --git a/domains/sephrost.json b/domains/sephrost.json
new file mode 100644
index 000000000..3139d0568
--- /dev/null
+++ b/domains/sephrost.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Sephrost",
+ "email": "lorenzato.fabi13@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/seria.json b/domains/seria.json
index 01abb4362..c8debfa29 100644
--- a/domains/seria.json
+++ b/domains/seria.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "seriaati.github.io"
}
-}
+}
diff --git a/domains/serstars.json b/domains/serstars.json
index 6d284c553..15eb6cb34 100644
--- a/domains/serstars.json
+++ b/domains/serstars.json
@@ -8,4 +8,4 @@
"record": {
"CNAME": "serstars.github.io"
}
-}
+}
diff --git a/domains/server.chiragnahata.json b/domains/server.chiragnahata.json
new file mode 100644
index 000000000..a23664d55
--- /dev/null
+++ b/domains/server.chiragnahata.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/server.drpleaserespect.json b/domains/server.drpleaserespect.json
new file mode 100644
index 000000000..a05071b8d
--- /dev/null
+++ b/domains/server.drpleaserespect.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "DrPleaseRespect",
+ "email": "juliannayr2007@gmail.com"
+ },
+ "record": {
+ "A": ["64.93.80.13"]
+ }
+}
diff --git a/domains/server.sx9.json b/domains/server.sx9.json
new file mode 100644
index 000000000..b7938125c
--- /dev/null
+++ b/domains/server.sx9.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "SX-9",
+ "email": "satriakrach@gmail.com"
+ },
+ "record": {
+ "A": ["159.89.214.31"],
+ "TXT": "authkeyfp=SHA256:71tAcZSCVkBU0hFT/HYO4jt/ZWwSa7/br0nvvf3ustY"
+ }
+}
diff --git a/domains/services.not-ethan.json b/domains/services.not-ethan.json
new file mode 100644
index 000000000..d50f76c5c
--- /dev/null
+++ b/domains/services.not-ethan.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "not-a-ethan",
+ "email": "",
+ "discord": "not_ethan."
+ },
+ "record": {
+ "CNAME": "not-a-ethan.github.io"
+ }
+}
diff --git a/domains/sev.json b/domains/sev.json
new file mode 100644
index 000000000..8dc8e5252
--- /dev/null
+++ b/domains/sev.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Mai1ii",
+ "email": "micomacabali14@gmail.com"
+ },
+ "record": {
+ "URL": "https://bio.link/sevi"
+ }
+}
diff --git a/domains/sgm-uptime.json b/domains/sgm-uptime.json
new file mode 100644
index 000000000..b9ff04d4a
--- /dev/null
+++ b/domains/sgm-uptime.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ShadowGaming100",
+ "email": "workspace.shadowgaming@gmail.com"
+ },
+ "record": {
+ "CNAME": "f5cbbab2-d3bb-4468-8513-976647809749.id.repl.co"
+ }
+}
diff --git a/domains/sgogov.json b/domains/sgogov.json
new file mode 100644
index 000000000..376ab1606
--- /dev/null
+++ b/domains/sgogov.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "stekatag",
+ "email": "stefangogov@proton.me"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sh1nyhunt3r27.json b/domains/sh1nyhunt3r27.json
new file mode 100644
index 000000000..a13decd1f
--- /dev/null
+++ b/domains/sh1nyhunt3r27.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Sh1nYhUnT3R27",
+ "email": "Jom834827@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/shabnam.json b/domains/shabnam.json
new file mode 100644
index 000000000..9c5b61bd1
--- /dev/null
+++ b/domains/shabnam.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "CycloneAddons",
+ "email": "cycloneaddon@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/shadow.json b/domains/shadow.json
index a1eb095e1..75ddb74cd 100644
--- a/domains/shadow.json
+++ b/domains/shadow.json
@@ -5,6 +5,6 @@
},
"description": "Official shadowv2 team page",
"record": {
- "CNAME": "ec7a6f39-6070-4d8c-a1a3-ab81fa6a2b85.id.repl.co"
+ "A": ["34.132.134.162"]
}
}
diff --git a/domains/shadowalker.json b/domains/shadowalker.json
new file mode 100644
index 000000000..ed06ecd9d
--- /dev/null
+++ b/domains/shadowalker.json
@@ -0,0 +1,11 @@
+{
+ "description": "This domain will be used for my personal website.",
+ "repo": "https://github.com/shadowisdev/shadowisdev",
+ "owner": {
+ "username": "shadowisdev",
+ "email": "shadowisdev@gmail.com"
+ },
+ "record": {
+ "CNAME": "shadowisdev.github.io"
+ }
+}
diff --git a/domains/shake.json b/domains/shake.json
new file mode 100644
index 000000000..cc7b07b43
--- /dev/null
+++ b/domains/shake.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "wansies",
+ "email": "taio6@duck.com"
+ },
+ "record": {
+ "URL": "https://shake-1.gitbook.io/shake-documentation"
+ }
+}
diff --git a/domains/shaquib.json b/domains/shaquib.json
new file mode 100644
index 000000000..c3595cf3f
--- /dev/null
+++ b/domains/shaquib.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "notshaquib",
+ "email": "mdshaaaquib@proton.me"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sharafat.json b/domains/sharafat.json
index f1ca4e131..3a7756cb8 100644
--- a/domains/sharafat.json
+++ b/domains/sharafat.json
@@ -9,4 +9,3 @@
"CNAME": "sharafat.pages.dev"
}
}
-
diff --git a/domains/sharan.json b/domains/sharan.json
new file mode 100644
index 000000000..a987bb6e0
--- /dev/null
+++ b/domains/sharan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "sharan-218",
+ "email": "yenugulasharan8019@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sharath3.json b/domains/sharath3.json
new file mode 100644
index 000000000..284dde47e
--- /dev/null
+++ b/domains/sharath3.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Sharathchandra345",
+ "email": "csharathchandra3@gmail.com"
+ },
+ "record": {
+ "URL": "https://sharathweb.netlify.app/"
+ }
+}
diff --git a/domains/sharathchandra.json b/domains/sharathchandra.json
new file mode 100644
index 000000000..50e1d03fe
--- /dev/null
+++ b/domains/sharathchandra.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Sharathchandra345",
+ "email": "csharathchandra3@gmail.com"
+ },
+ "record": {
+ "URL": "https://csharath.netlify.app/"
+ }
+}
diff --git a/domains/shashankag.json b/domains/shashankag.json
new file mode 100644
index 000000000..960bf16b1
--- /dev/null
+++ b/domains/shashankag.json
@@ -0,0 +1,11 @@
+{
+ "description": "Portfolio",
+ "repo": "https://github.com/ershashankgit/portfolio",
+ "owner": {
+ "username": "ershashankgit",
+ "email": "contact@shashank.my.id"
+ },
+ "record": {
+ "CNAME": "ershashankgit.github.io"
+ }
+}
diff --git a/domains/shayokh.json b/domains/shayokh.json
new file mode 100644
index 000000000..8c5882a04
--- /dev/null
+++ b/domains/shayokh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ShayokhShorfuddin",
+ "email": "shayokhshuvro14@gmail.com"
+ },
+ "record": {
+ "CNAME": "shayokhshorfuddin.github.io"
+ }
+}
diff --git a/domains/shays.json b/domains/shays.json
index 7c430ab30..cc9b31ccc 100644
--- a/domains/shays.json
+++ b/domains/shays.json
@@ -6,6 +6,6 @@
"email": "SHays24@student.sacs.nsw.edu.au"
},
"record": {
- "CNAME": "SHays24.github.io"
+ "CNAME": "shays24.github.io"
}
}
diff --git a/domains/shell.json b/domains/shell.json
new file mode 100644
index 000000000..d9c24741a
--- /dev/null
+++ b/domains/shell.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "JiuZhiDa",
+ "email": "shll@tuta.io"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/shept.json b/domains/shept.json
index d82397a5b..179abe5fb 100644
--- a/domains/shept.json
+++ b/domains/shept.json
@@ -1,11 +1,19 @@
{
- "description": "An aboutme page for Shept",
- "repo": "https://github.com/mcshept",
"owner": {
"username": "mcshept",
- "email": "shept@dasshept.tech"
+ "email": "maxiheinrich007@yahoo.com"
},
"record": {
- "CNAME": "mcshept.github.io"
+ "A": [
+ "185.199.108.153",
+ "185.199.109.153",
+ "185.199.110.153",
+ "185.199.111.153"
+ ],
+ "MX": [
+ "mx1.improvmx.com",
+ "mx2.improvmx.com"
+ ],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
}
}
diff --git a/domains/shevon.json b/domains/shevon.json
new file mode 100644
index 000000000..bd1ab4b05
--- /dev/null
+++ b/domains/shevon.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ShevonKuan",
+ "email": "331749486@qq.com"
+ },
+ "record": {
+ "A": ["47.243.44.66"]
+ }
+}
diff --git a/domains/shiba.json b/domains/shiba.json
new file mode 100644
index 000000000..cc9d2f0cc
--- /dev/null
+++ b/domains/shiba.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "soggycatalltheway",
+ "email": "hurvzee+partizao@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/shift.json b/domains/shift.json
new file mode 100644
index 000000000..9f915744b
--- /dev/null
+++ b/domains/shift.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "mkshift",
+ "email": "mkshift@tuta.io"
+ },
+ "record": {
+ "CNAME": "mkshift.github.io"
+ }
+}
diff --git a/domains/shin.json b/domains/shin.json
index 030f21f70..c544a6f56 100644
--- a/domains/shin.json
+++ b/domains/shin.json
@@ -7,12 +7,7 @@
"twitter": "tachib_shin"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
"TXT": "forward-email=tachibshin@duck.com"
}
diff --git a/domains/shing.json b/domains/shing.json
new file mode 100644
index 000000000..d2a324827
--- /dev/null
+++ b/domains/shing.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "ShingSemicolon",
+ "email": "Shing.XD.0602@gmail.com"
+ },
+ "record": {
+ "A": ["129.80.190.178"],
+ "AAAA": ["2603:c020:400d:3e89:2d5a:b8a3:1999:49f"]
+ }
+}
diff --git a/domains/shivathmika.json b/domains/shivathmika.json
new file mode 100644
index 000000000..5be4f12a2
--- /dev/null
+++ b/domains/shivathmika.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Shivathmika20",
+ "email": "yelurishivathmika@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/shreyasitb.json b/domains/shreyasitb.json
new file mode 100644
index 000000000..c99534432
--- /dev/null
+++ b/domains/shreyasitb.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Shreyas-ITB",
+ "email": "rstechbros@gmail.com"
+ },
+ "record": {
+ "CNAME": "shreyas-itb.github.io"
+ }
+}
diff --git a/domains/shuawe.json b/domains/shuawe.json
new file mode 100644
index 000000000..1d88f5ec9
--- /dev/null
+++ b/domains/shuawe.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "shuawe",
+ "email": "shuaweee@gmail.com"
+ },
+ "record": {
+ "CNAME": "shuawe.railway.app"
+ }
+}
diff --git a/domains/shubhamkumar.json b/domains/shubhamkumar.json
new file mode 100644
index 000000000..d17b7727e
--- /dev/null
+++ b/domains/shubhamkumar.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "shubham-kumar-2004",
+ "email": "shubham04122004@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
diff --git a/domains/shubhamverma.json b/domains/shubhamverma.json
new file mode 100644
index 000000000..0875cd397
--- /dev/null
+++ b/domains/shubhamverma.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Stroller15",
+ "email": "shubhamverma6351@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/shuriken.json b/domains/shuriken.json
new file mode 100644
index 000000000..e761f35de
--- /dev/null
+++ b/domains/shuriken.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "005sunnysingh",
+ "email": "005sunnysingh@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+ }
\ No newline at end of file
diff --git a/domains/sia.json b/domains/sia.json
new file mode 100644
index 000000000..377c9e4a5
--- /dev/null
+++ b/domains/sia.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "sujandeb",
+ "email": "work@sujandeb.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/siddharthtewari.json b/domains/siddharthtewari.json
new file mode 100644
index 000000000..fe5dbf434
--- /dev/null
+++ b/domains/siddharthtewari.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "sid-008",
+ "email": "siddharthtewari14@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sife.json b/domains/sife.json
new file mode 100644
index 000000000..70fcb9260
--- /dev/null
+++ b/domains/sife.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "Sife-shuo",
+ "email": "sifed@qq.com"
+ },
+
+ "record": {
+ "A": ["185.199.110.153", "185.199.109.153", "185.199.108.153", "185.199.111.153"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all",
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"]
+ }
+}
diff --git a/domains/sigmassimo.json b/domains/sigmassimo.json
new file mode 100644
index 000000000..6b64a90db
--- /dev/null
+++ b/domains/sigmassimo.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "sigmassimo",
+ "email": "maximilian-schreiber271@t-online.de"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/silicoflare.json b/domains/silicoflare.json
new file mode 100644
index 000000000..06da26f04
--- /dev/null
+++ b/domains/silicoflare.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "SilicoFlare",
+ "email": "silicoflare@gmail.com",
+ "discord": "832485162847305728"
+ },
+
+ "record": {
+ "CNAME": "silicoflare.pages.dev"
+ }
+}
diff --git a/domains/simple.json b/domains/simple.json
new file mode 100644
index 000000000..83310c7ba
--- /dev/null
+++ b/domains/simple.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "reecebenson",
+ "email": "me@reecebenson.me",
+ "discord": "166705872473423872"
+ },
+
+ "record": {
+ "CNAME": "simple.gdn"
+ }
+}
diff --git a/domains/simplebank.json b/domains/simplebank.json
index 4b86f6feb..023e8fe85 100644
--- a/domains/simplebank.json
+++ b/domains/simplebank.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "jotabf",
- "email": "jotabe.150@gmail.com"
- },
- "record": {
- "CNAME": "a53880df71ece4c268070f082ce00d37-1008813240.sa-east-1.elb.amazonaws.com"
- }
+ "owner": {
+ "username": "jotabf",
+ "email": "jotabe.150@gmail.com"
+ },
+ "record": {
+ "CNAME": "a53880df71ece4c268070f082ce00d37-1008813240.sa-east-1.elb.amazonaws.com"
+ }
}
diff --git a/domains/sjlptpsnh.json b/domains/sjlptpsnh.json
new file mode 100644
index 000000000..5436915e6
--- /dev/null
+++ b/domains/sjlptpsnh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "sjlptpsnh",
+ "email": "sujalpratapsingh70@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/skifli.json b/domains/skifli.json
index 1d561080f..287419601 100644
--- a/domains/skifli.json
+++ b/domains/skifli.json
@@ -1,12 +1,12 @@
{
- "description": "Skifli's portfolio website",
+ "description": "Portfolio Website",
"repo": "https://github.com/skifli/skifli.github.io",
"owner": {
"username": "skifli",
"email": "",
- "discord": "skifli#8774"
+ "discord": "skifli"
},
"record": {
- "CNAME": "skifli.github.io"
+ "CNAME": "skifli.pages.dev"
}
}
diff --git a/domains/skillz.json b/domains/skillz.json
new file mode 100644
index 000000000..5fe751c74
--- /dev/null
+++ b/domains/skillz.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "PsxScriptsW",
+ "email": "jacob.blits@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/skydiver-web.json b/domains/skydiver-web.json
new file mode 100644
index 000000000..85039945e
--- /dev/null
+++ b/domains/skydiver-web.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "nebula4564",
+ "email": "reeseb1660@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/skyopg.json b/domains/skyopg.json
new file mode 100644
index 000000000..345c40265
--- /dev/null
+++ b/domains/skyopg.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "LLKO101",
+ "email": "yo1sefooop@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/slashed.json b/domains/slashed.json
new file mode 100644
index 000000000..070ccdc7f
--- /dev/null
+++ b/domains/slashed.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "alexfeed1990",
+ "email": "alexfeed1990real@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/smitty119.json b/domains/smitty119.json
new file mode 100644
index 000000000..2e82411bb
--- /dev/null
+++ b/domains/smitty119.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "smitty119",
+ "email": "smittykjohnson@gmail.com"
+ },
+ "record": {
+ "CNAME": "smitty119.github.io"
+ }
+}
diff --git a/domains/smittykjohnson.json b/domains/smittykjohnson.json
new file mode 100644
index 000000000..2e82411bb
--- /dev/null
+++ b/domains/smittykjohnson.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "smitty119",
+ "email": "smittykjohnson@gmail.com"
+ },
+ "record": {
+ "CNAME": "smitty119.github.io"
+ }
+}
diff --git a/domains/snipc.json b/domains/snipc.json
new file mode 100644
index 000000000..3c7284b59
--- /dev/null
+++ b/domains/snipc.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "NotSnipc",
+ "email": "snipc.mail@proton.me"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/snowyid.json b/domains/snowyid.json
index 7c6597d7a..e2f7460ff 100644
--- a/domains/snowyid.json
+++ b/domains/snowyid.json
@@ -8,4 +8,4 @@
"record": {
"URL": "https://homepage-revisiakhir.vercel.app"
}
-}
+}
diff --git a/domains/soap.json b/domains/soap.json
new file mode 100644
index 000000000..f84c811d5
--- /dev/null
+++ b/domains/soap.json
@@ -0,0 +1,11 @@
+{
+ "description": "soap.is-a.dev",
+ "repo": "https://github.com/hmonsterg/hmonsterg.github.io",
+ "owner": {
+ "username": "HmonsterG",
+ "email": "Plzdontgethacked@outlook.com"
+ },
+ "record": {
+ "CNAME": "hmonsterg.github.io"
+ }
+}
diff --git a/domains/soeren.json b/domains/soeren.json
new file mode 100644
index 000000000..099e1cece
--- /dev/null
+++ b/domains/soeren.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "HSoeren",
+ "email": "soeren.helms1@gmail.com"
+ },
+ "record": {
+ "CNAME": "soeren-helms.de"
+ }
+}
diff --git a/domains/soldierp.json b/domains/soldierp.json
new file mode 100644
index 000000000..90e48e005
--- /dev/null
+++ b/domains/soldierp.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Soldierplayz6867",
+ "email": "soldierplayz.tw@gmail.com"
+ },
+ "record": {
+ "CNAME": "da-1.us.hostns.io"
+ }
+}
diff --git a/domains/soothe.json b/domains/soothe.json
new file mode 100644
index 000000000..3035df4e9
--- /dev/null
+++ b/domains/soothe.json
@@ -0,0 +1,12 @@
+{
+ "description": "Soothe.is-a.dev",
+ "repo": "https://github.com/soothe-bot/soothe-bot.github.io",
+ "owner": {
+ "username": "lrmn7",
+ "email": "lrmn.dev@gmail.com",
+ "discord": "romanromannya"
+ },
+ "record": {
+ "CNAME": "soothe-bot.github.io"
+ }
+}
diff --git a/domains/soup.json b/domains/soup.json
new file mode 100644
index 000000000..bea0a34c9
--- /dev/null
+++ b/domains/soup.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "SouperZ",
+ "email": "slxtty.bxtchlol@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sourov-khan-nahid.json b/domains/sourov-khan-nahid.json
index 2acefc029..98bfbfa98 100644
--- a/domains/sourov-khan-nahid.json
+++ b/domains/sourov-khan-nahid.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "SOUROVKHANNAHID",
- "email": "SourovKhanNahid@gmail.com"
- },
- "record": {
- "CNAME": "SOUROVKHANNAHID.github.io"
- }
+ "owner": {
+ "username": "SOUROVKHANNAHID",
+ "email": "SourovKhanNahid@gmail.com"
+ },
+ "record": {
+ "CNAME": "SOUROVKHANNAHID.github.io"
+ }
}
diff --git a/domains/sourtaste000.json b/domains/sourtaste000.json
deleted file mode 100644
index 950016b86..000000000
--- a/domains/sourtaste000.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "sourTaste000",
- "email": "sourtaste000@gmail.com"
- },
- "record": {
- "URL": "https://sourtaste000.dev"
- }
-}
diff --git a/domains/sow.json b/domains/sow.json
new file mode 100644
index 000000000..fb39d5963
--- /dev/null
+++ b/domains/sow.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sowisgone",
+ "email": "therealsnowmercy@gmail.com"
+ },
+ "record": {
+ "URL": "https://sow.lol"
+ }
+}
diff --git a/domains/spa.json b/domains/spa.json
new file mode 100644
index 000000000..958a47c75
--- /dev/null
+++ b/domains/spa.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "stepersy",
+ "email": "stefano.persanoadorno@liceopertini.edu.it"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/spaxly.json b/domains/spaxly.json
new file mode 100644
index 000000000..fae8b72cb
--- /dev/null
+++ b/domains/spaxly.json
@@ -0,0 +1,15 @@
+{
+ "owner": {
+ "username": "Spaxly",
+ "email": "ohmrc2545@gmail.com",
+ "discord": "569920282546929694"
+ },
+
+ "record": {
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
+
+ "MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
+
+ "TXT": "forward-email=ohmrc2545@gmail.com"
+ }
+}
diff --git a/domains/spd.json b/domains/spd.json
new file mode 100644
index 000000000..6793003bb
--- /dev/null
+++ b/domains/spd.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "osakihsieh",
+ "email": "aspdoctor@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/spicywars.json b/domains/spicywars.json
index 46066e12f..9df1b2c73 100644
--- a/domains/spicywars.json
+++ b/domains/spicywars.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "NoodlesWow",
- "email": "noodlesnomm@gmail.com"
- },
- "record": {
- "CNAME": "spicywarsuwu.onrender.com"
- }
+ "owner": {
+ "username": "NoodlesWow",
+ "email": "noodlesnomm@gmail.com"
+ },
+ "record": {
+ "CNAME": "spicywarsuwu.onrender.com"
+ }
}
diff --git a/domains/spyrisk.json b/domains/spyrisk.json
new file mode 100644
index 000000000..22c506f57
--- /dev/null
+++ b/domains/spyrisk.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SpauriRosso",
+ "email": "spy456@zoho.com"
+ },
+ "record": {
+ "URL": "https://spyrisk.fr"
+ }
+}
diff --git a/domains/squaresmp.json b/domains/squaresmp.json
new file mode 100644
index 000000000..93efbb43e
--- /dev/null
+++ b/domains/squaresmp.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "SquareSmp",
+ "email": "squaresmp@asia.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sreevikram.json b/domains/sreevikram.json
index 873a18eeb..241355d9d 100644
--- a/domains/sreevikram.json
+++ b/domains/sreevikram.json
@@ -1,10 +1,12 @@
{
- "owner": {
- "username": "SreevikramR",
- "email": "sreevikram.r@gmail.com",
- "discord": "therealviki"
- },
- "record": {
- "CNAME": "nextjs-production-a65b.up.railway.app"
- }
-}
\ No newline at end of file
+
+ "owner": {
+ "username": "SreevikramR",
+ "email": "sreevikram.r@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+ }
\ No newline at end of file
diff --git a/domains/sreevikramr.json b/domains/sreevikramr.json
index 873a18eeb..b56747c05 100644
--- a/domains/sreevikramr.json
+++ b/domains/sreevikramr.json
@@ -1,10 +1,10 @@
{
"owner": {
- "username": "SreevikramR",
- "email": "sreevikram.r@gmail.com",
- "discord": "therealviki"
+ "username": "SreevikramR",
+ "email": "sreevikram.r@gmail.com",
+ "discord": "therealviki"
},
"record": {
"CNAME": "nextjs-production-a65b.up.railway.app"
}
-}
\ No newline at end of file
+}
diff --git a/domains/sser.json b/domains/sser.json
new file mode 100644
index 000000000..7fc2eb17b
--- /dev/null
+++ b/domains/sser.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "lynicv",
+ "email": "nuffimail33@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sshdgjeienjdje.json b/domains/sshdgjeienjdje.json
new file mode 100644
index 000000000..9c5b61bd1
--- /dev/null
+++ b/domains/sshdgjeienjdje.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "CycloneAddons",
+ "email": "cycloneaddon@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/stacksyz.json b/domains/stacksyz.json
new file mode 100644
index 000000000..e550c067e
--- /dev/null
+++ b/domains/stacksyz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Stacksyz",
+ "email": "thedevmonke@gmail.com"
+ },
+ "record": {
+ "CNAME": "stacksyz.github.io"
+ }
+}
diff --git a/domains/stamina.json b/domains/stamina.json
new file mode 100644
index 000000000..a52bcf209
--- /dev/null
+++ b/domains/stamina.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "ivan100-ivoop",
+ "email": "ivankyosev21@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/stanasx.json b/domains/stanasx.json
new file mode 100644
index 000000000..8b0cdace2
--- /dev/null
+++ b/domains/stanasx.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "stanasxd",
+ "email": "stanasarts@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/static.roadblocked.json b/domains/static.roadblocked.json
new file mode 100644
index 000000000..6ab316063
--- /dev/null
+++ b/domains/static.roadblocked.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "roadblockeddev",
+ "email": "roadblockeddevcontact@skiff.com"
+ },
+ "record": {
+ "CNAME": "static-dju.pages.dev"
+ }
+}
diff --git a/domains/status.cfp.json b/domains/status.cfp.json
index 7f1168f1b..089d39980 100644
--- a/domains/status.cfp.json
+++ b/domains/status.cfp.json
@@ -3,7 +3,7 @@
"owner": {
"username": "cfpwastaken",
"email": "",
- "discord": "cfp#7174"
+ "discord": "cfp"
},
"record": {
"CNAME": "cfp.gotdns.ch"
diff --git a/domains/status.json b/domains/status.json
index b22c83583..9bdeca7ca 100644
--- a/domains/status.json
+++ b/domains/status.json
@@ -4,6 +4,6 @@
"email": "phenax5@gmail.com"
},
"record": {
- "URL": "https://stats.uptimerobot.com/zY4XKIRVzw"
+ "CNAME": "wdhdns.com"
}
}
diff --git a/domains/status.mousemoosz.json b/domains/status.mousemoosz.json
deleted file mode 100644
index 3cec0a3e2..000000000
--- a/domains/status.mousemoosz.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "For statuspage",
- "owner": {
- "username": "MouseMoosz",
- "email": "mousemoosz@protonmail.com"
- },
- "record": {
- "CNAME": "mousemoosz.statuspage.io"
- }
-}
diff --git a/domains/steam.niemiets.json b/domains/steam.niemiets.json
new file mode 100644
index 000000000..0aa8e803f
--- /dev/null
+++ b/domains/steam.niemiets.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Niemiets",
+ "email": "niemiec123123123@gmail.com"
+ },
+ "record": {
+ "URL": "https://steamcommunity.com/id/niemiets/"
+ }
+}
diff --git a/domains/stefdp.json b/domains/stefdp.json
index eec5c59c8..9664d7974 100644
--- a/domains/stefdp.json
+++ b/domains/stefdp.json
@@ -6,7 +6,9 @@
"email": "stefano.delprete.08@gmail.com",
"twitter": "Stef_Del_Prete"
},
- "record": {
- "CNAME": "stef-00012.github.io"
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 mx a:mailx.is-a.dev ip4:217.174.245.249 ~all",
+ "MX": ["mailx.is-a.dev"]
}
}
diff --git a/domains/stellaros.json b/domains/stellaros.json
new file mode 100644
index 000000000..6c986115d
--- /dev/null
+++ b/domains/stellaros.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "jacksoncraft859",
+ "email": "pollardjackson@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/stev.json b/domains/stev.json
new file mode 100644
index 000000000..d9f92082d
--- /dev/null
+++ b/domains/stev.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "yoomiraa",
+ "email": "i@miraaaa.my.id",
+ "discord": "834618584331190343"
+ },
+
+ "record": {
+ "CNAME": "stev.surge.sh"
+ }
+}
diff --git a/domains/stoneleaf-bt.json b/domains/stoneleaf-bt.json
new file mode 100644
index 000000000..2f491a71a
--- /dev/null
+++ b/domains/stoneleaf-bt.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NazerMohamed",
+ "email": "NazerMohamed@gmail.com"
+ },
+ "record": {
+ "A": ["51.89.94.232"]
+ }
+}
diff --git a/domains/stoneleaf-dh.json b/domains/stoneleaf-dh.json
new file mode 100644
index 000000000..2f491a71a
--- /dev/null
+++ b/domains/stoneleaf-dh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NazerMohamed",
+ "email": "NazerMohamed@gmail.com"
+ },
+ "record": {
+ "A": ["51.89.94.232"]
+ }
+}
diff --git a/domains/stoneleaf-pp.json b/domains/stoneleaf-pp.json
new file mode 100644
index 000000000..2f491a71a
--- /dev/null
+++ b/domains/stoneleaf-pp.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "NazerMohamed",
+ "email": "NazerMohamed@gmail.com"
+ },
+ "record": {
+ "A": ["51.89.94.232"]
+ }
+}
diff --git a/domains/store.json b/domains/store.json
new file mode 100644
index 000000000..66bd72ebc
--- /dev/null
+++ b/domains/store.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zarqizoubir",
+ "email": "zarqi.ezzoubair@etu.uae.ac.ma"
+ },
+ "record": {
+ "CNAME": "zarqizoubir.github.io"
+ }
+}
diff --git a/domains/strafe.json b/domains/strafe.json
new file mode 100644
index 000000000..76aac5718
--- /dev/null
+++ b/domains/strafe.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "StrafeCode",
+ "email": "strafecode@gmail.com",
+ "discord": "931243168630972516"
+ },
+
+ "record": {
+ "CNAME": "strafecode.github.io"
+ }
+}
diff --git a/domains/strtsnm.json b/domains/strtsnm.json
new file mode 100644
index 000000000..583239e1a
--- /dev/null
+++ b/domains/strtsnm.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "STRTSNM",
+ "email": "STRTSNM12@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sua.json b/domains/sua.json
index 5f5084bdd..c69187c08 100644
--- a/domains/sua.json
+++ b/domains/sua.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "SamiaIslamSua",
- "email": "SamiaIslamSua@gmail.com"
- },
- "record": {
- "CNAME": "SamiaIslamSua.github.io"
- }
+ "owner": {
+ "username": "SamiaIslamSua",
+ "email": "SamiaIslamSua@gmail.com"
+ },
+ "record": {
+ "CNAME": "SamiaIslamSua.github.io"
+ }
}
diff --git a/domains/sudhan.json b/domains/sudhan.json
deleted file mode 100644
index 04eebfac8..000000000
--- a/domains/sudhan.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "sudhanplayz",
- "email": "sudhanplayz@gmail.com"
- },
- "description": "A Personal Website for me",
- "record": {
- "URL": "https://sudhanplayz.live"
- }
-}
diff --git a/domains/sudip.json b/domains/sudip.json
new file mode 100644
index 000000000..c9a6c1657
--- /dev/null
+++ b/domains/sudip.json
@@ -0,0 +1,12 @@
+{
+ "description": "Host my portfolio website",
+ "repo": "https://github.com/sudipkundu999/sudipkundu",
+ "owner": {
+ "username": "sudipkundu999",
+ "email": "sudipkundu999@gmail.com",
+ "twitter": "sudipkundu999"
+ },
+ "record": {
+ "CNAME": "sudipkundu999.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/suhasdissa.json b/domains/suhasdissa.json
new file mode 100644
index 000000000..7bc739280
--- /dev/null
+++ b/domains/suhasdissa.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SuhasDissa",
+ "email": "suhasdissa@protonmail.com"
+ },
+ "record": {
+ "CNAME": "suhasdissa.github.io"
+ }
+}
diff --git a/domains/sujan.json b/domains/sujan.json
new file mode 100644
index 000000000..377c9e4a5
--- /dev/null
+++ b/domains/sujan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "sujandeb",
+ "email": "work@sujandeb.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sujandeb.json b/domains/sujandeb.json
new file mode 100644
index 000000000..377c9e4a5
--- /dev/null
+++ b/domains/sujandeb.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "sujandeb",
+ "email": "work@sujandeb.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/suki.json b/domains/suki.json
index 226c71c4f..de508eb4e 100644
--- a/domains/suki.json
+++ b/domains/suki.json
@@ -1,13 +1,11 @@
{
- "description": "A cool website",
- "repo": "https://github.com/SukiPlayz/hello-world",
"owner": {
- "username": "SukiPlayz",
- "email": "sukimayoo@outlook.com"
- },
- "record": {
- "A": ["212.193.3.66"],
- "TXT": "v=spf1 a mx ip4:212.193.3.66 ~all",
- "MX": ["panel.crystalcloud.xyz"]
+ "username": "SukiPlayz",
+ "email": "sukimayoo@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
}
-}
diff --git a/domains/suleymanduzgun.json b/domains/suleymanduzgun.json
new file mode 100644
index 000000000..1bfe2135f
--- /dev/null
+++ b/domains/suleymanduzgun.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "suleymanduzgun",
+ "email": "suleymanduzgun@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sunpodder.json b/domains/sunpodder.json
new file mode 100644
index 000000000..0d14a548e
--- /dev/null
+++ b/domains/sunpodder.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "SunPodder",
+ "email": "",
+ "discord": "sunpodder"
+ },
+ "record": {
+ "CNAME": "sunpodder.github.io"
+ }
+}
diff --git a/domains/suptime.is-a.dev.json b/domains/suptime.is-a.dev.json
deleted file mode 100644
index 16236013c..000000000
--- a/domains/suptime.is-a.dev.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "owner": {
- "username": "SaqlainBrawl",
- "email": "saqlainbrawl@gmail.com",
- "note": "This record was created by is-a.dev Discord bot via discord id: 874528188909383680"
- },
-
- "record": {
- "CNAME": "5c270796-2cd0-4236-8e0f-e5d1e45a7f1b.id.repl.co"
-
- }
-}
diff --git a/domains/surv.json b/domains/surv.json
new file mode 100644
index 000000000..d5adf9796
--- /dev/null
+++ b/domains/surv.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SurvExe1Pc",
+ "email": "a_2oo@outlook.com"
+ },
+ "record": {
+ "CNAME": "survexe1pc.github.io"
+ }
+}
diff --git a/domains/sushi.json b/domains/sushi.json
new file mode 100644
index 000000000..b360dd3fb
--- /dev/null
+++ b/domains/sushi.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "sushi-ae",
+ "email": "frapdotpng@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "sushi-ae.github.io"
+ }
+}
diff --git a/domains/sussypranav.json b/domains/sussypranav.json
new file mode 100644
index 000000000..7c2f9073d
--- /dev/null
+++ b/domains/sussypranav.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SussyPranav",
+ "email": "singhgreatpranav@gmail.com"
+ },
+ "record": {
+ "CNAME": "sussypranav.github.io"
+ }
+}
diff --git a/domains/sxe.json b/domains/sxe.json
new file mode 100644
index 000000000..8b0cdace2
--- /dev/null
+++ b/domains/sxe.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "stanasxd",
+ "email": "stanasarts@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/syedomershah.json b/domains/syedomershah.json
new file mode 100644
index 000000000..9131a9b74
--- /dev/null
+++ b/domains/syedomershah.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Syedomershah99",
+ "email": "syedomershah99@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/sylestic.json b/domains/sylestic.json
index 191f96064..15a09742c 100644
--- a/domains/sylestic.json
+++ b/domains/sylestic.json
@@ -1,10 +1,10 @@
{
- "owner": {
- "username": "Sylestic",
- "email": "",
- "discord": "Sylestic#4231"
- },
- "record": {
- "CNAME": "sylestic.github.io"
- }
+ "owner": {
+ "username": "Sylestic",
+ "email": "",
+ "discord": "Sylestic#4231"
+ },
+ "record": {
+ "CNAME": "sylestic.github.io"
+ }
}
diff --git a/domains/syntaxloopers.json b/domains/syntaxloopers.json
new file mode 100644
index 000000000..a23664d55
--- /dev/null
+++ b/domains/syntaxloopers.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/systemm32.json b/domains/systemm32.json
new file mode 100644
index 000000000..3705b668d
--- /dev/null
+++ b/domains/systemm32.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "System32-0101",
+ "email": "didunoxd@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/takase.json b/domains/takase.json
index 3d80740a9..cd1d1399e 100644
--- a/domains/takase.json
+++ b/domains/takase.json
@@ -1,11 +1,11 @@
{
- "description": "Takase's personal website",
- "repo": "https://github.com/takase1121/takase1121.github.io",
- "owner": {
- "username": "takase1121",
- "email": "takase1121@proton.me"
- },
- "record": {
- "CNAME": "takase1121.github.io"
- }
+ "description": "Takase's personal website",
+ "repo": "https://github.com/takase1121/takase1121.github.io",
+ "owner": {
+ "username": "takase1121",
+ "email": "takase1121@proton.me"
+ },
+ "record": {
+ "CNAME": "takase1121.github.io"
+ }
}
diff --git a/domains/talinsharma.json b/domains/talinsharma.json
index 4356bf006..72577e571 100644
--- a/domains/talinsharma.json
+++ b/domains/talinsharma.json
@@ -1,11 +1,9 @@
{
- "owner": {
- "username": "TalinTheDev",
- "email": "",
- "discord": "AlphaMirage#9779"
- },
- "description": "Personal portfolio and website",
- "record": {
- "CNAME": "jl6yvnz2.up.railway.app"
- }
+ "owner": {
+ "username": "TalinTheDev",
+ "email": "talinsharma.dev@gmail.com"
+ },
+ "record": {
+ "CNAME": "talinthedev.github.io"
+ }
}
diff --git a/domains/tamton-aquib.json b/domains/tamton-aquib.json
new file mode 100644
index 000000000..1a4efcd2a
--- /dev/null
+++ b/domains/tamton-aquib.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tamton-aquib",
+ "email": "aquibjavedt007@gmail.com"
+ },
+ "record": {
+ "CNAME": "tamton-aquib.github.io"
+ }
+}
diff --git a/domains/tanish.json b/domains/tanish.json
new file mode 100644
index 000000000..81737f663
--- /dev/null
+++ b/domains/tanish.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hirakotm",
+ "email": "hirakoo@proton.me"
+ },
+ "record": {
+ "CNAME": "hirako-is-really-cool.pages.dev"
+ }
+}
diff --git a/domains/tanishq.json b/domains/tanishq.json
deleted file mode 100644
index f545f13c3..000000000
--- a/domains/tanishq.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "owner": {
- "username": "tanishq-soni",
- "email": "hi@tanishqsoni.me",
- "twitter": "tanishq_soni_"
- },
- "repo": "https://github.com/tanishq-soni/new-portfolio",
- "record": {
- "URL": "https://tanishqsoni.me"
- }
-}
diff --git a/domains/tanmay.json b/domains/tanmay.json
new file mode 100644
index 000000000..42788d7c4
--- /dev/null
+++ b/domains/tanmay.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tanmayagrwl",
+ "email": "tanmayhp78@gmail.com"
+ },
+ "record": {
+ "URL": "https://portfolio-site-nine-silk.vercel.app"
+ }
+}
diff --git a/domains/tanos.json b/domains/tanos.json
index 20fcb2ad9..d131cce0c 100644
--- a/domains/tanos.json
+++ b/domains/tanos.json
@@ -1,11 +1,11 @@
{
- "description": "portfolio website",
- "repo": "https://TacoGit.github.io",
- "owner": {
- "username": "TacoGit",
- "email": "opmijloly@gmail.com"
- },
- "record": {
- "CNAME": "TacoGit.github.io"
- }
+ "description": "portfolio website",
+ "repo": "https://TacoGit.github.io",
+ "owner": {
+ "username": "TacoGit",
+ "email": "opmijloly@gmail.com"
+ },
+ "record": {
+ "CNAME": "TacoGit.github.io"
+ }
}
diff --git a/domains/tanx-009.json b/domains/tanx-009.json
new file mode 100644
index 000000000..55b9ec005
--- /dev/null
+++ b/domains/tanx-009.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "TanX-009",
+ "email": "tanmaymuley009@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "tanx-009.gitlab.io"
+ }
+}
diff --git a/domains/tanyalai.json b/domains/tanyalai.json
index 0dcc79645..556aa308f 100644
--- a/domains/tanyalai.json
+++ b/domains/tanyalai.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "tanyalai.github.io"
}
-}
+}
diff --git a/domains/tarna.json b/domains/tarna.json
deleted file mode 100644
index f94809b47..000000000
--- a/domains/tarna.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "tarna",
- "email": "tarungadiraju123@gmail.com"
- },
- "record": {
- "URL": "https://github.com/tarna"
- }
-}
diff --git a/domains/tayu.json b/domains/tayu.json
deleted file mode 100644
index c9847f281..000000000
--- a/domains/tayu.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "tayudev",
- "email": "mizuto.discord@gmail.com"
- },
- "record": {
- "URL": "https://tayu25.netlify.app"
- }
-}
diff --git a/domains/tazer.json b/domains/tazer.json
new file mode 100644
index 000000000..9d74de274
--- /dev/null
+++ b/domains/tazer.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ajtazer",
+ "email": "ajcoolx619@gmail.com"
+ },
+ "record": {
+ "URL": "https://www.snapchat.com/add/ajtazer"
+ }
+}
diff --git a/domains/tazmyan.json b/domains/tazmyan.json
new file mode 100644
index 000000000..b654817b3
--- /dev/null
+++ b/domains/tazmyan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Tazmyan",
+ "email": "tikpatka@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/tcxone.json b/domains/tcxone.json
new file mode 100644
index 000000000..c0efe0e54
--- /dev/null
+++ b/domains/tcxone.json
@@ -0,0 +1,12 @@
+{
+ "description": "Personal homepage",
+ "repo": "https://github.com/tcxone/tcxone.github.io",
+ "owner": {
+ "username": "tcxone",
+ "email": "tcxone@outlook.com",
+ "twitter": "tcxone"
+ },
+ "record": {
+ "CNAME": "tcxone.github.io"
+ }
+}
diff --git a/domains/tdkchat.json b/domains/tdkchat.json
new file mode 100644
index 000000000..c8badb6a1
--- /dev/null
+++ b/domains/tdkchat.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MattTheTekie",
+ "email": "Mattmason2211@gmail.com"
+ },
+ "record": {
+ "CNAME": "test72.eu.org"
+ }
+}
diff --git a/domains/team.tnt.json b/domains/team.tnt.json
new file mode 100644
index 000000000..2d11c8ddf
--- /dev/null
+++ b/domains/team.tnt.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "SebTNT",
+ "email": "turquoisetntmultimedia@gmail.com"
+ },
+ "record": {
+ "CNAME": "sebtnt.github.io"
+ }
+}
diff --git a/domains/tech-geek-united.json b/domains/tech-geek-united.json
index 3634622f5..1651b7f2e 100644
--- a/domains/tech-geek-united.json
+++ b/domains/tech-geek-united.json
@@ -1,15 +1,12 @@
{
- "owner": {
- "username": "TechGeekUnited",
- "email": "TGUyt.dev@gmail.com",
- "discord": "TechGeekUnited#4329"
- },
- "record": {
- "URL": "https://techgeekunited.github.io",
- "MX": [
- "mx1.improvmx.com",
- "mx2.improvmx.com"
- ],
- "TXT": "v=spf1 include:spf.improvmx.com ~all"
- }
+ "owner": {
+ "username": "TechGeekUnited",
+ "email": "TGUyt.dev@gmail.com",
+ "discord": "TechGeekUnited#4329"
+ },
+ "record": {
+ "URL": "https://techgeekunited.github.io",
+ "MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
+ "TXT": "v=spf1 include:spf.improvmx.com ~all"
+ }
}
diff --git a/domains/tehpig.json b/domains/tehpig.json
new file mode 100644
index 000000000..7c10f8c09
--- /dev/null
+++ b/domains/tehpig.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "TehPigYT",
+ "email": "aggelosdellas@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/tejas.json b/domains/tejas.json
deleted file mode 100644
index 4de89dcfd..000000000
--- a/domains/tejas.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "A simple portfolio website by me (Tejas Agarwal)",
- "repo": "https://github.com/tejasag/webpage",
- "owner": {
- "username": "tejasag",
- "email": "togedemaru.1707@gmail.com"
- },
- "record": {
- "URL": "https://tejasagarwal.tech"
- }
-}
diff --git a/domains/teletvbis.json b/domains/teletvbis.json
new file mode 100644
index 000000000..c78d6cd98
--- /dev/null
+++ b/domains/teletvbis.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Necesku",
+ "email": "105011954+Necesku@users.noreply.github.com",
+ "discord": "702682685713416222"
+ },
+
+ "record": {
+ "A": ["185.117.0.194"]
+ }
+}
diff --git a/domains/ten.json b/domains/ten.json
index e8349394c..5b504c974 100644
--- a/domains/ten.json
+++ b/domains/ten.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "tendrilll.github.io"
}
-}
+}
diff --git a/domains/teriko.json b/domains/teriko.json
index 2de1f9a30..c3f6722ec 100644
--- a/domains/teriko.json
+++ b/domains/teriko.json
@@ -1,13 +1,11 @@
{
- "owner": {
- "username": "exelenuwu",
- "email": "",
- "twitter": "terikopog",
- "discord": "teriko."
- },
- "record": {
- "A": [
- "45.8.22.34"
- ]
- }
+ "owner": {
+ "username": "exelenuwu",
+ "email": "",
+ "twitter": "terikopog",
+ "discord": "teriko."
+ },
+ "record": {
+ "A": ["45.8.22.34"]
+ }
}
diff --git a/domains/terraegg.json b/domains/terraegg.json
new file mode 100644
index 000000000..9b04706fb
--- /dev/null
+++ b/domains/terraegg.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "AlbumanO",
+ "email": "oliver.young4@student.education.wa.edu.au"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
diff --git a/domains/terroid.json b/domains/terroid.json
index 983947a4f..512bd0cc1 100644
--- a/domains/terroid.json
+++ b/domains/terroid.json
@@ -3,8 +3,7 @@
"repo": "https://github.com/skandabhairava/skandabhairava.github.io",
"owner": {
"username": "skandabhairava",
- "email": "skandabhairava@gmail.com",
- "twitter": "TerroidYT"
+ "email": "skandabhairava@gmail.com"
},
"record": {
"CNAME": "skandabhairava.github.io"
diff --git a/domains/test2214.json b/domains/test2214.json
new file mode 100644
index 000000000..57306063d
--- /dev/null
+++ b/domains/test2214.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "005sunnysingh",
+ "email": "005sunnysingh@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
\ No newline at end of file
diff --git a/domains/test373.json b/domains/test373.json
new file mode 100644
index 000000000..a8dbaa99a
--- /dev/null
+++ b/domains/test373.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "is-a-dev-bot",
+ "email": "is-a-dev@win11react.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+ }
\ No newline at end of file
diff --git a/domains/testluxxy.json b/domains/testluxxy.json
new file mode 100644
index 000000000..76ed5fc66
--- /dev/null
+++ b/domains/testluxxy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Luxxy-GF",
+ "email": "deniedaddicted@gmail.com"
+ },
+ "record": {
+ "A": ["178.33.110.212"]
+ }
+}
diff --git a/domains/tetris.vi0leta.json b/domains/tetris.vi0leta.json
new file mode 100644
index 000000000..462d9e226
--- /dev/null
+++ b/domains/tetris.vi0leta.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vi0letadev",
+ "email": "vi0leta@riseup.net"
+ },
+ "record": {
+ "A": ["143.47.191.152"]
+ }
+}
diff --git a/domains/textures1245.json b/domains/textures1245.json
new file mode 100644
index 000000000..3f13c37c3
--- /dev/null
+++ b/domains/textures1245.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "textures1245",
+ "email": "sirprak1245@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/tgt.json b/domains/tgt.json
new file mode 100644
index 000000000..66a8ed709
--- /dev/null
+++ b/domains/tgt.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "IncognitoTGT",
+ "email": "mashoor539@gmail.com"
+ },
+ "record": {
+ "URL": "https://mashoortest.tk"
+ }
+}
diff --git a/domains/thaihung.json b/domains/thaihung.json
index f18842afb..332bdc0f0 100644
--- a/domains/thaihung.json
+++ b/domains/thaihung.json
@@ -6,12 +6,7 @@
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
diff --git a/domains/thakuraman.json b/domains/thakuraman.json
new file mode 100644
index 000000000..0c9999f30
--- /dev/null
+++ b/domains/thakuraman.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "aman7thakurr",
+ "email": "amant8425@gmail.com",
+ "discord": "523813766295715851"
+ },
+
+ "record": {
+ "CNAME": "aman7thakurr.github.io"
+ }
+}
diff --git a/domains/tharindudarshana.json b/domains/tharindudarshana.json
new file mode 100644
index 000000000..23891bb49
--- /dev/null
+++ b/domains/tharindudarshana.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "1234Tharindu",
+ "email": "dehipitiya055@gmail.com"
+ },
+ "record": {
+ "URL": "https://tharindudarshna.w3spaces.com"
+ }
+}
diff --git a/domains/tharukrenuja.json b/domains/tharukrenuja.json
new file mode 100644
index 000000000..24a944965
--- /dev/null
+++ b/domains/tharukrenuja.json
@@ -0,0 +1,12 @@
+{
+ "description": "Just Anohter Portfolio",
+ "repo": "https://github.com/TharukRenuja/tharukrenuja.github.io",
+ "owner": {
+ "username": "TharukRenuja",
+ "email": "contact.tharukrenuja@gmail.com",
+ "twitter": "TRenuja"
+ },
+ "record": {
+ "CNAME": "tharukrenuja.github.io"
+ }
+}
diff --git a/domains/thatbigderp.json b/domains/thatbigderp.json
new file mode 100644
index 000000000..0e4d3663f
--- /dev/null
+++ b/domains/thatbigderp.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "StuwpidPerson",
+ "email": "darkhacker8604@protonmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/thatkoslz.json b/domains/thatkoslz.json
new file mode 100644
index 000000000..ad0daa5ca
--- /dev/null
+++ b/domains/thatkoslz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "iakzs",
+ "email": "iakzs@protonmail.com"
+ },
+ "record": {
+ "URL": "https://koslz.com/"
+ }
+}
diff --git a/domains/theamazing0.json b/domains/theamazing0.json
new file mode 100644
index 000000000..0351d4756
--- /dev/null
+++ b/domains/theamazing0.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "theamazing0",
+ "email": "ksamvid@gmail.com"
+ },
+ "record": {
+ "URL": "https://git.projectsegfau.lt/theamazing0"
+ }
+}
diff --git a/domains/theark.json b/domains/theark.json
deleted file mode 100644
index 9893bd7be..000000000
--- a/domains/theark.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Theark's personal site",
- "repo": "https://github.com/thearkxd/theark-website",
- "owner": {
- "username": "thearkxd",
- "email": "thearkxd@gmail.com"
- },
- "record": {
- "URL": "https://theark.tk"
- }
-}
diff --git a/domains/thedivided.json b/domains/thedivided.json
new file mode 100644
index 000000000..3d59d5654
--- /dev/null
+++ b/domains/thedivided.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "soviet783",
+ "email": "logannorman2005@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/themagicmush.json b/domains/themagicmush.json
index 367c6f555..2cd594052 100644
--- a/domains/themagicmush.json
+++ b/domains/themagicmush.json
@@ -5,6 +5,6 @@
"discord": "TheMagicMushoom#9999"
},
"record": {
- "URL": "https://its.themagicmush.repl.co/"
+ "URL": "https://its.themagicmush.repl.co"
}
}
diff --git a/domains/therealgeodash.json b/domains/therealgeodash.json
new file mode 100644
index 000000000..66f351656
--- /dev/null
+++ b/domains/therealgeodash.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "TheRealGeoDash2019",
+ "email": "therealgeodash@lhost.dev",
+ "discord": "710268763844640839"
+ },
+ "record": {
+ "CNAME": "lhost.dev"
+ }
+}
diff --git a/domains/thesanju.json b/domains/thesanju.json
new file mode 100644
index 000000000..cceee6cec
--- /dev/null
+++ b/domains/thesanju.json
@@ -0,0 +1,12 @@
+{
+ "description": "personal portfolio website",
+ "repo": "https://github.com/thesanju/thesanju.github.io",
+ "owner": {
+ "username": "thesanju",
+ "email": "sanjayjr1official@gmail.com",
+ "twitter": "Sanjay69__"
+ },
+ "record": {
+ "CNAME": "thesanju.github.io"
+ }
+}
diff --git a/domains/thesct22.json b/domains/thesct22.json
index 88467331b..902888a4c 100644
--- a/domains/thesct22.json
+++ b/domains/thesct22.json
@@ -1,11 +1,9 @@
{
- "description": "Social media website project",
- "repo": "https://github.com/thesct22",
"owner": {
"username": "thesct22",
"email": "sharathct22@gmail.com"
},
"record": {
- "CNAME": "34.67.228.107.xip.io"
+ "CNAME": "thesct22.github.io"
}
}
diff --git a/domains/thesonofdevilhunter.json b/domains/thesonofdevilhunter.json
new file mode 100644
index 000000000..3f2a9cf77
--- /dev/null
+++ b/domains/thesonofdevilhunter.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "NerdsForGaming",
+ "email": "thesonofdevilhunter1@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "nerdsforgaming.github.io"
+ }
+}
diff --git a/domains/thetechnikfreak.json b/domains/thetechnikfreak.json
index f6fff7181..df2f4e4b7 100644
--- a/domains/thetechnikfreak.json
+++ b/domains/thetechnikfreak.json
@@ -5,14 +5,7 @@
"discord": "TheTechnikFreak#3314"
},
"record": {
- "A": [
- "52.21.33.16",
- "18.184.197.212"
- ],
- "MX": [
- "mx.zoho.eu",
- "mx2.zoho.eu",
- "mx3.zoho.eu"
- ]
+ "A": ["52.21.33.16", "18.184.197.212"],
+ "MX": ["mx.zoho.eu", "mx2.zoho.eu", "mx3.zoho.eu"]
}
}
diff --git a/domains/thiomains.json b/domains/thiomains.json
new file mode 100644
index 000000000..1cd7b19c7
--- /dev/null
+++ b/domains/thiomains.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "onem0",
+ "email": "kremersneo0@gmail.com"
+ },
+ "record": {
+ "URL": "http://bindergamer.de"
+ }
+}
diff --git a/domains/thund3r.json b/domains/thund3r.json
new file mode 100644
index 000000000..f864f321d
--- /dev/null
+++ b/domains/thund3r.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Harsh06-afk",
+ "email": "hvs8380@gmail.com"
+ },
+ "record": {
+ "CNAME": "harsh06-afk.github.io"
+ }
+}
diff --git a/domains/tigerbyte.json b/domains/tigerbyte.json
deleted file mode 100644
index 78232c6aa..000000000
--- a/domains/tigerbyte.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Add some description",
- "repo": "https://github.com/TigerbyteDev",
- "owner": {
- "username": "TigerbyteDev",
- "email": "tigerbytedev@gmail.com"
- },
- "record": {
- "URL": "https://www.tigerbyte.dev"
- }
-}
diff --git a/domains/tikter.json b/domains/tikter.json
new file mode 100644
index 000000000..374a24c6f
--- /dev/null
+++ b/domains/tikter.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "njanemmu",
+ "email": "aneenababu71901@gmail.com"
+ },
+ "record": {
+ "CNAME": "c14c2346-1c5a-4bf0-b9dc-d47fc8263e86.id.repl.co"
+ }
+}
diff --git a/domains/time.json b/domains/time.json
new file mode 100644
index 000000000..b3eec57b5
--- /dev/null
+++ b/domains/time.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "CcNicebruh",
+ "email": "tangkeehee2002@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/timemee.json b/domains/timemee.json
new file mode 100644
index 000000000..15965a70b
--- /dev/null
+++ b/domains/timemee.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "CcNicebruh",
+ "email": "tangkeehee2002@gmail.com"
+ },
+ "record": {
+ "TXT": "vc-domain-verify=timemee.is-a.dev,f0ccde0675ebc15ec99f"
+ }
+}
diff --git a/domains/timo.json b/domains/timo.json
new file mode 100644
index 000000000..d4b3b6dba
--- /dev/null
+++ b/domains/timo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "sartimo",
+ "email": "sartimo10@gmail.com"
+ },
+ "record": {
+ "URL": "https://sartimo.surge.sh"
+ }
+}
diff --git a/domains/tin.json b/domains/tin.json
new file mode 100644
index 000000000..4c7ec4cee
--- /dev/null
+++ b/domains/tin.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "itsmetin",
+ "email": "marmeladenjunge+2nd@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/tito.json b/domains/tito.json
new file mode 100644
index 000000000..0e0b10f9a
--- /dev/null
+++ b/domains/tito.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "MyNameIsTito",
+ "email": "tito@kzg.gg"
+ },
+ "record": {
+ "CNAME": "isadev.mynameistito.com"
+ }
+}
diff --git a/domains/tiwknowsall.json b/domains/tiwknowsall.json
new file mode 100644
index 000000000..96d7f8773
--- /dev/null
+++ b/domains/tiwknowsall.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tiwlinkskwazeh",
+ "email": "kwazehh@proton.me"
+ },
+ "record": {
+ "URL": "https://tiw2.pages.dev"
+ }
+}
diff --git a/domains/tjr.json b/domains/tjr.json
deleted file mode 100644
index 4b4a6010c..000000000
--- a/domains/tjr.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "tjrgg",
- "email": "hello@tjrgg.co"
- },
- "record": {
- "URL": "https://tjrgg.co"
- }
-}
diff --git a/domains/tjrgg.json b/domains/tjrgg.json
deleted file mode 100644
index 4b4a6010c..000000000
--- a/domains/tjrgg.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "tjrgg",
- "email": "hello@tjrgg.co"
- },
- "record": {
- "URL": "https://tjrgg.co"
- }
-}
diff --git a/domains/tm-incognito.json b/domains/tm-incognito.json
new file mode 100644
index 000000000..1532b27df
--- /dev/null
+++ b/domains/tm-incognito.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "jumbochipkali",
+ "email": "jumbokalied@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all",
+ "MX": ["hosts.is-a.dev"]
+ }
+}
diff --git a/domains/tm-math.json b/domains/tm-math.json
new file mode 100644
index 000000000..b0787c686
--- /dev/null
+++ b/domains/tm-math.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "hilausfbrdhiiuhsdfh",
+ "email": "timedoutbusiness@gmail.com"
+ },
+ "record": {
+ "URL": "https://timed-out-math.hop.sh/"
+ }
+}
diff --git a/domains/toasta.json b/domains/toasta.json
new file mode 100644
index 000000000..9643baad3
--- /dev/null
+++ b/domains/toasta.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "thetoasta",
+ "email": "nolanp678@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/tokiakasu.json b/domains/tokiakasu.json
new file mode 100644
index 000000000..e6d665872
--- /dev/null
+++ b/domains/tokiakasu.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tokiakasu",
+ "email": "crxpp@protonmail.com"
+ },
+ "record": {
+ "A": ["95.163.12.169"]
+ }
+}
diff --git a/domains/tolis.json b/domains/tolis.json
index 7740ffeff..d88401ff1 100644
--- a/domains/tolis.json
+++ b/domains/tolis.json
@@ -4,7 +4,7 @@
"username": "tolisdev",
"email": "apostolos@tolisuwu.xyz"
},
- "record": {
- "A": ["167.235.239.76"]
- }
+ "record": {
+ "A": ["167.235.239.76"]
+ }
}
diff --git a/domains/tomgxz.json b/domains/tomgxz.json
new file mode 100644
index 000000000..07e8dcdea
--- /dev/null
+++ b/domains/tomgxz.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Tomgxz",
+ "email": "tomgxz138@gmail.com"
+ },
+ "record": {
+ "URL": "https://tomgxz.repl.co"
+ }
+}
diff --git a/domains/tommyboucher.json b/domains/tommyboucher.json
new file mode 100644
index 000000000..5ab85e067
--- /dev/null
+++ b/domains/tommyboucher.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "bouchertommy",
+ "email": "hello@tommyboucher.com"
+ },
+ "record": {
+ "CNAME": "tommyboucher.com"
+ }
+}
diff --git a/domains/tomteck.json b/domains/tomteck.json
index 4b73f129f..18b33e256 100644
--- a/domains/tomteck.json
+++ b/domains/tomteck.json
@@ -1,11 +1,9 @@
-
- {
- "owner": {
+{
+ "owner": {
"username": "shandralor",
"email": "tom.teck@gmail.com"
- },
- "record": {
+ },
+ "record": {
"CNAME": "shandralor.github.io"
- }
}
-
\ No newline at end of file
+}
diff --git a/domains/topher.json b/domains/topher.json
new file mode 100644
index 000000000..f25285564
--- /dev/null
+++ b/domains/topher.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "christopherwk210",
+ "email": "christopherwk210@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/tpglitch.json b/domains/tpglitch.json
new file mode 100644
index 000000000..0364bc2ca
--- /dev/null
+++ b/domains/tpglitch.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "tpglitch",
+ "email": "tylerkinney50@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/tr5kyradio.json b/domains/tr5kyradio.json
new file mode 100644
index 000000000..cd9b4265c
--- /dev/null
+++ b/domains/tr5kyradio.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "troit5ky",
+ "email": "testeron211@gmail.com"
+ },
+ "record": {
+ "A": ["23.88.10.1"]
+ }
+}
diff --git a/domains/tranthanhlong.json b/domains/tranthanhlong.json
new file mode 100644
index 000000000..555b4834a
--- /dev/null
+++ b/domains/tranthanhlong.json
@@ -0,0 +1,11 @@
+{
+ "description": "My personal webpage",
+ "repo": "https://github.com/iamthanhlong/iamthanhlong.github.io",
+ "owner": {
+ "username": "iamthanhlong",
+ "email": "uxymqfzglvtqno@proton.me"
+ },
+ "record": {
+ "CNAME": "iamthanhlong.github.io"
+ }
+}
diff --git a/domains/trasadiyasmeet.json b/domains/trasadiyasmeet.json
new file mode 100644
index 000000000..afbd109a8
--- /dev/null
+++ b/domains/trasadiyasmeet.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "psmeet190902",
+ "email": "21bph115@nirmauni.ac.in"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/trivee.json b/domains/trivee.json
new file mode 100644
index 000000000..be84994d2
--- /dev/null
+++ b/domains/trivee.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "TrivCodez",
+ "email": "Jayeshpoudel+ha@outlook.com"
+ },
+ "record": {
+ "CNAME": "5c99ec37-6759-4d76-94ab-dec4af0be7cc.id.repl.co"
+ }
+}
diff --git a/domains/triyatna.json b/domains/triyatna.json
new file mode 100644
index 000000000..9237f0162
--- /dev/null
+++ b/domains/triyatna.json
@@ -0,0 +1,11 @@
+{
+ "description": "Subdomain Redirect",
+ "repo": "https://github.com/triyatna/triyatna.github.io",
+ "owner": {
+ "username": "triyatna",
+ "email": "triyatna.com@gmail.com"
+ },
+ "record": {
+ "CNAME": "triyatna.github.io"
+ }
+}
diff --git a/domains/trueuser.json b/domains/trueuser.json
new file mode 100644
index 000000000..0080f1970
--- /dev/null
+++ b/domains/trueuser.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "istrueuser",
+ "email": "thisistrueemail@gmail.com"
+ },
+ "record": {
+ "CNAME": "1e4a3fc6-ad8f-4f94-9d09-b75719461266.id.repl.co"
+ }
+}
diff --git a/domains/tts.deva.json b/domains/tts.deva.json
new file mode 100644
index 000000000..5194aa0a1
--- /dev/null
+++ b/domains/tts.deva.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "turbomaster95",
+ "email": "devamidhun.3c.kmbvm@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "48c10554-32ea-4bc5-98f8-5f062b511ad1.id.repl.co"
+ }
+}
diff --git a/domains/tube.json b/domains/tube.json
new file mode 100644
index 000000000..80c9601a0
--- /dev/null
+++ b/domains/tube.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "t-ub3",
+ "email": "martini@tubee.dev"
+ },
+ "record": {
+ "URL": "https://tub3.uk"
+ }
+}
diff --git a/domains/turvenuija.json b/domains/turvenuija.json
new file mode 100644
index 000000000..797332159
--- /dev/null
+++ b/domains/turvenuija.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "turvenuija1",
+ "email": "turvenuija@skidd.xyz"
+ },
+ "record": {
+ "CNAME": "turvenuija1.github.io"
+ }
+}
diff --git a/domains/tv.rpi.crazy-max.json b/domains/tv.rpi.crazy-max.json
new file mode 100644
index 000000000..36a8f1643
--- /dev/null
+++ b/domains/tv.rpi.crazy-max.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Crazy-Max-Blog",
+ "email": "Crazy-Max-2011@yandex.ru"
+ },
+ "record": {
+ "URL": "https://crazy-max-blog.github.io/rpi-tvbox"
+ }
+}
diff --git a/domains/twitter.json b/domains/twitter.json
new file mode 100644
index 000000000..583ce9bc8
--- /dev/null
+++ b/domains/twitter.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "j0code",
+ "discord": "j0code",
+ "email": ""
+ },
+ "record": {
+ "CNAME": "cohalejoja.selfhost.eu"
+ }
+}
diff --git a/domains/tylermw.json b/domains/tylermw.json
new file mode 100644
index 000000000..51ede12fd
--- /dev/null
+++ b/domains/tylermw.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "TylerMWise",
+ "email": "tylermwise.tm@gmail.com"
+ },
+ "record": {
+ "CNAME": "r.forwarddomain.net"
+ }
+}
diff --git a/domains/tylermwise.json b/domains/tylermwise.json
new file mode 100644
index 000000000..d8fe934dd
--- /dev/null
+++ b/domains/tylermwise.json
@@ -0,0 +1,10 @@
+{
+ "description": "tylermwise.is-a.dev domain",
+ "owner": {
+ "username": "tylermwise",
+ "email": "contact@teamtbm.org"
+ },
+ "record": {
+ "CNAME": "tylermwise.github.io"
+ }
+ }
diff --git a/domains/typicalne.json b/domains/typicalne.json
new file mode 100644
index 000000000..b2fe731b0
--- /dev/null
+++ b/domains/typicalne.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "TypicalShavonne",
+ "email": "tranhuonghp1972@gmail.com"
+ },
+
+ "record": {
+ "A": ["66.118.234.244"]
+ }
+}
diff --git a/domains/tyrkinn.json b/domains/tyrkinn.json
new file mode 100644
index 000000000..e82960492
--- /dev/null
+++ b/domains/tyrkinn.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "tyrkinn",
+ "email": "tyrkinn@pm.me"
+ },
+ "record": {
+ "CNAME": "tyrkinn.github.io"
+ }
+}
diff --git a/domains/tzvika.json b/domains/tzvika.json
new file mode 100644
index 000000000..c0f4851b4
--- /dev/null
+++ b/domains/tzvika.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "tzvio",
+ "email": "tzvika.ofek@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/uberkey.json b/domains/uberkey.json
new file mode 100644
index 000000000..a98db0e7c
--- /dev/null
+++ b/domains/uberkey.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "uberkey",
+ "email": "postmordial@gmail.com"
+ },
+ "record": {
+ "CNAME": "uberkey.github.io"
+ }
+}
diff --git a/domains/uiopler.json b/domains/uiopler.json
index 534199887..ec6aa65be 100644
--- a/domains/uiopler.json
+++ b/domains/uiopler.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "uiopler.github.io"
}
-}
+}
diff --git a/domains/ukirio.json b/domains/ukirio.json
new file mode 100644
index 000000000..392964700
--- /dev/null
+++ b/domains/ukirio.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "U8K50",
+ "email": "u8k50850@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ultimatemedia.json b/domains/ultimatemedia.json
index 12cc3c992..dcb8c3df8 100644
--- a/domains/ultimatemedia.json
+++ b/domains/ultimatemedia.json
@@ -6,12 +6,7 @@
"email": "coreyw.ultimatemedia@gmail.com"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/ultrix.json b/domains/ultrix.json
new file mode 100644
index 000000000..6c986115d
--- /dev/null
+++ b/domains/ultrix.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "jacksoncraft859",
+ "email": "pollardjackson@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/umesh.json b/domains/umesh.json
new file mode 100644
index 000000000..9bb3c0523
--- /dev/null
+++ b/domains/umesh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "compCoder007",
+ "email": "competentcoder007@gmail.com"
+ },
+ "record": {
+ "CNAME": "compcoder007.github.io"
+ }
+}
diff --git a/domains/unchained.json b/domains/unchained.json
new file mode 100644
index 000000000..6b9f7870b
--- /dev/null
+++ b/domains/unchained.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "unchaineddev",
+ "email": "yusuf_in@outlook.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/undeadevs.json b/domains/undeadevs.json
new file mode 100644
index 000000000..527029d03
--- /dev/null
+++ b/domains/undeadevs.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "undeadevs",
+ "email": "jangantanyaaku14@gmail.com"
+ },
+ "record": {
+ "CNAME": "undeadevs.github.io"
+ }
+}
diff --git a/domains/unicatevn.json b/domains/unicatevn.json
new file mode 100644
index 000000000..ab4720b2d
--- /dev/null
+++ b/domains/unicatevn.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "unicatevn",
+ "email": "tuananh.vga@gmail.com"
+ },
+ "record": {
+ "CNAME": "unicatevn.com"
+ }
+}
diff --git a/domains/unknowncheats.json b/domains/unknowncheats.json
new file mode 100644
index 000000000..afa1025f7
--- /dev/null
+++ b/domains/unknowncheats.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "opkinshuk09",
+ "email": "opkinshuk09@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/unwork-id.json b/domains/unwork-id.json
deleted file mode 100644
index 27a58a3d4..000000000
--- a/domains/unwork-id.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Unwork ID Website",
- "repo": "https://github.com/Unwork-ID",
- "owner": {
- "username": "tokisaki13",
- "email": "support@unwork.my.id"
- },
- "record": {
- "URL": "https://unwork.my.id"
- }
-}
diff --git a/domains/url.aditya.json b/domains/url.aditya.json
new file mode 100644
index 000000000..097da229f
--- /dev/null
+++ b/domains/url.aditya.json
@@ -0,0 +1,13 @@
+{
+ "description": "subdomain for link redirection",
+ "repo": "https://github.com/dedomil",
+ "owner": {
+ "username": "dedomil",
+ "email": "ishqaddy@gmail.com",
+ "twitter": "aadixl",
+ "discord": "dedomil"
+ },
+ "record": {
+ "CNAME": "edge.redirect.pizza"
+ }
+}
\ No newline at end of file
diff --git a/domains/used-to-be-daddy.json b/domains/used-to-be-daddy.json
deleted file mode 100644
index 59f383846..000000000
--- a/domains/used-to-be-daddy.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "I used to be daddy",
- "owner": {
- "username": "MouseMoosz",
- "email": "mousemoosz@protonmail.com"
- },
- "record": {
- "URL": "https://mousemoosz.is-a.dev"
- }
-}
diff --git a/domains/usingh.json b/domains/usingh.json
index 8fccd0431..de94c6fb8 100644
--- a/domains/usingh.json
+++ b/domains/usingh.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "dr-hofstadter",
- "email": "utsav.raj.338@gmail.com"
- },
- "record": {
- "CNAME": "dr-hofstadter.github.io"
- }
-}
\ No newline at end of file
+ "owner": {
+ "username": "dr-hofstadter",
+ "email": "utsav.raj.338@gmail.com"
+ },
+ "record": {
+ "CNAME": "dr-hofstadter.github.io"
+ }
+}
diff --git a/domains/utility.icevixen.json b/domains/utility.icevixen.json
new file mode 100644
index 000000000..11ce7ceb0
--- /dev/null
+++ b/domains/utility.icevixen.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Zirmith",
+ "email": "f2v74yt@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/utils.json b/domains/utils.json
new file mode 100644
index 000000000..8da1a718d
--- /dev/null
+++ b/domains/utils.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Blob2763",
+ "email": "blob2763@gmail.com"
+ },
+ "record": {
+ "CNAME": "blob2763.github.io"
+ }
+}
diff --git a/domains/utsav.json b/domains/utsav.json
index 669dc4a20..de94c6fb8 100644
--- a/domains/utsav.json
+++ b/domains/utsav.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "dr-hofstadter",
- "email": "utsav.raj.338@gmail.com"
- },
- "record": {
- "CNAME": "dr-hofstadter.github.io"
- }
+ "owner": {
+ "username": "dr-hofstadter",
+ "email": "utsav.raj.338@gmail.com"
+ },
+ "record": {
+ "CNAME": "dr-hofstadter.github.io"
+ }
}
diff --git a/domains/utsavsingh.json b/domains/utsavsingh.json
new file mode 100644
index 000000000..9492c5289
--- /dev/null
+++ b/domains/utsavsingh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "singhutsav5502",
+ "email": "singhutsavofficial@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/uynilo9.json b/domains/uynilo9.json
index 50a548fc7..0f2885bba 100644
--- a/domains/uynilo9.json
+++ b/domains/uynilo9.json
@@ -9,4 +9,4 @@
"record": {
"URL": "https://uynilo9.netlify.app"
}
-}
+}
diff --git a/domains/v1.neon.json b/domains/v1.neon.json
new file mode 100644
index 000000000..560a95686
--- /dev/null
+++ b/domains/v1.neon.json
@@ -0,0 +1,13 @@
+{
+ "description": "V1 of My Portfolio (neon.is-a.dev)",
+ "repo": "https://github.com/GoodBoyNeon/v1",
+ "owner": {
+ "username": "GoodBoyNeon",
+ "discord": "neonthedeveloper",
+ "twitter": "NeonTheNerd",
+ "email": "goodboyneon03@gmail.com"
+ },
+ "record": {
+ "CNAME": "goodboyneon.github.io"
+ }
+}
diff --git a/domains/v2ray.vi0leta.json b/domains/v2ray.vi0leta.json
new file mode 100644
index 000000000..462d9e226
--- /dev/null
+++ b/domains/v2ray.vi0leta.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vi0letadev",
+ "email": "vi0leta@riseup.net"
+ },
+ "record": {
+ "A": ["143.47.191.152"]
+ }
+}
diff --git a/domains/vaibhav.json b/domains/vaibhav.json
index efec635c1..83e06c559 100644
--- a/domains/vaibhav.json
+++ b/domains/vaibhav.json
@@ -1,11 +1,9 @@
{
"owner": {
- "username": "Vaibhav-Kashyap07",
- "email": "",
- "discord": "Vaibhav Kashyap#5747"
+ "username": "VaibhavSys",
+ "email": "vaibhavsys@protonmail.com"
},
- "repo": "https://github.com/Vaibhav-Kashyap07/Vaibhav-Kashyap07.github.io",
"record": {
- "CNAME": "Vaibhav-Kashyap07.github.io"
+ "URL": "https://www.thevaibhavway.pro/"
}
}
diff --git a/domains/vaibhavsys.json b/domains/vaibhavsys.json
deleted file mode 100644
index f239ad6e4..000000000
--- a/domains/vaibhavsys.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "VaibhavSys",
- "email": "vaibhavdhi@proton.me"
- },
- "record": {
- "URL": "https://www.vaibhav.studio"
- }
-}
diff --git a/domains/vaibhv.json b/domains/vaibhv.json
new file mode 100644
index 000000000..4a01fe844
--- /dev/null
+++ b/domains/vaibhv.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vaibhavharsoda",
+ "email": "vaibhavharsoda77@gmail.com"
+ },
+ "record": {
+ "CNAME": "vaibhavharsoda.github.io"
+ }
+}
diff --git a/domains/valorant.json b/domains/valorant.json
new file mode 100644
index 000000000..8abfa1dd0
--- /dev/null
+++ b/domains/valorant.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Fqcxn",
+ "email": "",
+ "twitter": "FqcxnLmao",
+ "discord": "hong.kong"
+ },
+ "record": {
+ "CNAME": "fqcxn.com"
+ }
+}
diff --git a/domains/valowolf.json b/domains/valowolf.json
new file mode 100644
index 000000000..f424798b7
--- /dev/null
+++ b/domains/valowolf.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "ValoWolf",
+ "email": "starfleet.valowolf@gmail.com"
+ },
+ "record": {
+ "CNAME": "hosts.is-a.dev"
+ }
+}
diff --git a/domains/vamsi.json b/domains/vamsi.json
index c49fab7f0..7a9882f10 100644
--- a/domains/vamsi.json
+++ b/domains/vamsi.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "vamsieth",
- "email": "svamsi.tech@gmail.com"
- },
- "record": {
- "CNAME": "240d43d7-5eea-4fdd-a568-efa5978f8d80.id.repl.co"
- }
+ "owner": {
+ "username": "vamsieth",
+ "email": "svamsi.tech@gmail.com"
+ },
+ "record": {
+ "CNAME": "240d43d7-5eea-4fdd-a568-efa5978f8d80.id.repl.co"
+ }
}
diff --git a/domains/vaskian.json b/domains/vaskian.json
deleted file mode 100644
index e4a838d8e..000000000
--- a/domains/vaskian.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Vaskian is a Dev",
- "repo": "https://github.com/Nami2012",
- "owner": {
- "username": "Nami2012",
- "email": "namithasadeeshbabu@gmail.com"
- },
- "record": {
- "URL": "https://vaskian.me"
- }
-}
diff --git a/domains/vendors.syntaxloopers.json b/domains/vendors.syntaxloopers.json
new file mode 100644
index 000000000..324dfe7e2
--- /dev/null
+++ b/domains/vendors.syntaxloopers.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/venkateshpagdikar.json b/domains/venkateshpagdikar.json
new file mode 100644
index 000000000..2e779acdd
--- /dev/null
+++ b/domains/venkateshpagdikar.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "venkateshpagdikar",
+ "email": "venkateshpagdikar8@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ver0z.json b/domains/ver0z.json
deleted file mode 100644
index dac4dc7d1..000000000
--- a/domains/ver0z.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "ver0zdev",
- "email": "ziadfr@icloud.com"
- },
-
- "record": {
- "URL": "https://ver0z.dev"
- }
-}
diff --git a/domains/verite.json b/domains/verite.json
deleted file mode 100644
index c57038fc9..000000000
--- a/domains/verite.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "repo": "https://github.com/makuzaverite/veritem.me",
- "owner": {
- "username": "makuzaverite",
- "email": "mugaboverite@gmail.com",
- "twitter": "makuza_mugabo_v"
- },
- "record": {
- "URL": "https://veritem.me"
- }
-}
diff --git a/domains/vhd.json b/domains/vhd.json
new file mode 100644
index 000000000..a3fa82d7a
--- /dev/null
+++ b/domains/vhd.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "realvhd",
+ "email": "dotrealvhd@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/victorvickie.json b/domains/victorvickie.json
new file mode 100644
index 000000000..27079b922
--- /dev/null
+++ b/domains/victorvickie.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "VICTORVICKIE",
+ "email": "s.vickie14@gmail.com",
+ "discord": "448131424655114250"
+ },
+
+ "record": {
+ "URL": "https://vk.is-a.dev"
+ }
+}
diff --git a/domains/vigkrishna.json b/domains/vigkrishna.json
index 6a2530ce6..7b43aa653 100644
--- a/domains/vigkrishna.json
+++ b/domains/vigkrishna.json
@@ -1,6 +1,6 @@
{
"description": "vigkrishna.is-a.dev",
- "repo": "https://vigkrishna.github.io/Portfolio_2023/",
+ "repo": "https://vigkrishna.github.io/Portfolio_2023",
"owner": {
"username": "vigkrishna",
"email": "vigkrishna@yahoo.com"
diff --git a/domains/vigo.json b/domains/vigo.json
new file mode 100644
index 000000000..ea7dc3370
--- /dev/null
+++ b/domains/vigo.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "thanphong19",
+ "email": "thanphong19@gmail.com"
+ },
+ "record": {
+ "A": ["168.138.167.184"]
+ }
+}
diff --git a/domains/vikrant.json b/domains/vikrant.json
deleted file mode 100644
index 1979cd609..000000000
--- a/domains/vikrant.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "150207",
- "email": "daredevil.vikrant@gmail.com"
- },
- "record": {
- "URL": "https://github.com/vikrant7251"
- }
-}
diff --git a/domains/vilari.json b/domains/vilari.json
new file mode 100644
index 000000000..41b567929
--- /dev/null
+++ b/domains/vilari.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "VilariStorms",
+ "email": "vilari@anonymail.nl"
+ },
+ "record": {
+ "A": ["24.199.103.194"]
+ }
+}
diff --git a/domains/vimalsaraswat.json b/domains/vimalsaraswat.json
index a53772f82..7d6da684e 100644
--- a/domains/vimalsaraswat.json
+++ b/domains/vimalsaraswat.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "vimalsaraswat.github.io"
}
-}
+}
diff --git a/domains/vinaychaudhary.json b/domains/vinaychaudhary.json
new file mode 100644
index 000000000..5f4063758
--- /dev/null
+++ b/domains/vinaychaudhary.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "vinayofc",
+ "email": "devilvinayofficial@gmail.com"
+ },
+
+ "record": {
+ "A": ["3.136.154.89"]
+ }
+}
diff --git a/domains/vincent-cly.json b/domains/vincent-cly.json
new file mode 100644
index 000000000..beda63ece
--- /dev/null
+++ b/domains/vincent-cly.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Vincent-CLY",
+ "email": "vchku413@connect.hku.hk"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/vineet.json b/domains/vineet.json
index e009e7107..05c394c05 100644
--- a/domains/vineet.json
+++ b/domains/vineet.json
@@ -3,10 +3,10 @@
"repo": "https://github.com/iamv1n/iamv1n.github.io",
"owner": {
"username": "iamv1n",
- "email": "vineet@iamv1n.xyz",
+ "email": "vind3v17@gmail.com",
"twitter": "vineetstwt"
},
"record": {
- "URL": "https://iamv1n.xyz"
+ "URL": "https://iamv1n.github.io"
}
}
diff --git a/domains/vion.json b/domains/vion.json
deleted file mode 100644
index 85a28d53f..000000000
--- a/domains/vion.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "VIONYT",
- "email": "yt.vion@gmail.com"
- },
- "record": {
- "URL": "https://vion.moe"
- }
-}
diff --git a/domains/viplav-mistry.json b/domains/viplav-mistry.json
index be235bee8..e937fd6cb 100644
--- a/domains/viplav-mistry.json
+++ b/domains/viplav-mistry.json
@@ -9,4 +9,3 @@
"CNAME": "viplav-mistry.github.io"
}
}
-
diff --git a/domains/vipul.json b/domains/vipul.json
new file mode 100644
index 000000000..9960e68b0
--- /dev/null
+++ b/domains/vipul.json
@@ -0,0 +1,10 @@
+{
+ "repo": "https://github.com/VipulOG/VipulOG.github.io",
+ "owner": {
+ "username": "VipulOG",
+ "email": "vipultyagi386+github@gmail.com"
+ },
+ "record": {
+ "CNAME": "VipulOG.github.io"
+ }
+}
\ No newline at end of file
diff --git a/domains/viraj.json b/domains/viraj.json
new file mode 100644
index 000000000..5099b81fd
--- /dev/null
+++ b/domains/viraj.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Viraj2722",
+ "email": "virajwalavalkar90982@gmail.com",
+ "twitter": "WalavalkarViraj"
+ },
+ "description": "my website",
+ "record": {
+ "CNAME": "viraj2722.github.io"
+ }
+}
diff --git a/domains/vishalkrsharma.json b/domains/vishalkrsharma.json
new file mode 100644
index 000000000..61a833385
--- /dev/null
+++ b/domains/vishalkrsharma.json
@@ -0,0 +1,12 @@
+{
+ "owner": {
+ "username": "vishalkrsharma",
+ "email": "",
+ "discord": "daredev1l#0205"
+ },
+ "description": "Vishal Kumar Sharma - Portfolio",
+ "repo": "https://github.com/vishalkrsharma/portfolio",
+ "record": {
+ "URL": "https://vishalkrsharma.vercel.app"
+ }
+}
diff --git a/domains/vishesh.json b/domains/vishesh.json
deleted file mode 100644
index da0f439a4..000000000
--- a/domains/vishesh.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "My Personal Website",
- "repo": "https://github.com/VisheshBansal",
- "owner": {
- "username": "VisheshBansal",
- "email": "hi@visheshbansal.ml",
- "twitter": "VisheshBansal17"
- },
- "record": {
- "URL": "https://visheshbansal.ml"
- }
-}
diff --git a/domains/vishwa.json b/domains/vishwa.json
new file mode 100644
index 000000000..34a40edc1
--- /dev/null
+++ b/domains/vishwa.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "vishwa2001911",
+ "email": "vprabhath937@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/visionavtr.json b/domains/visionavtr.json
new file mode 100644
index 000000000..b817b2fed
--- /dev/null
+++ b/domains/visionavtr.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "creatize",
+ "email": "lada_862@mail.ru"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/vivek.json b/domains/vivek.json
index 0abada45c..af6c7aaae 100644
--- a/domains/vivek.json
+++ b/domains/vivek.json
@@ -6,12 +6,7 @@
"email": "vivekoraon@pm.me"
},
"record": {
- "A": [
- "185.199.109.153",
- "185.199.108.153",
- "185.199.111.153",
- "185.199.110.153"
- ],
+ "A": ["185.199.109.153", "185.199.108.153", "185.199.111.153", "185.199.110.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/vk.json b/domains/vk.json
new file mode 100644
index 000000000..ce960e880
--- /dev/null
+++ b/domains/vk.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "VICTORVICKIE",
+ "email": "s.vickie14@gmail.com",
+ "discord": "448131424655114250"
+ },
+
+ "record": {
+ "CNAME": "victorvickie.github.io"
+ }
+}
diff --git a/domains/voh.json b/domains/voh.json
new file mode 100644
index 000000000..75d965ee6
--- /dev/null
+++ b/domains/voh.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "TotallyVoh",
+ "email": "vohonganhPE@gmail.com"
+ },
+ "record": {
+ "CNAME": "totallyvoh.github.io"
+ }
+}
diff --git a/domains/void6670.json b/domains/void6670.json
new file mode 100644
index 000000000..3ed67ade2
--- /dev/null
+++ b/domains/void6670.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "void6670",
+ "email": "kevik744@gmail.com"
+ },
+ "record": {
+ "CNAME": "3faecb26-e13c-4b63-8790-68bd9c21cc6b.id.repl.co"
+ }
+}
diff --git a/domains/vollow.json b/domains/vollow.json
new file mode 100644
index 000000000..14dac0b86
--- /dev/null
+++ b/domains/vollow.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "vollowx",
+ "email": "muffinslog@proton.me"
+ },
+ "record": {
+ "CNAME": "vollowx.github.io"
+ }
+}
diff --git a/domains/voonyuan.json b/domains/voonyuan.json
new file mode 100644
index 000000000..61e408cf6
--- /dev/null
+++ b/domains/voonyuan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "VonYuan",
+ "email": "voonyuan11@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/vsecoder.json b/domains/vsecoder.json
index 298541b34..db6d926e4 100644
--- a/domains/vsecoder.json
+++ b/domains/vsecoder.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "vsecoder.github.io"
}
-}
+}
diff --git a/domains/wablesanket.json b/domains/wablesanket.json
deleted file mode 100644
index 2b83d1b64..000000000
--- a/domains/wablesanket.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "My Portfolio",
- "repo": "https://github.com/Sanketwable/Portfolio",
- "owner": {
- "username": "sanketwable",
- "email": "sanketwable123@gmail.com",
- "twitter": "Wable_Sanket_"
- },
- "record": {
- "URL": "https://wablesanket.xyz"
- }
-}
diff --git a/domains/wan.json b/domains/wan.json
new file mode 100644
index 000000000..28ed11e47
--- /dev/null
+++ b/domains/wan.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "wansies",
+ "email": "taio6@duck.com"
+ },
+ "record": {
+ "CNAME": "wansies.github.io"
+ }
+}
diff --git a/domains/wang.json b/domains/wang.json
new file mode 100644
index 000000000..fd02ae2df
--- /dev/null
+++ b/domains/wang.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "wang-on-top",
+ "email": "Real.Shid.999@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/wangjoui.json b/domains/wangjoui.json
new file mode 100644
index 000000000..66b9329d2
--- /dev/null
+++ b/domains/wangjoui.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "hii311",
+ "email": "trieuvy5ghz@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/wankhede.json b/domains/wankhede.json
new file mode 100644
index 000000000..d26b45d0e
--- /dev/null
+++ b/domains/wankhede.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "FIRSTB0SS",
+ "email": "abhiwa6@protonmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/wansie.json b/domains/wansie.json
new file mode 100644
index 000000000..e6a147a94
--- /dev/null
+++ b/domains/wansie.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "wansie1",
+ "email": "msc2tvdn@duck.com",
+ "note": "This record was created by is-a.dev Discord bot via discord id: 962788530336178236"
+ },
+
+ "record": {
+ "CNAME": "2cf5a77a-3918-4448-ba3e-e1d73a99155f.id.repl.co"
+ }
+}
diff --git a/domains/wansies.json b/domains/wansies.json
new file mode 100644
index 000000000..343bb4601
--- /dev/null
+++ b/domains/wansies.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "wansiie",
+ "email": "Janeiscool4ever@web.de"
+ },
+ "record": {
+ "URL": "https://helix-pullover-d4c.notion.site/wansie-3655baf5f6de40cc8be7aa8cbf67f095"
+ }
+}
diff --git a/domains/wap.json b/domains/wap.json
new file mode 100644
index 000000000..92e7cb91e
--- /dev/null
+++ b/domains/wap.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "kramiikk",
+ "email": "hifund@yandex.ru"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/wasterecycleassistant.chiragnahata.json b/domains/wasterecycleassistant.chiragnahata.json
new file mode 100644
index 000000000..a23664d55
--- /dev/null
+++ b/domains/wasterecycleassistant.chiragnahata.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "chiragnahata",
+ "email": "chiragnahata05@gmail.com"
+ },
+ "record": {
+ "A": ["129.213.151.29"]
+ }
+}
diff --git a/domains/webb.json b/domains/webb.json
deleted file mode 100644
index 050fba1a6..000000000
--- a/domains/webb.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "owner": {
- "username": "johanoloflindberg",
- "email": "johan@webbab.se"
- },
-
- "record": {
- "URL": "https://webb.io"
- }
-}
diff --git a/domains/whine.json b/domains/whine.json
index 989e4ab21..5a883e14a 100644
--- a/domains/whine.json
+++ b/domains/whine.json
@@ -7,12 +7,7 @@
"twitter": "whi_nyaan"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ],
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/whyleonardo.json b/domains/whyleonardo.json
deleted file mode 100644
index 7939ab75f..000000000
--- a/domains/whyleonardo.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "owner": {
- "username": "whyleonardo",
- "email": "pleasefloyd73@gmail.com"
- },
- "record": {
- "URL": "https://nextjs-portfolio-chi-taupe.vercel.app"
- }
-}
diff --git a/domains/wife.daddy.json b/domains/wife.daddy.json
deleted file mode 100644
index 06e5cc37a..000000000
--- a/domains/wife.daddy.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "description": "Daddy's wife's website",
- "owner": {
- "username": "MaskDuck",
- "email": "maskduckuwu@gmail.com"
- },
- "record": {
- "URL": "https://maskduck.is-a.dev"
- }
-}
diff --git a/domains/william.json b/domains/william.json
index 6f0c5a82f..74ee0d3ed 100644
--- a/domains/william.json
+++ b/domains/william.json
@@ -1,10 +1,10 @@
-{
- "owner": {
- "username": "WilliamDavidHarrison",
- "email": "william@williamharrison.dev"
- },
-
- "record": {
- "URL": "https://williamharrison.dev"
- }
-}
+{
+ "owner": {
+ "username": "WilliamDavidHarrison",
+ "email": "william@williamharrison.dev"
+ },
+
+ "record": {
+ "CNAME": "hosts.is-a.dev"
+ }
+}
diff --git a/domains/williamsebastian.json b/domains/williamsebastian.json
new file mode 100644
index 000000000..2c091c5c9
--- /dev/null
+++ b/domains/williamsebastian.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "BaseParody",
+ "email": "baseparody@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/willo.json b/domains/willo.json
index 63a4082df..e3e249498 100644
--- a/domains/willo.json
+++ b/domains/willo.json
@@ -7,12 +7,7 @@
"twitter": "willoizcitron"
},
"record": {
- "A": [
- "185.199.109.153",
- "185.199.108.153",
- "185.199.111.153",
- "185.199.110.153"
- ],
+ "A": ["185.199.109.153", "185.199.108.153", "185.199.111.153", "185.199.110.153"],
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
diff --git a/domains/willothy.json b/domains/willothy.json
new file mode 100644
index 000000000..b117237fd
--- /dev/null
+++ b/domains/willothy.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "willothy",
+ "email": "willothyh@gmail.com"
+ },
+ "record": {
+ "URL": "https://willothy.com"
+ }
+}
diff --git a/domains/willy.json b/domains/willy.json
new file mode 100644
index 000000000..51b5b078f
--- /dev/null
+++ b/domains/willy.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "neutrobox",
+ "email": "neutrobox@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/windfarms.json b/domains/windfarms.json
index 92117b3db..aff2fa0a9 100644
--- a/domains/windfarms.json
+++ b/domains/windfarms.json
@@ -1,11 +1,11 @@
-{
- "description": "WindFarms offical website",
- "repo": "https://github.com/windfarms/windfarms.github.io",
- "owner": {
- "username": "windfarms",
- "email": "windfarms@andrealicheri.anonaddy.com"
- },
- "record": {
- "CNAME": "windfarms.github.io"
- }
-}
\ No newline at end of file
+{
+ "description": "WindFarms offical website",
+ "repo": "https://github.com/windfarms/windfarms.github.io",
+ "owner": {
+ "username": "windfarms",
+ "email": "windfarms@andrealicheri.anonaddy.com"
+ },
+ "record": {
+ "CNAME": "windfarms.github.io"
+ }
+}
diff --git a/domains/window5.json b/domains/window5.json
new file mode 100644
index 000000000..e34ab4fc9
--- /dev/null
+++ b/domains/window5.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Window5000",
+ "email": "spam.window5.spam@gmail.com"
+ },
+ "record": {
+ "CNAME": "window5000.github.io"
+ }
+}
diff --git a/domains/winniepat.json b/domains/winniepat.json
new file mode 100644
index 000000000..573a55433
--- /dev/null
+++ b/domains/winniepat.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "RavagerEdge",
+ "email": "wc92226@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/wiredmind.json b/domains/wiredmind.json
index b3fb028f1..b88e1903e 100644
--- a/domains/wiredmind.json
+++ b/domains/wiredmind.json
@@ -1,9 +1,9 @@
{
- "owner": {
- "username": "WiredMind2",
- "email": "admin@tetrazero.com"
- },
- "record": {
- "URL": "https://tetrazero.com"
- }
+ "owner": {
+ "username": "WiredMind2",
+ "email": "admin@tetrazero.com"
+ },
+ "record": {
+ "URL": "https://tetrazero.com"
+ }
}
diff --git a/domains/wisnu.json b/domains/wisnu.json
deleted file mode 100644
index de02d3b6e..000000000
--- a/domains/wisnu.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Wisnu Personal Website",
- "repo": "https://github.com/waxaranai",
- "owner": {
- "username": "Waxaranai",
- "email": "waxaranai@gmail.com"
- },
- "record": {
- "URL": "https://wisnu.me"
- }
-}
diff --git a/domains/wojciechzieciak.json b/domains/wojciechzieciak.json
new file mode 100644
index 000000000..174683843
--- /dev/null
+++ b/domains/wojciechzieciak.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "xYundy",
+ "email": "wojciech.zieciak@gmail.com"
+ },
+ "record": {
+ "URL": "https://xyundy.pl/"
+ }
+}
diff --git a/domains/woundrite.json b/domains/woundrite.json
index bb3a0ab3f..f3a53148b 100644
--- a/domains/woundrite.json
+++ b/domains/woundrite.json
@@ -4,11 +4,6 @@
"email": "ndbendale2004@gmail.com"
},
"record": {
- "A": [
- "185.199.108.153",
- "185.199.109.153",
- "185.199.110.153",
- "185.199.111.153"
- ]
+ "A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"]
}
}
diff --git a/domains/wtfdrshn.json b/domains/wtfdrshn.json
new file mode 100644
index 000000000..e5adcf3cc
--- /dev/null
+++ b/domains/wtfdrshn.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "wtfdrshn",
+ "email": "itsmedarshan8@gmail.com"
+ },
+ "record": {
+ "CNAME": "wtfdrshn.github.io"
+ }
+}
diff --git a/domains/wusong.json b/domains/wusong.json
new file mode 100644
index 000000000..3a742781c
--- /dev/null
+++ b/domains/wusong.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "bayunjiang",
+ "email": "master@bayun.org"
+ },
+
+ "record": {
+ "CNAME": "bayunjiang.github.io"
+ }
+}
diff --git a/domains/www.amulyasingh.json b/domains/www.amulyasingh.json
new file mode 100644
index 000000000..397c34f77
--- /dev/null
+++ b/domains/www.amulyasingh.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "JstHuman",
+ "email": "ytamulya77@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/x0ba.json b/domains/x0ba.json
new file mode 100644
index 000000000..c05873287
--- /dev/null
+++ b/domains/x0ba.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "x0ba",
+ "email": "mkshift@tuta.io"
+ },
+ "record": {
+ "CNAME": "x0ba.github.io"
+ }
+}
diff --git a/domains/x3ric.json b/domains/x3ric.json
new file mode 100644
index 000000000..961b4cbc6
--- /dev/null
+++ b/domains/x3ric.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "X3ric",
+ "email": "ericxaime@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/x8t.json b/domains/x8t.json
new file mode 100644
index 000000000..8098364af
--- /dev/null
+++ b/domains/x8t.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "x8t-code",
+ "email": "x8t@tuta.io"
+ },
+ "record": {
+ "CNAME": "x8t-code.github.io"
+ }
+}
diff --git a/domains/xanudu.json b/domains/xanudu.json
index b291adc2e..710f867a6 100644
--- a/domains/xanudu.json
+++ b/domains/xanudu.json
@@ -1,11 +1,11 @@
{
- "description": "Xanudu Buster's Website",
- "repo": "https://xanudubuster.github.io",
- "owner": {
- "username": "XanuduBuster",
- "email": "xanubuster@proton.me"
- },
- "record": {
- "CNAME": "xanudubuster.github.io"
- }
+ "description": "Xanudu Buster's Website",
+ "repo": "https://xanudubuster.github.io",
+ "owner": {
+ "username": "XanuduBuster",
+ "email": "xanubuster@proton.me"
+ },
+ "record": {
+ "CNAME": "xanudubuster.github.io"
+ }
}
diff --git a/domains/xash.json b/domains/xash.json
new file mode 100644
index 000000000..905a7c85d
--- /dev/null
+++ b/domains/xash.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "7xa5h",
+ "email": "xash4492@gmail.com"
+ },
+ "record": {
+ "CNAME": "7xa5h.github.io"
+ }
+}
diff --git a/domains/xeno.json b/domains/xeno.json
new file mode 100644
index 000000000..7f8c47487
--- /dev/null
+++ b/domains/xeno.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "Aether1777",
+ "email": "bkevin39415@gmail.com"
+ },
+ "record": {
+ "CNAME": "border.hop.io"
+ }
+}
diff --git a/domains/xgorn.json b/domains/xgorn.json
new file mode 100644
index 000000000..be34b401e
--- /dev/null
+++ b/domains/xgorn.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "X-Gorn",
+ "email": "xgorntv@gmail.com"
+ },
+ "record": {
+ "CNAME": "x-gorn.github.io"
+ }
+}
diff --git a/domains/xian.json b/domains/xian.json
new file mode 100644
index 000000000..917ce7eef
--- /dev/null
+++ b/domains/xian.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "xian-docdocil",
+ "email": "xian.docdocil@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/xiaoxi-tw.json b/domains/xiaoxi-tw.json
new file mode 100644
index 000000000..bd5bc1e67
--- /dev/null
+++ b/domains/xiaoxi-tw.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "jimmy20180130",
+ "email": "jimmy20180130@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/xkubsoneq.json b/domains/xkubsoneq.json
deleted file mode 100644
index 42e5339c5..000000000
--- a/domains/xkubsoneq.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "About me.",
- "repo": "https://github.com/xKubsoneQ",
- "owner": {
- "username": "xKubsoneQ",
- "email": "",
- "twitter": "undef1n3d_"
- },
- "record": {
- "URL": "https://pomocnikbot.pl/dev/socials"
- }
-}
diff --git a/domains/xorisx.json b/domains/xorisx.json
new file mode 100644
index 000000000..48a745462
--- /dev/null
+++ b/domains/xorisx.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "vividcolorss",
+ "email": "68936a@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/xqwtxon.json b/domains/xqwtxon.json
index 75dd5910b..dfc09f59b 100644
--- a/domains/xqwtxon.json
+++ b/domains/xqwtxon.json
@@ -5,7 +5,7 @@
"username": "xqwtxon",
"email": "xqwtxon@hotmail.com",
"twitter": "xqwtxon",
- "keybase": "@xqwtxon"
+ "keybase": "xqwtxon"
},
"record": {
"CNAME": "xqwtxon.ml"
diff --git a/domains/xuanwu.json b/domains/xuanwu.json
new file mode 100644
index 000000000..14200571f
--- /dev/null
+++ b/domains/xuanwu.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "vlux",
+ "email": "vluxyue@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/ya.json b/domains/ya.json
deleted file mode 100644
index 4d6cb0b1e..000000000
--- a/domains/ya.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "description": "API For My Projects!",
- "repo": "https://github.com/icancodebeauty/api",
- "owner": {
- "username": "icancodebeauty",
- "email": "aditya@mail.aditya.is-a.dev",
- "twitter": "CodeWithAadi"
- },
- "record": {
- "CNAME": "icancodebeauty.github.io"
- }
-}
diff --git a/domains/yairmedina.json b/domains/yairmedina.json
new file mode 100644
index 000000000..77c870165
--- /dev/null
+++ b/domains/yairmedina.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "DarknessRisesFromBelow",
+ "email": "spam.me.please.do.it@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/yajat.json b/domains/yajat.json
deleted file mode 100644
index a9b547a73..000000000
--- a/domains/yajat.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "My Personal Website",
- "repo": "https://github.com/iamyajat",
- "owner": {
- "username": "iamyajat",
- "email": "me@iamyajat.co"
- },
- "record": {
- "URL": "https://www.iamyajat.co"
- }
-}
diff --git a/domains/yaman.json b/domains/yaman.json
deleted file mode 100644
index 7d7bd24b0..000000000
--- a/domains/yaman.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Redirecting to my blog",
- "repo": "https://github.com/julianyaman",
- "owner": {
- "username": "julianyaman",
- "email": "mail@yaman.pro"
- },
- "record": {
- "URL": "https://julianyaman.com"
- }
-}
diff --git a/domains/yash-khattar.json b/domains/yash-khattar.json
new file mode 100644
index 000000000..26520e320
--- /dev/null
+++ b/domains/yash-khattar.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Yash-Khattar",
+ "email": "yashkhattar73@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/yashash.json b/domains/yashash.json
deleted file mode 100644
index 0de5cef1e..000000000
--- a/domains/yashash.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "description": "Personal portfolio website",
- "repo": "https://github.com/yashash1511/yashash1511.github.io",
- "owner": {
- "username": "yashash1511",
- "email": "yashash1511@gmail.com"
- },
- "record": {
- "URL": "https://yashash1511.github.io"
- }
-}
diff --git a/domains/yashrao.json b/domains/yashrao.json
new file mode 100644
index 000000000..d4d4ed9c8
--- /dev/null
+++ b/domains/yashrao.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "py-yash",
+ "email": "cwyash.rao@gmail.com"
+ },
+ "record": {
+ "CNAME": "py-yash.github.io"
+ }
+}
diff --git a/domains/yashwardhan.json b/domains/yashwardhan.json
new file mode 100644
index 000000000..ee445f4c1
--- /dev/null
+++ b/domains/yashwardhan.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "yashwardhan333666",
+ "email": "yashwardhan333666@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/yasser.json b/domains/yasser.json
new file mode 100644
index 000000000..09c281ae6
--- /dev/null
+++ b/domains/yasser.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "yasserfds",
+ "email": "yasserfedsi34@gmail.com"
+ },
+ "record": {
+ "URL": "https://yasserfedsi.vercel.app"
+ }
+}
diff --git a/domains/yassin.json b/domains/yassin.json
index 8af17448f..2aac3bc04 100644
--- a/domains/yassin.json
+++ b/domains/yassin.json
@@ -1,12 +1,12 @@
-{
- "description": "my bio",
- "repo": "https://github.com/ycssin/bio",
- "owner": {
- "username": "ycssin",
- "email": "",
- "twitter": "ycssin"
- },
- "record": {
- "CNAME": "ycssin.github.io"
- }
-}
+{
+ "description": "my bio",
+ "repo": "https://github.com/ycssin/bio",
+ "owner": {
+ "username": "ycssin",
+ "email": "",
+ "twitter": "ycssin"
+ },
+ "record": {
+ "CNAME": "ycssin.github.io"
+ }
+}
diff --git a/domains/yassine.json b/domains/yassine.json
new file mode 100644
index 000000000..4af6c7faf
--- /dev/null
+++ b/domains/yassine.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "yassine20011",
+ "email": "medalgamer47@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "amjad.pages.dev"
+ }
+}
diff --git a/domains/yassinm.json b/domains/yassinm.json
new file mode 100644
index 000000000..7d030b479
--- /dev/null
+++ b/domains/yassinm.json
@@ -0,0 +1,10 @@
+{
+ "owner": {
+ "username": "yassinmoussamih",
+ "email": "yassinmoussamih7@gmail.com"
+ },
+
+ "record": {
+ "URL": "https://yassinmoussamih.vercel.app"
+ }
+}
diff --git a/domains/yiyi.json b/domains/yiyi.json
new file mode 100644
index 000000000..3be8043e0
--- /dev/null
+++ b/domains/yiyi.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "danhuaxiansheng",
+ "email": "646042371@qq.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/yoitsrt.json b/domains/yoitsrt.json
new file mode 100644
index 000000000..4109556f7
--- /dev/null
+++ b/domains/yoitsrt.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "rtgamingwdt",
+ "email": "rustytrim11@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/yokaicord.json b/domains/yokaicord.json
new file mode 100644
index 000000000..defa72f30
--- /dev/null
+++ b/domains/yokaicord.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zxPau",
+ "email": "pauu123123123@gmail.com"
+ },
+ "record": {
+ "CNAME": "zxpau.github.io"
+ }
+}
diff --git a/domains/yose.json b/domains/yose.json
index c717ff345..8a06a608d 100644
--- a/domains/yose.json
+++ b/domains/yose.json
@@ -1,13 +1,13 @@
-{
- "description": "A one-page portfolio website",
- "repo": "https://github.com/yohn-maistre/yohn-maistre.github.io",
- "owner": {
- "username": "yohn-maistre",
- "email": "",
- "twitter": "jind0sh",
- "discord": "jind0sh#5330"
- },
- "record": {
- "CNAME": "yohn-maistre.github.io"
- }
-}
+{
+ "description": "A one-page portfolio website",
+ "repo": "https://github.com/yohn-maistre/yohn-maistre.github.io",
+ "owner": {
+ "username": "yohn-maistre",
+ "email": "",
+ "twitter": "jind0sh",
+ "discord": "jind0sh#5330"
+ },
+ "record": {
+ "CNAME": "yohn-maistre.github.io"
+ }
+}
diff --git a/domains/yourdad.json b/domains/yourdad.json
new file mode 100644
index 000000000..f5d16fdcf
--- /dev/null
+++ b/domains/yourdad.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "roktim32",
+ "email": "roktimsenapoty2@gmail.com"
+ },
+ "record": {
+ "CNAME": "roktim32.github.io"
+ }
+}
diff --git a/domains/yourmom.json b/domains/yourmom.json
new file mode 100644
index 000000000..8a6294146
--- /dev/null
+++ b/domains/yourmom.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "RipAngelhacks",
+ "email": "ojedallopezangel@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/yourtilak.json b/domains/yourtilak.json
index c10efa455..ebcdc84c6 100644
--- a/domains/yourtilak.json
+++ b/domains/yourtilak.json
@@ -6,6 +6,6 @@
"email": "rj05tilak@gmail.com"
},
"record": {
- "CNAME": "YourTilak.github.io"
+ "CNAME": "yourtilak.github.io"
}
}
diff --git a/domains/youssef.json b/domains/youssef.json
new file mode 100644
index 000000000..ad3bd6dd6
--- /dev/null
+++ b/domains/youssef.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "youssefmahboub",
+ "email": "szeropercent@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/yt-dl.json b/domains/yt-dl.json
new file mode 100644
index 000000000..035c6c584
--- /dev/null
+++ b/domains/yt-dl.json
@@ -0,0 +1,12 @@
+
+ {
+ "owner": {
+ "username": "Noma4321",
+ "email": "noam.malka1yt@gmail.com"
+ },
+
+ "record": {
+ "CNAME": "YoutubeDownloader.noma4321.repl.co"
+ }
+ }
+
\ No newline at end of file
diff --git a/domains/yuk1ch.json b/domains/yuk1ch.json
index 695b794cf..b7d906db9 100644
--- a/domains/yuk1ch.json
+++ b/domains/yuk1ch.json
@@ -3,7 +3,7 @@
"username": "ImRaid",
"email": "itsraidlol@gmail.com",
"discord": "! Yuk1ch#7484",
- "telegram": "@Yuk1ch"
+ "telegram": "Yuk1ch"
},
"record": {
"CNAME": "d1d16500-13c2-4fc8-a658-87d258da2316.id.repl.co"
diff --git a/domains/yuki.json b/domains/yuki.json
new file mode 100644
index 000000000..15820aa00
--- /dev/null
+++ b/domains/yuki.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "YukiVN",
+ "email": "mejmayfoof@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/yurikawa.json b/domains/yurikawa.json
index 20d880463..2c11ee304 100644
--- a/domains/yurikawa.json
+++ b/domains/yurikawa.json
@@ -6,11 +6,6 @@
"email": "kaskus45@protonmail.com"
},
"record": {
- "A": [
- "164.132.74.251",
- "164.132.75.251",
- "164.132.76.251",
- "164.132.77.251"
- ]
+ "A": ["164.132.74.251", "164.132.75.251", "164.132.76.251", "164.132.77.251"]
}
}
diff --git a/domains/yuukari.json b/domains/yuukari.json
index 32e15c4d6..12f82471b 100644
--- a/domains/yuukari.json
+++ b/domains/yuukari.json
@@ -4,7 +4,7 @@
"owner": {
"username": "Yuukari",
"email": "yuukarichan@yandex.com",
- "telegram": "@iamyuukari"
+ "telegram": "iamyuukari"
},
"record": {
"CNAME": "yuukari.github.io"
diff --git a/domains/yuuto.json b/domains/yuuto.json
index bf8660a4f..f8426828c 100644
--- a/domains/yuuto.json
+++ b/domains/yuuto.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "user93485.github.io"
}
-}
+}
diff --git a/domains/yyw.json b/domains/yyw.json
new file mode 100644
index 000000000..710e5c0b2
--- /dev/null
+++ b/domains/yyw.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "yywbadm",
+ "email": "yyw.981031@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/zaid-kadri.json b/domains/zaid-kadri.json
index 3783cd1c9..579115611 100644
--- a/domains/zaid-kadri.json
+++ b/domains/zaid-kadri.json
@@ -1,11 +1,11 @@
{
- "description": "This is my website",
- "repo": "https://github.com/zaid-kadri/zaid-kadri.github.io",
- "owner": {
- "username": "zaid-kadri",
- "email": ""
- },
- "record": {
- "URL": "https://zaid-kadri.github.io"
- }
+ "description": "This is my website",
+ "repo": "https://github.com/zaid-kadri/zaid-kadri.github.io",
+ "owner": {
+ "username": "zaid-kadri",
+ "email": ""
+ },
+ "record": {
+ "URL": "https://zaid-kadri.github.io"
+ }
}
diff --git a/domains/zarqi.aicha.json b/domains/zarqi.aicha.json
new file mode 100644
index 000000000..66bd72ebc
--- /dev/null
+++ b/domains/zarqi.aicha.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zarqizoubir",
+ "email": "zarqi.ezzoubair@etu.uae.ac.ma"
+ },
+ "record": {
+ "CNAME": "zarqizoubir.github.io"
+ }
+}
diff --git a/domains/zarqi.ezzoubair.json b/domains/zarqi.ezzoubair.json
new file mode 100644
index 000000000..66bd72ebc
--- /dev/null
+++ b/domains/zarqi.ezzoubair.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zarqizoubir",
+ "email": "zarqi.ezzoubair@etu.uae.ac.ma"
+ },
+ "record": {
+ "CNAME": "zarqizoubir.github.io"
+ }
+}
diff --git a/domains/zarqi.fatima.json b/domains/zarqi.fatima.json
new file mode 100644
index 000000000..66bd72ebc
--- /dev/null
+++ b/domains/zarqi.fatima.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zarqizoubir",
+ "email": "zarqi.ezzoubair@etu.uae.ac.ma"
+ },
+ "record": {
+ "CNAME": "zarqizoubir.github.io"
+ }
+}
diff --git a/domains/zarqi.json b/domains/zarqi.json
new file mode 100644
index 000000000..66bd72ebc
--- /dev/null
+++ b/domains/zarqi.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zarqizoubir",
+ "email": "zarqi.ezzoubair@etu.uae.ac.ma"
+ },
+ "record": {
+ "CNAME": "zarqizoubir.github.io"
+ }
+}
diff --git a/domains/zarqi.loubna.json b/domains/zarqi.loubna.json
new file mode 100644
index 000000000..66bd72ebc
--- /dev/null
+++ b/domains/zarqi.loubna.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zarqizoubir",
+ "email": "zarqi.ezzoubair@etu.uae.ac.ma"
+ },
+ "record": {
+ "CNAME": "zarqizoubir.github.io"
+ }
+}
diff --git a/domains/zaydocs.json b/domains/zaydocs.json
new file mode 100644
index 000000000..d6832a255
--- /dev/null
+++ b/domains/zaydocs.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "KingVibes12",
+ "email": "codemonkeymann@gmail.com"
+ },
+ "record": {
+ "CNAME": "hosts.is-a.dev"
+ }
+}
diff --git a/domains/zener.json b/domains/zener.json
new file mode 100644
index 000000000..b3610abe3
--- /dev/null
+++ b/domains/zener.json
@@ -0,0 +1,11 @@
+{
+ "description": "Personal portfolio site",
+ "repo": "https://github.com/zenerq/zenerq.github.io",
+ "owner": {
+ "username": "zenerq",
+ "email": "rokosamje@gmail.com"
+ },
+ "record": {
+ "CNAME": "zenerq.github.io"
+ }
+}
diff --git a/domains/zepvil.json b/domains/zepvil.json
new file mode 100644
index 000000000..08cbfca6e
--- /dev/null
+++ b/domains/zepvil.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Zepvil",
+ "email": "thezepvil@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/zerolandcode.json b/domains/zerolandcode.json
new file mode 100644
index 000000000..2c5e2fa58
--- /dev/null
+++ b/domains/zerolandcode.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zerolandcode",
+ "email": "rolteoln@gmail.com"
+ },
+ "record": {
+ "CNAME": "zerolandcode.github.io"
+ }
+}
diff --git a/domains/zhaiguangpeng.json b/domains/zhaiguangpeng.json
new file mode 100644
index 000000000..dfc79bef5
--- /dev/null
+++ b/domains/zhaiguangpeng.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "coopercoder",
+ "email": "whitetiger0127@163.com"
+ },
+ "record": {
+ "CNAME": "zhaiguangpeng.love"
+ }
+}
diff --git a/domains/zhougonglai.json b/domains/zhougonglai.json
new file mode 100644
index 000000000..48663a97c
--- /dev/null
+++ b/domains/zhougonglai.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "zhougonglai",
+ "email": "838048635@qq.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/zhu.json b/domains/zhu.json
index f6e82b368..850d638e4 100644
--- a/domains/zhu.json
+++ b/domains/zhu.json
@@ -9,4 +9,4 @@
"record": {
"CNAME": "azhu021.github.io"
}
-}
+}
diff --git a/domains/zhxck.json b/domains/zhxck.json
new file mode 100644
index 000000000..391961f23
--- /dev/null
+++ b/domains/zhxck.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "zh4ck",
+ "email": "zhacxk@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/domains/zxpau.json b/domains/zxpau.json
new file mode 100644
index 000000000..defa72f30
--- /dev/null
+++ b/domains/zxpau.json
@@ -0,0 +1,9 @@
+{
+ "owner": {
+ "username": "zxPau",
+ "email": "pauu123123123@gmail.com"
+ },
+ "record": {
+ "CNAME": "zxpau.github.io"
+ }
+}
diff --git a/domains/zye.json b/domains/zye.json
new file mode 100644
index 000000000..01b5231c3
--- /dev/null
+++ b/domains/zye.json
@@ -0,0 +1,11 @@
+{
+ "owner": {
+ "username": "Zyelixify",
+ "email": "heroxmain@gmail.com"
+ },
+ "record": {
+ "A": ["217.174.245.249"],
+ "MX": ["hosts.is-a.dev"],
+ "TXT": "v=spf1 a mx ip4:217.174.245.249 ~all"
+ }
+}
\ No newline at end of file
diff --git a/package.json b/package.json
index e79c3126e..ccc8dbd41 100644
--- a/package.json
+++ b/package.json
@@ -3,27 +3,20 @@
"version": "1.0.0",
"description": "Register *.is-a.dev domains for free",
"scripts": {
- "test": "ENV=test jest",
"lint": "eslint utils scripts domains --ext .json,.js",
- "publish-records": "node ./scripts/register-domains.js",
+ "publish-records": "bun run -b ./scripts/register-domains.js",
"dc": "docker-compose -p is-a-dev",
- "dc:start": "yarn dc up",
- "dc:shell": "yarn dc run dev /bin/bash"
+ "dc:start": "bun run dc up",
+ "dc:shell": "bun run dc run dev /bin/bash"
},
"repository": {
"type": "git",
"url": "https://github.com/is-a-dev/register"
},
- "keywords": [
- "subdomain"
- ],
"author": "Akshay Nair ",
"license": "GPL-3.0",
"dependencies": {
- "dotenv": "^8.2.0",
- "jest": "^26.4.2",
- "node-fetch": "^2.6.1",
- "qs": "^6.9.4",
+ "ip-regex": "^5.0.0",
"ramda": "^0.27.1"
},
"devDependencies": {
diff --git a/scripts/certbot-auth.sh b/scripts/certbot-auth.sh
new file mode 100755
index 000000000..6b4ee8bc7
--- /dev/null
+++ b/scripts/certbot-auth.sh
@@ -0,0 +1,17 @@
+#!/usr/bin/env bash
+
+echo "$PWD";
+
+echo "AUTH ::[$CERTBOT_VALIDATION]::[$CERTBOT_TOKEN]::[$CERTBOT_REMAINING_CHALLENGES]";
+echo "[$CERTBOT_DOMAIN]";
+
+sleep 1;
+./scripts/certbot.sh acme_txt "$CERTBOT_VALIDATION";
+
+echo "Going to sleep for a few minutes...";
+
+# TODO: Check if $CERTBOT_VALIDATION == $(./scripts/certbot.sh get-acme)?
+sleep $((3*60));
+
+./scripts/certbot.sh check;
+
diff --git a/scripts/certbot.sh b/scripts/certbot.sh
index 3468e7395..2ab0447ae 100755
--- a/scripts/certbot.sh
+++ b/scripts/certbot.sh
@@ -13,13 +13,16 @@ generate_certificate() {
--logs-dir $outdir/logs \
certonly \
--manual \
+ --preferred-challenges=dns \
+ --manual-auth-hook=./scripts/certbot-auth.sh \
-m 'phenax5@gmail.com' \
-d '*.is-a.dev,is-a.dev' \
+ --agree-tos \
$(if_dry_run "--dry-run" "");
echo "+-----------------------------------------------+";
- echo "| Certificates output to: |";
- echo "| $outdir |";
+ echo "| Certificate output: |";
+ echo "|= $outdir";
echo "+-----------------------------------------------+";
}
@@ -61,45 +64,19 @@ update_acme_txt_record() {
update_record add TXT '_acme-challenge' "$1";
}
-update_www_record() {
- update_record remove CNAME 'www' "is-a-dev.github.io";
- sleep 1;
- update_record add A 'www' "68.65.123.44";
-}
-
-upload_acme_file() {
- local key="$1";
- local value="$2";
- echo "
- const { cpanel } = require('./utils/lib/cpanel');
- const { ENV, DOMAIN_DOMAIN, DOMAIN_USER } = require('./utils/constants');
-
- const file = {
- dir: '/home/' + DOMAIN_USER + '/public_html/.well-known/acme-challenge',
- file: '$key',
- content: '$value',
- };
-
- console.log('Uploading acme validation file to', DOMAIN_DOMAIN, '(', ENV, ')...');
- cpanel.file.write(file).then(console.log).catch(console.error);
- " | node -;
-}
-
reset_acme() {
- update_record remove A 'www' "68.65.123.44";
sleep 1;
- update_record add CNAME 'www' "is-a-dev.github.io";
+ update_record remove TXT '_acme-challenge' '';
update_record remove TXT '_acme-challenge' '';
}
+get_acme() { dig +noall +answer _acme-challenge.is-a.dev TXT | awk '{print $5}'; }
+
case "$1" in
- check)
- echo "TXT record:: $(dig +noall +answer _acme-challenge.is-a.dev TXT | awk '{print $5}')";
- ;;
- config_www) update_www_record ;;
- acme_txt) update_acme_txt_record "$2" ;;
- acme_file) upload_acme_file "$2" "$3" ;;
+ check) echo "TXT record:: $(get_acme)" ;;
+ get-acme) get_acme ;;
cert) generate_certificate ;;
+ acme_txt) update_acme_txt_record "$2" ;;
reset) reset_acme ;;
*) echo "Invalid command"; exit 1; ;;
esac
@@ -108,8 +85,6 @@ esac
### STEPS ###
# Run ./scripts/certbot.sh cert
# Run ./scripts/certbot.sh acme_txt ""
-# Run ./scripts/certbot.sh acme_file "" ""
-# Run ./scripts/certbot.sh config_www
# cp -r /tmp/is-a-dev-whatever /opt/app/code/is-a-dev-cert
# Upload cert.pem and privkey.pem (from config/live/is-a.dev/) contents to SSL > Manage SSL Sites
# Run ./scripts/certbot.sh reset
diff --git a/tests/domain-service.test.js b/tests/domain-service.test.js
index 166712596..79ea1d1e2 100644
--- a/tests/domain-service.test.js
+++ b/tests/domain-service.test.js
@@ -204,18 +204,18 @@ describe('Domain service', () => {
{ name: 'c', type: 'MX', address: 'foobar.com', priority: 2 },
]);
- expect(addZone).toBeCalledTimes(1);
+ expect(addZone).toHaveBeenCalledTimes(1);
expect(getRecordCalls(addZone)).toEqual([
{ name: 'c', type: 'A', address: '12.131321.213' },
]);
- expect(addEmail).toBeCalledTimes(1);
+ expect(addEmail).toHaveBeenCalledTimes(1);
expect(getRecordCalls(addEmail)).toEqual([
{ domain: 'c.is-a.dev', exchanger: 'foobar.com', priority: 2 },
]);
- expect(removeZone).toBeCalledTimes(0);
- expect(removeEmail).toBeCalledTimes(0);
+ expect(removeZone).toHaveBeenCalledTimes(0);
+ expect(removeEmail).toHaveBeenCalledTimes(0);
});
it('should update matching host and set it', async () => {
@@ -231,11 +231,11 @@ describe('Domain service', () => {
{ name: 'b', type: 'CNAME', address: 'googoogaga' },
]);
- expect(addZone).toBeCalledTimes(1);
+ expect(addZone).toHaveBeenCalledTimes(1);
expect(getRecordCalls(addZone)).toEqual([
{ name: 'b', type: 'CNAME', address: 'googoogaga' },
]);
- expect(removeZone).toBeCalledTimes(1);
+ expect(removeZone).toHaveBeenCalledTimes(1);
expect(getRecordCalls(removeZone)).toEqual([
{ line: 2 },
]);
@@ -256,12 +256,12 @@ describe('Domain service', () => {
{ name: 'b', type: 'CNAME', address: 'farboo' },
]);
- expect(addZone).toBeCalledTimes(2);
+ expect(addZone).toHaveBeenCalledTimes(2);
expect(getRecordCalls(addZone)).toEqual([
{ name: 'b', type: 'CNAME', address: 'googoogaga' },
{ name: 'b', type: 'CNAME', address: 'farboo' },
]);
- expect(removeZone).toBeCalledTimes(2);
+ expect(removeZone).toHaveBeenCalledTimes(2);
expect(getRecordCalls(removeZone)).toEqual([
{ line: 2 },
{ line: 3 },
@@ -300,34 +300,34 @@ describe('Domain service', () => {
{ name: 'a', type: 'MX', address: 'example.com', priority: 20 },
]);
- expect(addZone).toBeCalledTimes(3);
+ expect(addZone).toHaveBeenCalledTimes(3);
expect(getRecordCalls(addZone)).toEqual([
{ name: 'a', type: 'CNAME', address: 'boo' },
{ name: 'b', type: 'A', address: '3' },
{ name: 'd', type: 'CNAME', address: 'helo.com' },
]);
- expect(removeZone).toBeCalledTimes(1);
+ expect(removeZone).toHaveBeenCalledTimes(1);
expect(getRecordCalls(removeZone)).toEqual([
{ line: 1 },
]);
- expect(addEmail).toBeCalledTimes(1);
+ expect(addEmail).toHaveBeenCalledTimes(1);
expect(getRecordCalls(addEmail)).toEqual([
{ domain: 'a.is-a.dev', exchanger: 'example.com', priority: 20 },
]);
- expect(removeEmail).toBeCalledTimes(2);
+ expect(removeEmail).toHaveBeenCalledTimes(2);
expect(getRecordCalls(removeEmail)).toEqual([
{ domain: 'c.is-a.dev', exchanger: 'mx1.hello.com', priority: 20 },
{ domain: 'b.is-a.dev', exchanger: 'foo.bar', priority: 20 },
]);
- expect(addRedir).toBeCalledTimes(3);
+ expect(addRedir).toHaveBeenCalledTimes(3);
expect(getRecordCalls(addRedir)).toEqual([
{ domain: `b.${DOMAIN_DOMAIN}`, type: 'permanent', redirect: 'https://wowow.com' },
{ domain: `d.${DOMAIN_DOMAIN}`, type: 'permanent', redirect: 'https://hhh.com' },
{ domain: `x.${DOMAIN_DOMAIN}`, type: 'permanent', redirect: 'https://example69.com' },
]);
- expect(removeRedir).toBeCalledTimes(2);
+ expect(removeRedir).toHaveBeenCalledTimes(2);
expect(getRecordCalls(removeRedir)).toEqual([
{ domain: `b.${DOMAIN_DOMAIN}` },
{ domain: `x.${DOMAIN_DOMAIN}` },
diff --git a/tests/register.test.js b/tests/register.test.js
index 88eb4694e..bd967a298 100644
--- a/tests/register.test.js
+++ b/tests/register.test.js
@@ -1,9 +1,18 @@
-const R = require('ramda');
-const { toHostList, registerDomains } = require('../scripts/register-domains');
-const { TTL, DOMAIN_DOMAIN } = require('../utils/constants');
-const { getDomainService } = require('../utils/domain-service');
+const R = require('ramda')
+const { toHostList, registerDomains } = require('../scripts/register-domains')
+const { TTL, DOMAIN_DOMAIN } = require('../utils/constants')
+const { getDomainService } = require('../utils/domain-service')
-const getCpanel = ({ zone, addZone, removeZone, redir, addRedir, removeRedir } = {}) => ({
+const getCpanel = ({
+ zone,
+ addZone,
+ removeZone,
+ redir,
+ addRedir,
+ removeRedir,
+ addEmail,
+ removeEmail,
+} = {}) => ({
zone: {
fetch: (_) => zone(),
add: (rec) => addZone(rec),
@@ -18,7 +27,7 @@ const getCpanel = ({ zone, addZone, removeZone, redir, addRedir, removeRedir } =
add: (rec) => addEmail(rec),
remove: (rec) => removeEmail(rec),
},
-});
+})
describe('toHostList', () => {
it('should flatten domain data to list of hosts (without https)', () => {
@@ -27,7 +36,7 @@ describe('toHostList', () => {
{ name: 'foobar', record: { CNAME: 'v.io' } },
{ name: 'xx', record: { A: ['1.2.3.4', '5.6.3.2', '1.2.31.1'] } },
{ name: 'xx', record: { CNAME: 'foobar.com', MX: ['as.com', 'f.com'] } },
- ]);
+ ])
expect(res).toEqual([
{ name: 'akshay', type: 'CNAME', address: 'phenax.github.io', ttl: TTL },
@@ -38,83 +47,163 @@ describe('toHostList', () => {
{ name: 'xx', type: 'CNAME', address: 'foobar.com', ttl: TTL },
{ name: 'xx', type: 'MX', address: 'as.com', priority: 20, ttl: TTL },
{ name: 'xx', type: 'MX', address: 'f.com', priority: 21, ttl: TTL },
- ]);
- });
-});
+ ])
+ })
+})
describe('registerDomains', () => {
- const addZone = jest.fn(async () => ({}));
- const removeZone = jest.fn(async () => ({}));
- const addRedir = jest.fn(async () => ({}));
- const removeRedir = jest.fn(async () => ({}));
- const addEmail = jest.fn(async () => ({}));
- const removeEmail = jest.fn(async () => ({}));
+ const addZone = jest.fn(async () => ({}))
+ const removeZone = jest.fn(async () => ({}))
+ const addRedir = jest.fn(async () => ({}))
+ const removeRedir = jest.fn(async () => ({}))
+ const addEmail = jest.fn(async () => ({}))
+ const removeEmail = jest.fn(async () => ({}))
- const mockDS = ({ zones, redirections }) => getDomainService({
- cpanel: getCpanel({
- zone: async () => zones,
- redir: async () => redirections,
- addZone,
- addEmail,
- addRedir,
- removeZone,
- removeRedir,
- removeEmail,
+ const mockDS = ({ zones, redirections }) =>
+ getDomainService({
+ cpanel: getCpanel({
+ zone: async () => zones,
+ redir: async () => redirections,
+ addZone,
+ addEmail,
+ addRedir,
+ removeZone,
+ removeRedir,
+ removeEmail,
+ }),
})
- });
beforeEach(() => {
- addZone.mockClear();
- removeZone.mockClear();
- addRedir.mockClear();
- removeRedir.mockClear();
- addEmail.mockClear();
- removeEmail.mockClear();
- });
+ addZone.mockClear()
+ removeZone.mockClear()
+ addRedir.mockClear()
+ removeRedir.mockClear()
+ addEmail.mockClear()
+ removeEmail.mockClear()
+ })
it('should register the new set of hosts generated from domains list', async () => {
const localHosts = [
{ name: 'a', record: { CNAME: 'hello' } },
{ name: 'b', record: { CNAME: 'xaa' } },
- ];
+ ]
const remoteHosts = [
{ line: 1, name: 'a', type: 'CNAME', address: 'hello' },
{ line: 2, name: 'b', type: 'CNAME', address: 'goo' },
{ line: 3, name: 'b', type: 'CNAME', address: 'xaa' },
- ];
- const remoteRedirections = [];
+ ]
+ const remoteRedirections = []
- const domainService = mockDS({ zones: remoteHosts, redirections: remoteRedirections });
- await registerDomains({ getDomains: async () => localHosts, domainService });
+ const domainService = mockDS({
+ zones: remoteHosts,
+ redirections: remoteRedirections,
+ })
+ await registerDomains({ getDomains: async () => localHosts, domainService })
- expect(addZone).toBeCalledTimes(0);
- expect(removeZone).toBeCalledTimes(1);
- expect(addRedir).toBeCalledTimes(0);
- expect(removeRedir).toBeCalledTimes(0);
- });
+ expect(addZone).toHaveBeenCalledTimes(0)
+ expect(removeZone).toHaveBeenCalledTimes(1)
+ expect(addRedir).toHaveBeenCalledTimes(0)
+ expect(removeRedir).toHaveBeenCalledTimes(0)
+ })
it('should add the new set hosts', async () => {
const localHosts = [
- { name: 'a', record: { CNAME: 'boo', URL: 'z' } },
- { name: 'b', record: { CNAME: 'xaa', URL: 'x' } },
- { name: 'c', record: { CNAME: 'yello', URL: 'https://google.com' } },
- ];
+ { name: 'a', record: { CNAME: 'boo' } },
+ {
+ name: 'b',
+ record: { A: ['1.1.1.1', '1.1.1.2'], MX: 'somemx', TXT: 'some txt' },
+ },
+ { name: 'c', record: { URL: 'https://google.com' } },
+ { name: 'd', record: { CNAME: 'foobar' } },
+ { name: 'e', record: { A: ['2.2.2.2'], TXT: ['some', 'extra', 'txt'] } },
+ ]
const remoteHosts = [
{ line: 1, name: 'a', type: 'CNAME', address: 'boo' },
- { line: 2, name: 'b', type: 'CNAME', address: 'xaa' },
- ];
+ { line: 2, name: 'b', type: 'MX', address: 'othermx' },
+ { line: 3, name: 'd', type: 'CNAME', address: 'foobaz' },
+ ]
const remoteRedirections = [
{ domain: `b.${DOMAIN_DOMAIN}`, destination: 'x' },
{ domain: `a.${DOMAIN_DOMAIN}`, destination: 'y' },
- ];
+ ]
- const domainService = mockDS({ zones: remoteHosts, redirections: remoteRedirections });
- await registerDomains({ getDomains: async () => localHosts, domainService });
+ const domainService = mockDS({
+ zones: remoteHosts,
+ redirections: remoteRedirections,
+ })
+ await registerDomains({ getDomains: async () => localHosts, domainService })
- expect(addZone).toBeCalledTimes(1);
- expect(removeZone).toBeCalledTimes(0);
- expect(addRedir).toBeCalledTimes(2);
- expect(removeRedir).toBeCalledTimes(1);
- });
-});
+ expect(addZone).toHaveBeenCalledTimes(8)
+ expect(addZone.mock.calls).toEqual([
+ [{ name: 'b', type: 'A', address: '1.1.1.1', line: undefined }],
+ [{ name: 'b', type: 'A', address: '1.1.1.2', line: undefined }],
+ [
+ {
+ name: 'b',
+ type: 'TXT',
+ address: 'some txt',
+ txtdata: 'some txt',
+ line: undefined,
+ },
+ ],
+ [
+ {
+ name: 'd',
+ type: 'CNAME',
+ cname: 'foobar',
+ address: 'foobar',
+ line: undefined,
+ },
+ ],
+ [{ name: 'e', type: 'A', address: '2.2.2.2', line: undefined }],
+ [
+ {
+ name: 'e',
+ type: 'TXT',
+ address: 'some',
+ txtdata: 'some',
+ line: undefined,
+ },
+ ],
+ [
+ {
+ name: 'e',
+ type: 'TXT',
+ address: 'extra',
+ txtdata: 'extra',
+ line: undefined,
+ },
+ ],
+ [
+ {
+ name: 'e',
+ type: 'TXT',
+ address: 'txt',
+ txtdata: 'txt',
+ line: undefined,
+ },
+ ],
+ ])
+ expect(removeZone).toHaveBeenCalledTimes(1)
+ expect(removeZone.mock.calls).toEqual([[{ line: 3 }]])
+
+ expect(addRedir).toHaveBeenCalledTimes(1)
+ expect(addRedir.mock.calls).toEqual([
+ [
+ {
+ domain: 'c.booboo.xyz',
+ redirect: 'https://google.com',
+ redirect_wildcard: 1,
+ redirect_www: 1,
+ type: 'permanent',
+ },
+ ],
+ ])
+
+ expect(addEmail).toHaveBeenCalledTimes(1)
+ expect(addEmail.mock.calls).toEqual([
+ [{ domain: 'b.is-a.dev', exchanger: 'somemx', priority: 20 }],
+ ])
+ })
+})
diff --git a/tests/url-validation.py b/tests/url-validation.py
new file mode 100644
index 000000000..25d2f7b70
--- /dev/null
+++ b/tests/url-validation.py
@@ -0,0 +1,60 @@
+import os
+import json
+import requests
+import concurrent.futures
+
+repository_directory = os.getcwd()
+domains_directory = os.path.join(repository_directory, "domains")
+
+def has_url_field(file_path):
+ with open(file_path, "r") as file:
+ data = json.load(file)
+ record = data.get("record")
+ if record and "URL" in record:
+ return record["URL"]
+ return None
+
+def is_url_reachable(url: str):
+ try:
+ response = requests.head(url, allow_redirects=True)
+ return response.status_code // 100 in [1, 2, 3] # Check if status code is in the 1xx or 2xx or 3xx range (success)
+ except requests.exceptions.RequestException:
+ return False
+
+urls_data = {
+ "valid": {},
+ "invalid": {},
+ "non-http": {}
+}
+
+def handle_url_validation(file_path):
+ url: str = has_url_field(file_path)
+ if url:
+ if url.startswith("http://") or url.startswith("https://"):
+ if is_url_reachable(url):
+ urls_data["valid"][file_path] = url
+ print(f"URL '{url}' in file '{file_path}' is reachable.")
+ else:
+ urls_data["invalid"][file_path] = url
+ print(f"URL '{url}' in file '{file_path}' is not reachable.")
+ else:
+ urls_data["non-http"][file_path] = url
+ print(f"URL '{url}' in file '{file_path}' is neither HTTP nor HTTPS.")
+
+max_threads = 20
+
+with concurrent.futures.ThreadPoolExecutor(max_workers=max_threads) as executor:
+ file_paths = []
+
+ for root, _, files in os.walk(domains_directory):
+ for filename in files:
+ file_paths.append(os.path.join(root, filename))
+
+ for file_path in file_paths:
+ future = executor.submit(handle_url_validation, file_path)
+
+result_file_path = os.path.join(repository_directory, "url-validation-result.json")
+with open(result_file_path, "w") as result_file:
+ json.dump(urls_data, result_file, indent=4)
+
+print(f"Results saved to {result_file_path}")
diff --git a/tests/validations.test.js b/tests/validations.test.js
index e97ddbb08..a07ccf6fa 100644
--- a/tests/validations.test.js
+++ b/tests/validations.test.js
@@ -54,12 +54,16 @@ describe('validateDomainData', () => {
{ ...defaultDomain, record: { CNAME: 'foobar.com', A: ['11.22.22.33'] } },
{ ...defaultDomain, record: { CNAME: 'foobar.com', MX: ['ALT4.ASPMX.L.GOOGLE.COM'] } },
...INVALID_NAMES.map(name => ({ ...defaultDomain, name })).slice(0, 1),
- { ...defaultDomain, record: { TXT: ['foobar wow nice!!!'] } },
{ ...defaultDomain, name: 'a.b' },
{ ...defaultDomain, name: 'ww2.baa' },
{ ...defaultDomain, name: 'help.baa' },
{ ...defaultDomain, name: '_github-pages-challenge-is-a-dev' },
{ ...defaultDomain, name: '_github-challenge-is-a-dev' },
+ { ...defaultDomain, record: { AAAA: [] } },
+ { ...defaultDomain, record: { AAAA: ['182.22.222.22', '::1'] } },
+ { ...defaultDomain, record: { AAAA: '182.22.222.22' } },
+ { ...defaultDomain, record: { A: '::1' } },
+ { ...defaultDomain, name: '_discord' },
];
const validCases = [
@@ -86,6 +90,10 @@ describe('validateDomainData', () => {
{ ...defaultDomain, name: '_github-challenge-phenax.akshay' },
{ ...defaultDomain, name: '_github-challenge-hello01-ga' },
{ ...defaultDomain, name: '_github-challenge-hello01_ga' },
+ { ...defaultDomain, record: { TXT: ['foobar wow nice!!!', 'more text'] } },
+ { ...defaultDomain, record: { AAAA: ['::1', '2001:db8:3333:4444:5555:6666:7777:8888'] } },
+ { ...defaultDomain, record: { A: ['122.222.222.222'] } },
+ { ...defaultDomain, name: '_discord.subdomain' },
];
it('should return false for invalid data', () => {
diff --git a/utils/constants.js b/utils/constants.js
index 022bd6646..19430e5bf 100644
--- a/utils/constants.js
+++ b/utils/constants.js
@@ -1,10 +1,6 @@
const path = require('path');
-const { ENV = 'test', CI } = process.env;
-
-if (!CI) {
- require('dotenv').config({ path: path.resolve(`.env.${ENV}`) });
-}
+const { NODE_ENV: ENV = 'test' } = process.env;
const {
DOMAIN_USER,
@@ -22,7 +18,7 @@ const DOMAINS_PATH = path.resolve('domains');
module.exports = {
ENV,
IS_TEST,
- VALID_RECORD_TYPES: ['CNAME', 'A', 'URL', 'MX', 'TXT'],
+ VALID_RECORD_TYPES: ['CNAME', 'A', 'URL', 'MX', 'TXT', 'AAAA'],
DOMAIN_DOMAIN: DOMAIN_DOMAIN || 'booboo.xyz',
DOMAIN_USER: IS_TEST ? 'testuser' : DOMAIN_USER,
DOMAIN_API_KEY: IS_TEST ? 'testkey' : DOMAIN_API_KEY,
diff --git a/utils/invalid-domains.json b/utils/invalid-domains.json
index a8943f3c4..ef66a5517 100644
--- a/utils/invalid-domains.json
+++ b/utils/invalid-domains.json
@@ -14,5 +14,6 @@
"ww3",
"ww4",
"wwww",
- "your-domain-name"
+ "your-domain-name",
+ "_discord"
]
diff --git a/utils/lib/cpanel.js b/utils/lib/cpanel.js
index 29743295a..5c098f281 100644
--- a/utils/lib/cpanel.js
+++ b/utils/lib/cpanel.js
@@ -1,6 +1,5 @@
const R = require('ramda');
-const fetch = require('node-fetch');
-const qs = require('qs');
+const qs = require('querystring');
const { DOMAIN_API_HOST, DOMAIN_API_PORT, DOMAIN_USER, DOMAIN_API_KEY, DOMAIN_DOMAIN } = require('../constants');
const CpanelClient = (options) => {
diff --git a/utils/validations.js b/utils/validations.js
index 963e8ed3d..b9c851a19 100644
--- a/utils/validations.js
+++ b/utils/validations.js
@@ -2,6 +2,8 @@ const R = require('ramda');
const { VALID_RECORD_TYPES } = require('./constants');
const { or, and, validate, between, testRegex, withLengthEq, withLengthGte } = require('./helpers');
const INVALID_NAMES = require('./invalid-domains.json');
+const ipRegex_ = require('ip-regex');
+const ipRegex = ipRegex_.default ?? ipRegex_;
const isValidURL = and([R.is(String), testRegex(/^https?:\/\//ig)]);
@@ -17,6 +19,7 @@ const validateCnameRecord = type => and([
const validateARecord = type => and([
R.propIs(Array, type),
R.propSatisfies(withLengthGte(1), type),
+ R.all(testRegex(ipRegex.v4({ exact: true }))),
]);
const validateMXRecord = type => and([
@@ -25,8 +28,19 @@ const validateMXRecord = type => and([
R.propSatisfies(R.all(isValidDomain), type),
]);
+const validateAAAARecord = R.propSatisfies(and([
+ R.is(Array),
+ withLengthGte(1),
+ R.all(testRegex(ipRegex.v6({ exact: true }))),
+]))
+
const checkRestrictedNames = R.complement(R.includes(R.__, INVALID_NAMES))
+const extraSupportedNames = [
+ testRegex(/^_github(-pages)?-challenge-[a-z0-9-_]+$/i), // Exception for github verification records
+ R.equals('_discord'),
+]
+
const validateDomainData = validate({
name: {
reason: 'The name of the file is invalid. It must be lowercased, alphanumeric and each component must be more than 2 characters long',
@@ -34,17 +48,15 @@ const validateDomainData = validate({
R.equals('@'),
and([
R.is(String),
+ checkRestrictedNames,
R.compose(
R.all(or([
- and([
- testRegex(/^_github(-pages)?-challenge-[a-z0-9-_]+$/i), // Exception for github verification records
- checkRestrictedNames,
- ]),
and([
R.compose(between(2, 100), R.length),
testRegex(/^[a-z0-9-]+$/g),
checkRestrictedNames,
- ])
+ ]),
+ ...extraSupportedNames,
])),
R.split('.'),
),
@@ -74,7 +86,8 @@ const validateDomainData = validate({
[R.has('A'), validateARecord('A')],
[R.has('URL'), R.propSatisfies(isValidURL, 'URL')],
[R.has('MX'), validateMXRecord('MX')],
- [R.has('TXT'), R.propSatisfies(R.is(String), 'TXT')],
+ [R.has('TXT'), R.propSatisfies(or([ R.is(String), R.is(Array) ]), 'TXT')],
+ [R.has('AAAA'), validateAAAARecord('AAAA')],
[R.T, R.T],
]),
]),
diff --git a/yarn.lock b/yarn.lock
deleted file mode 100644
index e4955e514..000000000
--- a/yarn.lock
+++ /dev/null
@@ -1,4002 +0,0 @@
-# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
-# yarn lockfile v1
-
-
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4":
- version "7.10.4"
- resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz"
- integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==
- dependencies:
- "@babel/highlight" "^7.10.4"
-
-"@babel/core@^7.1.0", "@babel/core@^7.7.5":
- version "7.12.3"
- resolved "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz"
- integrity sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==
- dependencies:
- "@babel/code-frame" "^7.10.4"
- "@babel/generator" "^7.12.1"
- "@babel/helper-module-transforms" "^7.12.1"
- "@babel/helpers" "^7.12.1"
- "@babel/parser" "^7.12.3"
- "@babel/template" "^7.10.4"
- "@babel/traverse" "^7.12.1"
- "@babel/types" "^7.12.1"
- convert-source-map "^1.7.0"
- debug "^4.1.0"
- gensync "^1.0.0-beta.1"
- json5 "^2.1.2"
- lodash "^4.17.19"
- resolve "^1.3.2"
- semver "^5.4.1"
- source-map "^0.5.0"
-
-"@babel/generator@^7.12.1", "@babel/generator@^7.12.5":
- version "7.12.5"
- resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz"
- integrity sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==
- dependencies:
- "@babel/types" "^7.12.5"
- jsesc "^2.5.1"
- source-map "^0.5.0"
-
-"@babel/helper-function-name@^7.10.4":
- version "7.10.4"
- resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz"
- integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==
- dependencies:
- "@babel/helper-get-function-arity" "^7.10.4"
- "@babel/template" "^7.10.4"
- "@babel/types" "^7.10.4"
-
-"@babel/helper-get-function-arity@^7.10.4":
- version "7.10.4"
- resolved "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz"
- integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==
- dependencies:
- "@babel/types" "^7.10.4"
-
-"@babel/helper-member-expression-to-functions@^7.12.1":
- version "7.12.1"
- resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz"
- integrity sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==
- dependencies:
- "@babel/types" "^7.12.1"
-
-"@babel/helper-module-imports@^7.12.1":
- version "7.12.5"
- resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz"
- integrity sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==
- dependencies:
- "@babel/types" "^7.12.5"
-
-"@babel/helper-module-transforms@^7.12.1":
- version "7.12.1"
- resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz"
- integrity sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==
- dependencies:
- "@babel/helper-module-imports" "^7.12.1"
- "@babel/helper-replace-supers" "^7.12.1"
- "@babel/helper-simple-access" "^7.12.1"
- "@babel/helper-split-export-declaration" "^7.11.0"
- "@babel/helper-validator-identifier" "^7.10.4"
- "@babel/template" "^7.10.4"
- "@babel/traverse" "^7.12.1"
- "@babel/types" "^7.12.1"
- lodash "^4.17.19"
-
-"@babel/helper-optimise-call-expression@^7.10.4":
- version "7.10.4"
- resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz"
- integrity sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==
- dependencies:
- "@babel/types" "^7.10.4"
-
-"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0":
- version "7.10.4"
- resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz"
- integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==
-
-"@babel/helper-replace-supers@^7.12.1":
- version "7.12.5"
- resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz"
- integrity sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==
- dependencies:
- "@babel/helper-member-expression-to-functions" "^7.12.1"
- "@babel/helper-optimise-call-expression" "^7.10.4"
- "@babel/traverse" "^7.12.5"
- "@babel/types" "^7.12.5"
-
-"@babel/helper-simple-access@^7.12.1":
- version "7.12.1"
- resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz"
- integrity sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==
- dependencies:
- "@babel/types" "^7.12.1"
-
-"@babel/helper-split-export-declaration@^7.11.0":
- version "7.11.0"
- resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz"
- integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==
- dependencies:
- "@babel/types" "^7.11.0"
-
-"@babel/helper-validator-identifier@^7.10.4":
- version "7.10.4"
- resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz"
- integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==
-
-"@babel/helpers@^7.12.1":
- version "7.12.5"
- resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz"
- integrity sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==
- dependencies:
- "@babel/template" "^7.10.4"
- "@babel/traverse" "^7.12.5"
- "@babel/types" "^7.12.5"
-
-"@babel/highlight@^7.10.4":
- version "7.10.4"
- resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz"
- integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==
- dependencies:
- "@babel/helper-validator-identifier" "^7.10.4"
- chalk "^2.0.0"
- js-tokens "^4.0.0"
-
-"@babel/parser@^7.1.0", "@babel/parser@^7.10.4", "@babel/parser@^7.12.3", "@babel/parser@^7.12.5":
- version "7.12.5"
- resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz"
- integrity sha512-FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ==
-
-"@babel/plugin-syntax-async-generators@^7.8.4":
- version "7.8.4"
- resolved "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz"
- integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-bigint@^7.8.3":
- version "7.8.3"
- resolved "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz"
- integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-class-properties@^7.8.3":
- version "7.12.1"
- resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz"
- integrity sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-syntax-import-meta@^7.8.3":
- version "7.10.4"
- resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz"
- integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-syntax-json-strings@^7.8.3":
- version "7.8.3"
- resolved "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz"
- integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
- version "7.10.4"
- resolved "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz"
- integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
- version "7.8.3"
- resolved "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz"
- integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-numeric-separator@^7.8.3":
- version "7.10.4"
- resolved "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz"
- integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-syntax-object-rest-spread@^7.8.3":
- version "7.8.3"
- resolved "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"
- integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-optional-catch-binding@^7.8.3":
- version "7.8.3"
- resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz"
- integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-optional-chaining@^7.8.3":
- version "7.8.3"
- resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz"
- integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-top-level-await@^7.8.3":
- version "7.12.1"
- resolved "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz"
- integrity sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/template@^7.10.4", "@babel/template@^7.3.3":
- version "7.10.4"
- resolved "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz"
- integrity sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==
- dependencies:
- "@babel/code-frame" "^7.10.4"
- "@babel/parser" "^7.10.4"
- "@babel/types" "^7.10.4"
-
-"@babel/traverse@^7.1.0", "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.5":
- version "7.12.5"
- resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz"
- integrity sha512-xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA==
- dependencies:
- "@babel/code-frame" "^7.10.4"
- "@babel/generator" "^7.12.5"
- "@babel/helper-function-name" "^7.10.4"
- "@babel/helper-split-export-declaration" "^7.11.0"
- "@babel/parser" "^7.12.5"
- "@babel/types" "^7.12.5"
- debug "^4.1.0"
- globals "^11.1.0"
- lodash "^4.17.19"
-
-"@babel/types@^7.0.0", "@babel/types@^7.10.4", "@babel/types@^7.11.0", "@babel/types@^7.12.1", "@babel/types@^7.12.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3":
- version "7.12.6"
- resolved "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz"
- integrity sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA==
- dependencies:
- "@babel/helper-validator-identifier" "^7.10.4"
- lodash "^4.17.19"
- to-fast-properties "^2.0.0"
-
-"@bcoe/v8-coverage@^0.2.3":
- version "0.2.3"
- resolved "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz"
- integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
-
-"@cnakazawa/watch@^1.0.3":
- version "1.0.4"
- resolved "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz"
- integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==
- dependencies:
- exec-sh "^0.3.2"
- minimist "^1.2.0"
-
-"@eslint/eslintrc@^0.2.1":
- version "0.2.1"
- resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.1.tgz"
- integrity sha512-XRUeBZ5zBWLYgSANMpThFddrZZkEbGHgUdt5UJjZfnlN9BGCiUBrf+nvbRupSjMvqzwnQN0qwCmOxITt1cfywA==
- dependencies:
- ajv "^6.12.4"
- debug "^4.1.1"
- espree "^7.3.0"
- globals "^12.1.0"
- ignore "^4.0.6"
- import-fresh "^3.2.1"
- js-yaml "^3.13.1"
- lodash "^4.17.19"
- minimatch "^3.0.4"
- strip-json-comments "^3.1.1"
-
-"@istanbuljs/load-nyc-config@^1.0.0":
- version "1.1.0"
- resolved "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz"
- integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==
- dependencies:
- camelcase "^5.3.1"
- find-up "^4.1.0"
- get-package-type "^0.1.0"
- js-yaml "^3.13.1"
- resolve-from "^5.0.0"
-
-"@istanbuljs/schema@^0.1.2":
- version "0.1.2"
- resolved "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.2.tgz"
- integrity sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==
-
-"@jest/console@^26.6.2":
- version "26.6.2"
- resolved "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz"
- integrity sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==
- dependencies:
- "@jest/types" "^26.6.2"
- "@types/node" "*"
- chalk "^4.0.0"
- jest-message-util "^26.6.2"
- jest-util "^26.6.2"
- slash "^3.0.0"
-
-"@jest/core@^26.6.3":
- version "26.6.3"
- resolved "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz"
- integrity sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==
- dependencies:
- "@jest/console" "^26.6.2"
- "@jest/reporters" "^26.6.2"
- "@jest/test-result" "^26.6.2"
- "@jest/transform" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/node" "*"
- ansi-escapes "^4.2.1"
- chalk "^4.0.0"
- exit "^0.1.2"
- graceful-fs "^4.2.4"
- jest-changed-files "^26.6.2"
- jest-config "^26.6.3"
- jest-haste-map "^26.6.2"
- jest-message-util "^26.6.2"
- jest-regex-util "^26.0.0"
- jest-resolve "^26.6.2"
- jest-resolve-dependencies "^26.6.3"
- jest-runner "^26.6.3"
- jest-runtime "^26.6.3"
- jest-snapshot "^26.6.2"
- jest-util "^26.6.2"
- jest-validate "^26.6.2"
- jest-watcher "^26.6.2"
- micromatch "^4.0.2"
- p-each-series "^2.1.0"
- rimraf "^3.0.0"
- slash "^3.0.0"
- strip-ansi "^6.0.0"
-
-"@jest/environment@^26.6.2":
- version "26.6.2"
- resolved "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz"
- integrity sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==
- dependencies:
- "@jest/fake-timers" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/node" "*"
- jest-mock "^26.6.2"
-
-"@jest/fake-timers@^26.6.2":
- version "26.6.2"
- resolved "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz"
- integrity sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==
- dependencies:
- "@jest/types" "^26.6.2"
- "@sinonjs/fake-timers" "^6.0.1"
- "@types/node" "*"
- jest-message-util "^26.6.2"
- jest-mock "^26.6.2"
- jest-util "^26.6.2"
-
-"@jest/globals@^26.6.2":
- version "26.6.2"
- resolved "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz"
- integrity sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==
- dependencies:
- "@jest/environment" "^26.6.2"
- "@jest/types" "^26.6.2"
- expect "^26.6.2"
-
-"@jest/reporters@^26.6.2":
- version "26.6.2"
- resolved "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz"
- integrity sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==
- dependencies:
- "@bcoe/v8-coverage" "^0.2.3"
- "@jest/console" "^26.6.2"
- "@jest/test-result" "^26.6.2"
- "@jest/transform" "^26.6.2"
- "@jest/types" "^26.6.2"
- chalk "^4.0.0"
- collect-v8-coverage "^1.0.0"
- exit "^0.1.2"
- glob "^7.1.2"
- graceful-fs "^4.2.4"
- istanbul-lib-coverage "^3.0.0"
- istanbul-lib-instrument "^4.0.3"
- istanbul-lib-report "^3.0.0"
- istanbul-lib-source-maps "^4.0.0"
- istanbul-reports "^3.0.2"
- jest-haste-map "^26.6.2"
- jest-resolve "^26.6.2"
- jest-util "^26.6.2"
- jest-worker "^26.6.2"
- slash "^3.0.0"
- source-map "^0.6.0"
- string-length "^4.0.1"
- terminal-link "^2.0.0"
- v8-to-istanbul "^7.0.0"
- optionalDependencies:
- node-notifier "^8.0.0"
-
-"@jest/source-map@^26.6.2":
- version "26.6.2"
- resolved "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz"
- integrity sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==
- dependencies:
- callsites "^3.0.0"
- graceful-fs "^4.2.4"
- source-map "^0.6.0"
-
-"@jest/test-result@^26.6.2":
- version "26.6.2"
- resolved "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz"
- integrity sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==
- dependencies:
- "@jest/console" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/istanbul-lib-coverage" "^2.0.0"
- collect-v8-coverage "^1.0.0"
-
-"@jest/test-sequencer@^26.6.3":
- version "26.6.3"
- resolved "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz"
- integrity sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==
- dependencies:
- "@jest/test-result" "^26.6.2"
- graceful-fs "^4.2.4"
- jest-haste-map "^26.6.2"
- jest-runner "^26.6.3"
- jest-runtime "^26.6.3"
-
-"@jest/transform@^26.6.2":
- version "26.6.2"
- resolved "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz"
- integrity sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==
- dependencies:
- "@babel/core" "^7.1.0"
- "@jest/types" "^26.6.2"
- babel-plugin-istanbul "^6.0.0"
- chalk "^4.0.0"
- convert-source-map "^1.4.0"
- fast-json-stable-stringify "^2.0.0"
- graceful-fs "^4.2.4"
- jest-haste-map "^26.6.2"
- jest-regex-util "^26.0.0"
- jest-util "^26.6.2"
- micromatch "^4.0.2"
- pirates "^4.0.1"
- slash "^3.0.0"
- source-map "^0.6.1"
- write-file-atomic "^3.0.0"
-
-"@jest/types@^26.6.2":
- version "26.6.2"
- resolved "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz"
- integrity sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==
- dependencies:
- "@types/istanbul-lib-coverage" "^2.0.0"
- "@types/istanbul-reports" "^3.0.0"
- "@types/node" "*"
- "@types/yargs" "^15.0.0"
- chalk "^4.0.0"
-
-"@sinonjs/commons@^1.7.0":
- version "1.8.1"
- resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.1.tgz"
- integrity sha512-892K+kWUUi3cl+LlqEWIDrhvLgdL79tECi8JZUyq6IviKy/DNhuzCRlbHUjxK89f4ypPMMaFnFuR9Ie6DoIMsw==
- dependencies:
- type-detect "4.0.8"
-
-"@sinonjs/fake-timers@^6.0.1":
- version "6.0.1"
- resolved "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz"
- integrity sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==
- dependencies:
- "@sinonjs/commons" "^1.7.0"
-
-"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7":
- version "7.1.12"
- resolved "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.12.tgz"
- integrity sha512-wMTHiiTiBAAPebqaPiPDLFA4LYPKr6Ph0Xq/6rq1Ur3v66HXyG+clfR9CNETkD7MQS8ZHvpQOtA53DLws5WAEQ==
- dependencies:
- "@babel/parser" "^7.1.0"
- "@babel/types" "^7.0.0"
- "@types/babel__generator" "*"
- "@types/babel__template" "*"
- "@types/babel__traverse" "*"
-
-"@types/babel__generator@*":
- version "7.6.2"
- resolved "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.2.tgz"
- integrity sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==
- dependencies:
- "@babel/types" "^7.0.0"
-
-"@types/babel__template@*":
- version "7.4.0"
- resolved "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.0.tgz"
- integrity sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A==
- dependencies:
- "@babel/parser" "^7.1.0"
- "@babel/types" "^7.0.0"
-
-"@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6":
- version "7.0.15"
- resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.15.tgz"
- integrity sha512-Pzh9O3sTK8V6I1olsXpCfj2k/ygO2q1X0vhhnDrEQyYLHZesWz+zMZMVcwXLCYf0U36EtmyYaFGPfXlTtDHe3A==
- dependencies:
- "@babel/types" "^7.3.0"
-
-"@types/graceful-fs@^4.1.2":
- version "4.1.4"
- resolved "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.4.tgz"
- integrity sha512-mWA/4zFQhfvOA8zWkXobwJvBD7vzcxgrOQ0J5CH1votGqdq9m7+FwtGaqyCZqC3NyyBkc9z4m+iry4LlqcMWJg==
- dependencies:
- "@types/node" "*"
-
-"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1":
- version "2.0.3"
- resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz"
- integrity sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==
-
-"@types/istanbul-lib-report@*":
- version "3.0.0"
- resolved "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz"
- integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==
- dependencies:
- "@types/istanbul-lib-coverage" "*"
-
-"@types/istanbul-reports@^3.0.0":
- version "3.0.0"
- resolved "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz"
- integrity sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==
- dependencies:
- "@types/istanbul-lib-report" "*"
-
-"@types/node@*":
- version "14.14.7"
- resolved "https://registry.npmjs.org/@types/node/-/node-14.14.7.tgz"
- integrity sha512-Zw1vhUSQZYw+7u5dAwNbIA9TuTotpzY/OF7sJM9FqPOF3SPjKnxrjoTktXDZgUjybf4cWVBP7O8wvKdSaGHweg==
-
-"@types/normalize-package-data@^2.4.0":
- version "2.4.0"
- resolved "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz"
- integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==
-
-"@types/prettier@^2.0.0":
- version "2.1.5"
- resolved "https://registry.npmjs.org/@types/prettier/-/prettier-2.1.5.tgz"
- integrity sha512-UEyp8LwZ4Dg30kVU2Q3amHHyTn1jEdhCIE59ANed76GaT1Vp76DD3ZWSAxgCrw6wJ0TqeoBpqmfUHiUDPs//HQ==
-
-"@types/stack-utils@^2.0.0":
- version "2.0.0"
- resolved "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.0.tgz"
- integrity sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw==
-
-"@types/yargs-parser@*":
- version "15.0.0"
- resolved "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-15.0.0.tgz"
- integrity sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==
-
-"@types/yargs@^15.0.0":
- version "15.0.9"
- resolved "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.9.tgz"
- integrity sha512-HmU8SeIRhZCWcnRskCs36Q1Q00KBV6Cqh/ora8WN1+22dY07AZdn6Gel8QZ3t26XYPImtcL8WV/eqjhVmMEw4g==
- dependencies:
- "@types/yargs-parser" "*"
-
-abab@^2.0.3:
- version "2.0.5"
- resolved "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz"
- integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==
-
-acorn-globals@^6.0.0:
- version "6.0.0"
- resolved "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz"
- integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==
- dependencies:
- acorn "^7.1.1"
- acorn-walk "^7.1.1"
-
-acorn-jsx@^5.2.0:
- version "5.3.1"
- resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz"
- integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==
-
-acorn-walk@^7.1.1:
- version "7.2.0"
- resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz"
- integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==
-
-acorn@^7.1.1, acorn@^7.4.0:
- version "7.4.1"
- resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz"
- integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
-
-ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3, ajv@^6.12.4:
- version "6.12.6"
- resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
- integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
- dependencies:
- fast-deep-equal "^3.1.1"
- fast-json-stable-stringify "^2.0.0"
- json-schema-traverse "^0.4.1"
- uri-js "^4.2.2"
-
-ansi-colors@^4.1.1:
- version "4.1.1"
- resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz"
- integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==
-
-ansi-escapes@^4.2.1:
- version "4.3.1"
- resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz"
- integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==
- dependencies:
- type-fest "^0.11.0"
-
-ansi-regex@^4.1.0:
- version "4.1.0"
- resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz"
- integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
-
-ansi-regex@^5.0.0:
- version "5.0.0"
- resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz"
- integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
-
-ansi-styles@^3.2.0, ansi-styles@^3.2.1:
- version "3.2.1"
- resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
- integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
- dependencies:
- color-convert "^1.9.0"
-
-ansi-styles@^4.0.0, ansi-styles@^4.1.0:
- version "4.3.0"
- resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
- integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
- dependencies:
- color-convert "^2.0.1"
-
-anymatch@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz"
- integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==
- dependencies:
- micromatch "^3.1.4"
- normalize-path "^2.1.1"
-
-anymatch@^3.0.3:
- version "3.1.1"
- resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz"
- integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==
- dependencies:
- normalize-path "^3.0.0"
- picomatch "^2.0.4"
-
-argparse@^1.0.7:
- version "1.0.10"
- resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"
- integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
- dependencies:
- sprintf-js "~1.0.2"
-
-arr-diff@^4.0.0:
- version "4.0.0"
- resolved "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz"
- integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=
-
-arr-flatten@^1.1.0:
- version "1.1.0"
- resolved "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz"
- integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==
-
-arr-union@^3.1.0:
- version "3.1.0"
- resolved "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz"
- integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=
-
-array-unique@^0.3.2:
- version "0.3.2"
- resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz"
- integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
-
-asn1@~0.2.3:
- version "0.2.4"
- resolved "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz"
- integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==
- dependencies:
- safer-buffer "~2.1.0"
-
-assert-plus@1.0.0, assert-plus@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"
- integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=
-
-assign-symbols@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz"
- integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=
-
-astral-regex@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz"
- integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==
-
-asynckit@^0.4.0:
- version "0.4.0"
- resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"
- integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
-
-atob@^2.1.2:
- version "2.1.2"
- resolved "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz"
- integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
-
-aws-sign2@~0.7.0:
- version "0.7.0"
- resolved "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"
- integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=
-
-aws4@^1.8.0:
- version "1.11.0"
- resolved "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz"
- integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==
-
-babel-jest@^26.6.3:
- version "26.6.3"
- resolved "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz"
- integrity sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==
- dependencies:
- "@jest/transform" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/babel__core" "^7.1.7"
- babel-plugin-istanbul "^6.0.0"
- babel-preset-jest "^26.6.2"
- chalk "^4.0.0"
- graceful-fs "^4.2.4"
- slash "^3.0.0"
-
-babel-plugin-istanbul@^6.0.0:
- version "6.0.0"
- resolved "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz"
- integrity sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- "@istanbuljs/load-nyc-config" "^1.0.0"
- "@istanbuljs/schema" "^0.1.2"
- istanbul-lib-instrument "^4.0.0"
- test-exclude "^6.0.0"
-
-babel-plugin-jest-hoist@^26.6.2:
- version "26.6.2"
- resolved "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz"
- integrity sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==
- dependencies:
- "@babel/template" "^7.3.3"
- "@babel/types" "^7.3.3"
- "@types/babel__core" "^7.0.0"
- "@types/babel__traverse" "^7.0.6"
-
-babel-preset-current-node-syntax@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.0.tgz"
- integrity sha512-mGkvkpocWJes1CmMKtgGUwCeeq0pOhALyymozzDWYomHTbDLwueDYG6p4TK1YOeYHCzBzYPsWkgTto10JubI1Q==
- dependencies:
- "@babel/plugin-syntax-async-generators" "^7.8.4"
- "@babel/plugin-syntax-bigint" "^7.8.3"
- "@babel/plugin-syntax-class-properties" "^7.8.3"
- "@babel/plugin-syntax-import-meta" "^7.8.3"
- "@babel/plugin-syntax-json-strings" "^7.8.3"
- "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3"
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
- "@babel/plugin-syntax-numeric-separator" "^7.8.3"
- "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
- "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
- "@babel/plugin-syntax-optional-chaining" "^7.8.3"
- "@babel/plugin-syntax-top-level-await" "^7.8.3"
-
-babel-preset-jest@^26.6.2:
- version "26.6.2"
- resolved "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz"
- integrity sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==
- dependencies:
- babel-plugin-jest-hoist "^26.6.2"
- babel-preset-current-node-syntax "^1.0.0"
-
-balanced-match@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"
- integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
-
-base@^0.11.1:
- version "0.11.2"
- resolved "https://registry.npmjs.org/base/-/base-0.11.2.tgz"
- integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==
- dependencies:
- cache-base "^1.0.1"
- class-utils "^0.3.5"
- component-emitter "^1.2.1"
- define-property "^1.0.0"
- isobject "^3.0.1"
- mixin-deep "^1.2.0"
- pascalcase "^0.1.1"
-
-bcrypt-pbkdf@^1.0.0:
- version "1.0.2"
- resolved "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"
- integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=
- dependencies:
- tweetnacl "^0.14.3"
-
-brace-expansion@^1.1.7:
- version "1.1.11"
- resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"
- integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
- dependencies:
- balanced-match "^1.0.0"
- concat-map "0.0.1"
-
-braces@^2.3.1:
- version "2.3.2"
- resolved "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz"
- integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==
- dependencies:
- arr-flatten "^1.1.0"
- array-unique "^0.3.2"
- extend-shallow "^2.0.1"
- fill-range "^4.0.0"
- isobject "^3.0.1"
- repeat-element "^1.1.2"
- snapdragon "^0.8.1"
- snapdragon-node "^2.0.1"
- split-string "^3.0.2"
- to-regex "^3.0.1"
-
-braces@^3.0.1:
- 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"
-
-browser-process-hrtime@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz"
- integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==
-
-bser@2.1.1:
- version "2.1.1"
- resolved "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz"
- integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==
- dependencies:
- node-int64 "^0.4.0"
-
-buffer-from@^1.0.0:
- version "1.1.1"
- resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz"
- integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
-
-cache-base@^1.0.1:
- version "1.0.1"
- resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz"
- integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==
- dependencies:
- collection-visit "^1.0.0"
- component-emitter "^1.2.1"
- get-value "^2.0.6"
- has-value "^1.0.0"
- isobject "^3.0.1"
- set-value "^2.0.0"
- to-object-path "^0.3.0"
- union-value "^1.0.0"
- unset-value "^1.0.0"
-
-callsites@^3.0.0:
- version "3.1.0"
- resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz"
- integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
-
-camelcase@^5.0.0, camelcase@^5.3.1:
- version "5.3.1"
- resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"
- integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
-
-camelcase@^6.0.0:
- version "6.2.0"
- resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz"
- integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==
-
-capture-exit@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz"
- integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==
- dependencies:
- rsvp "^4.8.4"
-
-caseless@~0.12.0:
- version "0.12.0"
- resolved "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz"
- integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=
-
-chalk@^2.0.0:
- version "2.4.2"
- resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
- integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
- dependencies:
- ansi-styles "^3.2.1"
- escape-string-regexp "^1.0.5"
- supports-color "^5.3.0"
-
-chalk@^4.0.0:
- version "4.1.0"
- resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz"
- integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==
- dependencies:
- ansi-styles "^4.1.0"
- supports-color "^7.1.0"
-
-char-regex@^1.0.2:
- version "1.0.2"
- resolved "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz"
- integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==
-
-ci-info@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz"
- integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
-
-cjs-module-lexer@^0.6.0:
- version "0.6.0"
- resolved "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz"
- integrity sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==
-
-class-utils@^0.3.5:
- version "0.3.6"
- resolved "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz"
- integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==
- dependencies:
- arr-union "^3.1.0"
- define-property "^0.2.5"
- isobject "^3.0.0"
- static-extend "^0.1.1"
-
-cliui@^6.0.0:
- version "6.0.0"
- resolved "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz"
- integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==
- dependencies:
- string-width "^4.2.0"
- strip-ansi "^6.0.0"
- wrap-ansi "^6.2.0"
-
-co@^4.6.0:
- version "4.6.0"
- resolved "https://registry.npmjs.org/co/-/co-4.6.0.tgz"
- integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=
-
-collect-v8-coverage@^1.0.0:
- version "1.0.1"
- resolved "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz"
- integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==
-
-collection-visit@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz"
- integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=
- dependencies:
- map-visit "^1.0.0"
- object-visit "^1.0.0"
-
-color-convert@^1.9.0:
- version "1.9.3"
- resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"
- integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
- dependencies:
- color-name "1.1.3"
-
-color-convert@^2.0.1:
- version "2.0.1"
- resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"
- integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
- dependencies:
- color-name "~1.1.4"
-
-color-name@1.1.3:
- version "1.1.3"
- resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
- integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
-
-color-name@~1.1.4:
- version "1.1.4"
- resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
- integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
-
-combined-stream@^1.0.6, combined-stream@~1.0.6:
- 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"
-
-component-emitter@^1.2.1:
- version "1.3.0"
- resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz"
- integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
-
-concat-map@0.0.1:
- version "0.0.1"
- resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
- integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
-
-convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0:
- version "1.7.0"
- resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz"
- integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
- dependencies:
- safe-buffer "~5.1.1"
-
-copy-descriptor@^0.1.0:
- version "0.1.1"
- resolved "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz"
- integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
-
-core-util-is@1.0.2:
- version "1.0.2"
- resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"
- integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
-
-cross-spawn@^6.0.0:
- version "6.0.5"
- resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz"
- integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
- dependencies:
- nice-try "^1.0.4"
- path-key "^2.0.1"
- semver "^5.5.0"
- shebang-command "^1.2.0"
- which "^1.2.9"
-
-cross-spawn@^7.0.0, cross-spawn@^7.0.2:
- version "7.0.3"
- resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"
- integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
- dependencies:
- path-key "^3.1.0"
- shebang-command "^2.0.0"
- which "^2.0.1"
-
-cssom@^0.4.4:
- version "0.4.4"
- resolved "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz"
- integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==
-
-cssom@~0.3.6:
- version "0.3.8"
- resolved "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz"
- integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==
-
-cssstyle@^2.2.0:
- version "2.3.0"
- resolved "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz"
- integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==
- dependencies:
- cssom "~0.3.6"
-
-dashdash@^1.12.0:
- version "1.14.1"
- resolved "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz"
- integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=
- dependencies:
- assert-plus "^1.0.0"
-
-data-urls@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz"
- integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==
- dependencies:
- abab "^2.0.3"
- whatwg-mimetype "^2.3.0"
- whatwg-url "^8.0.0"
-
-debug@^2.2.0, debug@^2.3.3:
- 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"
-
-debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
- version "4.2.0"
- resolved "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz"
- integrity sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==
- dependencies:
- ms "2.1.2"
-
-decamelize@^1.2.0:
- version "1.2.0"
- resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"
- integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
-
-decimal.js@^10.2.0:
- version "10.2.1"
- resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.1.tgz"
- integrity sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==
-
-decode-uri-component@^0.2.0:
- version "0.2.0"
- resolved "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz"
- integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
-
-deep-is@^0.1.3, deep-is@~0.1.3:
- version "0.1.3"
- resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz"
- integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
-
-deepmerge@^4.2.2:
- version "4.2.2"
- resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz"
- integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==
-
-define-property@^0.2.5:
- version "0.2.5"
- resolved "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz"
- integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=
- dependencies:
- is-descriptor "^0.1.0"
-
-define-property@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz"
- integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY=
- dependencies:
- is-descriptor "^1.0.0"
-
-define-property@^2.0.2:
- version "2.0.2"
- resolved "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz"
- integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==
- dependencies:
- is-descriptor "^1.0.2"
- isobject "^3.0.1"
-
-delayed-stream@~1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"
- integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk=
-
-detect-newline@^3.0.0:
- version "3.1.0"
- resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz"
- integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==
-
-diff-sequences@^26.6.2:
- version "26.6.2"
- resolved "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz"
- integrity sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==
-
-doctrine@^3.0.0:
- version "3.0.0"
- resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz"
- integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
- dependencies:
- esutils "^2.0.2"
-
-domexception@^2.0.1:
- version "2.0.1"
- resolved "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz"
- integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==
- dependencies:
- webidl-conversions "^5.0.0"
-
-dotenv@^8.2.0:
- version "8.2.0"
- resolved "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz"
- integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==
-
-ecc-jsbn@~0.1.1:
- version "0.1.2"
- resolved "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"
- integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=
- dependencies:
- jsbn "~0.1.0"
- safer-buffer "^2.1.0"
-
-emittery@^0.7.1:
- version "0.7.2"
- resolved "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz"
- integrity sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==
-
-emoji-regex@^7.0.1:
- version "7.0.3"
- resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz"
- integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
-
-emoji-regex@^8.0.0:
- version "8.0.0"
- resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"
- integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
-
-end-of-stream@^1.1.0:
- 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==
- dependencies:
- once "^1.4.0"
-
-enquirer@^2.3.5:
- version "2.3.6"
- resolved "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz"
- integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==
- dependencies:
- ansi-colors "^4.1.1"
-
-error-ex@^1.3.1:
- version "1.3.2"
- resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz"
- integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
- dependencies:
- is-arrayish "^0.2.1"
-
-escape-string-regexp@^1.0.5:
- version "1.0.5"
- resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"
- integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
-
-escape-string-regexp@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz"
- integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==
-
-escodegen@^1.14.1:
- version "1.14.3"
- resolved "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz"
- integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==
- dependencies:
- esprima "^4.0.1"
- estraverse "^4.2.0"
- esutils "^2.0.2"
- optionator "^0.8.1"
- optionalDependencies:
- source-map "~0.6.1"
-
-eslint-plugin-es@^3.0.0:
- version "3.0.1"
- resolved "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz"
- integrity sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==
- dependencies:
- eslint-utils "^2.0.0"
- regexpp "^3.0.0"
-
-eslint-plugin-json@^2.1.2:
- version "2.1.2"
- resolved "https://registry.npmjs.org/eslint-plugin-json/-/eslint-plugin-json-2.1.2.tgz"
- integrity sha512-isM/fsUxS4wN1+nLsWoV5T4gLgBQnsql3nMTr8u+cEls1bL8rRQO5CP5GtxJxaOfbcKqnz401styw+H/P+e78Q==
- dependencies:
- lodash "^4.17.19"
- vscode-json-languageservice "^3.7.0"
-
-eslint-plugin-node@^11.1.0:
- version "11.1.0"
- resolved "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz"
- integrity sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==
- dependencies:
- eslint-plugin-es "^3.0.0"
- eslint-utils "^2.0.0"
- ignore "^5.1.1"
- minimatch "^3.0.4"
- resolve "^1.10.1"
- semver "^6.1.0"
-
-eslint-scope@^5.1.1:
- version "5.1.1"
- resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz"
- integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
- dependencies:
- esrecurse "^4.3.0"
- estraverse "^4.1.1"
-
-eslint-utils@^2.0.0, eslint-utils@^2.1.0:
- version "2.1.0"
- resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz"
- integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==
- dependencies:
- eslint-visitor-keys "^1.1.0"
-
-eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0:
- version "1.3.0"
- resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz"
- integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
-
-eslint-visitor-keys@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz"
- integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==
-
-eslint@^7.11.0:
- version "7.13.0"
- resolved "https://registry.npmjs.org/eslint/-/eslint-7.13.0.tgz"
- integrity sha512-uCORMuOO8tUzJmsdRtrvcGq5qposf7Rw0LwkTJkoDbOycVQtQjmnhZSuLQnozLE4TmAzlMVV45eCHmQ1OpDKUQ==
- dependencies:
- "@babel/code-frame" "^7.0.0"
- "@eslint/eslintrc" "^0.2.1"
- ajv "^6.10.0"
- chalk "^4.0.0"
- cross-spawn "^7.0.2"
- debug "^4.0.1"
- doctrine "^3.0.0"
- enquirer "^2.3.5"
- eslint-scope "^5.1.1"
- eslint-utils "^2.1.0"
- eslint-visitor-keys "^2.0.0"
- espree "^7.3.0"
- esquery "^1.2.0"
- esutils "^2.0.2"
- file-entry-cache "^5.0.1"
- functional-red-black-tree "^1.0.1"
- glob-parent "^5.0.0"
- globals "^12.1.0"
- ignore "^4.0.6"
- import-fresh "^3.0.0"
- imurmurhash "^0.1.4"
- is-glob "^4.0.0"
- js-yaml "^3.13.1"
- json-stable-stringify-without-jsonify "^1.0.1"
- levn "^0.4.1"
- lodash "^4.17.19"
- minimatch "^3.0.4"
- natural-compare "^1.4.0"
- optionator "^0.9.1"
- progress "^2.0.0"
- regexpp "^3.1.0"
- semver "^7.2.1"
- strip-ansi "^6.0.0"
- strip-json-comments "^3.1.0"
- table "^5.2.3"
- text-table "^0.2.0"
- v8-compile-cache "^2.0.3"
-
-espree@^7.3.0:
- version "7.3.0"
- resolved "https://registry.npmjs.org/espree/-/espree-7.3.0.tgz"
- integrity sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw==
- dependencies:
- acorn "^7.4.0"
- acorn-jsx "^5.2.0"
- eslint-visitor-keys "^1.3.0"
-
-esprima@^4.0.0, esprima@^4.0.1:
- version "4.0.1"
- resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz"
- integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
-
-esquery@^1.2.0:
- version "1.3.1"
- resolved "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz"
- integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==
- dependencies:
- estraverse "^5.1.0"
-
-esrecurse@^4.3.0:
- version "4.3.0"
- resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz"
- integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
- dependencies:
- estraverse "^5.2.0"
-
-estraverse@^4.1.1, estraverse@^4.2.0:
- version "4.3.0"
- resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz"
- integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
-
-estraverse@^5.1.0, estraverse@^5.2.0:
- version "5.2.0"
- resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz"
- integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==
-
-esutils@^2.0.2:
- version "2.0.3"
- resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz"
- integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
-
-exec-sh@^0.3.2:
- version "0.3.4"
- resolved "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.4.tgz"
- integrity sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==
-
-execa@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz"
- integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==
- dependencies:
- cross-spawn "^6.0.0"
- get-stream "^4.0.0"
- is-stream "^1.1.0"
- npm-run-path "^2.0.0"
- p-finally "^1.0.0"
- signal-exit "^3.0.0"
- strip-eof "^1.0.0"
-
-execa@^4.0.0:
- version "4.1.0"
- resolved "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz"
- integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==
- dependencies:
- cross-spawn "^7.0.0"
- get-stream "^5.0.0"
- human-signals "^1.1.1"
- is-stream "^2.0.0"
- merge-stream "^2.0.0"
- npm-run-path "^4.0.0"
- onetime "^5.1.0"
- signal-exit "^3.0.2"
- strip-final-newline "^2.0.0"
-
-exit@^0.1.2:
- version "0.1.2"
- resolved "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz"
- integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=
-
-expand-brackets@^2.1.4:
- version "2.1.4"
- resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz"
- integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI=
- dependencies:
- debug "^2.3.3"
- define-property "^0.2.5"
- extend-shallow "^2.0.1"
- posix-character-classes "^0.1.0"
- regex-not "^1.0.0"
- snapdragon "^0.8.1"
- to-regex "^3.0.1"
-
-expect@^26.6.2:
- version "26.6.2"
- resolved "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz"
- integrity sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==
- dependencies:
- "@jest/types" "^26.6.2"
- ansi-styles "^4.0.0"
- jest-get-type "^26.3.0"
- jest-matcher-utils "^26.6.2"
- jest-message-util "^26.6.2"
- jest-regex-util "^26.0.0"
-
-extend-shallow@^2.0.1:
- version "2.0.1"
- resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz"
- integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=
- dependencies:
- is-extendable "^0.1.0"
-
-extend-shallow@^3.0.0, extend-shallow@^3.0.2:
- version "3.0.2"
- resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz"
- integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=
- dependencies:
- assign-symbols "^1.0.0"
- is-extendable "^1.0.1"
-
-extend@~3.0.2:
- version "3.0.2"
- resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz"
- integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
-
-extglob@^2.0.4:
- version "2.0.4"
- resolved "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz"
- integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==
- dependencies:
- array-unique "^0.3.2"
- define-property "^1.0.0"
- expand-brackets "^2.1.4"
- extend-shallow "^2.0.1"
- fragment-cache "^0.2.1"
- regex-not "^1.0.0"
- snapdragon "^0.8.1"
- to-regex "^3.0.1"
-
-extsprintf@1.3.0, extsprintf@^1.2.0:
- version "1.3.0"
- resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"
- integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=
-
-fast-deep-equal@^3.1.1:
- 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==
-
-fast-json-stable-stringify@^2.0.0:
- version "2.1.0"
- resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"
- integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
-
-fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6:
- version "2.0.6"
- resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"
- integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
-
-fb-watchman@^2.0.0:
- version "2.0.1"
- resolved "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz"
- integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==
- dependencies:
- bser "2.1.1"
-
-file-entry-cache@^5.0.1:
- version "5.0.1"
- resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz"
- integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==
- dependencies:
- flat-cache "^2.0.1"
-
-fill-range@^4.0.0:
- version "4.0.0"
- resolved "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz"
- integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=
- dependencies:
- extend-shallow "^2.0.1"
- is-number "^3.0.0"
- repeat-string "^1.6.1"
- to-regex-range "^2.1.0"
-
-fill-range@^7.0.1:
- 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"
-
-find-up@^4.0.0, find-up@^4.1.0:
- version "4.1.0"
- resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz"
- integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
- dependencies:
- locate-path "^5.0.0"
- path-exists "^4.0.0"
-
-flat-cache@^2.0.1:
- version "2.0.1"
- resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz"
- integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==
- dependencies:
- flatted "^2.0.0"
- rimraf "2.6.3"
- write "1.0.3"
-
-flatted@^2.0.0:
- version "2.0.2"
- resolved "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz"
- integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==
-
-for-in@^1.0.2:
- version "1.0.2"
- resolved "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz"
- integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=
-
-forever-agent@~0.6.1:
- version "0.6.1"
- resolved "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz"
- integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=
-
-form-data@~2.3.2:
- version "2.3.3"
- resolved "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz"
- integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==
- dependencies:
- asynckit "^0.4.0"
- combined-stream "^1.0.6"
- mime-types "^2.1.12"
-
-fragment-cache@^0.2.1:
- version "0.2.1"
- resolved "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz"
- integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=
- dependencies:
- map-cache "^0.2.2"
-
-fs.realpath@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
- integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
-
-fsevents@^2.1.2:
- version "2.2.1"
- resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.2.1.tgz"
- integrity sha512-bTLYHSeC0UH/EFXS9KqWnXuOl/wHK5Z/d+ghd5AsFMYN7wIGkUCOJyzy88+wJKkZPGON8u4Z9f6U4FdgURE9qA==
-
-function-bind@^1.1.1:
- version "1.1.1"
- resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"
- integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
-
-functional-red-black-tree@^1.0.1:
- version "1.0.1"
- resolved "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"
- integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
-
-gensync@^1.0.0-beta.1:
- version "1.0.0-beta.2"
- resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz"
- integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
-
-get-caller-file@^2.0.1:
- version "2.0.5"
- resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz"
- integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
-
-get-package-type@^0.1.0:
- version "0.1.0"
- resolved "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz"
- integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==
-
-get-stream@^4.0.0:
- version "4.1.0"
- resolved "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz"
- integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==
- dependencies:
- pump "^3.0.0"
-
-get-stream@^5.0.0:
- version "5.2.0"
- resolved "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz"
- integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==
- dependencies:
- pump "^3.0.0"
-
-get-value@^2.0.3, get-value@^2.0.6:
- version "2.0.6"
- resolved "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz"
- integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=
-
-getpass@^0.1.1:
- version "0.1.7"
- resolved "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz"
- integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=
- dependencies:
- assert-plus "^1.0.0"
-
-glob-parent@^5.0.0:
- version "5.1.1"
- resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz"
- integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==
- dependencies:
- is-glob "^4.0.1"
-
-glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4:
- version "7.1.6"
- resolved "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz"
- integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
- dependencies:
- fs.realpath "^1.0.0"
- inflight "^1.0.4"
- inherits "2"
- minimatch "^3.0.4"
- once "^1.3.0"
- path-is-absolute "^1.0.0"
-
-globals@^11.1.0:
- version "11.12.0"
- resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz"
- integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
-
-globals@^12.1.0:
- version "12.4.0"
- resolved "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz"
- integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==
- dependencies:
- type-fest "^0.8.1"
-
-graceful-fs@^4.2.4:
- version "4.2.4"
- resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz"
- integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==
-
-growly@^1.3.0:
- version "1.3.0"
- resolved "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz"
- integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=
-
-har-schema@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz"
- integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=
-
-har-validator@~5.1.3:
- version "5.1.5"
- resolved "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz"
- integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==
- dependencies:
- ajv "^6.12.3"
- har-schema "^2.0.0"
-
-has-flag@^3.0.0:
- version "3.0.0"
- resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"
- integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
-
-has-flag@^4.0.0:
- version "4.0.0"
- resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"
- integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
-
-has-value@^0.3.1:
- version "0.3.1"
- resolved "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz"
- integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=
- dependencies:
- get-value "^2.0.3"
- has-values "^0.1.4"
- isobject "^2.0.0"
-
-has-value@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz"
- integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=
- dependencies:
- get-value "^2.0.6"
- has-values "^1.0.0"
- isobject "^3.0.0"
-
-has-values@^0.1.4:
- version "0.1.4"
- resolved "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz"
- integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E=
-
-has-values@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz"
- integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=
- dependencies:
- is-number "^3.0.0"
- kind-of "^4.0.0"
-
-has@^1.0.3:
- 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"
-
-hosted-git-info@^2.1.4:
- version "2.8.8"
- resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz"
- integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==
-
-html-encoding-sniffer@^2.0.1:
- version "2.0.1"
- resolved "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz"
- integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==
- dependencies:
- whatwg-encoding "^1.0.5"
-
-html-escaper@^2.0.0:
- version "2.0.2"
- resolved "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz"
- integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==
-
-http-signature@~1.2.0:
- version "1.2.0"
- resolved "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz"
- integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=
- dependencies:
- assert-plus "^1.0.0"
- jsprim "^1.2.2"
- sshpk "^1.7.0"
-
-human-signals@^1.1.1:
- version "1.1.1"
- resolved "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz"
- integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==
-
-iconv-lite@0.4.24:
- 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"
-
-ignore@^4.0.6:
- version "4.0.6"
- resolved "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz"
- integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
-
-ignore@^5.1.1:
- version "5.1.8"
- resolved "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz"
- integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==
-
-import-fresh@^3.0.0, import-fresh@^3.2.1:
- version "3.2.2"
- resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.2.tgz"
- integrity sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw==
- dependencies:
- parent-module "^1.0.0"
- resolve-from "^4.0.0"
-
-import-local@^3.0.2:
- version "3.0.2"
- resolved "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz"
- integrity sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==
- dependencies:
- pkg-dir "^4.2.0"
- resolve-cwd "^3.0.0"
-
-imurmurhash@^0.1.4:
- version "0.1.4"
- resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz"
- integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
-
-inflight@^1.0.4:
- version "1.0.6"
- resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"
- integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
- dependencies:
- once "^1.3.0"
- wrappy "1"
-
-inherits@2:
- version "2.0.4"
- resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
- integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
-
-ip-regex@^2.1.0:
- version "2.1.0"
- resolved "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz"
- integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=
-
-is-accessor-descriptor@^0.1.6:
- version "0.1.6"
- resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz"
- integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=
- dependencies:
- kind-of "^3.0.2"
-
-is-accessor-descriptor@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz"
- integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==
- dependencies:
- kind-of "^6.0.0"
-
-is-arrayish@^0.2.1:
- version "0.2.1"
- resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"
- integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
-
-is-buffer@^1.1.5:
- version "1.1.6"
- resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz"
- integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
-
-is-ci@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz"
- integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==
- dependencies:
- ci-info "^2.0.0"
-
-is-core-module@^2.1.0:
- version "2.1.0"
- resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.1.0.tgz"
- integrity sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA==
- dependencies:
- has "^1.0.3"
-
-is-data-descriptor@^0.1.4:
- version "0.1.4"
- resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz"
- integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=
- dependencies:
- kind-of "^3.0.2"
-
-is-data-descriptor@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz"
- integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==
- dependencies:
- kind-of "^6.0.0"
-
-is-descriptor@^0.1.0:
- version "0.1.6"
- resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz"
- integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==
- dependencies:
- is-accessor-descriptor "^0.1.6"
- is-data-descriptor "^0.1.4"
- kind-of "^5.0.0"
-
-is-descriptor@^1.0.0, is-descriptor@^1.0.2:
- version "1.0.2"
- resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz"
- integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==
- dependencies:
- is-accessor-descriptor "^1.0.0"
- is-data-descriptor "^1.0.0"
- kind-of "^6.0.2"
-
-is-docker@^2.0.0:
- version "2.1.1"
- resolved "https://registry.npmjs.org/is-docker/-/is-docker-2.1.1.tgz"
- integrity sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==
-
-is-extendable@^0.1.0, is-extendable@^0.1.1:
- version "0.1.1"
- resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz"
- integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=
-
-is-extendable@^1.0.1:
- version "1.0.1"
- resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz"
- integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==
- dependencies:
- is-plain-object "^2.0.4"
-
-is-extglob@^2.1.1:
- version "2.1.1"
- resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"
- integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
-
-is-fullwidth-code-point@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"
- integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
-
-is-fullwidth-code-point@^3.0.0:
- 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==
-
-is-generator-fn@^2.0.0:
- version "2.1.0"
- resolved "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz"
- integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==
-
-is-glob@^4.0.0, is-glob@^4.0.1:
- version "4.0.1"
- resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz"
- integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
- dependencies:
- is-extglob "^2.1.1"
-
-is-number@^3.0.0:
- version "3.0.0"
- resolved "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz"
- integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=
- dependencies:
- kind-of "^3.0.2"
-
-is-number@^7.0.0:
- version "7.0.0"
- resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz"
- integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
-
-is-plain-object@^2.0.3, is-plain-object@^2.0.4:
- version "2.0.4"
- resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz"
- integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
- dependencies:
- isobject "^3.0.1"
-
-is-potential-custom-element-name@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz"
- integrity sha1-DFLlS8yjkbssSUsh6GJtczbG45c=
-
-is-stream@^1.1.0:
- version "1.1.0"
- resolved "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"
- integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ=
-
-is-stream@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz"
- integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==
-
-is-typedarray@^1.0.0, is-typedarray@~1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"
- integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
-
-is-windows@^1.0.2:
- version "1.0.2"
- resolved "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz"
- integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
-
-is-wsl@^2.2.0:
- version "2.2.0"
- resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz"
- integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==
- dependencies:
- is-docker "^2.0.0"
-
-isarray@1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"
- integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
-
-isexe@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"
- integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
-
-isobject@^2.0.0:
- version "2.1.0"
- resolved "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz"
- integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=
- dependencies:
- isarray "1.0.0"
-
-isobject@^3.0.0, isobject@^3.0.1:
- version "3.0.1"
- resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz"
- integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
-
-isstream@~0.1.2:
- version "0.1.2"
- resolved "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz"
- integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
-
-istanbul-lib-coverage@^3.0.0:
- version "3.0.0"
- resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz"
- integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==
-
-istanbul-lib-instrument@^4.0.0, istanbul-lib-instrument@^4.0.3:
- version "4.0.3"
- resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz"
- integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==
- dependencies:
- "@babel/core" "^7.7.5"
- "@istanbuljs/schema" "^0.1.2"
- istanbul-lib-coverage "^3.0.0"
- semver "^6.3.0"
-
-istanbul-lib-report@^3.0.0:
- version "3.0.0"
- resolved "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz"
- integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==
- dependencies:
- istanbul-lib-coverage "^3.0.0"
- make-dir "^3.0.0"
- supports-color "^7.1.0"
-
-istanbul-lib-source-maps@^4.0.0:
- version "4.0.0"
- resolved "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz"
- integrity sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==
- dependencies:
- debug "^4.1.1"
- istanbul-lib-coverage "^3.0.0"
- source-map "^0.6.1"
-
-istanbul-reports@^3.0.2:
- version "3.0.2"
- resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz"
- integrity sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==
- dependencies:
- html-escaper "^2.0.0"
- istanbul-lib-report "^3.0.0"
-
-jest-changed-files@^26.6.2:
- version "26.6.2"
- resolved "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-26.6.2.tgz"
- integrity sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==
- dependencies:
- "@jest/types" "^26.6.2"
- execa "^4.0.0"
- throat "^5.0.0"
-
-jest-cli@^26.6.3:
- version "26.6.3"
- resolved "https://registry.npmjs.org/jest-cli/-/jest-cli-26.6.3.tgz"
- integrity sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==
- dependencies:
- "@jest/core" "^26.6.3"
- "@jest/test-result" "^26.6.2"
- "@jest/types" "^26.6.2"
- chalk "^4.0.0"
- exit "^0.1.2"
- graceful-fs "^4.2.4"
- import-local "^3.0.2"
- is-ci "^2.0.0"
- jest-config "^26.6.3"
- jest-util "^26.6.2"
- jest-validate "^26.6.2"
- prompts "^2.0.1"
- yargs "^15.4.1"
-
-jest-config@^26.6.3:
- version "26.6.3"
- resolved "https://registry.npmjs.org/jest-config/-/jest-config-26.6.3.tgz"
- integrity sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==
- dependencies:
- "@babel/core" "^7.1.0"
- "@jest/test-sequencer" "^26.6.3"
- "@jest/types" "^26.6.2"
- babel-jest "^26.6.3"
- chalk "^4.0.0"
- deepmerge "^4.2.2"
- glob "^7.1.1"
- graceful-fs "^4.2.4"
- jest-environment-jsdom "^26.6.2"
- jest-environment-node "^26.6.2"
- jest-get-type "^26.3.0"
- jest-jasmine2 "^26.6.3"
- jest-regex-util "^26.0.0"
- jest-resolve "^26.6.2"
- jest-util "^26.6.2"
- jest-validate "^26.6.2"
- micromatch "^4.0.2"
- pretty-format "^26.6.2"
-
-jest-diff@^26.6.2:
- version "26.6.2"
- resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz"
- integrity sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==
- dependencies:
- chalk "^4.0.0"
- diff-sequences "^26.6.2"
- jest-get-type "^26.3.0"
- pretty-format "^26.6.2"
-
-jest-docblock@^26.0.0:
- version "26.0.0"
- resolved "https://registry.npmjs.org/jest-docblock/-/jest-docblock-26.0.0.tgz"
- integrity sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==
- dependencies:
- detect-newline "^3.0.0"
-
-jest-each@^26.6.2:
- version "26.6.2"
- resolved "https://registry.npmjs.org/jest-each/-/jest-each-26.6.2.tgz"
- integrity sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==
- dependencies:
- "@jest/types" "^26.6.2"
- chalk "^4.0.0"
- jest-get-type "^26.3.0"
- jest-util "^26.6.2"
- pretty-format "^26.6.2"
-
-jest-environment-jsdom@^26.6.2:
- version "26.6.2"
- resolved "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz"
- integrity sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==
- dependencies:
- "@jest/environment" "^26.6.2"
- "@jest/fake-timers" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/node" "*"
- jest-mock "^26.6.2"
- jest-util "^26.6.2"
- jsdom "^16.4.0"
-
-jest-environment-node@^26.6.2:
- version "26.6.2"
- resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-26.6.2.tgz"
- integrity sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==
- dependencies:
- "@jest/environment" "^26.6.2"
- "@jest/fake-timers" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/node" "*"
- jest-mock "^26.6.2"
- jest-util "^26.6.2"
-
-jest-get-type@^26.3.0:
- version "26.3.0"
- resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz"
- integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==
-
-jest-haste-map@^26.6.2:
- version "26.6.2"
- resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz"
- integrity sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==
- dependencies:
- "@jest/types" "^26.6.2"
- "@types/graceful-fs" "^4.1.2"
- "@types/node" "*"
- anymatch "^3.0.3"
- fb-watchman "^2.0.0"
- graceful-fs "^4.2.4"
- jest-regex-util "^26.0.0"
- jest-serializer "^26.6.2"
- jest-util "^26.6.2"
- jest-worker "^26.6.2"
- micromatch "^4.0.2"
- sane "^4.0.3"
- walker "^1.0.7"
- optionalDependencies:
- fsevents "^2.1.2"
-
-jest-jasmine2@^26.6.3:
- version "26.6.3"
- resolved "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz"
- integrity sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==
- dependencies:
- "@babel/traverse" "^7.1.0"
- "@jest/environment" "^26.6.2"
- "@jest/source-map" "^26.6.2"
- "@jest/test-result" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/node" "*"
- chalk "^4.0.0"
- co "^4.6.0"
- expect "^26.6.2"
- is-generator-fn "^2.0.0"
- jest-each "^26.6.2"
- jest-matcher-utils "^26.6.2"
- jest-message-util "^26.6.2"
- jest-runtime "^26.6.3"
- jest-snapshot "^26.6.2"
- jest-util "^26.6.2"
- pretty-format "^26.6.2"
- throat "^5.0.0"
-
-jest-leak-detector@^26.6.2:
- version "26.6.2"
- resolved "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz"
- integrity sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==
- dependencies:
- jest-get-type "^26.3.0"
- pretty-format "^26.6.2"
-
-jest-matcher-utils@^26.6.2:
- version "26.6.2"
- resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz"
- integrity sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==
- dependencies:
- chalk "^4.0.0"
- jest-diff "^26.6.2"
- jest-get-type "^26.3.0"
- pretty-format "^26.6.2"
-
-jest-message-util@^26.6.2:
- version "26.6.2"
- resolved "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz"
- integrity sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==
- dependencies:
- "@babel/code-frame" "^7.0.0"
- "@jest/types" "^26.6.2"
- "@types/stack-utils" "^2.0.0"
- chalk "^4.0.0"
- graceful-fs "^4.2.4"
- micromatch "^4.0.2"
- pretty-format "^26.6.2"
- slash "^3.0.0"
- stack-utils "^2.0.2"
-
-jest-mock@^26.6.2:
- version "26.6.2"
- resolved "https://registry.npmjs.org/jest-mock/-/jest-mock-26.6.2.tgz"
- integrity sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==
- dependencies:
- "@jest/types" "^26.6.2"
- "@types/node" "*"
-
-jest-pnp-resolver@^1.2.2:
- version "1.2.2"
- resolved "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz"
- integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==
-
-jest-regex-util@^26.0.0:
- version "26.0.0"
- resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz"
- integrity sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==
-
-jest-resolve-dependencies@^26.6.3:
- version "26.6.3"
- resolved "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz"
- integrity sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==
- dependencies:
- "@jest/types" "^26.6.2"
- jest-regex-util "^26.0.0"
- jest-snapshot "^26.6.2"
-
-jest-resolve@^26.6.2:
- version "26.6.2"
- resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz"
- integrity sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==
- dependencies:
- "@jest/types" "^26.6.2"
- chalk "^4.0.0"
- graceful-fs "^4.2.4"
- jest-pnp-resolver "^1.2.2"
- jest-util "^26.6.2"
- read-pkg-up "^7.0.1"
- resolve "^1.18.1"
- slash "^3.0.0"
-
-jest-runner@^26.6.3:
- version "26.6.3"
- resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-26.6.3.tgz"
- integrity sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==
- dependencies:
- "@jest/console" "^26.6.2"
- "@jest/environment" "^26.6.2"
- "@jest/test-result" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/node" "*"
- chalk "^4.0.0"
- emittery "^0.7.1"
- exit "^0.1.2"
- graceful-fs "^4.2.4"
- jest-config "^26.6.3"
- jest-docblock "^26.0.0"
- jest-haste-map "^26.6.2"
- jest-leak-detector "^26.6.2"
- jest-message-util "^26.6.2"
- jest-resolve "^26.6.2"
- jest-runtime "^26.6.3"
- jest-util "^26.6.2"
- jest-worker "^26.6.2"
- source-map-support "^0.5.6"
- throat "^5.0.0"
-
-jest-runtime@^26.6.3:
- version "26.6.3"
- resolved "https://registry.npmjs.org/jest-runtime/-/jest-runtime-26.6.3.tgz"
- integrity sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==
- dependencies:
- "@jest/console" "^26.6.2"
- "@jest/environment" "^26.6.2"
- "@jest/fake-timers" "^26.6.2"
- "@jest/globals" "^26.6.2"
- "@jest/source-map" "^26.6.2"
- "@jest/test-result" "^26.6.2"
- "@jest/transform" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/yargs" "^15.0.0"
- chalk "^4.0.0"
- cjs-module-lexer "^0.6.0"
- collect-v8-coverage "^1.0.0"
- exit "^0.1.2"
- glob "^7.1.3"
- graceful-fs "^4.2.4"
- jest-config "^26.6.3"
- jest-haste-map "^26.6.2"
- jest-message-util "^26.6.2"
- jest-mock "^26.6.2"
- jest-regex-util "^26.0.0"
- jest-resolve "^26.6.2"
- jest-snapshot "^26.6.2"
- jest-util "^26.6.2"
- jest-validate "^26.6.2"
- slash "^3.0.0"
- strip-bom "^4.0.0"
- yargs "^15.4.1"
-
-jest-serializer@^26.6.2:
- version "26.6.2"
- resolved "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz"
- integrity sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==
- dependencies:
- "@types/node" "*"
- graceful-fs "^4.2.4"
-
-jest-snapshot@^26.6.2:
- version "26.6.2"
- resolved "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-26.6.2.tgz"
- integrity sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==
- dependencies:
- "@babel/types" "^7.0.0"
- "@jest/types" "^26.6.2"
- "@types/babel__traverse" "^7.0.4"
- "@types/prettier" "^2.0.0"
- chalk "^4.0.0"
- expect "^26.6.2"
- graceful-fs "^4.2.4"
- jest-diff "^26.6.2"
- jest-get-type "^26.3.0"
- jest-haste-map "^26.6.2"
- jest-matcher-utils "^26.6.2"
- jest-message-util "^26.6.2"
- jest-resolve "^26.6.2"
- natural-compare "^1.4.0"
- pretty-format "^26.6.2"
- semver "^7.3.2"
-
-jest-util@^26.6.2:
- version "26.6.2"
- resolved "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz"
- integrity sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==
- dependencies:
- "@jest/types" "^26.6.2"
- "@types/node" "*"
- chalk "^4.0.0"
- graceful-fs "^4.2.4"
- is-ci "^2.0.0"
- micromatch "^4.0.2"
-
-jest-validate@^26.6.2:
- version "26.6.2"
- resolved "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz"
- integrity sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==
- dependencies:
- "@jest/types" "^26.6.2"
- camelcase "^6.0.0"
- chalk "^4.0.0"
- jest-get-type "^26.3.0"
- leven "^3.1.0"
- pretty-format "^26.6.2"
-
-jest-watcher@^26.6.2:
- version "26.6.2"
- resolved "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.6.2.tgz"
- integrity sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==
- dependencies:
- "@jest/test-result" "^26.6.2"
- "@jest/types" "^26.6.2"
- "@types/node" "*"
- ansi-escapes "^4.2.1"
- chalk "^4.0.0"
- jest-util "^26.6.2"
- string-length "^4.0.1"
-
-jest-worker@^26.6.2:
- version "26.6.2"
- resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz"
- integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==
- dependencies:
- "@types/node" "*"
- merge-stream "^2.0.0"
- supports-color "^7.0.0"
-
-jest@^26.4.2:
- version "26.6.3"
- resolved "https://registry.npmjs.org/jest/-/jest-26.6.3.tgz"
- integrity sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==
- dependencies:
- "@jest/core" "^26.6.3"
- import-local "^3.0.2"
- jest-cli "^26.6.3"
-
-js-tokens@^4.0.0:
- version "4.0.0"
- resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz"
- integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
-
-js-yaml@^3.13.1:
- version "3.14.0"
- resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz"
- integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==
- dependencies:
- argparse "^1.0.7"
- esprima "^4.0.0"
-
-jsbn@~0.1.0:
- version "0.1.1"
- resolved "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz"
- integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM=
-
-jsdom@^16.4.0:
- version "16.4.0"
- resolved "https://registry.npmjs.org/jsdom/-/jsdom-16.4.0.tgz"
- integrity sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w==
- dependencies:
- abab "^2.0.3"
- acorn "^7.1.1"
- acorn-globals "^6.0.0"
- cssom "^0.4.4"
- cssstyle "^2.2.0"
- data-urls "^2.0.0"
- decimal.js "^10.2.0"
- domexception "^2.0.1"
- escodegen "^1.14.1"
- html-encoding-sniffer "^2.0.1"
- is-potential-custom-element-name "^1.0.0"
- nwsapi "^2.2.0"
- parse5 "5.1.1"
- request "^2.88.2"
- request-promise-native "^1.0.8"
- saxes "^5.0.0"
- symbol-tree "^3.2.4"
- tough-cookie "^3.0.1"
- w3c-hr-time "^1.0.2"
- w3c-xmlserializer "^2.0.0"
- webidl-conversions "^6.1.0"
- whatwg-encoding "^1.0.5"
- whatwg-mimetype "^2.3.0"
- whatwg-url "^8.0.0"
- ws "^7.2.3"
- xml-name-validator "^3.0.0"
-
-jsesc@^2.5.1:
- version "2.5.2"
- resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz"
- integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
-
-json-parse-even-better-errors@^2.3.0:
- version "2.3.1"
- resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz"
- integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
-
-json-schema-traverse@^0.4.1:
- version "0.4.1"
- resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"
- integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
-
-json-schema@0.2.3:
- version "0.2.3"
- resolved "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz"
- integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=
-
-json-stable-stringify-without-jsonify@^1.0.1:
- version "1.0.1"
- resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"
- integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=
-
-json-stringify-safe@~5.0.1:
- version "5.0.1"
- resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"
- integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=
-
-json5@^2.1.2:
- version "2.1.3"
- resolved "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz"
- integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==
- dependencies:
- minimist "^1.2.5"
-
-jsonc-parser@^2.3.1:
- version "2.3.1"
- resolved "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-2.3.1.tgz"
- integrity sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==
-
-jsprim@^1.2.2:
- version "1.4.1"
- resolved "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz"
- integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=
- dependencies:
- assert-plus "1.0.0"
- extsprintf "1.3.0"
- json-schema "0.2.3"
- verror "1.10.0"
-
-kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
- version "3.2.2"
- resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz"
- integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=
- dependencies:
- is-buffer "^1.1.5"
-
-kind-of@^4.0.0:
- version "4.0.0"
- resolved "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz"
- integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc=
- dependencies:
- is-buffer "^1.1.5"
-
-kind-of@^5.0.0:
- version "5.1.0"
- resolved "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz"
- integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==
-
-kind-of@^6.0.0, kind-of@^6.0.2:
- version "6.0.3"
- resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz"
- integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
-
-kleur@^3.0.3:
- version "3.0.3"
- resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz"
- integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
-
-leven@^3.1.0:
- version "3.1.0"
- resolved "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz"
- integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
-
-levn@^0.4.1:
- version "0.4.1"
- resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz"
- integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
- dependencies:
- prelude-ls "^1.2.1"
- type-check "~0.4.0"
-
-levn@~0.3.0:
- version "0.3.0"
- resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz"
- integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=
- dependencies:
- prelude-ls "~1.1.2"
- type-check "~0.3.2"
-
-lines-and-columns@^1.1.6:
- version "1.1.6"
- resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz"
- integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
-
-locate-path@^5.0.0:
- version "5.0.0"
- resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz"
- integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
- dependencies:
- p-locate "^4.1.0"
-
-lodash.sortby@^4.7.0:
- version "4.7.0"
- resolved "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz"
- integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=
-
-lodash@^4.17.14, lodash@^4.17.19:
- version "4.17.20"
- resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz"
- integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==
-
-make-dir@^3.0.0:
- version "3.1.0"
- resolved "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz"
- integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
- dependencies:
- semver "^6.0.0"
-
-makeerror@1.0.x:
- version "1.0.11"
- resolved "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz"
- integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=
- dependencies:
- tmpl "1.0.x"
-
-map-cache@^0.2.2:
- version "0.2.2"
- resolved "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz"
- integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=
-
-map-visit@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz"
- integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=
- dependencies:
- object-visit "^1.0.0"
-
-merge-stream@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz"
- integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
-
-micromatch@^3.1.4:
- version "3.1.10"
- resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz"
- integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
- dependencies:
- arr-diff "^4.0.0"
- array-unique "^0.3.2"
- braces "^2.3.1"
- define-property "^2.0.2"
- extend-shallow "^3.0.2"
- extglob "^2.0.4"
- fragment-cache "^0.2.1"
- kind-of "^6.0.2"
- nanomatch "^1.2.9"
- object.pick "^1.3.0"
- regex-not "^1.0.0"
- snapdragon "^0.8.1"
- to-regex "^3.0.2"
-
-micromatch@^4.0.2:
- version "4.0.2"
- resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz"
- integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==
- dependencies:
- braces "^3.0.1"
- picomatch "^2.0.5"
-
-mime-db@1.44.0:
- version "1.44.0"
- resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz"
- integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==
-
-mime-types@^2.1.12, mime-types@~2.1.19:
- version "2.1.27"
- resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz"
- integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==
- dependencies:
- mime-db "1.44.0"
-
-mimic-fn@^2.1.0:
- version "2.1.0"
- resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz"
- integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
-
-minimatch@^3.0.4:
- version "3.0.4"
- resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"
- integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
- dependencies:
- brace-expansion "^1.1.7"
-
-minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5:
- version "1.2.5"
- resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz"
- integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
-
-mixin-deep@^1.2.0:
- version "1.3.2"
- resolved "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz"
- integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==
- dependencies:
- for-in "^1.0.2"
- is-extendable "^1.0.1"
-
-mkdirp@^0.5.1:
- version "0.5.5"
- resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz"
- integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==
- dependencies:
- minimist "^1.2.5"
-
-ms@2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
- integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
-
-ms@2.1.2:
- version "2.1.2"
- resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
- integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
-
-nanomatch@^1.2.9:
- version "1.2.13"
- resolved "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz"
- integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==
- dependencies:
- arr-diff "^4.0.0"
- array-unique "^0.3.2"
- define-property "^2.0.2"
- extend-shallow "^3.0.2"
- fragment-cache "^0.2.1"
- is-windows "^1.0.2"
- kind-of "^6.0.2"
- object.pick "^1.3.0"
- regex-not "^1.0.0"
- snapdragon "^0.8.1"
- to-regex "^3.0.1"
-
-natural-compare@^1.4.0:
- version "1.4.0"
- resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"
- integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
-
-nice-try@^1.0.4:
- version "1.0.5"
- resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz"
- integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
-
-node-fetch@^2.6.1:
- version "2.6.1"
- resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz"
- integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==
-
-node-int64@^0.4.0:
- version "0.4.0"
- resolved "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz"
- integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=
-
-node-modules-regexp@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz"
- integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
-
-node-notifier@^8.0.0:
- version "8.0.0"
- resolved "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.0.tgz"
- integrity sha512-46z7DUmcjoYdaWyXouuFNNfUo6eFa94t23c53c+lG/9Cvauk4a98rAUp9672X5dxGdQmLpPzTxzu8f/OeEPaFA==
- dependencies:
- growly "^1.3.0"
- is-wsl "^2.2.0"
- semver "^7.3.2"
- shellwords "^0.1.1"
- uuid "^8.3.0"
- which "^2.0.2"
-
-normalize-package-data@^2.5.0:
- version "2.5.0"
- resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz"
- integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
- dependencies:
- hosted-git-info "^2.1.4"
- resolve "^1.10.0"
- semver "2 || 3 || 4 || 5"
- validate-npm-package-license "^3.0.1"
-
-normalize-path@^2.1.1:
- version "2.1.1"
- resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz"
- integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=
- dependencies:
- remove-trailing-separator "^1.0.1"
-
-normalize-path@^3.0.0:
- version "3.0.0"
- resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz"
- integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
-
-npm-run-path@^2.0.0:
- version "2.0.2"
- resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz"
- integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=
- dependencies:
- path-key "^2.0.0"
-
-npm-run-path@^4.0.0:
- version "4.0.1"
- resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz"
- integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==
- dependencies:
- path-key "^3.0.0"
-
-nwsapi@^2.2.0:
- version "2.2.0"
- resolved "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz"
- integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==
-
-oauth-sign@~0.9.0:
- version "0.9.0"
- resolved "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz"
- integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==
-
-object-copy@^0.1.0:
- version "0.1.0"
- resolved "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz"
- integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw=
- dependencies:
- copy-descriptor "^0.1.0"
- define-property "^0.2.5"
- kind-of "^3.0.3"
-
-object-visit@^1.0.0:
- version "1.0.1"
- resolved "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz"
- integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=
- dependencies:
- isobject "^3.0.0"
-
-object.pick@^1.3.0:
- version "1.3.0"
- resolved "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz"
- integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=
- dependencies:
- isobject "^3.0.1"
-
-once@^1.3.0, once@^1.3.1, once@^1.4.0:
- version "1.4.0"
- resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz"
- integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
- dependencies:
- wrappy "1"
-
-onetime@^5.1.0:
- version "5.1.2"
- resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz"
- integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
- dependencies:
- mimic-fn "^2.1.0"
-
-optionator@^0.8.1:
- version "0.8.3"
- resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz"
- integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
- 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"
-
-optionator@^0.9.1:
- version "0.9.1"
- resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz"
- integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
- dependencies:
- deep-is "^0.1.3"
- fast-levenshtein "^2.0.6"
- levn "^0.4.1"
- prelude-ls "^1.2.1"
- type-check "^0.4.0"
- word-wrap "^1.2.3"
-
-p-each-series@^2.1.0:
- version "2.1.0"
- resolved "https://registry.npmjs.org/p-each-series/-/p-each-series-2.1.0.tgz"
- integrity sha512-ZuRs1miPT4HrjFa+9fRfOFXxGJfORgelKV9f9nNOWw2gl6gVsRaVDOQP0+MI0G0wGKns1Yacsu0GjOFbTK0JFQ==
-
-p-finally@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz"
- integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
-
-p-limit@^2.2.0:
- version "2.3.0"
- resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz"
- integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
- dependencies:
- p-try "^2.0.0"
-
-p-locate@^4.1.0:
- version "4.1.0"
- resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz"
- integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
- dependencies:
- p-limit "^2.2.0"
-
-p-try@^2.0.0:
- version "2.2.0"
- resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"
- integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
-
-parent-module@^1.0.0:
- version "1.0.1"
- resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz"
- integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
- dependencies:
- callsites "^3.0.0"
-
-parse-json@^5.0.0:
- version "5.1.0"
- resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.1.0.tgz"
- integrity sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ==
- dependencies:
- "@babel/code-frame" "^7.0.0"
- error-ex "^1.3.1"
- json-parse-even-better-errors "^2.3.0"
- lines-and-columns "^1.1.6"
-
-parse5@5.1.1:
- version "5.1.1"
- resolved "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz"
- integrity sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==
-
-pascalcase@^0.1.1:
- version "0.1.1"
- resolved "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz"
- integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=
-
-path-exists@^4.0.0:
- version "4.0.0"
- resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"
- integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
-
-path-is-absolute@^1.0.0:
- version "1.0.1"
- resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"
- integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
-
-path-key@^2.0.0, path-key@^2.0.1:
- version "2.0.1"
- resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz"
- integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
-
-path-key@^3.0.0, path-key@^3.1.0:
- version "3.1.1"
- resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz"
- integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
-
-path-parse@^1.0.6:
- version "1.0.6"
- resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz"
- integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
-
-performance-now@^2.1.0:
- version "2.1.0"
- resolved "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz"
- integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
-
-picomatch@^2.0.4, picomatch@^2.0.5:
- version "2.2.2"
- resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz"
- integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==
-
-pirates@^4.0.1:
- version "4.0.1"
- resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz"
- integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==
- dependencies:
- node-modules-regexp "^1.0.0"
-
-pkg-dir@^4.2.0:
- version "4.2.0"
- resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz"
- integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
- dependencies:
- find-up "^4.0.0"
-
-posix-character-classes@^0.1.0:
- version "0.1.1"
- resolved "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz"
- integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
-
-prelude-ls@^1.2.1:
- version "1.2.1"
- resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz"
- integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
-
-prelude-ls@~1.1.2:
- version "1.1.2"
- resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz"
- integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
-
-pretty-format@^26.6.2:
- version "26.6.2"
- resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz"
- integrity sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==
- dependencies:
- "@jest/types" "^26.6.2"
- ansi-regex "^5.0.0"
- ansi-styles "^4.0.0"
- react-is "^17.0.1"
-
-progress@^2.0.0:
- version "2.0.3"
- resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz"
- integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
-
-prompts@^2.0.1:
- version "2.4.0"
- resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz"
- integrity sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==
- dependencies:
- kleur "^3.0.3"
- sisteransi "^1.0.5"
-
-psl@^1.1.28:
- version "1.8.0"
- resolved "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz"
- integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==
-
-pump@^3.0.0:
- version "3.0.0"
- resolved "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz"
- integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
- dependencies:
- end-of-stream "^1.1.0"
- once "^1.3.1"
-
-punycode@^2.1.0, punycode@^2.1.1:
- version "2.1.1"
- resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"
- integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
-
-qs@^6.9.4:
- version "6.9.4"
- resolved "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz"
- integrity sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ==
-
-qs@~6.5.2:
- version "6.5.2"
- resolved "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz"
- integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==
-
-ramda@^0.27.1:
- version "0.27.1"
- resolved "https://registry.npmjs.org/ramda/-/ramda-0.27.1.tgz"
- integrity sha512-PgIdVpn5y5Yns8vqb8FzBUEYn98V3xcPgawAkkgj0YJ0qDsnHCiNmZYfOGMgOvoB0eWFLpYbhxUR3mxfDIMvpw==
-
-react-is@^17.0.1:
- version "17.0.1"
- resolved "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz"
- integrity sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==
-
-read-pkg-up@^7.0.1:
- version "7.0.1"
- resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz"
- integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==
- dependencies:
- find-up "^4.1.0"
- read-pkg "^5.2.0"
- type-fest "^0.8.1"
-
-read-pkg@^5.2.0:
- version "5.2.0"
- resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz"
- integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==
- dependencies:
- "@types/normalize-package-data" "^2.4.0"
- normalize-package-data "^2.5.0"
- parse-json "^5.0.0"
- type-fest "^0.6.0"
-
-regex-not@^1.0.0, regex-not@^1.0.2:
- version "1.0.2"
- resolved "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz"
- integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==
- dependencies:
- extend-shallow "^3.0.2"
- safe-regex "^1.1.0"
-
-regexpp@^3.0.0, regexpp@^3.1.0:
- version "3.1.0"
- resolved "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz"
- integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==
-
-remove-trailing-separator@^1.0.1:
- version "1.1.0"
- resolved "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz"
- integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8=
-
-repeat-element@^1.1.2:
- version "1.1.3"
- resolved "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz"
- integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==
-
-repeat-string@^1.6.1:
- version "1.6.1"
- resolved "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz"
- integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
-
-request-promise-core@1.1.4:
- version "1.1.4"
- resolved "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz"
- integrity sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==
- dependencies:
- lodash "^4.17.19"
-
-request-promise-native@^1.0.8:
- version "1.0.9"
- resolved "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz"
- integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==
- dependencies:
- request-promise-core "1.1.4"
- stealthy-require "^1.1.1"
- tough-cookie "^2.3.3"
-
-request@^2.88.2:
- version "2.88.2"
- resolved "https://registry.npmjs.org/request/-/request-2.88.2.tgz"
- integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==
- dependencies:
- aws-sign2 "~0.7.0"
- aws4 "^1.8.0"
- caseless "~0.12.0"
- combined-stream "~1.0.6"
- extend "~3.0.2"
- forever-agent "~0.6.1"
- form-data "~2.3.2"
- har-validator "~5.1.3"
- http-signature "~1.2.0"
- is-typedarray "~1.0.0"
- isstream "~0.1.2"
- json-stringify-safe "~5.0.1"
- mime-types "~2.1.19"
- oauth-sign "~0.9.0"
- performance-now "^2.1.0"
- qs "~6.5.2"
- safe-buffer "^5.1.2"
- tough-cookie "~2.5.0"
- tunnel-agent "^0.6.0"
- uuid "^3.3.2"
-
-require-directory@^2.1.1:
- version "2.1.1"
- resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz"
- integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
-
-require-main-filename@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz"
- integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
-
-resolve-cwd@^3.0.0:
- version "3.0.0"
- resolved "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz"
- integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==
- dependencies:
- resolve-from "^5.0.0"
-
-resolve-from@^4.0.0:
- version "4.0.0"
- resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz"
- integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
-
-resolve-from@^5.0.0:
- version "5.0.0"
- resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz"
- integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
-
-resolve-url@^0.2.1:
- version "0.2.1"
- resolved "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz"
- integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
-
-resolve@^1.10.0, resolve@^1.10.1, resolve@^1.18.1, resolve@^1.3.2:
- version "1.19.0"
- resolved "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz"
- integrity sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==
- dependencies:
- is-core-module "^2.1.0"
- path-parse "^1.0.6"
-
-ret@~0.1.10:
- version "0.1.15"
- resolved "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz"
- integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
-
-rimraf@2.6.3:
- version "2.6.3"
- resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz"
- integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==
- dependencies:
- glob "^7.1.3"
-
-rimraf@^3.0.0:
- version "3.0.2"
- resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz"
- integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
- dependencies:
- glob "^7.1.3"
-
-rsvp@^4.8.4:
- version "4.8.5"
- resolved "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz"
- integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==
-
-safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.1.1:
- version "5.1.2"
- resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"
- integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
-
-safe-regex@^1.1.0:
- version "1.1.0"
- resolved "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz"
- integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4=
- dependencies:
- ret "~0.1.10"
-
-"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
- version "2.1.2"
- resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"
- integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
-
-sane@^4.0.3:
- version "4.1.0"
- resolved "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz"
- integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==
- dependencies:
- "@cnakazawa/watch" "^1.0.3"
- anymatch "^2.0.0"
- capture-exit "^2.0.0"
- exec-sh "^0.3.2"
- execa "^1.0.0"
- fb-watchman "^2.0.0"
- micromatch "^3.1.4"
- minimist "^1.1.1"
- walker "~1.0.5"
-
-saxes@^5.0.0:
- version "5.0.1"
- resolved "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz"
- integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==
- dependencies:
- xmlchars "^2.2.0"
-
-"semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5.0:
- version "5.7.1"
- resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz"
- integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
-
-semver@^6.0.0, semver@^6.1.0, semver@^6.3.0:
- version "6.3.0"
- resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"
- integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
-
-semver@^7.2.1, semver@^7.3.2:
- version "7.3.2"
- resolved "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz"
- integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==
-
-set-blocking@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz"
- integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
-
-set-value@^2.0.0, set-value@^2.0.1:
- version "2.0.1"
- resolved "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz"
- integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==
- dependencies:
- extend-shallow "^2.0.1"
- is-extendable "^0.1.1"
- is-plain-object "^2.0.3"
- split-string "^3.0.1"
-
-shebang-command@^1.2.0:
- version "1.2.0"
- resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz"
- integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=
- dependencies:
- shebang-regex "^1.0.0"
-
-shebang-command@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz"
- integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
- dependencies:
- shebang-regex "^3.0.0"
-
-shebang-regex@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz"
- integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
-
-shebang-regex@^3.0.0:
- version "3.0.0"
- resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz"
- integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
-
-shellwords@^0.1.1:
- version "0.1.1"
- resolved "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz"
- integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==
-
-signal-exit@^3.0.0, signal-exit@^3.0.2:
- version "3.0.3"
- resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz"
- integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
-
-sisteransi@^1.0.5:
- version "1.0.5"
- resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz"
- integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==
-
-slash@^3.0.0:
- version "3.0.0"
- resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz"
- integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
-
-slice-ansi@^2.1.0:
- version "2.1.0"
- resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz"
- integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==
- dependencies:
- ansi-styles "^3.2.0"
- astral-regex "^1.0.0"
- is-fullwidth-code-point "^2.0.0"
-
-snapdragon-node@^2.0.1:
- version "2.1.1"
- resolved "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz"
- integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==
- dependencies:
- define-property "^1.0.0"
- isobject "^3.0.0"
- snapdragon-util "^3.0.1"
-
-snapdragon-util@^3.0.1:
- version "3.0.1"
- resolved "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz"
- integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==
- dependencies:
- kind-of "^3.2.0"
-
-snapdragon@^0.8.1:
- version "0.8.2"
- resolved "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz"
- integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==
- dependencies:
- base "^0.11.1"
- debug "^2.2.0"
- define-property "^0.2.5"
- extend-shallow "^2.0.1"
- map-cache "^0.2.2"
- source-map "^0.5.6"
- source-map-resolve "^0.5.0"
- use "^3.1.0"
-
-source-map-resolve@^0.5.0:
- version "0.5.3"
- resolved "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz"
- integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==
- dependencies:
- atob "^2.1.2"
- decode-uri-component "^0.2.0"
- resolve-url "^0.2.1"
- source-map-url "^0.4.0"
- urix "^0.1.0"
-
-source-map-support@^0.5.6:
- version "0.5.19"
- resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz"
- integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==
- dependencies:
- buffer-from "^1.0.0"
- source-map "^0.6.0"
-
-source-map-url@^0.4.0:
- version "0.4.0"
- resolved "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz"
- integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=
-
-source-map@^0.5.0, source-map@^0.5.6:
- version "0.5.7"
- resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz"
- integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
-
-source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1:
- version "0.6.1"
- resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"
- integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
-
-source-map@^0.7.3:
- version "0.7.3"
- resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz"
- integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
-
-spdx-correct@^3.0.0:
- version "3.1.1"
- resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz"
- integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==
- dependencies:
- spdx-expression-parse "^3.0.0"
- spdx-license-ids "^3.0.0"
-
-spdx-exceptions@^2.1.0:
- version "2.3.0"
- resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz"
- integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==
-
-spdx-expression-parse@^3.0.0:
- version "3.0.1"
- resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz"
- integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==
- dependencies:
- spdx-exceptions "^2.1.0"
- spdx-license-ids "^3.0.0"
-
-spdx-license-ids@^3.0.0:
- version "3.0.6"
- resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.6.tgz"
- integrity sha512-+orQK83kyMva3WyPf59k1+Y525csj5JejicWut55zeTWANuN17qSiSLUXWtzHeNWORSvT7GLDJ/E/XiIWoXBTw==
-
-split-string@^3.0.1, split-string@^3.0.2:
- version "3.1.0"
- resolved "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz"
- integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==
- dependencies:
- extend-shallow "^3.0.0"
-
-sprintf-js@~1.0.2:
- version "1.0.3"
- resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"
- integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
-
-sshpk@^1.7.0:
- version "1.16.1"
- resolved "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz"
- integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==
- dependencies:
- asn1 "~0.2.3"
- assert-plus "^1.0.0"
- bcrypt-pbkdf "^1.0.0"
- dashdash "^1.12.0"
- ecc-jsbn "~0.1.1"
- getpass "^0.1.1"
- jsbn "~0.1.0"
- safer-buffer "^2.0.2"
- tweetnacl "~0.14.0"
-
-stack-utils@^2.0.2:
- version "2.0.3"
- resolved "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.3.tgz"
- integrity sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw==
- dependencies:
- escape-string-regexp "^2.0.0"
-
-static-extend@^0.1.1:
- version "0.1.2"
- resolved "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz"
- integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=
- dependencies:
- define-property "^0.2.5"
- object-copy "^0.1.0"
-
-stealthy-require@^1.1.1:
- version "1.1.1"
- resolved "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz"
- integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=
-
-string-length@^4.0.1:
- version "4.0.1"
- resolved "https://registry.npmjs.org/string-length/-/string-length-4.0.1.tgz"
- integrity sha512-PKyXUd0LK0ePjSOnWn34V2uD6acUWev9uy0Ft05k0E8xRW+SKcA0F7eMr7h5xlzfn+4O3N+55rduYyet3Jk+jw==
- dependencies:
- char-regex "^1.0.2"
- strip-ansi "^6.0.0"
-
-string-width@^3.0.0:
- version "3.1.0"
- resolved "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz"
- integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
- dependencies:
- emoji-regex "^7.0.1"
- is-fullwidth-code-point "^2.0.0"
- strip-ansi "^5.1.0"
-
-string-width@^4.1.0, string-width@^4.2.0:
- version "4.2.0"
- resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz"
- integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==
- dependencies:
- emoji-regex "^8.0.0"
- is-fullwidth-code-point "^3.0.0"
- strip-ansi "^6.0.0"
-
-strip-ansi@^5.1.0:
- version "5.2.0"
- resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"
- integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
- dependencies:
- ansi-regex "^4.1.0"
-
-strip-ansi@^6.0.0:
- version "6.0.0"
- resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz"
- integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
- dependencies:
- ansi-regex "^5.0.0"
-
-strip-bom@^4.0.0:
- version "4.0.0"
- resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz"
- integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==
-
-strip-eof@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz"
- integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=
-
-strip-final-newline@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz"
- integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
-
-strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
- 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==
-
-supports-color@^5.3.0:
- version "5.5.0"
- resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"
- integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
- dependencies:
- has-flag "^3.0.0"
-
-supports-color@^7.0.0, supports-color@^7.1.0:
- version "7.2.0"
- resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"
- integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
- dependencies:
- has-flag "^4.0.0"
-
-supports-hyperlinks@^2.0.0:
- version "2.1.0"
- resolved "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz"
- integrity sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==
- dependencies:
- has-flag "^4.0.0"
- supports-color "^7.0.0"
-
-symbol-tree@^3.2.4:
- version "3.2.4"
- resolved "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz"
- integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
-
-table@^5.2.3:
- version "5.4.6"
- resolved "https://registry.npmjs.org/table/-/table-5.4.6.tgz"
- integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==
- dependencies:
- ajv "^6.10.2"
- lodash "^4.17.14"
- slice-ansi "^2.1.0"
- string-width "^3.0.0"
-
-terminal-link@^2.0.0:
- version "2.1.1"
- resolved "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz"
- integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==
- dependencies:
- ansi-escapes "^4.2.1"
- supports-hyperlinks "^2.0.0"
-
-test-exclude@^6.0.0:
- version "6.0.0"
- resolved "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz"
- integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==
- dependencies:
- "@istanbuljs/schema" "^0.1.2"
- glob "^7.1.4"
- minimatch "^3.0.4"
-
-text-table@^0.2.0:
- version "0.2.0"
- resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"
- integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
-
-throat@^5.0.0:
- version "5.0.0"
- resolved "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz"
- integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==
-
-tmpl@1.0.x:
- version "1.0.4"
- resolved "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz"
- integrity sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=
-
-to-fast-properties@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"
- integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
-
-to-object-path@^0.3.0:
- version "0.3.0"
- resolved "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz"
- integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=
- dependencies:
- kind-of "^3.0.2"
-
-to-regex-range@^2.1.0:
- version "2.1.1"
- resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz"
- integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=
- dependencies:
- is-number "^3.0.0"
- repeat-string "^1.6.1"
-
-to-regex-range@^5.0.1:
- 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"
-
-to-regex@^3.0.1, to-regex@^3.0.2:
- version "3.0.2"
- resolved "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz"
- integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==
- dependencies:
- define-property "^2.0.2"
- extend-shallow "^3.0.2"
- regex-not "^1.0.2"
- safe-regex "^1.1.0"
-
-tough-cookie@^2.3.3, tough-cookie@~2.5.0:
- version "2.5.0"
- resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz"
- integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
- dependencies:
- psl "^1.1.28"
- punycode "^2.1.1"
-
-tough-cookie@^3.0.1:
- version "3.0.1"
- resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-3.0.1.tgz"
- integrity sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==
- dependencies:
- ip-regex "^2.1.0"
- psl "^1.1.28"
- punycode "^2.1.1"
-
-tr46@^2.0.2:
- version "2.0.2"
- resolved "https://registry.npmjs.org/tr46/-/tr46-2.0.2.tgz"
- integrity sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==
- dependencies:
- punycode "^2.1.1"
-
-tunnel-agent@^0.6.0:
- version "0.6.0"
- resolved "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz"
- integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=
- dependencies:
- safe-buffer "^5.0.1"
-
-tweetnacl@^0.14.3, tweetnacl@~0.14.0:
- version "0.14.5"
- resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz"
- integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=
-
-type-check@^0.4.0, type-check@~0.4.0:
- version "0.4.0"
- resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz"
- integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
- dependencies:
- prelude-ls "^1.2.1"
-
-type-check@~0.3.2:
- version "0.3.2"
- resolved "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz"
- integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=
- dependencies:
- prelude-ls "~1.1.2"
-
-type-detect@4.0.8:
- version "4.0.8"
- resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz"
- integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==
-
-type-fest@^0.11.0:
- version "0.11.0"
- resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz"
- integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==
-
-type-fest@^0.6.0:
- version "0.6.0"
- resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz"
- integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==
-
-type-fest@^0.8.1:
- version "0.8.1"
- resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz"
- integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
-
-typedarray-to-buffer@^3.1.5:
- version "3.1.5"
- resolved "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz"
- integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==
- dependencies:
- is-typedarray "^1.0.0"
-
-union-value@^1.0.0:
- version "1.0.1"
- resolved "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz"
- integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==
- dependencies:
- arr-union "^3.1.0"
- get-value "^2.0.6"
- is-extendable "^0.1.1"
- set-value "^2.0.1"
-
-unset-value@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz"
- integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=
- dependencies:
- has-value "^0.3.1"
- isobject "^3.0.0"
-
-uri-js@^4.2.2:
- version "4.4.0"
- resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.0.tgz"
- integrity sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==
- dependencies:
- punycode "^2.1.0"
-
-urix@^0.1.0:
- version "0.1.0"
- resolved "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz"
- integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
-
-use@^3.1.0:
- version "3.1.1"
- resolved "https://registry.npmjs.org/use/-/use-3.1.1.tgz"
- integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
-
-uuid@^3.3.2:
- version "3.4.0"
- resolved "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz"
- integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
-
-uuid@^8.3.0:
- version "8.3.1"
- resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.1.tgz"
- integrity sha512-FOmRr+FmWEIG8uhZv6C2bTgEVXsHk08kE7mPlrBbEe+c3r9pjceVPgupIfNIhc4yx55H69OXANrUaSuu9eInKg==
-
-v8-compile-cache@^2.0.3:
- version "2.2.0"
- resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz"
- integrity sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==
-
-v8-to-istanbul@^7.0.0:
- version "7.0.0"
- resolved "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.0.0.tgz"
- integrity sha512-fLL2rFuQpMtm9r8hrAV2apXX/WqHJ6+IC4/eQVdMDGBUgH/YMV4Gv3duk3kjmyg6uiQWBAA9nJwue4iJUOkHeA==
- dependencies:
- "@types/istanbul-lib-coverage" "^2.0.1"
- convert-source-map "^1.6.0"
- source-map "^0.7.3"
-
-validate-npm-package-license@^3.0.1:
- version "3.0.4"
- resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz"
- integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
- dependencies:
- spdx-correct "^3.0.0"
- spdx-expression-parse "^3.0.0"
-
-verror@1.10.0:
- version "1.10.0"
- resolved "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"
- integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=
- dependencies:
- assert-plus "^1.0.0"
- core-util-is "1.0.2"
- extsprintf "^1.2.0"
-
-vscode-json-languageservice@^3.7.0:
- version "3.10.0"
- resolved "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-3.10.0.tgz"
- integrity sha512-8IvuRSQnjznu+obqy6Dy4S4H68Ke7a3Kb+A0FcdctyAMAWEnrORpCpMOMqEYiPLm/OTYLVWJ7ql3qToDTozu4w==
- dependencies:
- jsonc-parser "^2.3.1"
- vscode-languageserver-textdocument "^1.0.1"
- vscode-languageserver-types "3.16.0-next.2"
- vscode-nls "^5.0.0"
- vscode-uri "^2.1.2"
-
-vscode-languageserver-textdocument@^1.0.1:
- version "1.0.1"
- resolved "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.1.tgz"
- integrity sha512-UIcJDjX7IFkck7cSkNNyzIz5FyvpQfY7sdzVy+wkKN/BLaD4DQ0ppXQrKePomCxTS7RrolK1I0pey0bG9eh8dA==
-
-vscode-languageserver-types@3.16.0-next.2:
- version "3.16.0-next.2"
- resolved "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0-next.2.tgz"
- integrity sha512-QjXB7CKIfFzKbiCJC4OWC8xUncLsxo19FzGVp/ADFvvi87PlmBSCAtZI5xwGjF5qE0xkLf0jjKUn3DzmpDP52Q==
-
-vscode-nls@^5.0.0:
- version "5.0.0"
- resolved "https://registry.npmjs.org/vscode-nls/-/vscode-nls-5.0.0.tgz"
- integrity sha512-u0Lw+IYlgbEJFF6/qAqG2d1jQmJl0eyAGJHoAJqr2HT4M2BNuQYSEiSE75f52pXHSJm8AlTjnLLbBFPrdz2hpA==
-
-vscode-uri@^2.1.2:
- version "2.1.2"
- resolved "https://registry.npmjs.org/vscode-uri/-/vscode-uri-2.1.2.tgz"
- integrity sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==
-
-w3c-hr-time@^1.0.2:
- version "1.0.2"
- resolved "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz"
- integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==
- dependencies:
- browser-process-hrtime "^1.0.0"
-
-w3c-xmlserializer@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz"
- integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==
- dependencies:
- xml-name-validator "^3.0.0"
-
-walker@^1.0.7, walker@~1.0.5:
- version "1.0.7"
- resolved "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz"
- integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=
- dependencies:
- makeerror "1.0.x"
-
-webidl-conversions@^5.0.0:
- version "5.0.0"
- resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz"
- integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==
-
-webidl-conversions@^6.1.0:
- version "6.1.0"
- resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz"
- integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==
-
-whatwg-encoding@^1.0.5:
- version "1.0.5"
- resolved "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz"
- integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==
- dependencies:
- iconv-lite "0.4.24"
-
-whatwg-mimetype@^2.3.0:
- version "2.3.0"
- resolved "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz"
- integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==
-
-whatwg-url@^8.0.0:
- version "8.4.0"
- resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.4.0.tgz"
- integrity sha512-vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw==
- dependencies:
- lodash.sortby "^4.7.0"
- tr46 "^2.0.2"
- webidl-conversions "^6.1.0"
-
-which-module@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz"
- integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
-
-which@^1.2.9:
- version "1.3.1"
- resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz"
- integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
- dependencies:
- isexe "^2.0.0"
-
-which@^2.0.1, which@^2.0.2:
- version "2.0.2"
- resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz"
- integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
- dependencies:
- isexe "^2.0.0"
-
-word-wrap@^1.2.3, word-wrap@~1.2.3:
- 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==
-
-wrap-ansi@^6.2.0:
- version "6.2.0"
- resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz"
- integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
- dependencies:
- ansi-styles "^4.0.0"
- string-width "^4.1.0"
- strip-ansi "^6.0.0"
-
-wrappy@1:
- version "1.0.2"
- resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"
- integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
-
-write-file-atomic@^3.0.0:
- version "3.0.3"
- resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz"
- integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==
- dependencies:
- imurmurhash "^0.1.4"
- is-typedarray "^1.0.0"
- signal-exit "^3.0.2"
- typedarray-to-buffer "^3.1.5"
-
-write@1.0.3:
- version "1.0.3"
- resolved "https://registry.npmjs.org/write/-/write-1.0.3.tgz"
- integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==
- dependencies:
- mkdirp "^0.5.1"
-
-ws@^7.2.3:
- version "7.4.0"
- resolved "https://registry.npmjs.org/ws/-/ws-7.4.0.tgz"
- integrity sha512-kyFwXuV/5ymf+IXhS6f0+eAFvydbaBW3zjpT6hUdAh/hbVjTIB5EHBGi0bPoCLSK2wcuz3BrEkB9LrYv1Nm4NQ==
-
-xml-name-validator@^3.0.0:
- version "3.0.0"
- resolved "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz"
- integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==
-
-xmlchars@^2.2.0:
- version "2.2.0"
- resolved "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz"
- integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==
-
-y18n@^4.0.0:
- version "4.0.0"
- resolved "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz"
- integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==
-
-yargs-parser@^18.1.2:
- version "18.1.3"
- resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz"
- integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==
- dependencies:
- camelcase "^5.0.0"
- decamelize "^1.2.0"
-
-yargs@^15.4.1:
- version "15.4.1"
- resolved "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz"
- integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==
- dependencies:
- cliui "^6.0.0"
- decamelize "^1.2.0"
- find-up "^4.1.0"
- get-caller-file "^2.0.1"
- require-directory "^2.1.1"
- require-main-filename "^2.0.0"
- set-blocking "^2.0.0"
- string-width "^4.2.0"
- which-module "^2.0.0"
- y18n "^4.0.0"
- yargs-parser "^18.1.2"