diff --git a/404.html b/404.html new file mode 100644 index 0000000..3653ada --- /dev/null +++ b/404.html @@ -0,0 +1,33 @@ + + + + + ReviveMii - 404 + + + +
+ +
+ Home +

TheErrorExe & ReviveMii Project 2024

+
+ + diff --git a/4error.jpg b/4error.jpg new file mode 100644 index 0000000..7c77526 Binary files /dev/null and b/4error.jpg differ diff --git a/IMG_0224.JPG b/IMG_0224.JPG new file mode 100644 index 0000000..d35a96f Binary files /dev/null and b/IMG_0224.JPG differ diff --git a/about.html b/about.html new file mode 100644 index 0000000..c072730 --- /dev/null +++ b/about.html @@ -0,0 +1,64 @@ + + + + + + About Us | ReviveMii + + + + + +
+
+ +
+
+
+
+
+
+
+ + + +
+
+

About ReviveMii

+

ReviveMii is a Nintendo Revival Project

+
+
+
+Projects and Services +
+
+ + + + diff --git a/assets/css/styles.css b/assets/css/styles.css new file mode 100644 index 0000000..dd297f4 --- /dev/null +++ b/assets/css/styles.css @@ -0,0 +1,64 @@ +/* Basic Reset */ +body { + margin: 0; + font-family: Arial, sans-serif; + line-height: 1.6; +} + +header { + background: #333; + color: #fff; + padding: 1rem 0; +} + +header nav ul { + list-style: none; + text-align: center; +} + +header nav ul li { + display: inline; + margin: 0 15px; +} + +header nav ul li a { + color: #fff; + text-decoration: none; +} + +.hero { + background: url('../images/hero-bg.jpg') no-repeat center center/cover; + color: #fff; + text-align: center; + padding: 3rem 0; +} + +.hero .button { + background: #007BFF; + color: #fff; + padding: 0.5rem 1rem; + text-decoration: none; + border-radius: 5px; +} + +.project-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); + gap: 20px; + padding: 2rem; +} + +.project-card { + background: #f4f4f4; + padding: 1rem; + border-radius: 5px; + text-align: center; +} + +footer { + text-align: center; + background: #333; + color: #fff; + padding: 1rem 0; + margin-top: 2rem; +} diff --git a/assets/status/services.json b/assets/status/services.json new file mode 100644 index 0000000..cc737f9 --- /dev/null +++ b/assets/status/services.json @@ -0,0 +1,4 @@ +{ + "Website": "https://revivemii.fr.to/", + "ReviveMii Image Share": "https://revivemii.fr.to:25580/?u=http://revivemii.fr.to:25581/" +} diff --git a/contact.html b/contact.html new file mode 100644 index 0000000..0aaafdb --- /dev/null +++ b/contact.html @@ -0,0 +1,3 @@ + diff --git a/cookies.html b/cookies.html new file mode 100644 index 0000000..2841fe2 --- /dev/null +++ b/cookies.html @@ -0,0 +1,60 @@ + + + + + + Cookie and LocalStorage Manager + + + + +

Cookie and LocalStorage Manager

+

Click the buttons below to delete specific cookies or localStorage items:

+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ + + + + diff --git a/css/1.css b/css/1.css new file mode 100644 index 0000000..ab3354d --- /dev/null +++ b/css/1.css @@ -0,0 +1,280 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: 'Arial', sans-serif; + background-color: #121212; + color: #ffffff; + line-height: 1.6; + margin: 0; +} + +a { + text-decoration: none; + color: inherit; +} + +ul { + list-style: none; +} + +header { + background: #1e1e1e; + padding: 20px 40px; + position: fixed; + top: 0; + width: 100%; + z-index: 1000; + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); + display: flex; + justify-content: space-between; + align-items: center; +} + +header .logo-container { + display: flex; + align-items: center; +} + +header .logo-img { + width: 25px; + height: auto; + margin-right: 10px; +} + +header .logo span { + font-size: 1.5rem; + font-weight: bold; + color: #00c2ff; +} + +header nav { + display: flex; + gap: 20px; +} + +header nav a { + color: #ffffff; + font-size: 1rem; + transition: color 0.3s ease; +} + +header nav a:hover { + color: #00c2ff; +} + +.hero { + background: linear-gradient(145deg, #1c1c1c, #121212); + color: white; + padding: 80px 20px; + text-align: center; + height: 100vh; +} + +.hero .container { + max-width: 1200px; + margin: 0 auto; +} + +.hero h1 { + font-size: 3rem; + margin-bottom: 20px; +} + +.hero p { + font-size: 1.2rem; + margin-bottom: 30px; +} + +.cta { + padding: 10px 30px; + font-size: 1rem; + color: #ffffff; + background-color: #00c2ff; + border: none; + border-radius: 5px; + cursor: pointer; + transition: background-color 0.3s ease; +} + +.cta:hover { + background-color: #0094cc; +} + +section { + padding: 60px 20px; +} + +.container { + max-width: 1200px; + margin: 0 auto; +} + +h1, h2, h3 { + color: #ffffff; + margin-bottom: 20px; +} + +p { + font-size: 1.2rem; + margin-bottom: 20px; + color: #b0b0b0; +} + +.projects-list { + display: flex; + flex-wrap: wrap; + gap: 30px; + justify-content: space-between; +} + +.project-card { + background: #1f1f1f; + border-radius: 10px; + overflow: hidden; + width: 30%; + transition: transform 0.3s ease; +} + +.project-card:hover { + transform: translateY(-10px); +} + +.project-card img { + width: 100%; + height: 200px; + object-fit: cover; +} + +.card-content { + padding: 15px; +} + +.card-content h3 { + font-size: 1.5rem; + margin-bottom: 10px; +} + +.card-content p { + font-size: 1rem; + color: #999999; +} + +.card-content .btn { + padding: 10px 20px; + background-color: #00c2ff; + color: #ffffff; + border-radius: 5px; + text-align: center; + display: inline-block; + margin-top: 15px; + transition: background-color 0.3s ease; +} + +.card-content .btn:hover { + background-color: #0094cc; +} + +.about { + background: #1f1f1f; + padding: 60px 20px; + text-align: center; + border-radius: 10px; +} + +.about p { + color: #b0b0b0; + font-size: 1.1rem; + max-width: 800px; + margin: 0 auto; +} + +footer { + background-color: #1e1e1e; + padding: 40px 20px; + text-align: center; + color: #cccccc; +} + +footer p { + margin-bottom: 10px; +} + +footer a { + color: #00c2ff; + transition: color 0.3s ease; +} + +footer a:hover { + color: #0094cc; +} + +form { + background-color: #1f1f1f; + padding: 20px; + border-radius: 10px; +} + +form input, form textarea { + width: 100%; + padding: 10px; + margin-bottom: 15px; + background-color: #2c2c2c; + color: #ffffff; + border: 1px solid #444; + border-radius: 5px; +} + +form button { + padding: 10px 20px; + background-color: #00c2ff; + color: #ffffff; + border-radius: 5px; + border: none; + cursor: pointer; + transition: background-color 0.3s ease; +} + +form button:hover { + background-color: #0094cc; +} + +::-webkit-scrollbar { + width: 8px; +} + +::-webkit-scrollbar-thumb { + background: #00c2ff; + border-radius: 10px; +} + +::-webkit-scrollbar-thumb:hover { + background: #0094cc; +} + +@media (max-width: 768px) { + header { + flex-direction: column; + align-items: flex-start; + } + + header .logo-container { + margin-bottom: 20px; + } + + .projects-list { + flex-direction: column; + } + + .project-card { + width: 100%; + } + + .cta { + font-size: 1.2rem; + padding: 12px 40px; + } +} diff --git a/discord-redirect.html b/discord-redirect.html new file mode 100644 index 0000000..35da35e --- /dev/null +++ b/discord-redirect.html @@ -0,0 +1,4 @@ + + diff --git a/dl/sitemap.xml b/dl/sitemap.xml new file mode 100644 index 0000000..216f476 --- /dev/null +++ b/dl/sitemap.xml @@ -0,0 +1,53 @@ + + + + https://revivemii.errexe.xyz/ + daily + 1.0 + + + https://revivemii.errexe.xyz/contact.html + monthly + 0.5 + + + https://revivemii.errexe.xyz/blogs.html + daily + 0.8 + + + https://revivemii.errexe.xyz/projects.html + daily + 0.9 + + + https://revivemii.errexe.xyz/freedns.html + monthly + 0.2 + + + https://revivemii.errexe.xyz/revivetube + monthly + 1.0 + + + https://revivemii.errexe.xyz/status + monthly + 0.8 + + + https://revivemii.errexe.xyz/imageshare + monthly + 0.8 + + + https://revivemii.errexe.xyz/feedback.html + monthly + 0.8 + + + https://revivemii.errexe.xyz/about.html + monthly + 0.8 + + diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000..3a5a929 Binary files /dev/null and b/favicon.ico differ diff --git a/imageshare.jpg b/imageshare.jpg new file mode 100644 index 0000000..cf99e2e Binary files /dev/null and b/imageshare.jpg differ diff --git a/imageshare/index.html b/imageshare/index.html new file mode 100644 index 0000000..52a1d32 --- /dev/null +++ b/imageshare/index.html @@ -0,0 +1,93 @@ + + + + + + ReviveMii Image Share | ReviveMii + + + + + +
+
+ +
+
+
+ +
+
+
+ + + + + +
+
+

ReviveMii Image Transfer

+

A Revival for the Nintendo Image Share on 3ds and Wii U

+ +
+
+ +
+
+
+

About the Project

+

Upload Photos from your 3DS or Wii U and transfer it to your Computer!

+
+ +
+

How to use

+
    +

    Requirements

    +
  • • Wii U or 3DS
  • +
  • • An Internet Connection
  • +
  • • Computer or Smartphone
  • +

+
    +
  • • 1. Go to http://imageshare.d.errexe.xyz on your 3ds or Wii U (with http://)
  • +
  • • 2. Upload an Image
  • +
  • • 3. Scan the QR Code with your Smart Phone or type the URL in your Computer
  • +
  • • 4. Download it
  • +
+

You now successfully transferred an Image from your Wii U/3DS to your Device!

+
+
+
+ + + + diff --git a/img/rss.png b/img/rss.png new file mode 100644 index 0000000..dd1a6fd Binary files /dev/null and b/img/rss.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..298e8ad --- /dev/null +++ b/index.html @@ -0,0 +1,77 @@ + + + + + +ReviveMii: We revive Nintendo Online Services + + + +
+
+ +
+ + +
+
+
+
+
+
+

ReviveMii

+

A Nintendo Revival Service.

+ Discover Featured Projects


+ Source Code (GitHub)

+

+ Check the Server Status +
+
+
+Join Discord +
+
+
+
+ + + + + diff --git a/off.html b/off.html new file mode 100644 index 0000000..0aaa115 --- /dev/null +++ b/off.html @@ -0,0 +1,70 @@ + + + + + + ReviveMii - Maintenance + + + + +
+ ReviveMii Logo +

ReviveMii Servers

+

Our servers are currently under maintenance. Please check back later or try reloading the site.

+ +
+ + diff --git a/privacy/ccccccccccccccccccccccccccccccccccc.txt b/privacy/ccccccccccccccccccccccccccccccccccc.txt new file mode 100644 index 0000000..cb8a97d --- /dev/null +++ b/privacy/ccccccccccccccccccccccccccccccccccc.txt @@ -0,0 +1,63 @@ +**DATENSCHUTZRICHTLINIE FÜR DAS CHATPROGRAMM "6dChat"** +*Entwickelt von TheErrorExe und Silas Thimm* + +--- + +**1. EINLEITUNG** +Der Schutz Ihrer persönlichen Daten ist uns ein wichtiges Anliegen. Diese Datenschutzrichtlinie erläutert, wie wir, die Entwickler von 6dChat, personenbezogene Daten erheben, verarbeiten und schützen, um Ihre Privatsphäre zu wahren. Wir beachten die geltenden Datenschutzgesetze und handeln stets transparent. + +--- + +**2. ERHEBUNG VON PERSONENBEZOGENEN DATEN** +Bei der Registrierung zur Nutzung von 6dChat erheben wir folgende personenbezogene Daten: +- Name +- E-Mail-Adresse +- Benutzername + +Diese Daten werden ausschließlich zu Zwecken der Bereitstellung und Verbesserung der Anwendung sowie zur Gewährleistung der Sicherheit verarbeitet. Es erfolgt keine Erhebung weiterer Daten ohne Ihr ausdrückliches Einverständnis. + +--- + +**3. VERARBEITUNG UND NUTZUNG DER DATEN** +Die von Ihnen bereitgestellten Daten werden verwendet, um: +- Ihnen den Zugang zu 6dChat zu ermöglichen +- die Funktionalität der Anwendung sicherzustellen +- den Nutzer-Support zu verbessern +- sicherzustellen, dass die Nutzung der Anwendung den Nutzungsbedingungen entspricht + +Wir garantieren, dass Ihre Daten nicht für andere Zwecke verwendet werden, insbesondere nicht für Werbung oder Marketing. + +--- + +**4. DATENSICHERHEIT** +Wir ergreifen angemessene technische und organisatorische Maßnahmen, um Ihre personenbezogenen Daten vor unbefugtem Zugriff, Verlust oder Missbrauch zu schützen. Dazu zählen unter anderem die Verwendung von Verschlüsselungstechnologien und sicheren Servern. Trotz dieser Maßnahmen kann keine absolute Sicherheit gewährleistet werden. + +--- + +**5. WEITERGABE AN DRITTE** +Ihre personenbezogenen Daten werden nicht an Dritte weitergegeben, es sei denn, dies ist zur Erfüllung gesetzlicher Verpflichtungen erforderlich oder Sie haben zuvor Ihre ausdrückliche Zustimmung gegeben. In solchen Fällen stellen wir sicher, dass auch die Dritten angemessene Datenschutzmaßnahmen einhalten. + +--- + +**6. RECHTE DER NUTZER** +Sie haben das Recht, jederzeit Auskunft über die von uns zu Ihrer Person gespeicherten Daten zu verlangen. Zudem können Sie die Berichtigung unrichtiger Daten sowie die Löschung Ihrer Daten verlangen, sofern diese nicht mehr zur Erfüllung der oben genannten Zwecke erforderlich sind oder gesetzliche Aufbewahrungsfristen entgegenstehen. Zur Ausübung dieser Rechte wenden Sie sich bitte an uns über die in der Anwendung angegebenen Kontaktmöglichkeiten. + +--- + +**7. DATENSPEICHERUNG** +Ihre personenbezogenen Daten werden nur so lange gespeichert, wie dies für die Zwecke, für die sie erhoben wurden, erforderlich ist. Nach Erfüllung dieser Zwecke werden Ihre Daten sicher gelöscht oder anonymisiert. + +--- + +**8. ÄNDERUNGEN DER DATENSCHUTZRICHTLINIE** +Diese Datenschutzrichtlinie kann von Zeit zu Zeit aktualisiert werden. Änderungen werden auf der folgenden Website veröffentlicht: https://theerrorexe.duckdns.org/privacy/latest.txt. Wir empfehlen Ihnen, diese regelmäßig zu überprüfen, um über alle Anpassungen informiert zu sein. + +--- + +**9. KONTAKT** +Für Fragen oder Anregungen zur Datenschutzrichtlinie oder zur Verarbeitung Ihrer personenbezogenen Daten wenden Sie sich bitte an uns. Die Kontaktdaten finden Sie in der Anwendung. + +--- + +**Datum der letzten Aktualisierung:** [20. September 2024] +**Entwickler:** TheErrorExe, Silas Thimm diff --git a/privacy/index.html b/privacy/index.html new file mode 100644 index 0000000..99040e1 --- /dev/null +++ b/privacy/index.html @@ -0,0 +1,103 @@ + + + + + + Privacy Policy - ReviveMii + + + +

Privacy Policy

+

Last Updated: 23. December 2024

+ +

At ReviveMii, we take your privacy seriously. This Privacy Policy outlines how we collect, use, and protect your personal data when you use our services. Please read this policy carefully to understand how we handle your information.

+ +

1. Data Collection

+

We collect only the data necessary for providing the Service. This includes:

+ + +

2. Use of Data

+

We use your data for the following purposes:

+ + +

3. Data Sharing

+

We do not share your personal data with third parties except when:

+ + +

4. Security

+

We take reasonable precautions to protect your data from unauthorized access, use, or disclosure. However, no data transmission over the internet can be guaranteed as 100% secure.

+ +

5. Your Rights

+

As a user within the EU, you have the right to:

+ +

You can exercise your rights by contacting us at theerrorexe@gmail.com.

+ +

6. Third-Party Services

+

Some features of ReviveMii may use third-party services that have their own privacy policies. You are encouraged to review these third-party policies before using the services.

+ +

7. Changes to This Privacy Policy

+

We may update this Privacy Policy. Any changes will be posted here, and if the changes are significant, we will notify you accordingly.

+ +

8. Contact Us

+

If you have any questions about this Privacy Policy, please contact us:

+

Email: theerrorexe@gmail.com

+

Repositories:

+ + + + + diff --git a/projects.html b/projects.html new file mode 100644 index 0000000..293f99d --- /dev/null +++ b/projects.html @@ -0,0 +1,85 @@ + + + + + + Featured Projects and Services | ReviveMii + + + + +
+ +
+ +
+
+
+
+
+
+
+
+

Our Featured Projects and Services

+

ReviveMii Projects

+
+
+ + + +
+
+
+ ReviveTube +
+

ReviveTube

+

Watch YouTube Videos on your Wii

+ Learn More +
+
+
+
+
+imageshare +
+

ReviveMii Image Transfer

+

Revival for the Nintendo Image Share Feature on 3ds and Wii U

+Learn More +
+
+
+
+
+
+ + + + + + diff --git a/revivetube.png b/revivetube.png new file mode 100644 index 0000000..45e2890 Binary files /dev/null and b/revivetube.png differ diff --git a/revivetube/index.html b/revivetube/index.html new file mode 100644 index 0000000..124bbfd --- /dev/null +++ b/revivetube/index.html @@ -0,0 +1,77 @@ + + + + + + ReviveTube | YouTube on Wii! | ReviveMii + + + + + +
+
+ +
+
+
+
+
+
+ + +
+
+

ReviveTube

+

A Revival for the Youtube Website on the Wii

+ +
+
+ +
+
+
+

About the Project

+

With ReviveTube you can watch YouTube Videos on your Wii. Without Homebrew! (If you have homebrew on your Wii, we recommend the Homebrew Service RiiTube by RiiConnect24/WiiLink, because it supports fullscreen, and ReviveTube supports no Full Screen at the time RiiTube (Old RC24) RiiTube (WiiLink)

+
+ +
+

How to setup

+
    +

    Requirements

    +
  • • Internet Channel Version: At least Ver. April 11, 2007 (Open the Wii Shop Channel to update)
  • +
  • • A Wii lol (Info for Dolphin Users: The Loading Screen for ReviveTube is not working on Dolphin, i don't know why)
  • +
  • • An Internet Connection
  • +
  • • Patience (The Internet Channel is slow)
  • +

+
    +
  • • 1. Open the Internet Channel
  • +
  • • 2. Go to http://yt.old.errexe.xyz/ (with http://)
  • +
  • • 3. (Optional) Save to Bookmarks
  • +
  • Warning: The Website will only search Videos, if you press "Go", "Okay" will not work
  • +
+

Have fun with ReviveTube!

+
+
+
+ + + + diff --git a/revivetube/t-and-p.html b/revivetube/t-and-p.html new file mode 100644 index 0000000..ddcba0b --- /dev/null +++ b/revivetube/t-and-p.html @@ -0,0 +1,134 @@ + + + + + + ReviveTube - Terms of Service and Privacy Policy + + + +
+

ReviveTube - Terms of Service and Privacy Policy

+

Last Updated: 7. Dec 2024 12:41 CET

+
+ +
+

1. Scope of the Service

+

ReviveTube is an independent service that revives the discontinued YouTube functionality for the Nintendo Wii console. ReviveTube is not affiliated with or endorsed by Nintendo, Google, or YouTube. This service is operated within the European Union and is accessible to users worldwide.

+
+ +
+

2. Compliance with GDPR

+

Because ReviveTube is based in the European Union, the service complies with the General Data Protection Regulation (GDPR). This means that:

+ +

To exercise these rights or learn more about how we handle your data, please contact us at theerrorexe@gmail.com.

+
+ +
+

3. Non-Usage of Cookies and IP Addresses

+

ReviveTube does not use cookies or similar tracking technologies. Additionally, we do not save your IP address. This ensures that your browsing experience remains private and secure, in compliance with GDPR and privacy-first principles.

+
+ +
+

4. Acceptable Use Policy

+ +

We reserve the right to remove inappropriate content or suspend users who violate these terms.

+
+ +
+

5. Disclaimer of Liability

+

ReviveTube is provided "as-is" and "as available." We do not guarantee uninterrupted access, error-free performance, or compatibility with all Wii systems. ReviveMii project is not liable for any damage, loss of data, or other issues arising from the use of this service.

+
+ +
+

6. Privacy Policy

+ +

6.1 Data Collection

+

We do not collect personal data unless you voluntarily provide it (e.g., through feedback).

+ +

6.2 Data Usage

+

The collected data is used to improve service functionality and resolve technical issues.

+ +

6.3 Third-Party Services

+

ReviveTube may link to third-party content, such as YouTube links. We are not responsible for the data handling practices of these third-party services. Please review their privacy policies before interacting with them.

+ +

6.4 User Rights

+

As required by GDPR, you have the right to: +

+

+

To exercise these rights, contact us at theerrorexe@gmail.com.

+
+ +
+

7. Changes to Terms and Privacy Policy

+

We may update these terms and policies periodically to reflect changes in the service or legal requirements. The Date of the last Change is on http://yt.old.errexe.xyz/

+
+ +
+

8. Termination of Service

+

We reserve the right to suspend or terminate access to ReviveTube for any user at our discretion, including but not limited to violations of these terms.

+
+ +
+

9. Contact Us

+

If you have any questions about these Terms of Service or the Privacy Policy, please contact us at theerrorexe@gmail.com.

+
+ + + + diff --git a/robots.txt b/robots.txt new file mode 100644 index 0000000..3c33bde --- /dev/null +++ b/robots.txt @@ -0,0 +1,4 @@ +User-agent: * +Crawl-Delay: 5 +Sitemap: /dl/sitemap.xml +Disallow: /discord-redirect.html diff --git a/status/index.html b/status/index.html new file mode 100644 index 0000000..54943f8 --- /dev/null +++ b/status/index.html @@ -0,0 +1,3 @@ + diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..f79f6ed --- /dev/null +++ b/styles.css @@ -0,0 +1,46 @@ +body { + font-family: Arial, sans-serif; + background-color: #f0f0f0; + display: flex; + justify-content: center; + align-items: center; + height: 100vh; + margin: 0; +} + +.container { + text-align: center; + background: #fff; + padding: 20px; + border-radius: 8px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); +} + +h1 { + margin-bottom: 20px; + font-size: 24px; + color: #333; +} + +.button-container { + display: flex; + justify-content: center; + gap: 20px; +} + +.button { + display: inline-block; + padding: 15px 30px; + font-size: 18px; + color: #fff; + background-color: #007bff; + border: none; + border-radius: 5px; + text-decoration: none; + transition: background-color 0.3s; +} + +.button:hover { + background-color: #0056b3; +} + diff --git a/terms/index.html b/terms/index.html new file mode 100644 index 0000000..9915aac --- /dev/null +++ b/terms/index.html @@ -0,0 +1,120 @@ + + + + + + Terms of Service - ReviveMii + + + +

Terms of Service

+

Last Updated: 23. December 2024

+ +

Welcome to ReviveMii ("the Service"). By accessing or using the Service provided by the ReviveMii Project, you agree to be bound by the following terms and conditions ("Terms"). If you do not agree to these Terms, you may not use the Service.

+ +

1. Description of the Service

+

ReviveMii is an open-source project based in the European Union (EU) that provides online connectivity and related services for legacy Nintendo consoles and software. The Service is available globally and adheres to EU laws, including the General Data Protection Regulation (GDPR). ReviveMii is not affiliated with, endorsed by, or associated with Nintendo Co., Ltd.

+

Some services provided by ReviveMii may have their own specific terms of service or conditions. You should review these specific conditions before using those services.

+

All source code related to the Service is publicly available under an open-source license. You can access the source code at the following repositories:

+ + +

2. Eligibility

+

The Service is available to users worldwide. To use the Service, you must:

+ + +

3. Open-Source Code and Licensing

+ + +

4. Prohibited Conduct

+

You agree not to:

+ + +

5. Data Protection and Privacy

+

As the Service operates within the EU, it complies with the General Data Protection Regulation (GDPR). The following applies:

+ + +

6. Disclaimer of Liability

+ + +

7. Termination

+

We reserve the right to suspend or terminate your access to the Service at any time, for any reason, including but not limited to violations of these Terms or applicable laws.

+ +

8. Changes to the Terms

+

ReviveMii may update these Terms at any time. Significant changes will be communicated, and your continued use of the Service after changes constitutes acceptance of the new Terms.

+ +

9. Third-Party Content

+

The Service may interact with third-party software or services. ReviveMii is not responsible for the content, policies, or actions of third parties.

+ +

10. Governing Law

+

These Terms are governed by and construed in accordance with the laws of the European Union and the member state where the ReviveMii Project operates.

+ +

11. Contact

+

If you have questions or concerns about these Terms, please contact us at:

+

Email: theerrorexe@gmail.com

+

Repositories:

+ + + + + diff --git a/wc.html b/wc.html new file mode 100644 index 0000000..5593681 --- /dev/null +++ b/wc.html @@ -0,0 +1,74 @@ + + + + + + Cookie Usage List + + + + +
+

Cookie Usage List

+ +
+ + +