remove some trash
This commit is contained in:
parent
2eff8175e2
commit
012ff5c4b5
|
@ -2,10 +2,10 @@
|
||||||
#include <LiquidCrystal_I2C.h>
|
#include <LiquidCrystal_I2C.h>
|
||||||
#include <DHT.h>
|
#include <DHT.h>
|
||||||
#include <WiFi.h>
|
#include <WiFi.h>
|
||||||
|
#include <WiFiUdp.h>
|
||||||
#include <Arduino_JSON.h>
|
#include <Arduino_JSON.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <NTPClient.h>
|
#include <NTPClient.h>
|
||||||
#include <WiFiUdp.h>
|
|
||||||
#include <Callmebot_ESP32.h>
|
#include <Callmebot_ESP32.h>
|
||||||
#include <ESP_Mail_Client.h>
|
#include <ESP_Mail_Client.h>
|
||||||
|
|
||||||
|
@ -68,18 +68,14 @@ void setup(){
|
||||||
dht.begin();
|
dht.begin();
|
||||||
|
|
||||||
// inisialisasi WiFi
|
// inisialisasi WiFi
|
||||||
Serial.print("Menghubungkan ke WiFi");
|
|
||||||
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
|
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
|
||||||
|
|
||||||
delay(20000);
|
delay(20000);
|
||||||
|
|
||||||
// menampilkan gagal terhubung ke jaringan pada LCD
|
// inisialisasi mail client
|
||||||
if (WiFi.status() != WL_CONNECTED) {
|
MailClient.networkReconnect(true);
|
||||||
lcd.setCursor(0, 0);
|
smtp.debug(0);
|
||||||
lcd.print("Gagal terhubung");
|
smtp.callback(smtpCallback);
|
||||||
lcd.setCursor(0, 1);
|
|
||||||
lcd.print("ke jaringan!");
|
|
||||||
}
|
|
||||||
|
|
||||||
// inisialisasi waktu
|
// inisialisasi waktu
|
||||||
timeClient.begin();
|
timeClient.begin();
|
||||||
|
@ -91,23 +87,43 @@ void setup(){
|
||||||
}
|
}
|
||||||
|
|
||||||
void loop(){
|
void loop(){
|
||||||
getPengaturan();
|
if (WiFi.status() == WL_CONNECTED) {
|
||||||
timeClient.update();
|
getPengaturan();
|
||||||
|
timeClient.update();
|
||||||
|
|
||||||
bool running = (bool) pengaturan[0]["running"];
|
// mengambil data status mesin
|
||||||
|
bool running = (bool) pengaturan[0]["running"];
|
||||||
|
|
||||||
if (running) {
|
if (running) {
|
||||||
runFermentasi();
|
runFermentasi();
|
||||||
|
} else {
|
||||||
|
// menampilkan aku siap jika alat belum dirunning
|
||||||
|
lcd.clear();
|
||||||
|
lcd.setCursor(0, 0);
|
||||||
|
lcd.print("Aku siap!");
|
||||||
|
delay(1000);
|
||||||
|
|
||||||
|
lcd.clear();
|
||||||
|
lcd.setCursor(7, 0);
|
||||||
|
lcd.print("Aku siap!");
|
||||||
|
delay(1000);
|
||||||
|
|
||||||
|
lcd.clear();
|
||||||
|
lcd.setCursor(0, 1);
|
||||||
|
lcd.print("Aku siap!");
|
||||||
|
delay(1000);
|
||||||
|
|
||||||
|
lcd.clear();
|
||||||
|
lcd.setCursor(7, 1);
|
||||||
|
lcd.print("Aku siap!");
|
||||||
|
delay(1000);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
lcd.clear();
|
// menampilkan gagal terhubung ke jaringan pada LCD
|
||||||
lcd.setCursor(0, 0);
|
lcd.setCursor(0, 0);
|
||||||
lcd.print("Aku siap!");
|
lcd.print("Gagal terhubung");
|
||||||
delay(1000);
|
lcd.setCursor(0, 1);
|
||||||
|
lcd.print("ke jaringan!");
|
||||||
lcd.clear();
|
|
||||||
lcd.setCursor(7, 1);
|
|
||||||
lcd.print("Aku siap!");
|
|
||||||
delay(1000);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -258,11 +274,6 @@ void callUser(bool matang = true) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void sendEmail(String text) {
|
void sendEmail(String text) {
|
||||||
// inisialisasi email client
|
|
||||||
MailClient.networkReconnect(true);
|
|
||||||
smtp.debug(1);
|
|
||||||
smtp.callback(smtpCallback);
|
|
||||||
|
|
||||||
Session_Config config;
|
Session_Config config;
|
||||||
config.server.host_name = SMTP_HOST;
|
config.server.host_name = SMTP_HOST;
|
||||||
config.server.port = SMTP_PORT;
|
config.server.port = SMTP_PORT;
|
||||||
|
@ -274,7 +285,7 @@ void sendEmail(String text) {
|
||||||
config.time.day_light_offset = 0;
|
config.time.day_light_offset = 0;
|
||||||
|
|
||||||
SMTP_Message message;
|
SMTP_Message message;
|
||||||
String emailRecipient = JSON.stringify(pengaturan[0]["email"]);
|
String emailRecipient = pengaturan[0]["email"];
|
||||||
message.sender.name = F("Fermonitor");
|
message.sender.name = F("Fermonitor");
|
||||||
message.sender.email = "fermonitor@official.com";
|
message.sender.email = "fermonitor@official.com";
|
||||||
message.subject = "Status Fermentasi Tapai";
|
message.subject = "Status Fermentasi Tapai";
|
||||||
|
@ -311,39 +322,8 @@ void sendEmail(String text) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void smtpCallback(SMTP_Status status){
|
void smtpCallback(SMTP_Status status){
|
||||||
/* Print the current status */
|
// hapus memory email jika berhasil terkirim
|
||||||
Serial.println(status.info());
|
|
||||||
|
|
||||||
/* Print the sending result */
|
|
||||||
if (status.success()){
|
if (status.success()){
|
||||||
// ESP_MAIL_PRINTF used in the examples is for format printing via debug Serial port
|
|
||||||
// that works for all supported Arduino platform SDKs e.g. AVR, SAMD, ESP32 and ESP8266.
|
|
||||||
// In ESP8266 and ESP32, you can use Serial.printf directly.
|
|
||||||
|
|
||||||
Serial.println("----------------");
|
|
||||||
ESP_MAIL_PRINTF("Message sent success: %d\n", status.completedCount());
|
|
||||||
ESP_MAIL_PRINTF("Message sent failed: %d\n", status.failedCount());
|
|
||||||
Serial.println("----------------\n");
|
|
||||||
|
|
||||||
for (size_t i = 0; i < smtp.sendingResult.size(); i++)
|
|
||||||
{
|
|
||||||
/* Get the result item */
|
|
||||||
SMTP_Result result = smtp.sendingResult.getItem(i);
|
|
||||||
|
|
||||||
// In case, ESP32, ESP8266 and SAMD device, the timestamp get from result.timestamp should be valid if
|
|
||||||
// your device time was synched with NTP server.
|
|
||||||
// Other devices may show invalid timestamp as the device time was not set i.e. it will show Jan 1, 1970.
|
|
||||||
// You can call smtp.setSystemTime(xxx) to set device time manually. Where xxx is timestamp (seconds since Jan 1, 1970)
|
|
||||||
|
|
||||||
ESP_MAIL_PRINTF("Message No: %d\n", i + 1);
|
|
||||||
ESP_MAIL_PRINTF("Status: %s\n", result.completed ? "success" : "failed");
|
|
||||||
ESP_MAIL_PRINTF("Date/Time: %s\n", MailClient.Time.getDateTimeString(result.timestamp, "%B %d, %Y %H:%M:%S").c_str());
|
|
||||||
ESP_MAIL_PRINTF("Recipient: %s\n", result.recipients.c_str());
|
|
||||||
ESP_MAIL_PRINTF("Subject: %s\n", result.subject.c_str());
|
|
||||||
}
|
|
||||||
Serial.println("----------------\n");
|
|
||||||
|
|
||||||
// You need to clear sending result as the memory usage will grow up.
|
|
||||||
smtp.sendingResult.clear();
|
smtp.sendingResult.clear();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,13 @@
|
||||||
// #include <ESP32_Supabase.h>
|
// #include <ESP32_Supabase.h>
|
||||||
#include <LiquidCrystal_I2C.h>
|
#include <LiquidCrystal_I2C.h>
|
||||||
#include <DHT.h>
|
#include <DHT.h>
|
||||||
// #include <WiFi.h>
|
#include <WiFi.h>
|
||||||
|
// #include <WiFiUdp.h>
|
||||||
// #include <Arduino_JSON.h>
|
// #include <Arduino_JSON.h>
|
||||||
// #include <assert.h>
|
// #include <assert.h>
|
||||||
// #include <NTPClient.h>
|
// #include <NTPClient.h>
|
||||||
// #include <WiFiUdp.h>
|
|
||||||
// #include <Callmebot_ESP32.h>
|
// #include <Callmebot_ESP32.h>
|
||||||
|
// #include <ESP_Mail_Client.h>
|
||||||
|
|
||||||
#define BOARD "ESP-32"
|
#define BOARD "ESP-32"
|
||||||
#define MQPIN 34
|
#define MQPIN 34
|
||||||
|
@ -21,11 +22,17 @@
|
||||||
// #define WIFI_SSID "Vivo Y21c"
|
// #define WIFI_SSID "Vivo Y21c"
|
||||||
// #define WIFI_PASSWORD "12346789"
|
// #define WIFI_PASSWORD "12346789"
|
||||||
|
|
||||||
|
// #define SMTP_HOST "sandbox.smtp.mailtrap.io"
|
||||||
|
// #define SMTP_PORT 2525
|
||||||
|
// #define AUTHOR_EMAIL "16d58b0c89cba1"
|
||||||
|
// #define AUTHOR_PASSWORD "f077a3dc3e2f84"
|
||||||
|
|
||||||
// Supabase db;
|
// Supabase db;
|
||||||
LiquidCrystal_I2C lcd(0x27, 16, 2);
|
LiquidCrystal_I2C lcd(0x27, 16, 2);
|
||||||
DHT dht(DHTPIN, 22);
|
DHT dht(DHTPIN, 22);
|
||||||
// WiFiUDP ntpUDP;
|
// WiFiUDP ntpUDP;
|
||||||
// NTPClient timeClient(ntpUDP, "pool.ntp.org", 3600 * 7, 60000); // GMT +7
|
// NTPClient timeClient(ntpUDP, "pool.ntp.org", 3600 * 7, 60000); // GMT +7
|
||||||
|
// SMTPSession smtp;
|
||||||
|
|
||||||
float suhu;
|
float suhu;
|
||||||
float kelembaban;
|
float kelembaban;
|
||||||
|
@ -36,6 +43,8 @@ String status = "Menunggu";
|
||||||
// JSONVar dataPengujian;
|
// JSONVar dataPengujian;
|
||||||
// JSONVar pengaturan;
|
// JSONVar pengaturan;
|
||||||
|
|
||||||
|
// void smtpCallback(SMTP_Status status);
|
||||||
|
|
||||||
void setup(){
|
void setup(){
|
||||||
pinMode(MQPIN, INPUT);
|
pinMode(MQPIN, INPUT);
|
||||||
pinMode(LAMPPIN, OUTPUT);
|
pinMode(LAMPPIN, OUTPUT);
|
||||||
|
@ -59,20 +68,16 @@ void setup(){
|
||||||
dht.begin();
|
dht.begin();
|
||||||
|
|
||||||
// inisialisasi WiFi
|
// inisialisasi WiFi
|
||||||
// Serial.print("Menghubungkan ke WiFi");
|
|
||||||
// WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
|
// WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
|
||||||
|
|
||||||
delay(20000);
|
delay(20000);
|
||||||
|
|
||||||
// menampilkan gagal terhubung ke jaringan pada LCD
|
// inisialisasi mail client
|
||||||
// if (WiFi.status() != WL_CONNECTED) {
|
// MailClient.networkReconnect(true);
|
||||||
// lcd.setCursor(0, 0);
|
// smtp.debug(0);
|
||||||
// lcd.print("Gagal terhubung");
|
// smtp.callback(smtpCallback);
|
||||||
// lcd.setCursor(0, 1);
|
|
||||||
// lcd.print("ke jaringan!");
|
|
||||||
// }
|
|
||||||
|
|
||||||
// inisialisasi waktu
|
// // inisialisasi waktu
|
||||||
// timeClient.begin();
|
// timeClient.begin();
|
||||||
|
|
||||||
// // inisialisasi supabase
|
// // inisialisasi supabase
|
||||||
|
@ -82,23 +87,43 @@ void setup(){
|
||||||
}
|
}
|
||||||
|
|
||||||
void loop(){
|
void loop(){
|
||||||
// getPengaturan();
|
// if (WiFi.status() == WL_CONNECTED) {
|
||||||
// timeClient.update();
|
// getPengaturan();
|
||||||
|
// timeClient.update();
|
||||||
|
|
||||||
// bool running = (bool) pengaturan[0]["running"];
|
// // mengambil data status mesin
|
||||||
|
// bool running = (bool) pengaturan[0]["running"];
|
||||||
|
|
||||||
// if (running) {
|
// if (running) {
|
||||||
runFermentasi();
|
runFermentasi();
|
||||||
|
// } else {
|
||||||
|
// // menampilkan aku siap jika alat belum dirunning
|
||||||
|
// lcd.clear();
|
||||||
|
// lcd.setCursor(0, 0);
|
||||||
|
// lcd.print("Aku siap!");
|
||||||
|
// delay(1000);
|
||||||
|
|
||||||
|
// lcd.clear();
|
||||||
|
// lcd.setCursor(7, 0);
|
||||||
|
// lcd.print("Aku siap!");
|
||||||
|
// delay(1000);
|
||||||
|
|
||||||
|
// lcd.clear();
|
||||||
|
// lcd.setCursor(0, 1);
|
||||||
|
// lcd.print("Aku siap!");
|
||||||
|
// delay(1000);
|
||||||
|
|
||||||
|
// lcd.clear();
|
||||||
|
// lcd.setCursor(7, 1);
|
||||||
|
// lcd.print("Aku siap!");
|
||||||
|
// delay(1000);
|
||||||
|
// }
|
||||||
// } else {
|
// } else {
|
||||||
// lcd.clear();
|
// // menampilkan gagal terhubung ke jaringan pada LCD
|
||||||
// lcd.setCursor(0, 0);
|
// lcd.setCursor(0, 0);
|
||||||
// lcd.print("Aku siap!");
|
// lcd.print("Gagal terhubung");
|
||||||
// delay(1000);
|
// lcd.setCursor(0, 1);
|
||||||
|
// lcd.print("ke jaringan!");
|
||||||
// lcd.clear();
|
|
||||||
// lcd.setCursor(7, 1);
|
|
||||||
// lcd.print("Aku siap!");
|
|
||||||
// delay(1000);
|
|
||||||
// }
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -188,7 +213,6 @@ void runFermentasi() {
|
||||||
// } else {
|
// } else {
|
||||||
// digitalWrite(BUZZERPIN, LOW);
|
// digitalWrite(BUZZERPIN, LOW);
|
||||||
// cekKematangan();
|
// cekKematangan();
|
||||||
// cekKegagalan();
|
|
||||||
// insertKondisiTapai();
|
// insertKondisiTapai();
|
||||||
// }
|
// }
|
||||||
|
|
||||||
|
@ -221,7 +245,7 @@ float getKadarGas() {
|
||||||
|
|
||||||
// konversi tegangan ke persen berdasarkan rumus yang telah ditentukan
|
// konversi tegangan ke persen berdasarkan rumus yang telah ditentukan
|
||||||
float getPersentaseKadarGas(float voltase) {
|
float getPersentaseKadarGas(float voltase) {
|
||||||
float persentase = 0.1727 * pow(voltase, 2.0) + 0.1805 * voltase - 0.137;
|
float persentase = 0.2043 * pow(voltase, 2.0) + 0.0611 * voltase - 0.0249;
|
||||||
float hasil = constrain(persentase * 100, 0, 100);
|
float hasil = constrain(persentase * 100, 0, 100);
|
||||||
|
|
||||||
return hasil;
|
return hasil;
|
||||||
|
@ -247,6 +271,63 @@ float getPersentaseKadarGas(float voltase) {
|
||||||
|
|
||||||
// Callmebot.telegramCall(pengaturan[0]["telepon"], text, "id-ID-Standard-B");
|
// Callmebot.telegramCall(pengaturan[0]["telepon"], text, "id-ID-Standard-B");
|
||||||
// Serial.println(Callmebot.debug());
|
// Serial.println(Callmebot.debug());
|
||||||
|
// sendEmail(text);
|
||||||
|
|
||||||
|
// }
|
||||||
|
|
||||||
|
// void sendEmail(String text) {
|
||||||
|
// Session_Config config;
|
||||||
|
// config.server.host_name = SMTP_HOST;
|
||||||
|
// config.server.port = SMTP_PORT;
|
||||||
|
// config.login.email = AUTHOR_EMAIL;
|
||||||
|
// config.login.password = AUTHOR_PASSWORD;
|
||||||
|
// config.login.user_domain = "";
|
||||||
|
// config.time.ntp_server = F("pool.ntp.org,time.nist.gov");
|
||||||
|
// config.time.gmt_offset = 7;
|
||||||
|
// config.time.day_light_offset = 0;
|
||||||
|
|
||||||
|
// SMTP_Message message;
|
||||||
|
// String emailRecipient = pengaturan[0]["email"];
|
||||||
|
// message.sender.name = F("Fermonitor");
|
||||||
|
// message.sender.email = "fermonitor@official.com";
|
||||||
|
// message.subject = "Status Fermentasi Tapai";
|
||||||
|
// message.addRecipient(emailRecipient, emailRecipient);
|
||||||
|
|
||||||
|
// message.text.content = text.c_str();
|
||||||
|
// message.text.charSet = "us-ascii";
|
||||||
|
// message.text.transfer_encoding = Content_Transfer_Encoding::enc_7bit;
|
||||||
|
|
||||||
|
// message.priority = esp_mail_smtp_priority::esp_mail_smtp_priority_low;
|
||||||
|
// message.response.notify = esp_mail_smtp_notify_success | esp_mail_smtp_notify_failure | esp_mail_smtp_notify_delay;
|
||||||
|
|
||||||
|
// if (!smtp.connect(&config)){
|
||||||
|
// ESP_MAIL_PRINTF("Connection error, Status Code: %d, Error Code: %d, Reason: %s", smtp.statusCode(), smtp.errorCode(), smtp.errorReason().c_str());
|
||||||
|
// return;
|
||||||
|
// }
|
||||||
|
|
||||||
|
// if (!smtp.isLoggedIn()){
|
||||||
|
// Serial.println("Gagal login akun email");
|
||||||
|
// }
|
||||||
|
|
||||||
|
// else{
|
||||||
|
// if (smtp.isAuthenticated()) {
|
||||||
|
// Serial.println("Berhasil login email");
|
||||||
|
// } else {
|
||||||
|
// Serial.println("Terhubung ke email tanpa otorisasi");
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
|
||||||
|
// if (!MailClient.sendMail(&smtp, &message)) {
|
||||||
|
// ESP_MAIL_PRINTF("Error, Status Code: %d, Error Code: %d, Reason: %s", smtp.statusCode(), smtp.errorCode(), smtp.errorReason().c_str());
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
// void smtpCallback(SMTP_Status status){
|
||||||
|
// // hapus memory email jika berhasil terkirim
|
||||||
|
// if (status.success()){
|
||||||
|
// smtp.sendingResult.clear();
|
||||||
|
// }
|
||||||
// }
|
// }
|
||||||
|
|
||||||
// // menyimpan kondisi tapai pada database
|
// // menyimpan kondisi tapai pada database
|
||||||
|
@ -264,14 +345,23 @@ float getPersentaseKadarGas(float voltase) {
|
||||||
|
|
||||||
// if (pengujian == true) {
|
// if (pengujian == true) {
|
||||||
// getDataPengujian();
|
// getDataPengujian();
|
||||||
|
// cekKegagalan();
|
||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
|
|
||||||
// // melakukan cek kematangan
|
// // melakukan cek kematangan
|
||||||
// void cekKematangan() {
|
// void cekKematangan() {
|
||||||
// // jika sudah lebih dari 3 * 6 jam (18 jam)
|
// JSONVar dataPengujianAwal = dataPengujian[0];
|
||||||
// if (dataPengujian.length() > 3) {
|
// int epochTimeAwal = (int) dataPengujianAwal["created_time"];
|
||||||
// if (persentaseKadarGas >= 5.28) {
|
// int epochTimeSekarang = timeClient.getEpochTime();
|
||||||
|
|
||||||
|
// int epochTimeDiff = epochTimeSekarang - epochTimeAwal;
|
||||||
|
// int lamaJam = epochTimeDiff / 3600;
|
||||||
|
|
||||||
|
// // jika sudah lebih dari 24 jam
|
||||||
|
// if (lamaJam > 24) {
|
||||||
|
|
||||||
|
// if (persentaseKadarGas >= 5.28 || lamaJam > 72) {
|
||||||
// status = "Matang";
|
// status = "Matang";
|
||||||
|
|
||||||
// String dataAwalJson = db.from("kondisi_tapai").select("*").order("created_time", "asc", true).limit(1).doSelect();
|
// String dataAwalJson = db.from("kondisi_tapai").select("*").order("created_time", "asc", true).limit(1).doSelect();
|
||||||
|
@ -299,20 +389,19 @@ float getPersentaseKadarGas(float voltase) {
|
||||||
// void cekKegagalan() {
|
// void cekKegagalan() {
|
||||||
// JSONVar dataPengujianAwal = dataPengujian[0];
|
// JSONVar dataPengujianAwal = dataPengujian[0];
|
||||||
// int epochTimeAwal = (int) dataPengujianAwal["created_time"];
|
// int epochTimeAwal = (int) dataPengujianAwal["created_time"];
|
||||||
|
// int epochTimeSekarang = timeClient.getEpochTime();
|
||||||
|
|
||||||
// for (int i = 0; i < dataPengujian.length(); i++) {
|
// int epochTimeDiff = epochTimeSekarang - epochTimeAwal;
|
||||||
// int epochTime = (int) dataPengujian[i]["created_time"];
|
// int lamaJam = epochTimeDiff / 3600;
|
||||||
// int epochTimeDiff = epochTime - epochTimeAwal;
|
|
||||||
// int lamaJam = epochTimeDiff / 3600;
|
|
||||||
|
|
||||||
// float kadarGas = (double) dataPengujian[i]["kadar_gas"];
|
// float regresiKadarGas = 0.0025 * pow(lamaJam, 2.0) - 0.0397 * lamaJam - 0.1222;
|
||||||
// float regresiKadarGas = 0.0025 * pow(lamaJam, 2.0) - 0.0397 * lamaJam - 0.1222;
|
// float nilaiPerempat = regresiKadarGas / 4.0;
|
||||||
// float nilaiPerempat = regresiKadarGas / 4.0;
|
|
||||||
|
|
||||||
// if (lamaJam > 12) {
|
// if (lamaJam > 12) {
|
||||||
// if (kadarGas > (regresiKadarGas + nilaiPerempat) || kadarGas < (regresiKadarGas - nilaiPerempat)) {
|
// // jika kadar gas tidak naik secara signifikan
|
||||||
// status = "Gagal";
|
// // if (persentaseKadarGas > (regresiKadarGas + nilaiPerempat) || persentaseKadarGas < (regresiKadarGas - nilaiPerempat)) {
|
||||||
// }
|
// if (persentaseKadarGas < (regresiKadarGas - nilaiPerempat)) {
|
||||||
|
// status = "Gagal";
|
||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue