[motivo]` lo bloquea con un motivo opcional.
-- `/pending` lista los registros que aún esperan un token válido.
-
-Cada nuevo registro dispara una notificación de Telegram con la parte admin del token y recordatorios de esos comandos.
## 📱 Estructura del Proyecto
diff --git a/app/build.gradle b/app/build.gradle
index f76a664..ba2abb0 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -10,7 +10,6 @@ android {
targetSdk 35
versionCode 100201
versionName "11.0.1"
- buildConfigField "String", "DEVICE_REGISTRY_URL", '"http://194.163.191.200:4000"'
}
buildTypes {
diff --git a/app/src/main/java/com/streamplayer/DeviceRegistry.java b/app/src/main/java/com/streamplayer/DeviceRegistry.java
deleted file mode 100644
index b3af4bc..0000000
--- a/app/src/main/java/com/streamplayer/DeviceRegistry.java
+++ /dev/null
@@ -1,169 +0,0 @@
-package com.streamplayer;
-
-import android.content.Context;
-import android.os.Build;
-import android.os.Handler;
-import android.os.Looper;
-import android.provider.Settings;
-import android.text.TextUtils;
-import android.util.Log;
-
-import org.json.JSONException;
-import org.json.JSONObject;
-
-import java.io.IOException;
-import java.util.Locale;
-import java.util.concurrent.ExecutorService;
-import java.util.concurrent.Executors;
-
-import okhttp3.MediaType;
-import okhttp3.OkHttpClient;
-import okhttp3.Request;
-import okhttp3.RequestBody;
-import okhttp3.Response;
-
-/**
- * Informa al dashboard qué dispositivos tienen instalada la app y permite bloquearlos remotamente.
- */
-public class DeviceRegistry {
-
- public interface Callback {
- void onAllowed();
-
- void onBlocked(String reason, String tokenPart);
-
- void onError(String message);
- }
-
- private static final String TAG = "DeviceRegistry";
- private static final MediaType JSON = MediaType.get("application/json; charset=utf-8");
-
- private final Context appContext;
- private final OkHttpClient httpClient;
- private final ExecutorService executorService;
- private final Handler mainHandler = new Handler(Looper.getMainLooper());
-
- public DeviceRegistry(Context context) {
- this.appContext = context.getApplicationContext();
- // Usar NetworkUtils para obtener cliente con DNS over HTTPS configurado
- this.httpClient = NetworkUtils.getClient();
- this.executorService = Executors.newSingleThreadExecutor();
- }
-
- public void syncDevice(Callback callback) {
- if (TextUtils.isEmpty(BuildConfig.DEVICE_REGISTRY_URL)) {
- postAllowed(callback);
- return;
- }
- executorService.execute(() -> {
- try {
- JSONObject payload = new JSONObject();
- payload.put("deviceId", getDeviceId());
- payload.put("deviceName", Build.MODEL);
- payload.put("model", Build.MODEL);
- payload.put("manufacturer", capitalize(Build.MANUFACTURER));
- payload.put("osVersion", Build.VERSION.RELEASE + " (API " + Build.VERSION.SDK_INT + ")");
- payload.put("appVersionName", BuildConfig.VERSION_NAME);
- payload.put("appVersionCode", BuildConfig.VERSION_CODE);
-
- String endpoint = sanitizeBaseUrl(BuildConfig.DEVICE_REGISTRY_URL) + "/api/devices/register";
- RequestBody body = RequestBody.create(payload.toString(), JSON);
- Request request = new Request.Builder()
- .url(endpoint)
- .post(body)
- .build();
- try (Response response = httpClient.newCall(request).execute()) {
- if (!response.isSuccessful() || response.body() == null) {
- throw new IOException("HTTP " + response.code());
- }
- String responseText = response.body().string();
-
- // Validar que no sea HTML antes de parsear
- if (responseText != null) {
- String trimmed = responseText.trim();
- if (trimmed.startsWith(" callback.onBlocked(reasonText, token));
- }
-
- private void postError(Callback callback, String message) {
- if (callback == null) {
- return;
- }
- mainHandler.post(() -> callback.onError(message));
- }
-}
diff --git a/app/src/main/java/com/streamplayer/MainActivity.java b/app/src/main/java/com/streamplayer/MainActivity.java
index 8bd7e12..d7ea231 100644
--- a/app/src/main/java/com/streamplayer/MainActivity.java
+++ b/app/src/main/java/com/streamplayer/MainActivity.java
@@ -2,22 +2,18 @@ package com.streamplayer;
import android.app.AlertDialog;
import android.content.ActivityNotFoundException;
-import android.content.ClipData;
-import android.content.ClipboardManager;
-import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
-import android.view.KeyEvent;
import android.view.View;
import android.widget.Button;
import android.widget.ProgressBar;
import android.widget.TextView;
import android.widget.Toast;
-import android.text.TextUtils;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
+import androidx.core.content.ContextCompat;
import androidx.recyclerview.widget.GridLayoutManager;
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView;
@@ -49,8 +45,6 @@ public class MainActivity extends AppCompatActivity {
private SectionEntry currentSection;
private UpdateManager updateManager;
private AlertDialog updateDialog;
- private AlertDialog blockedDialog;
- private DeviceRegistry deviceRegistry;
@Override
protected void onCreate(Bundle savedInstanceState) {
@@ -113,28 +107,6 @@ public class MainActivity extends AppCompatActivity {
Toast.LENGTH_SHORT).show();
}
});
-
- deviceRegistry = new DeviceRegistry(this);
- deviceRegistry.syncDevice(new DeviceRegistry.Callback() {
- @Override
- public void onAllowed() {
- // Device authorized, continue normally.
- }
-
- @Override
- public void onBlocked(String reason, String tokenPart) {
- showBlockedDialog(reason, tokenPart);
- }
-
- @Override
- public void onError(String message) {
- if (!TextUtils.isEmpty(message)) {
- Toast.makeText(MainActivity.this,
- getString(R.string.device_registry_error, message),
- Toast.LENGTH_SHORT).show();
- }
- }
- });
}
@Override
@@ -151,15 +123,9 @@ public class MainActivity extends AppCompatActivity {
if (updateDialog != null && updateDialog.isShowing()) {
updateDialog.dismiss();
}
- if (blockedDialog != null && blockedDialog.isShowing()) {
- blockedDialog.dismiss();
- }
if (updateManager != null) {
updateManager.release();
}
- if (deviceRegistry != null) {
- deviceRegistry.release();
- }
}
private void selectSection(int index) {
@@ -273,7 +239,7 @@ public class MainActivity extends AppCompatActivity {
if (updateDialog != null && updateDialog.isShowing()) {
updateDialog.dismiss();
}
- AlertDialog.Builder builder = new AlertDialog.Builder(this, R.style.ThemeOverlay_StreamPlayer_AlertDialog)
+ AlertDialog.Builder builder = new AlertDialog.Builder(this)
.setTitle(mandatory ? R.string.update_required_title : R.string.update_available_title)
.setMessage(buildUpdateMessage(info))
.setPositiveButton(R.string.update_action_download,
@@ -287,7 +253,23 @@ public class MainActivity extends AppCompatActivity {
} else {
builder.setNegativeButton(R.string.update_action_later, null);
}
- updateDialog = builder.show();
+ updateDialog = builder.create();
+ updateDialog.setOnShowListener(dialog -> {
+ int actionColor = ContextCompat.getColor(this, R.color.refresh_button_focused);
+ Button positive = updateDialog.getButton(AlertDialog.BUTTON_POSITIVE);
+ Button neutral = updateDialog.getButton(AlertDialog.BUTTON_NEUTRAL);
+ Button negative = updateDialog.getButton(AlertDialog.BUTTON_NEGATIVE);
+ if (positive != null) {
+ positive.setTextColor(actionColor);
+ }
+ if (neutral != null) {
+ neutral.setTextColor(actionColor);
+ }
+ if (negative != null) {
+ negative.setTextColor(actionColor);
+ }
+ });
+ updateDialog.show();
}
private CharSequence buildUpdateMessage(UpdateManager.UpdateInfo info) {
@@ -339,54 +321,6 @@ public class MainActivity extends AppCompatActivity {
}
}
- private void showBlockedDialog(String reason, String tokenPart) {
- if (isFinishing()) {
- return;
- }
- String finalReason = TextUtils.isEmpty(reason)
- ? getString(R.string.device_blocked_default_reason)
- : reason;
- if (blockedDialog != null && blockedDialog.isShowing()) {
- blockedDialog.dismiss();
- }
- View dialogView = getLayoutInflater().inflate(R.layout.dialog_blocked, null);
- TextView messageText = dialogView.findViewById(R.id.blocked_message_text);
- View tokenContainer = dialogView.findViewById(R.id.blocked_token_container);
- TextView tokenValue = dialogView.findViewById(R.id.blocked_token_value);
- messageText.setText(getString(R.string.device_blocked_message, finalReason));
- boolean hasToken = !TextUtils.isEmpty(tokenPart);
- if (hasToken) {
- tokenContainer.setVisibility(View.VISIBLE);
- tokenValue.setText(tokenPart);
- tokenValue.setOnClickListener(v -> copyTokenToClipboard(tokenPart));
- } else {
- tokenContainer.setVisibility(View.GONE);
- }
- AlertDialog.Builder builder = new AlertDialog.Builder(this, R.style.ThemeOverlay_StreamPlayer_AlertDialog)
- .setTitle(R.string.device_blocked_title)
- .setView(dialogView)
- .setCancelable(false)
- .setPositiveButton(R.string.device_blocked_close,
- (dialog, which) -> finish());
- if (hasToken) {
- builder.setNeutralButton(R.string.device_blocked_copy_token,
- (dialog, which) -> copyTokenToClipboard(tokenPart));
- }
- blockedDialog = builder.create();
- blockedDialog.show();
- }
-
- private void copyTokenToClipboard(String tokenPart) {
- ClipboardManager clipboard = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE);
- if (clipboard == null) {
- Toast.makeText(this, R.string.device_blocked_copy_error, Toast.LENGTH_SHORT).show();
- return;
- }
- ClipData data = ClipData.newPlainText("token", tokenPart);
- clipboard.setPrimaryClip(data);
- Toast.makeText(this, R.string.device_blocked_copy_success, Toast.LENGTH_SHORT).show();
- }
-
private int getSpanCount() {
return getResources().getInteger(R.integer.channel_grid_span);
}
diff --git a/app/src/main/res/layout/dialog_blocked.xml b/app/src/main/res/layout/dialog_blocked.xml
deleted file mode 100644
index ea156c3..0000000
--- a/app/src/main/res/layout/dialog_blocked.xml
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index cacb7b0..d7a2b44 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -40,13 +40,4 @@
No se pudo abrir el instalador de paquetes
StreamPlayer %1$s
Descargando nueva versión
- Dispositivo bloqueado
- Este dispositivo fue bloqueado desde el panel de control. Motivo: %1$s
- Sin motivo especificado.
- Código de verificación
- Salir
- Copiar código
- Código copiado al portapapeles
- No se pudo copiar el código
- No se pudo registrar el dispositivo (%1$s)
diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml
index b7615f9..359e180 100644
--- a/app/src/main/res/values/themes.xml
+++ b/app/src/main/res/values/themes.xml
@@ -6,10 +6,4 @@
- @color/black
- @color/black
-
-
diff --git a/dashboard/config.example.json b/dashboard/config.example.json
deleted file mode 100644
index a67051f..0000000
--- a/dashboard/config.example.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "telegramBotToken": "123456:ABCDEF-TOKEN",
- "telegramChatId": "123456789"
-}
diff --git a/dashboard/data/devices.json b/dashboard/data/devices.json
deleted file mode 100644
index 0b1f5f9..0000000
--- a/dashboard/data/devices.json
+++ /dev/null
@@ -1,267 +0,0 @@
-[
- {
- "deviceId": "f91f2668e8dfb2a7",
- "alias": "",
- "deviceName": "SM-S928B",
- "model": "SM-S928B",
- "manufacturer": "Samsung",
- "osVersion": "16 (API 36)",
- "appVersionName": "9.4.2",
- "appVersionCode": 94200,
- "firstSeen": "2025-11-23T22:31:13.359Z",
- "lastSeen": "2025-11-25T19:07:38.445Z",
- "blocked": false,
- "notes": "",
- "installs": 22,
- "ip": "181.23.253.20",
- "country": "AR",
- "verification": {
- "clientPart": "1714c2bb93670c3f",
- "adminPart": "9924c7049211c58c",
- "status": "verified",
- "createdAt": "2025-11-23T22:31:13.359Z",
- "verifiedAt": "2025-11-23T22:33:11.942Z"
- }
- },
- {
- "deviceId": "c8ee9361c07a3245",
- "alias": "",
- "deviceName": "23113RKC6G",
- "model": "23113RKC6G",
- "manufacturer": "Xiaomi",
- "osVersion": "15 (API 35)",
- "appVersionName": "9.4.2",
- "appVersionCode": 94200,
- "firstSeen": "2025-11-23T23:19:29.464Z",
- "lastSeen": "2025-11-23T23:21:02.377Z",
- "blocked": false,
- "notes": "",
- "installs": 3,
- "ip": "181.23.253.20",
- "country": "AR",
- "verification": {
- "clientPart": "f7d5a364822457da",
- "adminPart": "b4acb7da77b11ce9",
- "status": "verified",
- "createdAt": "2025-11-23T23:19:29.464Z",
- "verifiedAt": "2025-11-23T23:20:49.579Z"
- }
- },
- {
- "deviceId": "c874876530da8f76",
- "alias": "",
- "deviceName": "2020/2021 UHD Android TV",
- "model": "2020/2021 UHD Android TV",
- "manufacturer": "TPV",
- "osVersion": "11 (API 30)",
- "appVersionName": "9.4.2",
- "appVersionCode": 94200,
- "firstSeen": "2025-11-24T18:53:40.668Z",
- "lastSeen": "2025-11-25T01:33:56.790Z",
- "blocked": false,
- "notes": "",
- "installs": 3,
- "ip": "181.23.253.20",
- "country": "AR",
- "verification": {
- "clientPart": "76139a364baeda9b",
- "adminPart": "86601e7089416b57",
- "status": "verified",
- "createdAt": "2025-11-24T18:53:40.668Z",
- "verifiedAt": "2025-11-24T18:54:52.788Z"
- }
- },
- {
- "deviceId": "879fe5ad6ac80e2d",
- "alias": "",
- "deviceName": "SM-S928B",
- "model": "SM-S928B",
- "manufacturer": "Samsung",
- "osVersion": "16 (API 36)",
- "appVersionName": "9.4.6",
- "appVersionCode": 94600,
- "firstSeen": "2025-11-25T19:08:38.948Z",
- "lastSeen": "2025-12-23T20:41:59.972Z",
- "blocked": false,
- "notes": "",
- "installs": 9,
- "ip": "181.23.228.93",
- "country": "AR",
- "verification": {
- "clientPart": "e512eb7d5c026e85",
- "adminPart": "1891c4eec608a722",
- "status": "verified",
- "createdAt": "2025-11-25T19:08:38.948Z",
- "verifiedAt": "2025-11-25T19:08:56.806Z"
- }
- },
- {
- "deviceId": "97a5c320c47e17ad",
- "alias": "",
- "deviceName": "Chromecast",
- "model": "Chromecast",
- "manufacturer": "Google",
- "osVersion": "14 (API 34)",
- "appVersionName": "9.4.6",
- "appVersionCode": 94600,
- "firstSeen": "2025-11-25T19:10:27.358Z",
- "lastSeen": "2025-12-29T23:21:36.891Z",
- "blocked": false,
- "notes": "",
- "installs": 26,
- "ip": "181.23.228.93",
- "country": "AR",
- "verification": {
- "clientPart": "f35ae98e27e9877c",
- "adminPart": "e421a660ff38fc67",
- "status": "verified",
- "createdAt": "2025-11-25T19:10:27.358Z",
- "verifiedAt": "2025-11-25T19:10:54.592Z"
- }
- },
- {
- "deviceId": "79a556d89cd9f783",
- "alias": "",
- "deviceName": "motorola edge 30",
- "model": "motorola edge 30",
- "manufacturer": "Motorola",
- "osVersion": "13 (API 33)",
- "appVersionName": "9.4.6",
- "appVersionCode": 94600,
- "firstSeen": "2025-11-25T19:29:17.916Z",
- "lastSeen": "2025-12-14T20:26:50.664Z",
- "blocked": false,
- "notes": "",
- "installs": 5,
- "ip": "181.25.52.139",
- "country": "AR",
- "verification": {
- "clientPart": "4aec5b0e2e1c782a",
- "adminPart": "7a4bb228e3b5048c",
- "status": "verified",
- "createdAt": "2025-11-25T19:29:17.916Z",
- "verifiedAt": "2025-11-25T19:30:11.849Z"
- }
- },
- {
- "deviceId": "309f9f56550fc16bf047d636",
- "alias": "",
- "deviceName": "WIN-J7S53EBK2BG",
- "model": "Microsoft Windows 10.0.26100",
- "manufacturer": "Microsoft",
- "osVersion": "Microsoft Windows NT 10.0.26100.0",
- "appVersionName": "9.4.6",
- "appVersionCode": 94600,
- "firstSeen": "2025-12-17T18:37:45.562Z",
- "lastSeen": "2025-12-17T19:28:44.530Z",
- "blocked": false,
- "notes": "por boludo",
- "installs": 21,
- "ip": "181.25.52.139",
- "country": "AR",
- "verification": {
- "clientPart": "60989c16f0ed61d9",
- "adminPart": "c1befd758b4cd459",
- "status": "verified",
- "createdAt": "2025-12-17T18:37:45.562Z",
- "verifiedAt": "2025-12-17T18:38:24.129Z"
- },
- "blockedAt": "2025-12-17T19:14:30.701Z"
- },
- {
- "deviceId": "12c96524b10b1e15f5611b0a",
- "alias": "",
- "deviceName": "WIN-1F1PBAQI7PR",
- "model": "Microsoft Windows 10.0.26100",
- "manufacturer": "Microsoft",
- "osVersion": "Microsoft Windows NT 10.0.26100.0",
- "appVersionName": "9.4.6",
- "appVersionCode": 94600,
- "firstSeen": "2025-12-17T19:35:44.810Z",
- "lastSeen": "2025-12-17T19:38:12.510Z",
- "blocked": false,
- "notes": "",
- "installs": 2,
- "ip": "181.25.52.139",
- "country": "AR",
- "verification": {
- "clientPart": "d41b6a6bc639fe77",
- "adminPart": "dab1fa74da2edab2",
- "status": "verified",
- "createdAt": "2025-12-17T19:35:44.810Z",
- "verifiedAt": "2025-12-17T19:37:59.152Z"
- }
- },
- {
- "deviceId": "6623a19316ebbbc1570b31e2",
- "alias": "",
- "deviceName": "DESKTOP-TF8OENP",
- "model": "Microsoft Windows 10.0.19045",
- "manufacturer": "Microsoft",
- "osVersion": "Microsoft Windows NT 10.0.19045.0",
- "appVersionName": "9.4.6",
- "appVersionCode": 94600,
- "firstSeen": "2025-12-17T19:53:20.007Z",
- "lastSeen": "2025-12-17T19:56:52.028Z",
- "blocked": false,
- "notes": "",
- "installs": 4,
- "ip": "190.55.131.98",
- "country": "AR",
- "verification": {
- "clientPart": "e5ed2a5989a8e44a",
- "adminPart": "21e79e6e83e662cf",
- "status": "verified",
- "createdAt": "2025-12-17T19:53:20.007Z",
- "verifiedAt": "2025-12-17T19:53:43.017Z"
- }
- },
- {
- "deviceId": "8678935B-0B7A-41B0-B6E3-AB205073BE7F",
- "alias": "",
- "deviceName": "iPhone 17 Pro",
- "model": "iPhone",
- "manufacturer": "Apple",
- "osVersion": "iOS 26.2",
- "appVersionName": "9.4.2",
- "appVersionCode": 94200,
- "firstSeen": "2025-12-29T22:27:06.203Z",
- "lastSeen": "2025-12-29T22:36:32.797Z",
- "blocked": false,
- "notes": "",
- "installs": 3,
- "ip": "181.23.228.93",
- "country": "AR",
- "verification": {
- "clientPart": "fac4063d6b67ce57",
- "adminPart": "667b10f28d37b534",
- "status": "verified",
- "createdAt": "2025-12-29T22:27:06.203Z",
- "verifiedAt": "2025-12-29T22:30:37.120Z"
- }
- },
- {
- "deviceId": "FB4B39C0-A766-4A01-980E-763ACE9118A2",
- "alias": "",
- "deviceName": "iPhone 17 Pro",
- "model": "iPhone",
- "manufacturer": "Apple",
- "osVersion": "iOS 26.2",
- "appVersionName": "9.4.2",
- "appVersionCode": 94200,
- "firstSeen": "2025-12-29T22:40:54.202Z",
- "lastSeen": "2025-12-29T23:04:30.334Z",
- "blocked": false,
- "notes": "",
- "installs": 4,
- "ip": "181.23.228.93",
- "country": "AR",
- "verification": {
- "clientPart": "353df62e6d1faee3",
- "adminPart": "648bd37e530033f7",
- "status": "verified",
- "createdAt": "2025-12-29T22:40:54.202Z",
- "verifiedAt": "2025-12-29T22:44:27.529Z"
- }
- }
-]
\ No newline at end of file
diff --git a/dashboard/package-lock.json b/dashboard/package-lock.json
deleted file mode 100644
index 3c0e5a5..0000000
--- a/dashboard/package-lock.json
+++ /dev/null
@@ -1,1663 +0,0 @@
-{
- "name": "streamplayer-device-dashboard",
- "version": "1.0.0",
- "lockfileVersion": 3,
- "requires": true,
- "packages": {
- "": {
- "name": "streamplayer-device-dashboard",
- "version": "1.0.0",
- "license": "MIT",
- "dependencies": {
- "axios": "^1.6.7",
- "cors": "^2.8.5",
- "dotenv": "^16.4.5",
- "express": "^4.18.2",
- "geoip-lite": "^1.4.6",
- "morgan": "^1.10.0",
- "request-ip": "^3.3.0"
- },
- "devDependencies": {
- "nodemon": "^3.0.1"
- }
- },
- "node_modules/accepts": {
- "version": "1.3.8",
- "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
- "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
- "license": "MIT",
- "dependencies": {
- "mime-types": "~2.1.34",
- "negotiator": "0.6.3"
- },
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/anymatch": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
- "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/array-flatten": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
- "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
- "license": "MIT"
- },
- "node_modules/async": {
- "version": "2.6.4",
- "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz",
- "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==",
- "license": "MIT",
- "dependencies": {
- "lodash": "^4.17.14"
- }
- },
- "node_modules/asynckit": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
- "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
- "license": "MIT"
- },
- "node_modules/axios": {
- "version": "1.13.2",
- "resolved": "https://registry.npmjs.org/axios/-/axios-1.13.2.tgz",
- "integrity": "sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==",
- "license": "MIT",
- "dependencies": {
- "follow-redirects": "^1.15.6",
- "form-data": "^4.0.4",
- "proxy-from-env": "^1.1.0"
- }
- },
- "node_modules/balanced-match": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
- "license": "MIT"
- },
- "node_modules/basic-auth": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz",
- "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==",
- "license": "MIT",
- "dependencies": {
- "safe-buffer": "5.1.2"
- },
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/basic-auth/node_modules/safe-buffer": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
- "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
- "license": "MIT"
- },
- "node_modules/binary-extensions": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
- "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/body-parser": {
- "version": "1.20.3",
- "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz",
- "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==",
- "license": "MIT",
- "dependencies": {
- "bytes": "3.1.2",
- "content-type": "~1.0.5",
- "debug": "2.6.9",
- "depd": "2.0.0",
- "destroy": "1.2.0",
- "http-errors": "2.0.0",
- "iconv-lite": "0.4.24",
- "on-finished": "2.4.1",
- "qs": "6.13.0",
- "raw-body": "2.5.2",
- "type-is": "~1.6.18",
- "unpipe": "1.0.0"
- },
- "engines": {
- "node": ">= 0.8",
- "npm": "1.2.8000 || >= 1.4.16"
- }
- },
- "node_modules/brace-expansion": {
- "version": "1.1.12",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
- "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
- "license": "MIT",
- "dependencies": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "node_modules/braces": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
- "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "fill-range": "^7.1.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/buffer-crc32": {
- "version": "0.2.13",
- "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
- "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==",
- "license": "MIT",
- "engines": {
- "node": "*"
- }
- },
- "node_modules/bytes": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
- "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/call-bind-apply-helpers": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
- "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
- "license": "MIT",
- "dependencies": {
- "es-errors": "^1.3.0",
- "function-bind": "^1.1.2"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/call-bound": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
- "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
- "license": "MIT",
- "dependencies": {
- "call-bind-apply-helpers": "^1.0.2",
- "get-intrinsic": "^1.3.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/chalk/node_modules/has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/chalk/node_modules/supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/chokidar": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
- "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "anymatch": "~3.1.2",
- "braces": "~3.0.2",
- "glob-parent": "~5.1.2",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.6.0"
- },
- "engines": {
- "node": ">= 8.10.0"
- },
- "funding": {
- "url": "https://paulmillr.com/funding/"
- },
- "optionalDependencies": {
- "fsevents": "~2.3.2"
- }
- },
- "node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "license": "MIT",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "license": "MIT"
- },
- "node_modules/combined-stream": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
- "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
- "license": "MIT",
- "dependencies": {
- "delayed-stream": "~1.0.0"
- },
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/concat-map": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
- "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
- "license": "MIT"
- },
- "node_modules/content-disposition": {
- "version": "0.5.4",
- "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
- "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
- "license": "MIT",
- "dependencies": {
- "safe-buffer": "5.2.1"
- },
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/content-type": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
- "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/cookie": {
- "version": "0.7.1",
- "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz",
- "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/cookie-signature": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
- "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==",
- "license": "MIT"
- },
- "node_modules/cors": {
- "version": "2.8.5",
- "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz",
- "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==",
- "license": "MIT",
- "dependencies": {
- "object-assign": "^4",
- "vary": "^1"
- },
- "engines": {
- "node": ">= 0.10"
- }
- },
- "node_modules/debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "license": "MIT",
- "dependencies": {
- "ms": "2.0.0"
- }
- },
- "node_modules/delayed-stream": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
- "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
- "license": "MIT",
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/depd": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
- "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/destroy": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
- "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8",
- "npm": "1.2.8000 || >= 1.4.16"
- }
- },
- "node_modules/dotenv": {
- "version": "16.6.1",
- "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.6.1.tgz",
- "integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==",
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://dotenvx.com"
- }
- },
- "node_modules/dunder-proto": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
- "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
- "license": "MIT",
- "dependencies": {
- "call-bind-apply-helpers": "^1.0.1",
- "es-errors": "^1.3.0",
- "gopd": "^1.2.0"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/ee-first": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
- "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
- "license": "MIT"
- },
- "node_modules/encodeurl": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
- "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/es-define-property": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
- "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/es-errors": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
- "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/es-object-atoms": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
- "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
- "license": "MIT",
- "dependencies": {
- "es-errors": "^1.3.0"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/es-set-tostringtag": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
- "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
- "license": "MIT",
- "dependencies": {
- "es-errors": "^1.3.0",
- "get-intrinsic": "^1.2.6",
- "has-tostringtag": "^1.0.2",
- "hasown": "^2.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/escape-html": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
- "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
- "license": "MIT"
- },
- "node_modules/etag": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
- "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/express": {
- "version": "4.21.2",
- "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz",
- "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==",
- "license": "MIT",
- "dependencies": {
- "accepts": "~1.3.8",
- "array-flatten": "1.1.1",
- "body-parser": "1.20.3",
- "content-disposition": "0.5.4",
- "content-type": "~1.0.4",
- "cookie": "0.7.1",
- "cookie-signature": "1.0.6",
- "debug": "2.6.9",
- "depd": "2.0.0",
- "encodeurl": "~2.0.0",
- "escape-html": "~1.0.3",
- "etag": "~1.8.1",
- "finalhandler": "1.3.1",
- "fresh": "0.5.2",
- "http-errors": "2.0.0",
- "merge-descriptors": "1.0.3",
- "methods": "~1.1.2",
- "on-finished": "2.4.1",
- "parseurl": "~1.3.3",
- "path-to-regexp": "0.1.12",
- "proxy-addr": "~2.0.7",
- "qs": "6.13.0",
- "range-parser": "~1.2.1",
- "safe-buffer": "5.2.1",
- "send": "0.19.0",
- "serve-static": "1.16.2",
- "setprototypeof": "1.2.0",
- "statuses": "2.0.1",
- "type-is": "~1.6.18",
- "utils-merge": "1.0.1",
- "vary": "~1.1.2"
- },
- "engines": {
- "node": ">= 0.10.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/fd-slicer": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
- "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==",
- "license": "MIT",
- "dependencies": {
- "pend": "~1.2.0"
- }
- },
- "node_modules/fill-range": {
- "version": "7.1.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
- "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "to-regex-range": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/finalhandler": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz",
- "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==",
- "license": "MIT",
- "dependencies": {
- "debug": "2.6.9",
- "encodeurl": "~2.0.0",
- "escape-html": "~1.0.3",
- "on-finished": "2.4.1",
- "parseurl": "~1.3.3",
- "statuses": "2.0.1",
- "unpipe": "~1.0.0"
- },
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/follow-redirects": {
- "version": "1.15.11",
- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz",
- "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
- "funding": [
- {
- "type": "individual",
- "url": "https://github.com/sponsors/RubenVerborgh"
- }
- ],
- "license": "MIT",
- "engines": {
- "node": ">=4.0"
- },
- "peerDependenciesMeta": {
- "debug": {
- "optional": true
- }
- }
- },
- "node_modules/form-data": {
- "version": "4.0.5",
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
- "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
- "license": "MIT",
- "dependencies": {
- "asynckit": "^0.4.0",
- "combined-stream": "^1.0.8",
- "es-set-tostringtag": "^2.1.0",
- "hasown": "^2.0.2",
- "mime-types": "^2.1.12"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/forwarded": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
- "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/fresh": {
- "version": "0.5.2",
- "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
- "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/fs.realpath": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
- "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
- "license": "ISC"
- },
- "node_modules/fsevents": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
- "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
- "dev": true,
- "hasInstallScript": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
- }
- },
- "node_modules/function-bind": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
- "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/geoip-lite": {
- "version": "1.4.10",
- "resolved": "https://registry.npmjs.org/geoip-lite/-/geoip-lite-1.4.10.tgz",
- "integrity": "sha512-4N69uhpS3KFd97m00wiFEefwa+L+HT5xZbzPhwu+sDawStg6UN/dPwWtUfkQuZkGIY1Cj7wDVp80IsqNtGMi2w==",
- "license": "Apache-2.0",
- "dependencies": {
- "async": "2.1 - 2.6.4",
- "chalk": "4.1 - 4.1.2",
- "iconv-lite": "0.4.13 - 0.6.3",
- "ip-address": "5.8.9 - 5.9.4",
- "lazy": "1.0.11",
- "rimraf": "2.5.2 - 2.7.1",
- "yauzl": "2.9.2 - 2.10.0"
- },
- "engines": {
- "node": ">=10.3.0"
- }
- },
- "node_modules/get-intrinsic": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
- "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
- "license": "MIT",
- "dependencies": {
- "call-bind-apply-helpers": "^1.0.2",
- "es-define-property": "^1.0.1",
- "es-errors": "^1.3.0",
- "es-object-atoms": "^1.1.1",
- "function-bind": "^1.1.2",
- "get-proto": "^1.0.1",
- "gopd": "^1.2.0",
- "has-symbols": "^1.1.0",
- "hasown": "^2.0.2",
- "math-intrinsics": "^1.1.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/get-proto": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
- "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
- "license": "MIT",
- "dependencies": {
- "dunder-proto": "^1.0.1",
- "es-object-atoms": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/glob": {
- "version": "7.2.3",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
- "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
- "deprecated": "Glob versions prior to v9 are no longer supported",
- "license": "ISC",
- "dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.1.1",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- },
- "engines": {
- "node": "*"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/glob-parent": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "is-glob": "^4.0.1"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/gopd": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
- "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/has-flag": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/has-symbols": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
- "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/has-tostringtag": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
- "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
- "license": "MIT",
- "dependencies": {
- "has-symbols": "^1.0.3"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/hasown": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
- "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
- "license": "MIT",
- "dependencies": {
- "function-bind": "^1.1.2"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/http-errors": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
- "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
- "license": "MIT",
- "dependencies": {
- "depd": "2.0.0",
- "inherits": "2.0.4",
- "setprototypeof": "1.2.0",
- "statuses": "2.0.1",
- "toidentifier": "1.0.1"
- },
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/iconv-lite": {
- "version": "0.4.24",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
- "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
- "license": "MIT",
- "dependencies": {
- "safer-buffer": ">= 2.1.2 < 3"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/ignore-by-default": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz",
- "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/inflight": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
- "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
- "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
- "license": "ISC",
- "dependencies": {
- "once": "^1.3.0",
- "wrappy": "1"
- }
- },
- "node_modules/inherits": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
- "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
- "license": "ISC"
- },
- "node_modules/ip-address": {
- "version": "5.9.4",
- "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-5.9.4.tgz",
- "integrity": "sha512-dHkI3/YNJq4b/qQaz+c8LuarD3pY24JqZWfjB8aZx1gtpc2MDILu9L9jpZe1sHpzo/yWFweQVn+U//FhazUxmw==",
- "license": "MIT",
- "dependencies": {
- "jsbn": "1.1.0",
- "lodash": "^4.17.15",
- "sprintf-js": "1.1.2"
- },
- "engines": {
- "node": ">= 0.10"
- }
- },
- "node_modules/ipaddr.js": {
- "version": "1.9.1",
- "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
- "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.10"
- }
- },
- "node_modules/is-binary-path": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
- "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "binary-extensions": "^2.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/is-extglob": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
- "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-glob": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
- "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-extglob": "^2.1.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.12.0"
- }
- },
- "node_modules/jsbn": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz",
- "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==",
- "license": "MIT"
- },
- "node_modules/lazy": {
- "version": "1.0.11",
- "resolved": "https://registry.npmjs.org/lazy/-/lazy-1.0.11.tgz",
- "integrity": "sha512-Y+CjUfLmIpoUCCRl0ub4smrYtGGr5AOa2AKOaWelGHOGz33X/Y/KizefGqbkwfz44+cnq/+9habclf8vOmu2LA==",
- "license": "MIT",
- "engines": {
- "node": ">=0.2.0"
- }
- },
- "node_modules/lodash": {
- "version": "4.17.21",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
- "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
- "license": "MIT"
- },
- "node_modules/math-intrinsics": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
- "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/media-typer": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
- "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/merge-descriptors": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
- "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/methods": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
- "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/mime": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
- "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
- "license": "MIT",
- "bin": {
- "mime": "cli.js"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/mime-db": {
- "version": "1.52.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
- "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/mime-types": {
- "version": "2.1.35",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
- "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
- "license": "MIT",
- "dependencies": {
- "mime-db": "1.52.0"
- },
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "license": "ISC",
- "dependencies": {
- "brace-expansion": "^1.1.7"
- },
- "engines": {
- "node": "*"
- }
- },
- "node_modules/morgan": {
- "version": "1.10.1",
- "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.1.tgz",
- "integrity": "sha512-223dMRJtI/l25dJKWpgij2cMtywuG/WiUKXdvwfbhGKBhy1puASqXwFzmWZ7+K73vUPoR7SS2Qz2cI/g9MKw0A==",
- "license": "MIT",
- "dependencies": {
- "basic-auth": "~2.0.1",
- "debug": "2.6.9",
- "depd": "~2.0.0",
- "on-finished": "~2.3.0",
- "on-headers": "~1.1.0"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/morgan/node_modules/on-finished": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
- "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==",
- "license": "MIT",
- "dependencies": {
- "ee-first": "1.1.1"
- },
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
- "license": "MIT"
- },
- "node_modules/negotiator": {
- "version": "0.6.3",
- "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
- "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/nodemon": {
- "version": "3.1.11",
- "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.11.tgz",
- "integrity": "sha512-is96t8F/1//UHAjNPHpbsNY46ELPpftGUoSVNXwUfMk/qdjSylYrWSu1XavVTBOn526kFiOR733ATgNBCQyH0g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "chokidar": "^3.5.2",
- "debug": "^4",
- "ignore-by-default": "^1.0.1",
- "minimatch": "^3.1.2",
- "pstree.remy": "^1.1.8",
- "semver": "^7.5.3",
- "simple-update-notifier": "^2.0.0",
- "supports-color": "^5.5.0",
- "touch": "^3.1.0",
- "undefsafe": "^2.0.5"
- },
- "bin": {
- "nodemon": "bin/nodemon.js"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/nodemon"
- }
- },
- "node_modules/nodemon/node_modules/debug": {
- "version": "4.4.3",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
- "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ms": "^2.1.3"
- },
- "engines": {
- "node": ">=6.0"
- },
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
- }
- }
- },
- "node_modules/nodemon/node_modules/ms": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/normalize-path": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
- "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/object-assign": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
- "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/object-inspect": {
- "version": "1.13.4",
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
- "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/on-finished": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
- "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
- "license": "MIT",
- "dependencies": {
- "ee-first": "1.1.1"
- },
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/on-headers": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz",
- "integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/once": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
- "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
- "license": "ISC",
- "dependencies": {
- "wrappy": "1"
- }
- },
- "node_modules/parseurl": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
- "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/path-is-absolute": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
- "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/path-to-regexp": {
- "version": "0.1.12",
- "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz",
- "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==",
- "license": "MIT"
- },
- "node_modules/pend": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
- "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==",
- "license": "MIT"
- },
- "node_modules/picomatch": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
- "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
- }
- },
- "node_modules/proxy-addr": {
- "version": "2.0.7",
- "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
- "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
- "license": "MIT",
- "dependencies": {
- "forwarded": "0.2.0",
- "ipaddr.js": "1.9.1"
- },
- "engines": {
- "node": ">= 0.10"
- }
- },
- "node_modules/proxy-from-env": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
- "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
- "license": "MIT"
- },
- "node_modules/pstree.remy": {
- "version": "1.1.8",
- "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz",
- "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/qs": {
- "version": "6.13.0",
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz",
- "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==",
- "license": "BSD-3-Clause",
- "dependencies": {
- "side-channel": "^1.0.6"
- },
- "engines": {
- "node": ">=0.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/range-parser": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
- "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/raw-body": {
- "version": "2.5.2",
- "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz",
- "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==",
- "license": "MIT",
- "dependencies": {
- "bytes": "3.1.2",
- "http-errors": "2.0.0",
- "iconv-lite": "0.4.24",
- "unpipe": "1.0.0"
- },
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/readdirp": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
- "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "picomatch": "^2.2.1"
- },
- "engines": {
- "node": ">=8.10.0"
- }
- },
- "node_modules/request-ip": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/request-ip/-/request-ip-3.3.0.tgz",
- "integrity": "sha512-cA6Xh6e0fDBBBwH77SLJaJPBmD3nWVAcF9/XAcsrIHdjhFzFiB5aNQFytdjCGPezU3ROwrR11IddKAM08vohxA==",
- "license": "MIT"
- },
- "node_modules/rimraf": {
- "version": "2.7.1",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
- "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
- "deprecated": "Rimraf versions prior to v4 are no longer supported",
- "license": "ISC",
- "dependencies": {
- "glob": "^7.1.3"
- },
- "bin": {
- "rimraf": "bin.js"
- }
- },
- "node_modules/safe-buffer": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
- "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT"
- },
- "node_modules/safer-buffer": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
- "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
- "license": "MIT"
- },
- "node_modules/semver": {
- "version": "7.7.3",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
- "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/send": {
- "version": "0.19.0",
- "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz",
- "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==",
- "license": "MIT",
- "dependencies": {
- "debug": "2.6.9",
- "depd": "2.0.0",
- "destroy": "1.2.0",
- "encodeurl": "~1.0.2",
- "escape-html": "~1.0.3",
- "etag": "~1.8.1",
- "fresh": "0.5.2",
- "http-errors": "2.0.0",
- "mime": "1.6.0",
- "ms": "2.1.3",
- "on-finished": "2.4.1",
- "range-parser": "~1.2.1",
- "statuses": "2.0.1"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/send/node_modules/encodeurl": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
- "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/send/node_modules/ms": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
- "license": "MIT"
- },
- "node_modules/serve-static": {
- "version": "1.16.2",
- "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz",
- "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==",
- "license": "MIT",
- "dependencies": {
- "encodeurl": "~2.0.0",
- "escape-html": "~1.0.3",
- "parseurl": "~1.3.3",
- "send": "0.19.0"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/setprototypeof": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
- "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
- "license": "ISC"
- },
- "node_modules/side-channel": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
- "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
- "license": "MIT",
- "dependencies": {
- "es-errors": "^1.3.0",
- "object-inspect": "^1.13.3",
- "side-channel-list": "^1.0.0",
- "side-channel-map": "^1.0.1",
- "side-channel-weakmap": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/side-channel-list": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
- "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
- "license": "MIT",
- "dependencies": {
- "es-errors": "^1.3.0",
- "object-inspect": "^1.13.3"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/side-channel-map": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
- "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.2",
- "es-errors": "^1.3.0",
- "get-intrinsic": "^1.2.5",
- "object-inspect": "^1.13.3"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/side-channel-weakmap": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
- "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.2",
- "es-errors": "^1.3.0",
- "get-intrinsic": "^1.2.5",
- "object-inspect": "^1.13.3",
- "side-channel-map": "^1.0.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/simple-update-notifier": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz",
- "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "semver": "^7.5.3"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/sprintf-js": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz",
- "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==",
- "license": "BSD-3-Clause"
- },
- "node_modules/statuses": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
- "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-number": "^7.0.0"
- },
- "engines": {
- "node": ">=8.0"
- }
- },
- "node_modules/toidentifier": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
- "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
- "license": "MIT",
- "engines": {
- "node": ">=0.6"
- }
- },
- "node_modules/touch": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz",
- "integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==",
- "dev": true,
- "license": "ISC",
- "bin": {
- "nodetouch": "bin/nodetouch.js"
- }
- },
- "node_modules/type-is": {
- "version": "1.6.18",
- "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
- "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
- "license": "MIT",
- "dependencies": {
- "media-typer": "0.3.0",
- "mime-types": "~2.1.24"
- },
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/undefsafe": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz",
- "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/unpipe": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
- "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/utils-merge": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
- "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.4.0"
- }
- },
- "node_modules/vary": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
- "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/wrappy": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
- "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
- "license": "ISC"
- },
- "node_modules/yauzl": {
- "version": "2.10.0",
- "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz",
- "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==",
- "license": "MIT",
- "dependencies": {
- "buffer-crc32": "~0.2.3",
- "fd-slicer": "~1.1.0"
- }
- }
- }
-}
diff --git a/dashboard/package.json b/dashboard/package.json
deleted file mode 100644
index 60e5549..0000000
--- a/dashboard/package.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "name": "streamplayer-device-dashboard",
- "version": "1.0.0",
- "description": "Dashboard ligero para controlar instalaciones del APK StreamPlayer",
- "main": "server.js",
- "scripts": {
- "start": "node server.js",
- "dev": "nodemon server.js"
- },
- "author": "StreamPlayer",
- "license": "MIT",
- "dependencies": {
- "axios": "^1.6.7",
- "dotenv": "^16.4.5",
- "cors": "^2.8.5",
- "express": "^4.18.2",
- "geoip-lite": "^1.4.6",
- "morgan": "^1.10.0",
- "request-ip": "^3.3.0"
- },
- "devDependencies": {
- "nodemon": "^3.0.1"
- }
-}
diff --git a/dashboard/public/app.js b/dashboard/public/app.js
deleted file mode 100644
index 8c9e0f0..0000000
--- a/dashboard/public/app.js
+++ /dev/null
@@ -1,180 +0,0 @@
-const tableBody = document.getElementById('devicesTable');
-const refreshBtn = document.getElementById('refreshBtn');
-const statusMessage = document.getElementById('statusMessage');
-
-async function fetchDevices() {
- setStatus('Cargando dispositivos...');
- try {
- const response = await fetch('/api/devices');
- if (!response.ok) {
- throw new Error('Error ' + response.status);
- }
- const { devices } = await response.json();
- renderTable(devices || []);
- setStatus('Actualizado ' + new Date().toLocaleTimeString());
- } catch (error) {
- console.error(error);
- setStatus('No se pudo cargar el listado');
- }
-}
-
-function renderTable(devices) {
- tableBody.innerHTML = '';
- if (!devices.length) {
- tableBody.innerHTML = '| Sin registros |
';
- return;
- }
- devices.sort((a, b) => (a.lastSeen || '').localeCompare(b.lastSeen || '') * -1);
- for (const device of devices) {
- const tr = document.createElement('tr');
- if (device.blocked) {
- tr.classList.add('blocked');
- }
- const alias = device.alias && device.alias.trim().length ? device.alias : 'Sin alias';
- const verificationStatus = device.verification && device.verification.status ? device.verification.status : 'pending';
- const needsVerification = verificationStatus !== 'verified';
- const verificationText = needsVerification
- ? `Pendiente - Token cliente: ${device.verification && device.verification.clientPart ? device.verification.clientPart : 'N/A'}`
- : `Verificado ${device.verification.verifiedAt ? `(${formatDate(device.verification.verifiedAt)})` : ''}`;
- const statusLabel = device.blocked
- ? 'Bloqueado'
- : needsVerification ? 'Pendiente token' : 'Activo';
-
- const actions = [``];
- if (needsVerification) {
- actions.push('');
- }
- actions.push(device.blocked ? '' : '');
- actions.push('');
-
- tr.innerHTML = `
-
- ${alias}
- ${device.deviceName || '(sin nombre)'}
- |
- ${device.deviceId} |
- ${[device.manufacturer, device.model].filter(Boolean).join(' ')} |
- ${device.appVersionName || ''} (${device.appVersionCode || ''}) |
- ${device.ip || '-'} |
- ${formatCountry(device.country)} |
- ${verificationText} |
- ${formatDate(device.lastSeen)} |
- ${statusLabel} |
-
- ${actions.join(' ')}
- |
- `;
- tr.dataset.deviceId = device.deviceId;
- tableBody.appendChild(tr);
- }
-}
-
-function formatDate(value) {
- if (!value) return '-';
- const date = new Date(value);
- if (Number.isNaN(date.getTime())) return value;
- return date.toLocaleString();
-}
-
-function formatCountry(value) {
- if (!value || value === 'N/A') {
- return '-';
- }
- return value;
-}
-
-async function blockDevice(deviceId) {
- const reason = prompt('Motivo del bloqueo (opcional):');
- await fetch(`/api/devices/${encodeURIComponent(deviceId)}/block`, {
- method: 'POST',
- headers: { 'Content-Type': 'application/json' },
- body: JSON.stringify({ reason })
- });
- await fetchDevices();
-}
-
-async function unblockDevice(deviceId) {
- await fetch(`/api/devices/${encodeURIComponent(deviceId)}/unblock`, { method: 'POST' });
- await fetchDevices();
-}
-
-async function deleteDevice(deviceId) {
- const confirmation = confirm('¿Seguro que quieres borrar este dispositivo? Generará un nuevo token cuando se registre de nuevo.');
- if (!confirmation) {
- return;
- }
- const response = await fetch(`/api/devices/${encodeURIComponent(deviceId)}`, { method: 'DELETE' });
- if (!response.ok) {
- alert('No se pudo borrar el dispositivo');
- return;
- }
- await fetchDevices();
-}
-
-async function verifyDevice(deviceId) {
- const clientTokenPart = prompt('Introduce el token que aparece en el dispositivo:');
- if (clientTokenPart === null) {
- return;
- }
- const adminTokenPart = prompt('Introduce el token recibido en Telegram:');
- if (adminTokenPart === null) {
- return;
- }
- const response = await fetch(`/api/devices/${encodeURIComponent(deviceId)}/verify`, {
- method: 'POST',
- headers: { 'Content-Type': 'application/json' },
- body: JSON.stringify({ clientTokenPart, adminTokenPart })
- });
- if (!response.ok) {
- const payload = await response.json().catch(() => ({}));
- alert(payload.error || 'No se pudo verificar el token');
- return;
- }
- await fetchDevices();
-}
-
-async function updateAlias(deviceId) {
- const alias = prompt('Nuevo alias para el dispositivo:');
- if (alias === null) {
- return;
- }
- await fetch(`/api/devices/${encodeURIComponent(deviceId)}/alias`, {
- method: 'PUT',
- headers: { 'Content-Type': 'application/json' },
- body: JSON.stringify({ alias })
- });
- await fetchDevices();
-}
-
-function setStatus(message) {
- statusMessage.textContent = message;
-}
-
-refreshBtn.addEventListener('click', fetchDevices);
-
-tableBody.addEventListener('click', async (event) => {
- const button = event.target.closest('button');
- if (!button) return;
- const tr = button.closest('tr');
- const deviceId = tr && tr.dataset.deviceId;
- if (!deviceId) return;
- const action = button.dataset.action;
- try {
- if (action === 'block') {
- await blockDevice(deviceId);
- } else if (action === 'unblock') {
- await unblockDevice(deviceId);
- } else if (action === 'alias') {
- await updateAlias(deviceId);
- } else if (action === 'verify') {
- await verifyDevice(deviceId);
- } else if (action === 'delete') {
- await deleteDevice(deviceId);
- }
- } catch (error) {
- console.error(error);
- alert('Operación fallida');
- }
-});
-
-fetchDevices();
diff --git a/dashboard/public/index.html b/dashboard/public/index.html
deleted file mode 100644
index 4a694b1..0000000
--- a/dashboard/public/index.html
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
- StreamPlayer Device Dashboard
-
-
-
-
-
-
-
-
-
- | Alias / Nombre |
- Device ID |
- Modelo |
- Versión app |
- IP Pública |
- País |
- Verificación |
- Última vez visto |
- Estado |
- Acciones |
-
-
-
-
- | No hay datos aún |
-
-
-
-
-
-
-
diff --git a/dashboard/public/styles.css b/dashboard/public/styles.css
deleted file mode 100644
index c31e754..0000000
--- a/dashboard/public/styles.css
+++ /dev/null
@@ -1,89 +0,0 @@
-:root {
- font-family: 'Segoe UI', Tahoma, sans-serif;
- color: #202124;
- background: #f7f7f7;
-}
-
-body {
- margin: 0;
- padding: 2rem;
-}
-
-header {
- margin-bottom: 1rem;
-}
-
-header h1 {
- margin-bottom: 0.2rem;
-}
-
-.actions {
- display: flex;
- align-items: center;
- gap: 1rem;
- margin-bottom: 1rem;
-}
-
-button {
- border: none;
- background: #4285f4;
- color: #fff;
- padding: 0.5rem 1rem;
- border-radius: 4px;
- cursor: pointer;
- font-size: 0.9rem;
-}
-
-button.danger {
- background: #d93025;
-}
-
-button.primary {
- background: #1a73e8;
-}
-
-.table-wrapper {
- overflow-x: auto;
- background: #fff;
- border-radius: 8px;
- box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
-}
-
-table {
- width: 100%;
- border-collapse: collapse;
-}
-
-th, td {
- padding: 0.8rem;
- text-align: left;
- border-bottom: 1px solid #eee;
-}
-
-th {
- background: #fafafa;
- font-weight: 600;
-}
-
-tr.blocked {
- background: #fff4f4;
-}
-
-.actions-cell button {
- margin-right: 0.3rem;
-}
-
-.alias {
- font-weight: 600;
-}
-
-.device-name {
- font-size: 0.85rem;
- color: #5f6368;
-}
-
-.empty {
- text-align: center;
- padding: 2rem;
- color: #5f6368;
-}
diff --git a/dashboard/server.js b/dashboard/server.js
deleted file mode 100644
index b3c3477..0000000
--- a/dashboard/server.js
+++ /dev/null
@@ -1,464 +0,0 @@
-const express = require('express');
-const cors = require('cors');
-const fs = require('fs');
-const path = require('path');
-const morgan = require('morgan');
-const crypto = require('crypto');
-const axios = require('axios');
-const requestIp = require('request-ip');
-const geoip = require('geoip-lite');
-const dotenv = require('dotenv');
-
-const envPath = path.resolve(__dirname, '..', '.env');
-if (fs.existsSync(envPath)) {
- dotenv.config({ path: envPath });
-} else {
- dotenv.config();
-}
-
-const app = express();
-const PORT = process.env.PORT || 4000;
-const DATA_PATH = path.join(__dirname, 'data', 'devices.json');
-const CONFIG_PATH = path.join(__dirname, 'config.json');
-
-const config = loadConfig();
-const TELEGRAM_BOT_TOKEN = process.env.TELEGRAM_BOT_TOKEN || config.telegramBotToken || '';
-const TELEGRAM_CHAT_ID = (process.env.TELEGRAM_CHAT_ID || config.telegramChatId || '').toString();
-let telegramOffset = 0;
-let telegramPollingStarted = false;
-
-app.use(cors());
-app.use(express.json());
-app.use(morgan('dev'));
-app.use(express.static(path.join(__dirname, 'public'), {
- extensions: ['html']
-}));
-
-app.use((req, res, next) => {
- res.setHeader('Cache-Control', 'no-store');
- next();
-});
-
-function loadConfig() {
- try {
- if (fs.existsSync(CONFIG_PATH)) {
- const raw = fs.readFileSync(CONFIG_PATH, 'utf-8');
- return JSON.parse(raw);
- }
- } catch (error) {
- console.warn('Could not parse config.json', error);
- }
- return {};
-}
-
-function ensureDataFile() {
- if (!fs.existsSync(DATA_PATH)) {
- fs.mkdirSync(path.dirname(DATA_PATH), { recursive: true });
- fs.writeFileSync(DATA_PATH, JSON.stringify([], null, 2));
- }
-}
-
-function readDevices() {
- ensureDataFile();
- try {
- const raw = fs.readFileSync(DATA_PATH, 'utf-8');
- const devices = JSON.parse(raw);
- return Array.isArray(devices) ? devices : [];
- } catch (err) {
- console.error('Error parsing devices.json', err);
- return [];
- }
-}
-
-function writeDevices(devices) {
- ensureDataFile();
- fs.writeFileSync(DATA_PATH, JSON.stringify(devices, null, 2));
-}
-
-function sanitizeId(input) {
- return String(input || '').trim();
-}
-
-function sanitizeIp(ip) {
- if (!ip) return '';
- if (ip.startsWith('::ffff:')) {
- return ip.replace('::ffff:', '');
- }
- return ip;
-}
-
-function lookupLocation(ip) {
- if (!ip) {
- return { country: 'N/A', region: '', city: '' };
- }
- const geo = geoip.lookup(ip);
- if (!geo) {
- return { country: 'N/A', region: '', city: '' };
- }
- return {
- country: geo.country || 'N/A',
- region: geo.region || '',
- city: geo.city || ''
- };
-}
-
-function generateTokenParts() {
- const fullToken = crypto.randomBytes(16).toString('hex');
- const mid = Math.floor(fullToken.length / 2);
- return {
- clientPart: fullToken.slice(0, mid),
- adminPart: fullToken.slice(mid)
- };
-}
-
-async function sendTelegramMessage(message, options = {}) {
- if (!TELEGRAM_BOT_TOKEN || !TELEGRAM_CHAT_ID) {
- return;
- }
- const url = `https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/sendMessage`;
- try {
- const payload = {
- chat_id: TELEGRAM_CHAT_ID,
- text: message,
- disable_web_page_preview: true
- };
- if (options.parseMode) {
- payload.parse_mode = options.parseMode;
- }
- await axios.post(url, payload);
- } catch (error) {
- console.warn('Failed to send Telegram message', error.response ? error.response.data : error.message);
- }
-}
-
-async function sendTelegramNotification(message) {
- await sendTelegramMessage(message, { parseMode: 'Markdown' });
-}
-
-function formatTelegramMessage(device, verificationRequired) {
- const lines = [
- '*Nuevo registro de dispositivo*',
- `ID: ${device.deviceId}`,
- `Alias: ${device.alias || '-'}`,
- `Modelo: ${device.manufacturer} ${device.model}`,
- `Versión app: ${device.appVersionName} (${device.appVersionCode})`,
- `IP: ${device.ip || '-'} / País: ${device.country || '-'}`,
- `Última vez visto: ${device.lastSeen}`
- ];
- if (verificationRequired && device.verification) {
- lines.push('`Token Admin` (guárdalo): `' + device.verification.adminPart + '`');
- lines.push('Autorizar: `/allow ' + device.deviceId + ' TOKEN_CLIENTE`');
- lines.push('Rechazar: `/deny ' + device.deviceId + ' TOKEN_CLIENTE [motivo]`');
- }
- return lines.join('\n');
-}
-
-async function initializeTelegramOffset() {
- if (!TELEGRAM_BOT_TOKEN) {
- return;
- }
- const url = `https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/getUpdates`;
- try {
- const { data } = await axios.get(url, { params: { timeout: 1 } });
- if (data.ok && Array.isArray(data.result) && data.result.length > 0) {
- telegramOffset = data.result[data.result.length - 1].update_id + 1;
- }
- } catch (error) {
- console.warn('Failed to initialize Telegram offset', error.message);
- }
-}
-
-async function pollTelegramUpdates() {
- if (!TELEGRAM_BOT_TOKEN || !TELEGRAM_CHAT_ID) {
- return;
- }
- const url = `https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/getUpdates`;
- const params = {
- timeout: 25
- };
- if (telegramOffset) {
- params.offset = telegramOffset;
- }
- try {
- const { data } = await axios.get(url, { params });
- if (data.ok && Array.isArray(data.result)) {
- for (const update of data.result) {
- telegramOffset = update.update_id + 1;
- if (update.message) {
- processTelegramMessage(update.message);
- }
- }
- }
- } catch (error) {
- console.warn('Telegram polling error', error.message);
- } finally {
- setTimeout(pollTelegramUpdates, 3000);
- }
-}
-
-async function startTelegramPolling() {
- if (telegramPollingStarted || !TELEGRAM_BOT_TOKEN || !TELEGRAM_CHAT_ID) {
- return;
- }
- telegramPollingStarted = true;
- await initializeTelegramOffset();
- pollTelegramUpdates();
-}
-
-function processTelegramMessage(message) {
- const chatId = message.chat && message.chat.id ? message.chat.id.toString() : '';
- if (chatId && TELEGRAM_CHAT_ID && chatId !== TELEGRAM_CHAT_ID.toString()) {
- return;
- }
- const text = (message.text || '').trim();
- if (!text.startsWith('/')) {
- return;
- }
- const parts = text.split(/\s+/);
- const command = parts[0].toLowerCase();
- if (command === '/allow' && parts.length >= 3) {
- handleTelegramAllow(parts[1], parts[2]);
- } else if (command === '/deny' && parts.length >= 3) {
- const reason = parts.slice(3).join(' ') || 'Bloqueado desde Telegram';
- handleTelegramDeny(parts[1], parts[2], reason);
- } else if (command === '/pending') {
- handleTelegramPending();
- } else {
- sendTelegramMessage('Comandos disponibles:\n/allow \n/deny [motivo]\n/pending');
- }
-}
-
-async function handleTelegramAllow(deviceId, clientToken) {
- const devices = readDevices();
- const device = devices.find(d => d.deviceId === deviceId);
- if (!device || !device.verification) {
- await sendTelegramMessage(`❌ Dispositivo ${deviceId} no encontrado.`);
- return;
- }
- if (device.verification.status === 'verified') {
- await sendTelegramMessage(`ℹ️ El dispositivo ${deviceId} ya está verificado.`);
- return;
- }
- if (device.verification.clientPart !== clientToken.trim()) {
- await sendTelegramMessage('❌ Token del cliente inválido.');
- return;
- }
- device.verification.status = 'verified';
- device.verification.verifiedAt = new Date().toISOString();
- device.blocked = false;
- device.notes = '';
- writeDevices(devices);
- await sendTelegramMessage(`✅ Dispositivo ${deviceId} autorizado correctamente.`);
-}
-
-async function handleTelegramDeny(deviceId, clientToken, reason) {
- const devices = readDevices();
- const device = devices.find(d => d.deviceId === deviceId);
- if (!device || !device.verification) {
- await sendTelegramMessage(`❌ Dispositivo ${deviceId} no encontrado.`);
- return;
- }
- if (device.verification.clientPart !== clientToken.trim()) {
- await sendTelegramMessage('❌ Token del cliente inválido.');
- return;
- }
- device.verification.status = 'denied';
- device.verification.deniedAt = new Date().toISOString();
- device.blocked = true;
- device.notes = reason;
- writeDevices(devices);
- await sendTelegramMessage(`🚫 Dispositivo ${deviceId} bloqueado. Motivo: ${reason}`);
-}
-
-async function handleTelegramPending() {
- const devices = readDevices();
- const pending = devices.filter(d => !d.verification || d.verification.status !== 'verified');
- if (!pending.length) {
- await sendTelegramMessage('No hay dispositivos pendientes.');
- return;
- }
- const lines = pending.slice(0, 10).map(device => {
- const token = device.verification ? device.verification.clientPart : 'N/A';
- return `${device.deviceId} - Token cliente: ${token}`;
- });
- await sendTelegramMessage('Pendientes:\n' + lines.join('\n'));
-}
-
-app.get('/api/health', (req, res) => {
- res.json({ status: 'ok', timestamp: new Date().toISOString() });
-});
-
-app.get('/api/devices', (req, res) => {
- const devices = readDevices();
- res.json({ devices });
-});
-
-app.post('/api/devices/register', (req, res) => {
- const {
- deviceId,
- deviceName,
- model,
- manufacturer,
- osVersion,
- appVersionName,
- appVersionCode
- } = req.body || {};
-
- const trimmedId = sanitizeId(deviceId);
- if (!trimmedId) {
- return res.status(400).json({ error: 'deviceId is required' });
- }
-
- const devices = readDevices();
- const now = new Date().toISOString();
- const clientIp = sanitizeIp(requestIp.getClientIp(req) || req.ip || '');
- const location = lookupLocation(clientIp);
-
- let existing = devices.find(d => d.deviceId === trimmedId);
- let isNew = false;
- if (!existing) {
- const tokenParts = generateTokenParts();
- existing = {
- deviceId: trimmedId,
- alias: '',
- deviceName: deviceName || '',
- model: model || '',
- manufacturer: manufacturer || '',
- osVersion: osVersion || '',
- appVersionName: appVersionName || '',
- appVersionCode: appVersionCode || 0,
- firstSeen: now,
- lastSeen: now,
- blocked: false,
- notes: '',
- installs: 1,
- ip: clientIp,
- country: location.country,
- verification: {
- clientPart: tokenParts.clientPart,
- adminPart: tokenParts.adminPart,
- status: 'pending',
- createdAt: now
- }
- };
- devices.push(existing);
- isNew = true;
- } else {
- existing.deviceName = deviceName || existing.deviceName;
- existing.model = model || existing.model;
- existing.manufacturer = manufacturer || existing.manufacturer;
- existing.osVersion = osVersion || existing.osVersion;
- existing.appVersionName = appVersionName || existing.appVersionName;
- existing.appVersionCode = appVersionCode || existing.appVersionCode;
- existing.lastSeen = now;
- existing.installs = (existing.installs || 1) + 1;
- existing.ip = clientIp || existing.ip;
- const hasValidCountry = location.country && location.country !== 'N/A';
- existing.country = hasValidCountry ? location.country : (existing.country || 'N/A');
- existing.verification = existing.verification || {
- ...generateTokenParts(),
- status: 'pending',
- createdAt: now
- };
- }
-
- const verificationRequired = !existing.verification || existing.verification.status !== 'verified';
- const blocked = existing.blocked || verificationRequired;
-
- writeDevices(devices);
-
- if (isNew || verificationRequired) {
- sendTelegramNotification(formatTelegramMessage(existing, verificationRequired));
- }
-
- res.json({
- blocked,
- device: existing,
- message: verificationRequired ? 'Instalación pendiente de verificación.' : (existing.notes || ''),
- verification: {
- required: verificationRequired,
- clientTokenPart: verificationRequired ? existing.verification.clientPart : ''
- }
- });
-});
-
-app.post('/api/devices/:deviceId/block', (req, res) => {
- const { deviceId } = req.params;
- const { reason } = req.body || {};
- const devices = readDevices();
- const existing = devices.find(d => d.deviceId === deviceId);
- if (!existing) {
- return res.status(404).json({ error: 'Device not found' });
- }
- existing.blocked = true;
- existing.notes = reason || existing.notes;
- existing.blockedAt = new Date().toISOString();
- writeDevices(devices);
- res.json({ blocked: true, device: existing });
-});
-
-app.post('/api/devices/:deviceId/unblock', (req, res) => {
- const { deviceId } = req.params;
- const devices = readDevices();
- const existing = devices.find(d => d.deviceId === deviceId);
- if (!existing) {
- return res.status(404).json({ error: 'Device not found' });
- }
- existing.blocked = false;
- writeDevices(devices);
- res.json({ blocked: false, device: existing });
-});
-
-app.post('/api/devices/:deviceId/verify', (req, res) => {
- const { deviceId } = req.params;
- const { clientTokenPart, adminTokenPart } = req.body || {};
- const devices = readDevices();
- const existing = devices.find(d => d.deviceId === deviceId);
- if (!existing || !existing.verification) {
- return res.status(404).json({ error: 'Device not found' });
- }
- if (!clientTokenPart || !adminTokenPart) {
- return res.status(400).json({ error: 'Both token parts are required' });
- }
- if (
- existing.verification.clientPart !== clientTokenPart.trim() ||
- existing.verification.adminPart !== adminTokenPart.trim()
- ) {
- return res.status(400).json({ error: 'Invalid token parts' });
- }
- existing.verification.status = 'verified';
- existing.verification.verifiedAt = new Date().toISOString();
- existing.blocked = false;
- writeDevices(devices);
- res.json({ verified: true, device: existing });
-});
-
-app.put('/api/devices/:deviceId/alias', (req, res) => {
- const { deviceId } = req.params;
- const { alias } = req.body || {};
- const devices = readDevices();
- const existing = devices.find(d => d.deviceId === deviceId);
- if (!existing) {
- return res.status(404).json({ error: 'Device not found' });
- }
- existing.alias = alias || '';
- writeDevices(devices);
- res.json({ device: existing });
-});
-
-app.delete('/api/devices/:deviceId', (req, res) => {
- const { deviceId } = req.params;
- const devices = readDevices();
- const filtered = devices.filter(d => d.deviceId !== deviceId);
- if (filtered.length === devices.length) {
- return res.status(404).json({ error: 'Device not found' });
- }
- writeDevices(filtered);
- res.json({ removed: true });
-});
-
-app.listen(PORT, () => {
- ensureDataFile();
- console.log(`StreamPlayer dashboard server listening on port ${PORT}`);
- startTelegramPolling();
-});
diff --git a/eventos.json b/eventos.json
deleted file mode 100644
index ea9293a..0000000
--- a/eventos.json
+++ /dev/null
@@ -1,16 +0,0 @@
-[
- {
- "title": "Partido de Prueba",
- "time": "22:00",
- "category": "Fútbol",
- "status": "EN VIVO",
- "link": "https://streamtpmedia.com/global2.php?stream=espn"
- },
- {
- "title": "Canal Deportivo",
- "time": "15:30",
- "category": "Deportes",
- "status": "PRÓXIMO",
- "link": "https://streamtpmedia.com/global2.php?stream=foxsports"
- }
-]
\ No newline at end of file
diff --git a/everything-claude-code b/everything-claude-code
deleted file mode 160000
index 56ff5d4..0000000
--- a/everything-claude-code
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit 56ff5d444bfeed3bd939113415851c8fe1c0fe6d
diff --git a/generate_icons.py b/generate_icons.py
deleted file mode 100644
index ed0e530..0000000
--- a/generate_icons.py
+++ /dev/null
@@ -1,93 +0,0 @@
-#!/usr/bin/env python3
-
-import os
-from PIL import Image, ImageDraw, ImageFont
-import sys
-
-def create_icon(size, filename):
- """Create a simple streaming app icon"""
- # Create image with transparent background
- img = Image.new('RGBA', (size, size), (0, 0, 0, 0))
- draw = ImageDraw.Draw(img)
-
- # Background circle - dark blue gradient effect
- margin = size // 10
- draw.ellipse([margin, margin, size-margin, size-margin],
- fill=(25, 25, 112, 255), outline=(70, 130, 180, 255), width=2)
-
- # Play button triangle
- play_margin = size // 4
- play_size = size - 2 * play_margin
- points = [
- (play_margin + play_size // 4, play_margin),
- (play_margin + play_size // 4, play_margin + play_size),
- (play_margin + 3 * play_size // 4, play_margin + play_size // 2)
- ]
- draw.polygon(points, fill=(255, 255, 255, 255))
-
- # Save image
- img.save(filename, 'PNG')
- print(f"Created icon: {filename} ({size}x{size})")
-
-def create_adaptive_icon(filename, size):
- """Create adaptive icon (no background)"""
- img = Image.new('RGBA', (size, size), (0, 0, 0, 0))
- draw = ImageDraw.Draw(img)
-
- # Center play button
- margin = size // 4
- play_size = size - 2 * margin
- points = [
- (margin + play_size // 4, margin),
- (margin + play_size // 4, margin + play_size),
- (margin + 3 * play_size // 4, margin + play_size // 2)
- ]
- draw.polygon(points, fill=(255, 255, 255, 255))
-
- # Add decorative circle
- circle_margin = size // 8
- draw.ellipse([circle_margin, circle_margin, size-circle_margin, size-circle_margin],
- fill=None, outline=(100, 149, 237, 255), width=3)
-
- img.save(filename, 'PNG')
- print(f"Created adaptive icon: {filename} ({size}x{size})")
-
-def main():
- # Define icon sizes and paths
- icons = [
- ('app/src/main/res/mipmap-mdpi/ic_launcher.png', 48),
- ('app/src/main/res/mipmap-hdpi/ic_launcher.png', 72),
- ('app/src/main/res/mipmap-xhdpi/ic_launcher.png', 96),
- ('app/src/main/res/mipmap-xxhdpi/ic_launcher.png', 144),
- ('app/src/main/res/mipmap-xxxhdpi/ic_launcher.png', 192),
- ]
-
- round_icons = [
- ('app/src/main/res/mipmap-mdpi/ic_launcher_round.png', 48),
- ('app/src/main/res/mipmap-hdpi/ic_launcher_round.png', 72),
- ('app/src/main/res/mipmap-xhdpi/ic_launcher_round.png', 96),
- ('app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png', 144),
- ('app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png', 192),
- ]
-
- adaptive_icons = [
- ('app/src/main/res/drawable/ic_launcher_foreground.xml', 108), # Not using PIL for XML
- ]
-
- print("Creating app icons...")
-
- # Create regular icons
- for filename, size in icons:
- create_icon(size, filename)
-
- # Create round icons
- for filename, size in round_icons:
- create_icon(size, filename)
-
- # Create adaptive icon foreground
- create_adaptive_icon('app/src/main/res/drawable/ic_launcher_foreground.png', 108)
-
- print("All icons created successfully!")
-
-if __name__ == "__main__":
- main()
\ No newline at end of file
diff --git a/gradle-local/LICENSE b/gradle-local/LICENSE
deleted file mode 100644
index f013fd5..0000000
--- a/gradle-local/LICENSE
+++ /dev/null
@@ -1,420 +0,0 @@
-
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
-
-==============================================================================
-Licenses for included components:
-
-------------------------------------------------------------------------------
-Eclipse Public License 1.0
-https://opensource.org/licenses/EPL-1.0
-
-junit:junit
-org.sonatype.aether:aether-api
-org.sonatype.aether:aether-connector-wagon
-org.sonatype.aether:aether-impl
-org.sonatype.aether:aether-spi
-org.sonatype.aether:aether-util
-
-------------------------------------------------------------------------------
-3-Clause BSD
-https://opensource.org/licenses/BSD-3-Clause
-
-com.google.code.findbugs:jsr305
-
-org.hamcrest:hamcrest-core
-BSD License
-
-Copyright (c) 2000-2015 www.hamcrest.org
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
-Redistributions of source code must retain the above copyright notice, this list of
-conditions and the following disclaimer. Redistributions in binary form must reproduce
-the above copyright notice, this list of conditions and the following disclaimer in
-the documentation and/or other materials provided with the distribution.
-
-Neither the name of Hamcrest nor the names of its contributors may be used to endorse
-or promote products derived from this software without specific prior written
-permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
-EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
-SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
-TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
-BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
-WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-DAMAGE.
-
-com.esotericsoftware.kryo:kryo
-com.esotericsoftware.minlog:minlog
-Copyright (c) 2008-2018, Nathan Sweet All rights reserved.
-
-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
-
-Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
-Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
-Neither the name of Esoteric Software nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-org.ow2.asm:asm
-org.ow2.asm:asm-analysis
-org.ow2.asm:asm-commons
-org.ow2.asm:asm-tree
-org.ow2.asm:asm-util
-ASM: a very small and fast Java bytecode manipulation framework
- Copyright (c) 2000-2011 INRIA, France Telecom
- All rights reserved.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions
- are met:
- 1. Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
- 2. Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
- 3. Neither the name of the copyright holders nor the names of its
- contributors may be used to endorse or promote products derived from
- this software without specific prior written permission.
-
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- THE POSSIBILITY OF SUCH DAMAGE.
-
-------------------------------------------------------------------------------
-MIT
-
-com.googlecode.plist:dd-plist
-dd-plist - An open source library to parse and generate property lists
-Copyright (C) 2016 Daniel Dreibrodt
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-org.bouncycastle:bcpg-jdk15on
-org.bouncycastle:bcprov-jdk15on
-Copyright (c) 2000 - 2019 The Legion of the Bouncy Castle Inc. (https://www.bouncycastle.org)
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-org.slf4j:jcl-over-slf4j
-org.slf4j:jul-to-slf4j
-org.slf4j:log4j-over-slf4j
-org.slf4j:slf4j-api
- Copyright (c) 2004-2017 QOS.ch
- All rights reserved.
-
- Permission is hereby granted, free of charge, to any person obtaining
- a copy of this software and associated documentation files (the
- "Software"), to deal in the Software without restriction, including
- without limitation the rights to use, copy, modify, merge, publish,
- distribute, sublicense, and/or sell copies of the Software, and to
- permit persons to whom the Software is furnished to do so, subject to
- the following conditions:
-
- The above copyright notice and this permission notice shall be
- included in all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-
-------------------------------------------------------------------------------
-CDDL
-https://opensource.org/licenses/CDDL-1.0
-
-com.sun.xml.bind:jaxb-impl
-
-------------------------------------------------------------------------------
-LGPL 2.1
-https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
-
-org.samba.jcifs:jcifs
-
-org.jetbrains.intellij.deps:trove4j
-
-------------------------------------------------------------------------------
-License for the GNU Trove library included by the Kotlin embeddable compiler
-------------------------------------------------------------------------------
-The source code for GNU Trove is licensed under the Lesser GNU Public License (LGPL).
-
- Copyright (c) 2001, Eric D. Friedman All Rights Reserved. This library is free software; you can redistribute it and/or modify it under
- the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or
- (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
- even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-
-Two classes (HashFunctions and PrimeFinder) included in Trove are licensed under the following terms:
-
- Copyright (c) 1999 CERN - European Organization for Nuclear Research. Permission to use, copy, modify, distribute and sell this software
- and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and
- that both that copyright notice and this permission notice appear in supporting documentation. CERN makes no representations about the
- suitability of this software for any purpose. It is provided "as is" without expressed or implied warranty.
-
-The source code of modified GNU Trove library is available at
- https://github.com/JetBrains/intellij-deps-trove4j (with trove4j_changes.txt describing the changes)
-
-------------------------------------------------------------------------------
-Eclipse Distribution License 1.0
-https://www.eclipse.org/org/documents/edl-v10.php
-
-org.eclipse.jgit:org.eclipse.jgit
-
-------------------------------------------------------------------------------
-BSD-style
-
-com.jcraft:jsch
-com.jcraft:jzlib
-
-Copyright (c) 2000-2011 ymnk, JCraft,Inc. All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
- 1. Redistributions of source code must retain the above copyright notice,
- this list of conditions and the following disclaimer.
-
- 2. Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in
- the documentation and/or other materials provided with the distribution.
-
- 3. The names of the authors may not be used to endorse or promote products
- derived from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
-INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
-FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT,
-INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,
-INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
-OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
-EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-------------------------------------------------------------------------------
-Eclipse Public License 2.0
-https://www.eclipse.org/legal/epl-2.0/
-
-org.junit.platform:junit-platform-launcher
-
-------------------------------------------------------------------------------
-Mozilla Public License 2.0
-https://www.mozilla.org/en-US/MPL/2.0/
-
-org.mozilla:rhino
diff --git a/gradle-local/NOTICE b/gradle-local/NOTICE
deleted file mode 100644
index 00a36ef..0000000
--- a/gradle-local/NOTICE
+++ /dev/null
@@ -1,21 +0,0 @@
-=========================================================================
-== NOTICE file corresponding to the section 4 d of ==
-== the Apache License, Version 2.0, ==
-== in this case for the Gradle distribution. ==
-=========================================================================
-
-This product includes software developed by
-The Apache Software Foundation (http://www.apache.org/).
-
-It includes the following other software:
-
-Groovy (http://groovy-lang.org)
-SLF4J (http://www.slf4j.org)
-JUnit (http://www.junit.org)
-JCIFS (http://jcifs.samba.org)
-HttpClient (https://hc.apache.org/httpcomponents-client-4.5.x/)
-
-For licenses, see the LICENSE file.
-
-If any software distributed with Gradle does not have an Apache 2 License, its license is explicitly listed in the
-LICENSE file.
diff --git a/gradle-local/README b/gradle-local/README
deleted file mode 100644
index 97d48bd..0000000
--- a/gradle-local/README
+++ /dev/null
@@ -1,11 +0,0 @@
-Gradle is a build tool with a focus on build automation and support for multi-language development. If you are building, testing, publishing, and deploying software on any platform, Gradle offers a flexible model that can support the entire development lifecycle from compiling and packaging code to publishing web sites. Gradle has been designed to support build automation across multiple languages and platforms including Java, Scala, Android, C/C++, and Groovy, and is closely integrated with development tools and continuous integration servers including Eclipse, IntelliJ, and Jenkins.
-
-For more information about Gradle, please visit: https://gradle.org
-
-If you are using the "all" distribution, the User Manual is included in your distribution.
-
-If you are using the "bin" distribution, a copy of the User Manual is available on https://docs.gradle.org.
-
-Typing `gradle help` prints the command line help.
-
-Typing `gradle tasks` shows all the tasks of a Gradle build.
diff --git a/gradle-local/bin/gradle b/gradle-local/bin/gradle
deleted file mode 100644
index e540c1c..0000000
--- a/gradle-local/bin/gradle
+++ /dev/null
@@ -1,248 +0,0 @@
-#!/bin/sh
-
-#
-# Copyright © 2015-2021 the original authors.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# https://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-##############################################################################
-#
-# Gradle start up script for POSIX generated by Gradle.
-#
-# Important for running:
-#
-# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
-# noncompliant, but you have some other compliant shell such as ksh or
-# bash, then to run this script, type that shell name before the whole
-# command line, like:
-#
-# ksh Gradle
-#
-# Busybox and similar reduced shells will NOT work, because this script
-# requires all of these POSIX shell features:
-# * functions;
-# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
-# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
-# * compound commands having a testable exit status, especially «case»;
-# * various built-in commands including «command», «set», and «ulimit».
-#
-# Important for patching:
-#
-# (2) This script targets any POSIX shell, so it avoids extensions provided
-# by Bash, Ksh, etc; in particular arrays are avoided.
-#
-# The "traditional" practice of packing multiple parameters into a
-# space-separated string is a well documented source of bugs and security
-# problems, so this is (mostly) avoided, by progressively accumulating
-# options in "$@", and eventually passing that to Java.
-#
-# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
-# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
-# see the in-line comments for details.
-#
-# There are tweaks for specific operating systems such as AIX, CygWin,
-# Darwin, MinGW, and NonStop.
-#
-# (3) This script is generated from the Groovy template
-# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
-# within the Gradle project.
-#
-# You can find Gradle at https://github.com/gradle/gradle/.
-#
-##############################################################################
-
-# Attempt to set APP_HOME
-
-# Resolve links: $0 may be a link
-app_path=$0
-
-# Need this for daisy-chained symlinks.
-while
- APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
- [ -h "$app_path" ]
-do
- ls=$( ls -ld "$app_path" )
- link=${ls#*' -> '}
- case $link in #(
- /*) app_path=$link ;; #(
- *) app_path=$APP_HOME$link ;;
- esac
-done
-
-# This is normally unused
-# shellcheck disable=SC2034
-APP_BASE_NAME=${0##*/}
-APP_HOME=$( cd "${APP_HOME:-./}.." && pwd -P ) || exit
-
-# Use the maximum available, or set MAX_FD != -1 to use that value.
-MAX_FD=maximum
-
-warn () {
- echo "$*"
-} >&2
-
-die () {
- echo
- echo "$*"
- echo
- exit 1
-} >&2
-
-# OS specific support (must be 'true' or 'false').
-cygwin=false
-msys=false
-darwin=false
-nonstop=false
-case "$( uname )" in #(
- CYGWIN* ) cygwin=true ;; #(
- Darwin* ) darwin=true ;; #(
- MSYS* | MINGW* ) msys=true ;; #(
- NONSTOP* ) nonstop=true ;;
-esac
-
-CLASSPATH=$APP_HOME/lib/gradle-launcher-8.2.jar
-
-
-# Determine the Java command to use to start the JVM.
-if [ -n "$JAVA_HOME" ] ; then
- if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
- # IBM's JDK on AIX uses strange locations for the executables
- JAVACMD=$JAVA_HOME/jre/sh/java
- else
- JAVACMD=$JAVA_HOME/bin/java
- fi
- if [ ! -x "$JAVACMD" ] ; then
- die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
-
-Please set the JAVA_HOME variable in your environment to match the
-location of your Java installation."
- fi
-else
- JAVACMD=java
- if ! command -v java >/dev/null 2>&1
- then
- die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
-
-Please set the JAVA_HOME variable in your environment to match the
-location of your Java installation."
- fi
-fi
-
-# Increase the maximum file descriptors if we can.
-if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
- case $MAX_FD in #(
- max*)
- # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
- # shellcheck disable=SC3045
- MAX_FD=$( ulimit -H -n ) ||
- warn "Could not query maximum file descriptor limit"
- esac
- case $MAX_FD in #(
- '' | soft) :;; #(
- *)
- # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
- # shellcheck disable=SC3045
- ulimit -n "$MAX_FD" ||
- warn "Could not set maximum file descriptor limit to $MAX_FD"
- esac
-fi
-
-# Collect all arguments for the java command, stacking in reverse order:
-# * args from the command line
-# * the main class name
-# * -classpath
-# * -D...appname settings
-# * --module-path (only if needed)
-# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
-
-# For Cygwin or MSYS, switch paths to Windows format before running java
-if "$cygwin" || "$msys" ; then
- APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
- CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
-
- JAVACMD=$( cygpath --unix "$JAVACMD" )
-
- # Now convert the arguments - kludge to limit ourselves to /bin/sh
- for arg do
- if
- case $arg in #(
- -*) false ;; # don't mess with options #(
- /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
- [ -e "$t" ] ;; #(
- *) false ;;
- esac
- then
- arg=$( cygpath --path --ignore --mixed "$arg" )
- fi
- # Roll the args list around exactly as many times as the number of
- # args, so each arg winds up back in the position where it started, but
- # possibly modified.
- #
- # NB: a `for` loop captures its iteration list before it begins, so
- # changing the positional parameters here affects neither the number of
- # iterations, nor the values presented in `arg`.
- shift # remove old arg
- set -- "$@" "$arg" # push replacement arg
- done
-fi
-
-
-# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'" \"-javaagent:$APP_HOME/lib/agents/gradle-instrumentation-agent-8.2.jar\""
-
-# Collect all arguments for the java command;
-# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
-# shell script including quotes and variable substitutions, so put them in
-# double quotes to make sure that they get re-expanded; and
-# * put everything else in single quotes, so that it's not re-expanded.
-
-set -- \
- "-Dorg.gradle.appname=$APP_BASE_NAME" \
- -classpath "$CLASSPATH" \
- org.gradle.launcher.GradleMain \
- "$@"
-
-# Stop when "xargs" is not available.
-if ! command -v xargs >/dev/null 2>&1
-then
- die "xargs is not available"
-fi
-
-# Use "xargs" to parse quoted args.
-#
-# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
-#
-# In Bash we could simply go:
-#
-# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
-# set -- "${ARGS[@]}" "$@"
-#
-# but POSIX shell has neither arrays nor command substitution, so instead we
-# post-process each arg (as a line of input to sed) to backslash-escape any
-# character that might be a shell metacharacter, then use eval to reverse
-# that process (while maintaining the separation between arguments), and wrap
-# the whole thing up as a single "set" statement.
-#
-# This will of course break if any of these variables contains a newline or
-# an unmatched quote.
-#
-
-eval "set -- $(
- printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
- xargs -n1 |
- sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
- tr '\n' ' '
- )" '"$@"'
-
-exec "$JAVACMD" "$@"
diff --git a/gradle-local/bin/gradle.bat b/gradle-local/bin/gradle.bat
deleted file mode 100644
index a1266cd..0000000
--- a/gradle-local/bin/gradle.bat
+++ /dev/null
@@ -1,92 +0,0 @@
-@rem
-@rem Copyright 2015 the original author or authors.
-@rem
-@rem Licensed under the Apache License, Version 2.0 (the "License");
-@rem you may not use this file except in compliance with the License.
-@rem You may obtain a copy of the License at
-@rem
-@rem https://www.apache.org/licenses/LICENSE-2.0
-@rem
-@rem Unless required by applicable law or agreed to in writing, software
-@rem distributed under the License is distributed on an "AS IS" BASIS,
-@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-@rem See the License for the specific language governing permissions and
-@rem limitations under the License.
-@rem
-
-@if "%DEBUG%"=="" @echo off
-@rem ##########################################################################
-@rem
-@rem Gradle startup script for Windows
-@rem
-@rem ##########################################################################
-
-@rem Set local scope for the variables with windows NT shell
-if "%OS%"=="Windows_NT" setlocal
-
-set DIRNAME=%~dp0
-if "%DIRNAME%"=="" set DIRNAME=.
-@rem This is normally unused
-set APP_BASE_NAME=%~n0
-set APP_HOME=%DIRNAME%..
-
-@rem Resolve any "." and ".." in APP_HOME to make it shorter.
-for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
-
-@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" "-javaagent:%APP_HOME%/lib/agents/gradle-instrumentation-agent-8.2.jar"
-
-@rem Find java.exe
-if defined JAVA_HOME goto findJavaFromJavaHome
-
-set JAVA_EXE=java.exe
-%JAVA_EXE% -version >NUL 2>&1
-if %ERRORLEVEL% equ 0 goto execute
-
-echo.
-echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
-echo.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation.
-
-goto fail
-
-:findJavaFromJavaHome
-set JAVA_HOME=%JAVA_HOME:"=%
-set JAVA_EXE=%JAVA_HOME%/bin/java.exe
-
-if exist "%JAVA_EXE%" goto execute
-
-echo.
-echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
-echo.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation.
-
-goto fail
-
-:execute
-@rem Setup the command line
-
-set CLASSPATH=%APP_HOME%\lib\gradle-launcher-8.2.jar
-
-
-@rem Execute Gradle
-"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.launcher.GradleMain %*
-
-:end
-@rem End local scope for the variables with windows NT shell
-if %ERRORLEVEL% equ 0 goto mainEnd
-
-:fail
-rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
-rem the _cmd.exe /c_ return code!
-set EXIT_CODE=%ERRORLEVEL%
-if %EXIT_CODE% equ 0 set EXIT_CODE=1
-if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
-exit /b %EXIT_CODE%
-
-:mainEnd
-if "%OS%"=="Windows_NT" endlocal
-
-:omega
diff --git a/gradle-local/init.d/readme.txt b/gradle-local/init.d/readme.txt
deleted file mode 100644
index d8e210f..0000000
--- a/gradle-local/init.d/readme.txt
+++ /dev/null
@@ -1 +0,0 @@
-You can add .gradle (e.g. test.gradle) init scripts to this directory. Each one is executed at the start of the build.
diff --git a/gradle-local/lib/HikariCP-4.0.3.jar b/gradle-local/lib/HikariCP-4.0.3.jar
deleted file mode 100644
index f328920..0000000
Binary files a/gradle-local/lib/HikariCP-4.0.3.jar and /dev/null differ
diff --git a/gradle-local/lib/agents/gradle-instrumentation-agent-8.2.jar b/gradle-local/lib/agents/gradle-instrumentation-agent-8.2.jar
deleted file mode 100644
index fd4c4f5..0000000
Binary files a/gradle-local/lib/agents/gradle-instrumentation-agent-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/annotations-24.0.0.jar b/gradle-local/lib/annotations-24.0.0.jar
deleted file mode 100644
index 6badf11..0000000
Binary files a/gradle-local/lib/annotations-24.0.0.jar and /dev/null differ
diff --git a/gradle-local/lib/ant-1.10.13.jar b/gradle-local/lib/ant-1.10.13.jar
deleted file mode 100644
index 6dad9ad..0000000
Binary files a/gradle-local/lib/ant-1.10.13.jar and /dev/null differ
diff --git a/gradle-local/lib/ant-antlr-1.10.12.jar b/gradle-local/lib/ant-antlr-1.10.12.jar
deleted file mode 100644
index 909f37e..0000000
Binary files a/gradle-local/lib/ant-antlr-1.10.12.jar and /dev/null differ
diff --git a/gradle-local/lib/ant-junit-1.10.12.jar b/gradle-local/lib/ant-junit-1.10.12.jar
deleted file mode 100644
index d6cae3e..0000000
Binary files a/gradle-local/lib/ant-junit-1.10.12.jar and /dev/null differ
diff --git a/gradle-local/lib/ant-launcher-1.10.13.jar b/gradle-local/lib/ant-launcher-1.10.13.jar
deleted file mode 100644
index 8718a72..0000000
Binary files a/gradle-local/lib/ant-launcher-1.10.13.jar and /dev/null differ
diff --git a/gradle-local/lib/antlr4-runtime-4.7.2.jar b/gradle-local/lib/antlr4-runtime-4.7.2.jar
deleted file mode 100644
index 7a27e1b..0000000
Binary files a/gradle-local/lib/antlr4-runtime-4.7.2.jar and /dev/null differ
diff --git a/gradle-local/lib/asm-9.4.jar b/gradle-local/lib/asm-9.4.jar
deleted file mode 100644
index 01cb52e..0000000
Binary files a/gradle-local/lib/asm-9.4.jar and /dev/null differ
diff --git a/gradle-local/lib/asm-commons-9.4.jar b/gradle-local/lib/asm-commons-9.4.jar
deleted file mode 100644
index 593621a..0000000
Binary files a/gradle-local/lib/asm-commons-9.4.jar and /dev/null differ
diff --git a/gradle-local/lib/asm-tree-9.4.jar b/gradle-local/lib/asm-tree-9.4.jar
deleted file mode 100644
index c560305..0000000
Binary files a/gradle-local/lib/asm-tree-9.4.jar and /dev/null differ
diff --git a/gradle-local/lib/commons-compress-1.21.jar b/gradle-local/lib/commons-compress-1.21.jar
deleted file mode 100644
index 4892334..0000000
Binary files a/gradle-local/lib/commons-compress-1.21.jar and /dev/null differ
diff --git a/gradle-local/lib/commons-io-2.11.0.jar b/gradle-local/lib/commons-io-2.11.0.jar
deleted file mode 100644
index be507d9..0000000
Binary files a/gradle-local/lib/commons-io-2.11.0.jar and /dev/null differ
diff --git a/gradle-local/lib/commons-lang-2.6.jar b/gradle-local/lib/commons-lang-2.6.jar
deleted file mode 100644
index 98467d3..0000000
Binary files a/gradle-local/lib/commons-lang-2.6.jar and /dev/null differ
diff --git a/gradle-local/lib/failureaccess-1.0.1.jar b/gradle-local/lib/failureaccess-1.0.1.jar
deleted file mode 100644
index 9b56dc7..0000000
Binary files a/gradle-local/lib/failureaccess-1.0.1.jar and /dev/null differ
diff --git a/gradle-local/lib/fastutil-8.5.2-min.jar b/gradle-local/lib/fastutil-8.5.2-min.jar
deleted file mode 100644
index 3acea1c..0000000
Binary files a/gradle-local/lib/fastutil-8.5.2-min.jar and /dev/null differ
diff --git a/gradle-local/lib/file-events-0.22-milestone-24.jar b/gradle-local/lib/file-events-0.22-milestone-24.jar
deleted file mode 100644
index 9ba31fe..0000000
Binary files a/gradle-local/lib/file-events-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/file-events-linux-aarch64-0.22-milestone-24.jar b/gradle-local/lib/file-events-linux-aarch64-0.22-milestone-24.jar
deleted file mode 100644
index a9c5f4a..0000000
Binary files a/gradle-local/lib/file-events-linux-aarch64-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/file-events-linux-amd64-0.22-milestone-24.jar b/gradle-local/lib/file-events-linux-amd64-0.22-milestone-24.jar
deleted file mode 100644
index dd01fa3..0000000
Binary files a/gradle-local/lib/file-events-linux-amd64-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/file-events-osx-aarch64-0.22-milestone-24.jar b/gradle-local/lib/file-events-osx-aarch64-0.22-milestone-24.jar
deleted file mode 100644
index a6f5fa1..0000000
Binary files a/gradle-local/lib/file-events-osx-aarch64-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/file-events-osx-amd64-0.22-milestone-24.jar b/gradle-local/lib/file-events-osx-amd64-0.22-milestone-24.jar
deleted file mode 100644
index 7720a40..0000000
Binary files a/gradle-local/lib/file-events-osx-amd64-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/file-events-windows-amd64-0.22-milestone-24.jar b/gradle-local/lib/file-events-windows-amd64-0.22-milestone-24.jar
deleted file mode 100644
index 79a1ae2..0000000
Binary files a/gradle-local/lib/file-events-windows-amd64-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/file-events-windows-amd64-min-0.22-milestone-24.jar b/gradle-local/lib/file-events-windows-amd64-min-0.22-milestone-24.jar
deleted file mode 100644
index 88d1a9b..0000000
Binary files a/gradle-local/lib/file-events-windows-amd64-min-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/file-events-windows-i386-0.22-milestone-24.jar b/gradle-local/lib/file-events-windows-i386-0.22-milestone-24.jar
deleted file mode 100644
index 5e98b6a..0000000
Binary files a/gradle-local/lib/file-events-windows-i386-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/file-events-windows-i386-min-0.22-milestone-24.jar b/gradle-local/lib/file-events-windows-i386-min-0.22-milestone-24.jar
deleted file mode 100644
index 631ac28..0000000
Binary files a/gradle-local/lib/file-events-windows-i386-min-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-api-metadata-8.2.jar b/gradle-local/lib/gradle-api-metadata-8.2.jar
deleted file mode 100644
index e3cb3ed..0000000
Binary files a/gradle-local/lib/gradle-api-metadata-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-base-annotations-8.2.jar b/gradle-local/lib/gradle-base-annotations-8.2.jar
deleted file mode 100644
index 406670c..0000000
Binary files a/gradle-local/lib/gradle-base-annotations-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-base-services-8.2.jar b/gradle-local/lib/gradle-base-services-8.2.jar
deleted file mode 100644
index 228550b..0000000
Binary files a/gradle-local/lib/gradle-base-services-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-base-services-groovy-8.2.jar b/gradle-local/lib/gradle-base-services-groovy-8.2.jar
deleted file mode 100644
index 241969f..0000000
Binary files a/gradle-local/lib/gradle-base-services-groovy-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-bootstrap-8.2.jar b/gradle-local/lib/gradle-bootstrap-8.2.jar
deleted file mode 100644
index 527dca7..0000000
Binary files a/gradle-local/lib/gradle-bootstrap-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-build-cache-8.2.jar b/gradle-local/lib/gradle-build-cache-8.2.jar
deleted file mode 100644
index c5ccd97..0000000
Binary files a/gradle-local/lib/gradle-build-cache-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-build-cache-base-8.2.jar b/gradle-local/lib/gradle-build-cache-base-8.2.jar
deleted file mode 100644
index 018a2ed..0000000
Binary files a/gradle-local/lib/gradle-build-cache-base-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-build-cache-packaging-8.2.jar b/gradle-local/lib/gradle-build-cache-packaging-8.2.jar
deleted file mode 100644
index a2812d0..0000000
Binary files a/gradle-local/lib/gradle-build-cache-packaging-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-build-events-8.2.jar b/gradle-local/lib/gradle-build-events-8.2.jar
deleted file mode 100644
index 1c8f71e..0000000
Binary files a/gradle-local/lib/gradle-build-events-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-build-operations-8.2.jar b/gradle-local/lib/gradle-build-operations-8.2.jar
deleted file mode 100644
index a586ae7..0000000
Binary files a/gradle-local/lib/gradle-build-operations-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-build-option-8.2.jar b/gradle-local/lib/gradle-build-option-8.2.jar
deleted file mode 100644
index fb2f49a..0000000
Binary files a/gradle-local/lib/gradle-build-option-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-cli-8.2.jar b/gradle-local/lib/gradle-cli-8.2.jar
deleted file mode 100644
index fd30f13..0000000
Binary files a/gradle-local/lib/gradle-cli-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-core-8.2.jar b/gradle-local/lib/gradle-core-8.2.jar
deleted file mode 100644
index 7409522..0000000
Binary files a/gradle-local/lib/gradle-core-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-core-api-8.2.jar b/gradle-local/lib/gradle-core-api-8.2.jar
deleted file mode 100644
index 08ee57a..0000000
Binary files a/gradle-local/lib/gradle-core-api-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-enterprise-logging-8.2.jar b/gradle-local/lib/gradle-enterprise-logging-8.2.jar
deleted file mode 100644
index 8cfb7ed..0000000
Binary files a/gradle-local/lib/gradle-enterprise-logging-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-enterprise-operations-8.2.jar b/gradle-local/lib/gradle-enterprise-operations-8.2.jar
deleted file mode 100644
index 6a7e858..0000000
Binary files a/gradle-local/lib/gradle-enterprise-operations-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-enterprise-workers-8.2.jar b/gradle-local/lib/gradle-enterprise-workers-8.2.jar
deleted file mode 100644
index 9a9767c..0000000
Binary files a/gradle-local/lib/gradle-enterprise-workers-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-execution-8.2.jar b/gradle-local/lib/gradle-execution-8.2.jar
deleted file mode 100644
index 11ce9ce..0000000
Binary files a/gradle-local/lib/gradle-execution-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-file-collections-8.2.jar b/gradle-local/lib/gradle-file-collections-8.2.jar
deleted file mode 100644
index a6974e5..0000000
Binary files a/gradle-local/lib/gradle-file-collections-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-file-temp-8.2.jar b/gradle-local/lib/gradle-file-temp-8.2.jar
deleted file mode 100644
index 3029f64..0000000
Binary files a/gradle-local/lib/gradle-file-temp-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-file-watching-8.2.jar b/gradle-local/lib/gradle-file-watching-8.2.jar
deleted file mode 100644
index 2114d24..0000000
Binary files a/gradle-local/lib/gradle-file-watching-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-files-8.2.jar b/gradle-local/lib/gradle-files-8.2.jar
deleted file mode 100644
index 69f0d88..0000000
Binary files a/gradle-local/lib/gradle-files-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-functional-8.2.jar b/gradle-local/lib/gradle-functional-8.2.jar
deleted file mode 100644
index 74ef33e..0000000
Binary files a/gradle-local/lib/gradle-functional-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-hashing-8.2.jar b/gradle-local/lib/gradle-hashing-8.2.jar
deleted file mode 100644
index 40a4ef7..0000000
Binary files a/gradle-local/lib/gradle-hashing-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-installation-beacon-8.2.jar b/gradle-local/lib/gradle-installation-beacon-8.2.jar
deleted file mode 100644
index 259bf3c..0000000
Binary files a/gradle-local/lib/gradle-installation-beacon-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-internal-instrumentation-api-8.2.jar b/gradle-local/lib/gradle-internal-instrumentation-api-8.2.jar
deleted file mode 100644
index df7c8d1..0000000
Binary files a/gradle-local/lib/gradle-internal-instrumentation-api-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-jvm-services-8.2.jar b/gradle-local/lib/gradle-jvm-services-8.2.jar
deleted file mode 100644
index 7e319a8..0000000
Binary files a/gradle-local/lib/gradle-jvm-services-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-kotlin-dsl-8.2.jar b/gradle-local/lib/gradle-kotlin-dsl-8.2.jar
deleted file mode 100644
index 9e085f1..0000000
Binary files a/gradle-local/lib/gradle-kotlin-dsl-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-kotlin-dsl-tooling-models-8.2.jar b/gradle-local/lib/gradle-kotlin-dsl-tooling-models-8.2.jar
deleted file mode 100644
index 1e324ff..0000000
Binary files a/gradle-local/lib/gradle-kotlin-dsl-tooling-models-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-launcher-8.2.jar b/gradle-local/lib/gradle-launcher-8.2.jar
deleted file mode 100644
index ba9e2ca..0000000
Binary files a/gradle-local/lib/gradle-launcher-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-logging-8.2.jar b/gradle-local/lib/gradle-logging-8.2.jar
deleted file mode 100644
index adaf938..0000000
Binary files a/gradle-local/lib/gradle-logging-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-logging-api-8.2.jar b/gradle-local/lib/gradle-logging-api-8.2.jar
deleted file mode 100644
index d3c60a3..0000000
Binary files a/gradle-local/lib/gradle-logging-api-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-messaging-8.2.jar b/gradle-local/lib/gradle-messaging-8.2.jar
deleted file mode 100644
index 91db6c0..0000000
Binary files a/gradle-local/lib/gradle-messaging-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-model-core-8.2.jar b/gradle-local/lib/gradle-model-core-8.2.jar
deleted file mode 100644
index e5bc54d..0000000
Binary files a/gradle-local/lib/gradle-model-core-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-model-groovy-8.2.jar b/gradle-local/lib/gradle-model-groovy-8.2.jar
deleted file mode 100644
index 769359d..0000000
Binary files a/gradle-local/lib/gradle-model-groovy-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-native-8.2.jar b/gradle-local/lib/gradle-native-8.2.jar
deleted file mode 100644
index e7fa682..0000000
Binary files a/gradle-local/lib/gradle-native-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-normalization-java-8.2.jar b/gradle-local/lib/gradle-normalization-java-8.2.jar
deleted file mode 100644
index 686a759..0000000
Binary files a/gradle-local/lib/gradle-normalization-java-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-persistent-cache-8.2.jar b/gradle-local/lib/gradle-persistent-cache-8.2.jar
deleted file mode 100644
index 56312bf..0000000
Binary files a/gradle-local/lib/gradle-persistent-cache-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-problems-8.2.jar b/gradle-local/lib/gradle-problems-8.2.jar
deleted file mode 100644
index 2e4be18..0000000
Binary files a/gradle-local/lib/gradle-problems-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-process-services-8.2.jar b/gradle-local/lib/gradle-process-services-8.2.jar
deleted file mode 100644
index ab2875b..0000000
Binary files a/gradle-local/lib/gradle-process-services-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-resources-8.2.jar b/gradle-local/lib/gradle-resources-8.2.jar
deleted file mode 100644
index 128b139..0000000
Binary files a/gradle-local/lib/gradle-resources-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-runtime-api-info-8.2.jar b/gradle-local/lib/gradle-runtime-api-info-8.2.jar
deleted file mode 100644
index 85d8e72..0000000
Binary files a/gradle-local/lib/gradle-runtime-api-info-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-snapshots-8.2.jar b/gradle-local/lib/gradle-snapshots-8.2.jar
deleted file mode 100644
index 42d53f8..0000000
Binary files a/gradle-local/lib/gradle-snapshots-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-tooling-api-8.2.jar b/gradle-local/lib/gradle-tooling-api-8.2.jar
deleted file mode 100644
index 53bcdf6..0000000
Binary files a/gradle-local/lib/gradle-tooling-api-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-worker-processes-8.2.jar b/gradle-local/lib/gradle-worker-processes-8.2.jar
deleted file mode 100644
index 7f9e81a..0000000
Binary files a/gradle-local/lib/gradle-worker-processes-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-worker-services-8.2.jar b/gradle-local/lib/gradle-worker-services-8.2.jar
deleted file mode 100644
index e3b1f19..0000000
Binary files a/gradle-local/lib/gradle-worker-services-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/gradle-wrapper-shared-8.2.jar b/gradle-local/lib/gradle-wrapper-shared-8.2.jar
deleted file mode 100644
index 466879e..0000000
Binary files a/gradle-local/lib/gradle-wrapper-shared-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/groovy-3.0.17.jar b/gradle-local/lib/groovy-3.0.17.jar
deleted file mode 100644
index 13f0946..0000000
Binary files a/gradle-local/lib/groovy-3.0.17.jar and /dev/null differ
diff --git a/gradle-local/lib/groovy-ant-3.0.17.jar b/gradle-local/lib/groovy-ant-3.0.17.jar
deleted file mode 100644
index 57e1aad..0000000
Binary files a/gradle-local/lib/groovy-ant-3.0.17.jar and /dev/null differ
diff --git a/gradle-local/lib/groovy-astbuilder-3.0.17.jar b/gradle-local/lib/groovy-astbuilder-3.0.17.jar
deleted file mode 100644
index a2f9e93..0000000
Binary files a/gradle-local/lib/groovy-astbuilder-3.0.17.jar and /dev/null differ
diff --git a/gradle-local/lib/groovy-console-3.0.17.jar b/gradle-local/lib/groovy-console-3.0.17.jar
deleted file mode 100644
index 2e8d700..0000000
Binary files a/gradle-local/lib/groovy-console-3.0.17.jar and /dev/null differ
diff --git a/gradle-local/lib/groovy-datetime-3.0.17.jar b/gradle-local/lib/groovy-datetime-3.0.17.jar
deleted file mode 100644
index 16c0b01..0000000
Binary files a/gradle-local/lib/groovy-datetime-3.0.17.jar and /dev/null differ
diff --git a/gradle-local/lib/groovy-dateutil-3.0.17.jar b/gradle-local/lib/groovy-dateutil-3.0.17.jar
deleted file mode 100644
index 5ef253a..0000000
Binary files a/gradle-local/lib/groovy-dateutil-3.0.17.jar and /dev/null differ
diff --git a/gradle-local/lib/groovy-docgenerator-3.0.17.jar b/gradle-local/lib/groovy-docgenerator-3.0.17.jar
deleted file mode 100644
index 93c1bf9..0000000
Binary files a/gradle-local/lib/groovy-docgenerator-3.0.17.jar and /dev/null differ
diff --git a/gradle-local/lib/groovy-groovydoc-3.0.17.jar b/gradle-local/lib/groovy-groovydoc-3.0.17.jar
deleted file mode 100644
index 8f0ae55..0000000
Binary files a/gradle-local/lib/groovy-groovydoc-3.0.17.jar and /dev/null differ
diff --git a/gradle-local/lib/groovy-json-3.0.17.jar b/gradle-local/lib/groovy-json-3.0.17.jar
deleted file mode 100644
index 68940e8..0000000
Binary files a/gradle-local/lib/groovy-json-3.0.17.jar and /dev/null differ
diff --git a/gradle-local/lib/groovy-nio-3.0.17.jar b/gradle-local/lib/groovy-nio-3.0.17.jar
deleted file mode 100644
index e20fea8..0000000
Binary files a/gradle-local/lib/groovy-nio-3.0.17.jar and /dev/null differ
diff --git a/gradle-local/lib/groovy-sql-3.0.17.jar b/gradle-local/lib/groovy-sql-3.0.17.jar
deleted file mode 100644
index 2f02df2..0000000
Binary files a/gradle-local/lib/groovy-sql-3.0.17.jar and /dev/null differ
diff --git a/gradle-local/lib/groovy-swing-3.0.17.jar b/gradle-local/lib/groovy-swing-3.0.17.jar
deleted file mode 100644
index 7295bd9..0000000
Binary files a/gradle-local/lib/groovy-swing-3.0.17.jar and /dev/null differ
diff --git a/gradle-local/lib/groovy-templates-3.0.17.jar b/gradle-local/lib/groovy-templates-3.0.17.jar
deleted file mode 100644
index 98afe44..0000000
Binary files a/gradle-local/lib/groovy-templates-3.0.17.jar and /dev/null differ
diff --git a/gradle-local/lib/groovy-test-3.0.17.jar b/gradle-local/lib/groovy-test-3.0.17.jar
deleted file mode 100644
index 8bb8d0c..0000000
Binary files a/gradle-local/lib/groovy-test-3.0.17.jar and /dev/null differ
diff --git a/gradle-local/lib/groovy-xml-3.0.17.jar b/gradle-local/lib/groovy-xml-3.0.17.jar
deleted file mode 100644
index 62ad5e3..0000000
Binary files a/gradle-local/lib/groovy-xml-3.0.17.jar and /dev/null differ
diff --git a/gradle-local/lib/gson-2.8.9.jar b/gradle-local/lib/gson-2.8.9.jar
deleted file mode 100644
index 3351867..0000000
Binary files a/gradle-local/lib/gson-2.8.9.jar and /dev/null differ
diff --git a/gradle-local/lib/guava-31.1-jre.jar b/gradle-local/lib/guava-31.1-jre.jar
deleted file mode 100644
index 1681922..0000000
Binary files a/gradle-local/lib/guava-31.1-jre.jar and /dev/null differ
diff --git a/gradle-local/lib/h2-2.1.214.jar b/gradle-local/lib/h2-2.1.214.jar
deleted file mode 100644
index e8e3efc..0000000
Binary files a/gradle-local/lib/h2-2.1.214.jar and /dev/null differ
diff --git a/gradle-local/lib/hamcrest-core-1.3.jar b/gradle-local/lib/hamcrest-core-1.3.jar
deleted file mode 100644
index 9d5fe16..0000000
Binary files a/gradle-local/lib/hamcrest-core-1.3.jar and /dev/null differ
diff --git a/gradle-local/lib/jansi-1.18.jar b/gradle-local/lib/jansi-1.18.jar
deleted file mode 100644
index a7be6db..0000000
Binary files a/gradle-local/lib/jansi-1.18.jar and /dev/null differ
diff --git a/gradle-local/lib/javaparser-core-3.17.0.jar b/gradle-local/lib/javaparser-core-3.17.0.jar
deleted file mode 100644
index 8d65838..0000000
Binary files a/gradle-local/lib/javaparser-core-3.17.0.jar and /dev/null differ
diff --git a/gradle-local/lib/javax.inject-1.jar b/gradle-local/lib/javax.inject-1.jar
deleted file mode 100644
index b2a9d0b..0000000
Binary files a/gradle-local/lib/javax.inject-1.jar and /dev/null differ
diff --git a/gradle-local/lib/jcl-over-slf4j-1.7.30.jar b/gradle-local/lib/jcl-over-slf4j-1.7.30.jar
deleted file mode 100644
index 44e9f63..0000000
Binary files a/gradle-local/lib/jcl-over-slf4j-1.7.30.jar and /dev/null differ
diff --git a/gradle-local/lib/jna-5.10.0.jar b/gradle-local/lib/jna-5.10.0.jar
deleted file mode 100644
index e73c2c2..0000000
Binary files a/gradle-local/lib/jna-5.10.0.jar and /dev/null differ
diff --git a/gradle-local/lib/jsr305-3.0.2.jar b/gradle-local/lib/jsr305-3.0.2.jar
deleted file mode 100644
index 59222d9..0000000
Binary files a/gradle-local/lib/jsr305-3.0.2.jar and /dev/null differ
diff --git a/gradle-local/lib/jul-to-slf4j-1.7.30.jar b/gradle-local/lib/jul-to-slf4j-1.7.30.jar
deleted file mode 100644
index 7dea58b..0000000
Binary files a/gradle-local/lib/jul-to-slf4j-1.7.30.jar and /dev/null differ
diff --git a/gradle-local/lib/junit-4.13.2.jar b/gradle-local/lib/junit-4.13.2.jar
deleted file mode 100644
index 6da55d8..0000000
Binary files a/gradle-local/lib/junit-4.13.2.jar and /dev/null differ
diff --git a/gradle-local/lib/kotlin-assignment-compiler-plugin-embeddable-1.8.20.jar b/gradle-local/lib/kotlin-assignment-compiler-plugin-embeddable-1.8.20.jar
deleted file mode 100644
index faedf2b..0000000
Binary files a/gradle-local/lib/kotlin-assignment-compiler-plugin-embeddable-1.8.20.jar and /dev/null differ
diff --git a/gradle-local/lib/kotlin-compiler-embeddable-1.8.20.jar b/gradle-local/lib/kotlin-compiler-embeddable-1.8.20.jar
deleted file mode 100644
index 145da62..0000000
Binary files a/gradle-local/lib/kotlin-compiler-embeddable-1.8.20.jar and /dev/null differ
diff --git a/gradle-local/lib/kotlin-daemon-embeddable-1.8.20.jar b/gradle-local/lib/kotlin-daemon-embeddable-1.8.20.jar
deleted file mode 100644
index 7d2003c..0000000
Binary files a/gradle-local/lib/kotlin-daemon-embeddable-1.8.20.jar and /dev/null differ
diff --git a/gradle-local/lib/kotlin-reflect-1.8.20.jar b/gradle-local/lib/kotlin-reflect-1.8.20.jar
deleted file mode 100644
index 3390d15..0000000
Binary files a/gradle-local/lib/kotlin-reflect-1.8.20.jar and /dev/null differ
diff --git a/gradle-local/lib/kotlin-sam-with-receiver-compiler-plugin-1.8.20.jar b/gradle-local/lib/kotlin-sam-with-receiver-compiler-plugin-1.8.20.jar
deleted file mode 100644
index bc16b89..0000000
Binary files a/gradle-local/lib/kotlin-sam-with-receiver-compiler-plugin-1.8.20.jar and /dev/null differ
diff --git a/gradle-local/lib/kotlin-script-runtime-1.8.20.jar b/gradle-local/lib/kotlin-script-runtime-1.8.20.jar
deleted file mode 100644
index 9ac1c0c..0000000
Binary files a/gradle-local/lib/kotlin-script-runtime-1.8.20.jar and /dev/null differ
diff --git a/gradle-local/lib/kotlin-scripting-common-1.8.20.jar b/gradle-local/lib/kotlin-scripting-common-1.8.20.jar
deleted file mode 100644
index 1a52e7d..0000000
Binary files a/gradle-local/lib/kotlin-scripting-common-1.8.20.jar and /dev/null differ
diff --git a/gradle-local/lib/kotlin-scripting-compiler-embeddable-1.8.20.jar b/gradle-local/lib/kotlin-scripting-compiler-embeddable-1.8.20.jar
deleted file mode 100644
index 757b8b7..0000000
Binary files a/gradle-local/lib/kotlin-scripting-compiler-embeddable-1.8.20.jar and /dev/null differ
diff --git a/gradle-local/lib/kotlin-scripting-compiler-impl-embeddable-1.8.20.jar b/gradle-local/lib/kotlin-scripting-compiler-impl-embeddable-1.8.20.jar
deleted file mode 100644
index 5e85111..0000000
Binary files a/gradle-local/lib/kotlin-scripting-compiler-impl-embeddable-1.8.20.jar and /dev/null differ
diff --git a/gradle-local/lib/kotlin-scripting-jvm-1.8.20.jar b/gradle-local/lib/kotlin-scripting-jvm-1.8.20.jar
deleted file mode 100644
index 6eb7ff4..0000000
Binary files a/gradle-local/lib/kotlin-scripting-jvm-1.8.20.jar and /dev/null differ
diff --git a/gradle-local/lib/kotlin-scripting-jvm-host-1.8.20.jar b/gradle-local/lib/kotlin-scripting-jvm-host-1.8.20.jar
deleted file mode 100644
index 3315dae..0000000
Binary files a/gradle-local/lib/kotlin-scripting-jvm-host-1.8.20.jar and /dev/null differ
diff --git a/gradle-local/lib/kotlin-stdlib-1.8.20.jar b/gradle-local/lib/kotlin-stdlib-1.8.20.jar
deleted file mode 100644
index 4e019f2..0000000
Binary files a/gradle-local/lib/kotlin-stdlib-1.8.20.jar and /dev/null differ
diff --git a/gradle-local/lib/kotlin-stdlib-common-1.8.20.jar b/gradle-local/lib/kotlin-stdlib-common-1.8.20.jar
deleted file mode 100644
index 15cd1e7..0000000
Binary files a/gradle-local/lib/kotlin-stdlib-common-1.8.20.jar and /dev/null differ
diff --git a/gradle-local/lib/kotlin-stdlib-jdk7-1.8.20.jar b/gradle-local/lib/kotlin-stdlib-jdk7-1.8.20.jar
deleted file mode 100644
index a671f24..0000000
Binary files a/gradle-local/lib/kotlin-stdlib-jdk7-1.8.20.jar and /dev/null differ
diff --git a/gradle-local/lib/kotlin-stdlib-jdk8-1.8.20.jar b/gradle-local/lib/kotlin-stdlib-jdk8-1.8.20.jar
deleted file mode 100644
index 073879c..0000000
Binary files a/gradle-local/lib/kotlin-stdlib-jdk8-1.8.20.jar and /dev/null differ
diff --git a/gradle-local/lib/kotlinx-metadata-jvm-0.5.0.jar b/gradle-local/lib/kotlinx-metadata-jvm-0.5.0.jar
deleted file mode 100644
index e6c983e..0000000
Binary files a/gradle-local/lib/kotlinx-metadata-jvm-0.5.0.jar and /dev/null differ
diff --git a/gradle-local/lib/kryo-2.24.0.jar b/gradle-local/lib/kryo-2.24.0.jar
deleted file mode 100644
index 4d18180..0000000
Binary files a/gradle-local/lib/kryo-2.24.0.jar and /dev/null differ
diff --git a/gradle-local/lib/log4j-over-slf4j-1.7.30.jar b/gradle-local/lib/log4j-over-slf4j-1.7.30.jar
deleted file mode 100644
index d94b90e..0000000
Binary files a/gradle-local/lib/log4j-over-slf4j-1.7.30.jar and /dev/null differ
diff --git a/gradle-local/lib/minlog-1.2.jar b/gradle-local/lib/minlog-1.2.jar
deleted file mode 100644
index 3d174a6..0000000
Binary files a/gradle-local/lib/minlog-1.2.jar and /dev/null differ
diff --git a/gradle-local/lib/native-platform-0.22-milestone-24.jar b/gradle-local/lib/native-platform-0.22-milestone-24.jar
deleted file mode 100644
index 9068be9..0000000
Binary files a/gradle-local/lib/native-platform-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/native-platform-freebsd-amd64-libcpp-0.22-milestone-24.jar b/gradle-local/lib/native-platform-freebsd-amd64-libcpp-0.22-milestone-24.jar
deleted file mode 100644
index fcdb310..0000000
Binary files a/gradle-local/lib/native-platform-freebsd-amd64-libcpp-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/native-platform-linux-aarch64-0.22-milestone-24.jar b/gradle-local/lib/native-platform-linux-aarch64-0.22-milestone-24.jar
deleted file mode 100644
index 7caef80..0000000
Binary files a/gradle-local/lib/native-platform-linux-aarch64-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/native-platform-linux-aarch64-ncurses5-0.22-milestone-24.jar b/gradle-local/lib/native-platform-linux-aarch64-ncurses5-0.22-milestone-24.jar
deleted file mode 100644
index 8f128be..0000000
Binary files a/gradle-local/lib/native-platform-linux-aarch64-ncurses5-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/native-platform-linux-aarch64-ncurses6-0.22-milestone-24.jar b/gradle-local/lib/native-platform-linux-aarch64-ncurses6-0.22-milestone-24.jar
deleted file mode 100644
index 98673e4..0000000
Binary files a/gradle-local/lib/native-platform-linux-aarch64-ncurses6-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/native-platform-linux-amd64-0.22-milestone-24.jar b/gradle-local/lib/native-platform-linux-amd64-0.22-milestone-24.jar
deleted file mode 100644
index 9f078b0..0000000
Binary files a/gradle-local/lib/native-platform-linux-amd64-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/native-platform-linux-amd64-ncurses5-0.22-milestone-24.jar b/gradle-local/lib/native-platform-linux-amd64-ncurses5-0.22-milestone-24.jar
deleted file mode 100644
index 0a9cfbd..0000000
Binary files a/gradle-local/lib/native-platform-linux-amd64-ncurses5-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/native-platform-linux-amd64-ncurses6-0.22-milestone-24.jar b/gradle-local/lib/native-platform-linux-amd64-ncurses6-0.22-milestone-24.jar
deleted file mode 100644
index 57e1fb4..0000000
Binary files a/gradle-local/lib/native-platform-linux-amd64-ncurses6-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/native-platform-osx-aarch64-0.22-milestone-24.jar b/gradle-local/lib/native-platform-osx-aarch64-0.22-milestone-24.jar
deleted file mode 100644
index 3fe7180..0000000
Binary files a/gradle-local/lib/native-platform-osx-aarch64-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/native-platform-osx-amd64-0.22-milestone-24.jar b/gradle-local/lib/native-platform-osx-amd64-0.22-milestone-24.jar
deleted file mode 100644
index a7ee520..0000000
Binary files a/gradle-local/lib/native-platform-osx-amd64-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/native-platform-windows-amd64-0.22-milestone-24.jar b/gradle-local/lib/native-platform-windows-amd64-0.22-milestone-24.jar
deleted file mode 100644
index 73f4f93..0000000
Binary files a/gradle-local/lib/native-platform-windows-amd64-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/native-platform-windows-amd64-min-0.22-milestone-24.jar b/gradle-local/lib/native-platform-windows-amd64-min-0.22-milestone-24.jar
deleted file mode 100644
index be3ff2c..0000000
Binary files a/gradle-local/lib/native-platform-windows-amd64-min-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/native-platform-windows-i386-0.22-milestone-24.jar b/gradle-local/lib/native-platform-windows-i386-0.22-milestone-24.jar
deleted file mode 100644
index 020bdf1..0000000
Binary files a/gradle-local/lib/native-platform-windows-i386-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/native-platform-windows-i386-min-0.22-milestone-24.jar b/gradle-local/lib/native-platform-windows-i386-min-0.22-milestone-24.jar
deleted file mode 100644
index 0beabb1..0000000
Binary files a/gradle-local/lib/native-platform-windows-i386-min-0.22-milestone-24.jar and /dev/null differ
diff --git a/gradle-local/lib/objenesis-2.6.jar b/gradle-local/lib/objenesis-2.6.jar
deleted file mode 100644
index b4b29d5..0000000
Binary files a/gradle-local/lib/objenesis-2.6.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/aws-java-sdk-core-1.12.365.jar b/gradle-local/lib/plugins/aws-java-sdk-core-1.12.365.jar
deleted file mode 100644
index 65d890b..0000000
Binary files a/gradle-local/lib/plugins/aws-java-sdk-core-1.12.365.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/aws-java-sdk-kms-1.12.365.jar b/gradle-local/lib/plugins/aws-java-sdk-kms-1.12.365.jar
deleted file mode 100644
index cc7c4e8..0000000
Binary files a/gradle-local/lib/plugins/aws-java-sdk-kms-1.12.365.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/aws-java-sdk-s3-1.12.365.jar b/gradle-local/lib/plugins/aws-java-sdk-s3-1.12.365.jar
deleted file mode 100644
index cd4a39a..0000000
Binary files a/gradle-local/lib/plugins/aws-java-sdk-s3-1.12.365.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/aws-java-sdk-sts-1.12.365.jar b/gradle-local/lib/plugins/aws-java-sdk-sts-1.12.365.jar
deleted file mode 100644
index 6e4bf0e..0000000
Binary files a/gradle-local/lib/plugins/aws-java-sdk-sts-1.12.365.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/bcpg-jdk15on-1.68.jar b/gradle-local/lib/plugins/bcpg-jdk15on-1.68.jar
deleted file mode 100644
index 340eefc..0000000
Binary files a/gradle-local/lib/plugins/bcpg-jdk15on-1.68.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/bcpkix-jdk15on-1.68.jar b/gradle-local/lib/plugins/bcpkix-jdk15on-1.68.jar
deleted file mode 100644
index 1b6385d..0000000
Binary files a/gradle-local/lib/plugins/bcpkix-jdk15on-1.68.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/bcprov-jdk15on-1.68.jar b/gradle-local/lib/plugins/bcprov-jdk15on-1.68.jar
deleted file mode 100644
index 84ae485..0000000
Binary files a/gradle-local/lib/plugins/bcprov-jdk15on-1.68.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/bsh-2.0b6.jar b/gradle-local/lib/plugins/bsh-2.0b6.jar
deleted file mode 100644
index 29d71a9..0000000
Binary files a/gradle-local/lib/plugins/bsh-2.0b6.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/capsule-0.6.3.jar b/gradle-local/lib/plugins/capsule-0.6.3.jar
deleted file mode 100644
index e4a88e8..0000000
Binary files a/gradle-local/lib/plugins/capsule-0.6.3.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/commons-codec-1.15.jar b/gradle-local/lib/plugins/commons-codec-1.15.jar
deleted file mode 100644
index f14985a..0000000
Binary files a/gradle-local/lib/plugins/commons-codec-1.15.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/dd-plist-1.21.jar b/gradle-local/lib/plugins/dd-plist-1.21.jar
deleted file mode 100644
index cdf1472..0000000
Binary files a/gradle-local/lib/plugins/dd-plist-1.21.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/google-api-client-1.34.0.jar b/gradle-local/lib/plugins/google-api-client-1.34.0.jar
deleted file mode 100644
index e1bd4ed..0000000
Binary files a/gradle-local/lib/plugins/google-api-client-1.34.0.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/google-api-services-storage-v1-rev20220705-1.32.1.jar b/gradle-local/lib/plugins/google-api-services-storage-v1-rev20220705-1.32.1.jar
deleted file mode 100644
index 91d26e4..0000000
Binary files a/gradle-local/lib/plugins/google-api-services-storage-v1-rev20220705-1.32.1.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/google-http-client-1.42.2.jar b/gradle-local/lib/plugins/google-http-client-1.42.2.jar
deleted file mode 100644
index e8a4497..0000000
Binary files a/gradle-local/lib/plugins/google-http-client-1.42.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/google-http-client-apache-v2-1.42.2.jar b/gradle-local/lib/plugins/google-http-client-apache-v2-1.42.2.jar
deleted file mode 100644
index edf37d0..0000000
Binary files a/gradle-local/lib/plugins/google-http-client-apache-v2-1.42.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/google-http-client-gson-1.42.2.jar b/gradle-local/lib/plugins/google-http-client-gson-1.42.2.jar
deleted file mode 100644
index 77d3af1..0000000
Binary files a/gradle-local/lib/plugins/google-http-client-gson-1.42.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/google-oauth-client-1.34.1.jar b/gradle-local/lib/plugins/google-oauth-client-1.34.1.jar
deleted file mode 100644
index 795f7e4..0000000
Binary files a/gradle-local/lib/plugins/google-oauth-client-1.34.1.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-antlr-8.2.jar b/gradle-local/lib/plugins/gradle-antlr-8.2.jar
deleted file mode 100644
index 409ec97..0000000
Binary files a/gradle-local/lib/plugins/gradle-antlr-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-build-cache-http-8.2.jar b/gradle-local/lib/plugins/gradle-build-cache-http-8.2.jar
deleted file mode 100644
index 26fc049..0000000
Binary files a/gradle-local/lib/plugins/gradle-build-cache-http-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-build-init-8.2.jar b/gradle-local/lib/plugins/gradle-build-init-8.2.jar
deleted file mode 100644
index f392f57..0000000
Binary files a/gradle-local/lib/plugins/gradle-build-init-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-build-profile-8.2.jar b/gradle-local/lib/plugins/gradle-build-profile-8.2.jar
deleted file mode 100644
index f94ad7f..0000000
Binary files a/gradle-local/lib/plugins/gradle-build-profile-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-code-quality-8.2.jar b/gradle-local/lib/plugins/gradle-code-quality-8.2.jar
deleted file mode 100644
index 40a8b95..0000000
Binary files a/gradle-local/lib/plugins/gradle-code-quality-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-composite-builds-8.2.jar b/gradle-local/lib/plugins/gradle-composite-builds-8.2.jar
deleted file mode 100644
index 431ba07..0000000
Binary files a/gradle-local/lib/plugins/gradle-composite-builds-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-configuration-cache-8.2.jar b/gradle-local/lib/plugins/gradle-configuration-cache-8.2.jar
deleted file mode 100644
index f466a02..0000000
Binary files a/gradle-local/lib/plugins/gradle-configuration-cache-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-dependency-management-8.2.jar b/gradle-local/lib/plugins/gradle-dependency-management-8.2.jar
deleted file mode 100644
index 57b063b..0000000
Binary files a/gradle-local/lib/plugins/gradle-dependency-management-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-diagnostics-8.2.jar b/gradle-local/lib/plugins/gradle-diagnostics-8.2.jar
deleted file mode 100644
index 6b247bd..0000000
Binary files a/gradle-local/lib/plugins/gradle-diagnostics-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-ear-8.2.jar b/gradle-local/lib/plugins/gradle-ear-8.2.jar
deleted file mode 100644
index 1a805f6..0000000
Binary files a/gradle-local/lib/plugins/gradle-ear-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-enterprise-8.2.jar b/gradle-local/lib/plugins/gradle-enterprise-8.2.jar
deleted file mode 100644
index c52f872..0000000
Binary files a/gradle-local/lib/plugins/gradle-enterprise-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-ide-8.2.jar b/gradle-local/lib/plugins/gradle-ide-8.2.jar
deleted file mode 100644
index 4b085a8..0000000
Binary files a/gradle-local/lib/plugins/gradle-ide-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-ide-native-8.2.jar b/gradle-local/lib/plugins/gradle-ide-native-8.2.jar
deleted file mode 100644
index b585563..0000000
Binary files a/gradle-local/lib/plugins/gradle-ide-native-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-ivy-8.2.jar b/gradle-local/lib/plugins/gradle-ivy-8.2.jar
deleted file mode 100644
index 826ab43..0000000
Binary files a/gradle-local/lib/plugins/gradle-ivy-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-jacoco-8.2.jar b/gradle-local/lib/plugins/gradle-jacoco-8.2.jar
deleted file mode 100644
index 28ff72f..0000000
Binary files a/gradle-local/lib/plugins/gradle-jacoco-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-java-compiler-plugin-8.2.jar b/gradle-local/lib/plugins/gradle-java-compiler-plugin-8.2.jar
deleted file mode 100644
index 1ecc642..0000000
Binary files a/gradle-local/lib/plugins/gradle-java-compiler-plugin-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-kotlin-dsl-provider-plugins-8.2.jar b/gradle-local/lib/plugins/gradle-kotlin-dsl-provider-plugins-8.2.jar
deleted file mode 100644
index 142c0c5..0000000
Binary files a/gradle-local/lib/plugins/gradle-kotlin-dsl-provider-plugins-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-kotlin-dsl-tooling-builders-8.2.jar b/gradle-local/lib/plugins/gradle-kotlin-dsl-tooling-builders-8.2.jar
deleted file mode 100644
index 4c0f9ea..0000000
Binary files a/gradle-local/lib/plugins/gradle-kotlin-dsl-tooling-builders-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-language-groovy-8.2.jar b/gradle-local/lib/plugins/gradle-language-groovy-8.2.jar
deleted file mode 100644
index ea04edf..0000000
Binary files a/gradle-local/lib/plugins/gradle-language-groovy-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-language-java-8.2.jar b/gradle-local/lib/plugins/gradle-language-java-8.2.jar
deleted file mode 100644
index 3fdda84..0000000
Binary files a/gradle-local/lib/plugins/gradle-language-java-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-language-jvm-8.2.jar b/gradle-local/lib/plugins/gradle-language-jvm-8.2.jar
deleted file mode 100644
index d577fc5..0000000
Binary files a/gradle-local/lib/plugins/gradle-language-jvm-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-language-native-8.2.jar b/gradle-local/lib/plugins/gradle-language-native-8.2.jar
deleted file mode 100644
index 0e47ee1..0000000
Binary files a/gradle-local/lib/plugins/gradle-language-native-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-maven-8.2.jar b/gradle-local/lib/plugins/gradle-maven-8.2.jar
deleted file mode 100644
index 1e239d1..0000000
Binary files a/gradle-local/lib/plugins/gradle-maven-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-platform-base-8.2.jar b/gradle-local/lib/plugins/gradle-platform-base-8.2.jar
deleted file mode 100644
index 31ae930..0000000
Binary files a/gradle-local/lib/plugins/gradle-platform-base-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-platform-jvm-8.2.jar b/gradle-local/lib/plugins/gradle-platform-jvm-8.2.jar
deleted file mode 100644
index a1d18e5..0000000
Binary files a/gradle-local/lib/plugins/gradle-platform-jvm-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-platform-native-8.2.jar b/gradle-local/lib/plugins/gradle-platform-native-8.2.jar
deleted file mode 100644
index 6c11e86..0000000
Binary files a/gradle-local/lib/plugins/gradle-platform-native-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-plugin-development-8.2.jar b/gradle-local/lib/plugins/gradle-plugin-development-8.2.jar
deleted file mode 100644
index 26b67a9..0000000
Binary files a/gradle-local/lib/plugins/gradle-plugin-development-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-plugin-use-8.2.jar b/gradle-local/lib/plugins/gradle-plugin-use-8.2.jar
deleted file mode 100644
index 10ebd82..0000000
Binary files a/gradle-local/lib/plugins/gradle-plugin-use-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-plugins-8.2.jar b/gradle-local/lib/plugins/gradle-plugins-8.2.jar
deleted file mode 100644
index f5e7022..0000000
Binary files a/gradle-local/lib/plugins/gradle-plugins-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-publish-8.2.jar b/gradle-local/lib/plugins/gradle-publish-8.2.jar
deleted file mode 100644
index d819896..0000000
Binary files a/gradle-local/lib/plugins/gradle-publish-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-reporting-8.2.jar b/gradle-local/lib/plugins/gradle-reporting-8.2.jar
deleted file mode 100644
index 1fd0497..0000000
Binary files a/gradle-local/lib/plugins/gradle-reporting-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-resources-gcs-8.2.jar b/gradle-local/lib/plugins/gradle-resources-gcs-8.2.jar
deleted file mode 100644
index 623f706..0000000
Binary files a/gradle-local/lib/plugins/gradle-resources-gcs-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-resources-http-8.2.jar b/gradle-local/lib/plugins/gradle-resources-http-8.2.jar
deleted file mode 100644
index 244966c..0000000
Binary files a/gradle-local/lib/plugins/gradle-resources-http-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-resources-s3-8.2.jar b/gradle-local/lib/plugins/gradle-resources-s3-8.2.jar
deleted file mode 100644
index c3c9e8b..0000000
Binary files a/gradle-local/lib/plugins/gradle-resources-s3-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-resources-sftp-8.2.jar b/gradle-local/lib/plugins/gradle-resources-sftp-8.2.jar
deleted file mode 100644
index aa29422..0000000
Binary files a/gradle-local/lib/plugins/gradle-resources-sftp-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-scala-8.2.jar b/gradle-local/lib/plugins/gradle-scala-8.2.jar
deleted file mode 100644
index f38d082..0000000
Binary files a/gradle-local/lib/plugins/gradle-scala-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-security-8.2.jar b/gradle-local/lib/plugins/gradle-security-8.2.jar
deleted file mode 100644
index 864ccc1..0000000
Binary files a/gradle-local/lib/plugins/gradle-security-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-signing-8.2.jar b/gradle-local/lib/plugins/gradle-signing-8.2.jar
deleted file mode 100644
index c4052c6..0000000
Binary files a/gradle-local/lib/plugins/gradle-signing-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-test-kit-8.2.jar b/gradle-local/lib/plugins/gradle-test-kit-8.2.jar
deleted file mode 100644
index 963135a..0000000
Binary files a/gradle-local/lib/plugins/gradle-test-kit-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-testing-base-8.2.jar b/gradle-local/lib/plugins/gradle-testing-base-8.2.jar
deleted file mode 100644
index 8d6a0ee..0000000
Binary files a/gradle-local/lib/plugins/gradle-testing-base-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-testing-junit-platform-8.2.jar b/gradle-local/lib/plugins/gradle-testing-junit-platform-8.2.jar
deleted file mode 100644
index e2427d4..0000000
Binary files a/gradle-local/lib/plugins/gradle-testing-junit-platform-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-testing-jvm-8.2.jar b/gradle-local/lib/plugins/gradle-testing-jvm-8.2.jar
deleted file mode 100644
index 2d598e1..0000000
Binary files a/gradle-local/lib/plugins/gradle-testing-jvm-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-testing-jvm-infrastructure-8.2.jar b/gradle-local/lib/plugins/gradle-testing-jvm-infrastructure-8.2.jar
deleted file mode 100644
index f340b1f..0000000
Binary files a/gradle-local/lib/plugins/gradle-testing-jvm-infrastructure-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-testing-native-8.2.jar b/gradle-local/lib/plugins/gradle-testing-native-8.2.jar
deleted file mode 100644
index 40427ac..0000000
Binary files a/gradle-local/lib/plugins/gradle-testing-native-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-tooling-api-builders-8.2.jar b/gradle-local/lib/plugins/gradle-tooling-api-builders-8.2.jar
deleted file mode 100644
index f59d19f..0000000
Binary files a/gradle-local/lib/plugins/gradle-tooling-api-builders-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-tooling-native-8.2.jar b/gradle-local/lib/plugins/gradle-tooling-native-8.2.jar
deleted file mode 100644
index bea9a3d..0000000
Binary files a/gradle-local/lib/plugins/gradle-tooling-native-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-version-control-8.2.jar b/gradle-local/lib/plugins/gradle-version-control-8.2.jar
deleted file mode 100644
index 4fa84ae..0000000
Binary files a/gradle-local/lib/plugins/gradle-version-control-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-workers-8.2.jar b/gradle-local/lib/plugins/gradle-workers-8.2.jar
deleted file mode 100644
index f2f8ff1..0000000
Binary files a/gradle-local/lib/plugins/gradle-workers-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/gradle-wrapper-8.2.jar b/gradle-local/lib/plugins/gradle-wrapper-8.2.jar
deleted file mode 100644
index 6cde97f..0000000
Binary files a/gradle-local/lib/plugins/gradle-wrapper-8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/grpc-context-1.27.2.jar b/gradle-local/lib/plugins/grpc-context-1.27.2.jar
deleted file mode 100644
index fd8615e..0000000
Binary files a/gradle-local/lib/plugins/grpc-context-1.27.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/httpclient-4.5.13.jar b/gradle-local/lib/plugins/httpclient-4.5.13.jar
deleted file mode 100644
index 218ee25..0000000
Binary files a/gradle-local/lib/plugins/httpclient-4.5.13.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/httpcore-4.4.14.jar b/gradle-local/lib/plugins/httpcore-4.4.14.jar
deleted file mode 100644
index 349db18..0000000
Binary files a/gradle-local/lib/plugins/httpcore-4.4.14.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/ion-java-1.0.2.jar b/gradle-local/lib/plugins/ion-java-1.0.2.jar
deleted file mode 100644
index 192a98e..0000000
Binary files a/gradle-local/lib/plugins/ion-java-1.0.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/ivy-2.3.0.jar b/gradle-local/lib/plugins/ivy-2.3.0.jar
deleted file mode 100644
index 543de46..0000000
Binary files a/gradle-local/lib/plugins/ivy-2.3.0.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/jackson-annotations-2.14.1.jar b/gradle-local/lib/plugins/jackson-annotations-2.14.1.jar
deleted file mode 100644
index e908bd3..0000000
Binary files a/gradle-local/lib/plugins/jackson-annotations-2.14.1.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/jackson-core-2.14.1.jar b/gradle-local/lib/plugins/jackson-core-2.14.1.jar
deleted file mode 100644
index cc02583..0000000
Binary files a/gradle-local/lib/plugins/jackson-core-2.14.1.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/jackson-databind-2.14.1.jar b/gradle-local/lib/plugins/jackson-databind-2.14.1.jar
deleted file mode 100644
index 1ac8096..0000000
Binary files a/gradle-local/lib/plugins/jackson-databind-2.14.1.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/jakarta.activation-2.0.0.jar b/gradle-local/lib/plugins/jakarta.activation-2.0.0.jar
deleted file mode 100644
index 973e486..0000000
Binary files a/gradle-local/lib/plugins/jakarta.activation-2.0.0.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/jakarta.xml.bind-api-3.0.0.jar b/gradle-local/lib/plugins/jakarta.xml.bind-api-3.0.0.jar
deleted file mode 100644
index 07a1662..0000000
Binary files a/gradle-local/lib/plugins/jakarta.xml.bind-api-3.0.0.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/jatl-0.2.3.jar b/gradle-local/lib/plugins/jatl-0.2.3.jar
deleted file mode 100644
index b1609a7..0000000
Binary files a/gradle-local/lib/plugins/jatl-0.2.3.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/jaxb-core-3.0.0.jar b/gradle-local/lib/plugins/jaxb-core-3.0.0.jar
deleted file mode 100644
index cad08ec..0000000
Binary files a/gradle-local/lib/plugins/jaxb-core-3.0.0.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/jaxb-impl-3.0.0.jar b/gradle-local/lib/plugins/jaxb-impl-3.0.0.jar
deleted file mode 100644
index a34baa7..0000000
Binary files a/gradle-local/lib/plugins/jaxb-impl-3.0.0.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/jcifs-1.3.17.jar b/gradle-local/lib/plugins/jcifs-1.3.17.jar
deleted file mode 100644
index 3f27e29..0000000
Binary files a/gradle-local/lib/plugins/jcifs-1.3.17.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/jcommander-1.78.jar b/gradle-local/lib/plugins/jcommander-1.78.jar
deleted file mode 100644
index 1d58673..0000000
Binary files a/gradle-local/lib/plugins/jcommander-1.78.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/jmespath-java-1.12.365.jar b/gradle-local/lib/plugins/jmespath-java-1.12.365.jar
deleted file mode 100644
index 879c286..0000000
Binary files a/gradle-local/lib/plugins/jmespath-java-1.12.365.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/joda-time-2.10.4.jar b/gradle-local/lib/plugins/joda-time-2.10.4.jar
deleted file mode 100644
index 62c7a53..0000000
Binary files a/gradle-local/lib/plugins/joda-time-2.10.4.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/jsch-0.1.55.jar b/gradle-local/lib/plugins/jsch-0.1.55.jar
deleted file mode 100644
index c6fd21d..0000000
Binary files a/gradle-local/lib/plugins/jsch-0.1.55.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/jsoup-1.15.3.jar b/gradle-local/lib/plugins/jsoup-1.15.3.jar
deleted file mode 100644
index 5506d7f..0000000
Binary files a/gradle-local/lib/plugins/jsoup-1.15.3.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/junit-platform-commons-1.8.2.jar b/gradle-local/lib/plugins/junit-platform-commons-1.8.2.jar
deleted file mode 100644
index e0cf087..0000000
Binary files a/gradle-local/lib/plugins/junit-platform-commons-1.8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/junit-platform-engine-1.8.2.jar b/gradle-local/lib/plugins/junit-platform-engine-1.8.2.jar
deleted file mode 100644
index 85bac8a..0000000
Binary files a/gradle-local/lib/plugins/junit-platform-engine-1.8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/junit-platform-launcher-1.8.2.jar b/gradle-local/lib/plugins/junit-platform-launcher-1.8.2.jar
deleted file mode 100644
index 0f2cc40..0000000
Binary files a/gradle-local/lib/plugins/junit-platform-launcher-1.8.2.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/jzlib-1.1.3.jar b/gradle-local/lib/plugins/jzlib-1.1.3.jar
deleted file mode 100644
index 2fa60b1..0000000
Binary files a/gradle-local/lib/plugins/jzlib-1.1.3.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/maven-builder-support-3.6.3.jar b/gradle-local/lib/plugins/maven-builder-support-3.6.3.jar
deleted file mode 100644
index 34f941a..0000000
Binary files a/gradle-local/lib/plugins/maven-builder-support-3.6.3.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/maven-model-3.6.3.jar b/gradle-local/lib/plugins/maven-model-3.6.3.jar
deleted file mode 100644
index 8f3ff5f..0000000
Binary files a/gradle-local/lib/plugins/maven-model-3.6.3.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/maven-repository-metadata-3.6.3.jar b/gradle-local/lib/plugins/maven-repository-metadata-3.6.3.jar
deleted file mode 100644
index a35af1a..0000000
Binary files a/gradle-local/lib/plugins/maven-repository-metadata-3.6.3.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/maven-settings-3.6.3.jar b/gradle-local/lib/plugins/maven-settings-3.6.3.jar
deleted file mode 100644
index 5cc532a..0000000
Binary files a/gradle-local/lib/plugins/maven-settings-3.6.3.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/maven-settings-builder-3.6.3.jar b/gradle-local/lib/plugins/maven-settings-builder-3.6.3.jar
deleted file mode 100644
index 12919fb..0000000
Binary files a/gradle-local/lib/plugins/maven-settings-builder-3.6.3.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/opencensus-api-0.31.1.jar b/gradle-local/lib/plugins/opencensus-api-0.31.1.jar
deleted file mode 100644
index 32f2501..0000000
Binary files a/gradle-local/lib/plugins/opencensus-api-0.31.1.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/opencensus-contrib-http-util-0.31.1.jar b/gradle-local/lib/plugins/opencensus-contrib-http-util-0.31.1.jar
deleted file mode 100644
index f96d0da..0000000
Binary files a/gradle-local/lib/plugins/opencensus-contrib-http-util-0.31.1.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/opentest4j-1.2.0.jar b/gradle-local/lib/plugins/opentest4j-1.2.0.jar
deleted file mode 100644
index d500636..0000000
Binary files a/gradle-local/lib/plugins/opentest4j-1.2.0.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/org.eclipse.jgit-5.7.0.202003110725-r.jar b/gradle-local/lib/plugins/org.eclipse.jgit-5.7.0.202003110725-r.jar
deleted file mode 100644
index cb146f8..0000000
Binary files a/gradle-local/lib/plugins/org.eclipse.jgit-5.7.0.202003110725-r.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/plexus-cipher-1.7.jar b/gradle-local/lib/plugins/plexus-cipher-1.7.jar
deleted file mode 100644
index 21928b9..0000000
Binary files a/gradle-local/lib/plugins/plexus-cipher-1.7.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/plexus-interpolation-1.26.jar b/gradle-local/lib/plugins/plexus-interpolation-1.26.jar
deleted file mode 100644
index cfcf162..0000000
Binary files a/gradle-local/lib/plugins/plexus-interpolation-1.26.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/plexus-sec-dispatcher-1.4.jar b/gradle-local/lib/plugins/plexus-sec-dispatcher-1.4.jar
deleted file mode 100644
index c90fed8..0000000
Binary files a/gradle-local/lib/plugins/plexus-sec-dispatcher-1.4.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/plexus-utils-3.3.0.jar b/gradle-local/lib/plugins/plexus-utils-3.3.0.jar
deleted file mode 100644
index 81053c2..0000000
Binary files a/gradle-local/lib/plugins/plexus-utils-3.3.0.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/snakeyaml-2.0.jar b/gradle-local/lib/plugins/snakeyaml-2.0.jar
deleted file mode 100644
index 469b043..0000000
Binary files a/gradle-local/lib/plugins/snakeyaml-2.0.jar and /dev/null differ
diff --git a/gradle-local/lib/plugins/testng-6.3.1.jar b/gradle-local/lib/plugins/testng-6.3.1.jar
deleted file mode 100644
index 7479345..0000000
Binary files a/gradle-local/lib/plugins/testng-6.3.1.jar and /dev/null differ
diff --git a/gradle-local/lib/qdox-1.12.1.jar b/gradle-local/lib/qdox-1.12.1.jar
deleted file mode 100644
index 092fc51..0000000
Binary files a/gradle-local/lib/qdox-1.12.1.jar and /dev/null differ
diff --git a/gradle-local/lib/slf4j-api-1.7.30.jar b/gradle-local/lib/slf4j-api-1.7.30.jar
deleted file mode 100644
index 29ac26f..0000000
Binary files a/gradle-local/lib/slf4j-api-1.7.30.jar and /dev/null differ
diff --git a/gradle-local/lib/tomlj-1.0.0.jar b/gradle-local/lib/tomlj-1.0.0.jar
deleted file mode 100644
index 56322a7..0000000
Binary files a/gradle-local/lib/tomlj-1.0.0.jar and /dev/null differ
diff --git a/gradle-local/lib/trove4j-1.0.20200330.jar b/gradle-local/lib/trove4j-1.0.20200330.jar
deleted file mode 100644
index 0b174bf..0000000
Binary files a/gradle-local/lib/trove4j-1.0.20200330.jar and /dev/null differ
diff --git a/gradle-local/lib/xml-apis-1.4.01.jar b/gradle-local/lib/xml-apis-1.4.01.jar
deleted file mode 100644
index 4673346..0000000
Binary files a/gradle-local/lib/xml-apis-1.4.01.jar and /dev/null differ