V1-it Works
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
/.idea/
|
||||
/cmake-build-debug/
|
||||
/cmake-build-debug-visual-studio/
|
||||
/cmake-build-release-visual-studio/
|
||||
|
||||
@@ -7,3 +7,12 @@
|
||||
[submodule "lib/lua"]
|
||||
path = lib/lua
|
||||
url = https://github.com/lubgr/lua-cmake.git
|
||||
[submodule "lib/c_tray"]
|
||||
path = lib/c_tray
|
||||
url = https://github.com/binRick/c_tray.git
|
||||
[submodule "lib/json"]
|
||||
path = lib/json
|
||||
url = https://github.com/nlohmann/json.git
|
||||
[submodule "lib/cppcodec"]
|
||||
path = lib/cppcodec
|
||||
url = https://github.com/tplgy/cppcodec.git
|
||||
+26
-3
@@ -6,19 +6,42 @@ set(saucer_no_version_check ON)
|
||||
set(BUILD_SHARED_LIBS OFF)
|
||||
option(BUILD_SHARED_LIBS "Build as shared library" ON)
|
||||
|
||||
add_subdirectory(lib/c_tray)
|
||||
add_subdirectory(lib/json)
|
||||
add_subdirectory(lib/cppcodec)
|
||||
add_subdirectory(lib/saucer)
|
||||
add_subdirectory(lib/lua)
|
||||
add_subdirectory(lib/sol2)
|
||||
|
||||
include_directories(inc)
|
||||
include_directories(lib/json/include/nlohmann)
|
||||
#include_directories(out_embed)
|
||||
file(GLOB_RECURSE SOURCES "src/*.cpp" "inc/*.h")
|
||||
|
||||
if(WIN32)
|
||||
set(RESOURCE_FILES toolbox.rc)
|
||||
endif()
|
||||
|
||||
add_executable(Toolbox main.cpp ${SOURCES} ${RESOURCE_FILES})
|
||||
# Header-Datei einbinden
|
||||
include_directories(lib/c_tray)
|
||||
|
||||
# Plattformabhängige Einstellungen
|
||||
if(WIN32)
|
||||
set(PLATFORM_SOURCES lib/c_tray/tray_windows.c)
|
||||
set(LIBS shell32)
|
||||
elseif(APPLE)
|
||||
set(PLATFORM_SOURCES lib/c_tray/tray_darwin.m)
|
||||
find_library(COCOA_LIBRARY Cocoa)
|
||||
set(LIBS ${COCOA_LIBRARY})
|
||||
elseif(UNIX)
|
||||
set(PLATFORM_SOURCES lib/c_tray/tray_linux.c)
|
||||
find_package(PkgConfig REQUIRED)
|
||||
pkg_check_modules(APPINDICATOR REQUIRED appindicator3-0.1)
|
||||
include_directories(${APPINDICATOR_INCLUDE_DIRS})
|
||||
set(LIBS ${APPINDICATOR_LIBRARIES})
|
||||
endif()
|
||||
|
||||
file(GLOB_RECURSE SOURCES "src/*.cpp" "inc/*.h")
|
||||
add_executable(Toolbox main.cpp ${SOURCES} ${RESOURCE_FILES} ${PLATFORM_SOURCES})
|
||||
|
||||
target_include_directories(${PROJECT_NAME} PRIVATE "out_embed")
|
||||
target_link_libraries(Toolbox PRIVATE saucer::saucer sol2::sol2 lua)
|
||||
target_link_libraries(Toolbox PRIVATE saucer::saucer sol2::sol2 lua tray nlohmann_json cppcodec)
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
#pragma once
|
||||
|
||||
#include <saucer/smartview.hpp>
|
||||
#include "modules/hwnd_module.h"
|
||||
#include "all.hpp"
|
||||
#include <sol/sol.hpp>
|
||||
#include <saucer/webview.hpp>
|
||||
|
||||
class optionWindow {
|
||||
|
||||
public:
|
||||
// Konstruktor erhält das Application-Objekt als Parameter
|
||||
explicit optionWindow(std::shared_ptr<saucer::application>& app);
|
||||
|
||||
// Methode zum Anzeigen des Fensters
|
||||
void show();
|
||||
|
||||
// Für die Fensterinitialisierung
|
||||
void initialize();
|
||||
|
||||
private:
|
||||
std::shared_ptr<saucer::application> m_app;
|
||||
saucer::smartview<saucer::default_serializer, hwnd_module> m_webview;
|
||||
|
||||
void configureWindow();
|
||||
void loadResources();
|
||||
void runLuaScript();
|
||||
};
|
||||
@@ -0,0 +1,54 @@
|
||||
#pragma once
|
||||
|
||||
#include <saucer/smartview.hpp>
|
||||
#include "modules/hwnd_module.h"
|
||||
#include "all.hpp"
|
||||
#include <sol/sol.hpp>
|
||||
#include <saucer/webview.hpp>
|
||||
|
||||
class ToolboxWindow {
|
||||
public:
|
||||
// Konstruktor erhält das Application-Objekt als Parameter
|
||||
explicit ToolboxWindow(std::shared_ptr<saucer::application>& app);
|
||||
|
||||
// Methode zum Anzeigen des Fensters
|
||||
void show();
|
||||
|
||||
// Für die Fensterinitialisierung
|
||||
void initialize();
|
||||
|
||||
void OptionWindow();
|
||||
|
||||
struct ToolboxItem{
|
||||
std::string id;
|
||||
std::string name;
|
||||
std::string path;
|
||||
std::string icon;
|
||||
std::string lua_script;
|
||||
std::string description;
|
||||
std::string category;
|
||||
std::string version;
|
||||
std::string author;
|
||||
std::string url;
|
||||
std::string license;
|
||||
};
|
||||
|
||||
std::vector<ToolboxItem> m_toolboxItems;
|
||||
|
||||
private:
|
||||
std::shared_ptr<saucer::application> m_app;
|
||||
saucer::smartview<saucer::default_serializer, hwnd_module> m_webview;
|
||||
void configureWindow();
|
||||
void loadResources();
|
||||
void runLuaScript();
|
||||
|
||||
void ExposeToJs();
|
||||
|
||||
bool ensureToolboxInUserPath();
|
||||
|
||||
void fillToolboxMenu();
|
||||
|
||||
void debug_print();
|
||||
|
||||
void run_lua(int id);
|
||||
};
|
||||
@@ -0,0 +1,16 @@
|
||||
//
|
||||
// Created by slave on 06.12.2024.
|
||||
//
|
||||
|
||||
#ifndef TOOLBOX_TOOLBOX_TRAY_H
|
||||
#define TOOLBOX_TOOLBOX_TRAY_H
|
||||
|
||||
#include "tray.h"
|
||||
|
||||
|
||||
class toolbox_tray {
|
||||
|
||||
};
|
||||
|
||||
|
||||
#endif //TOOLBOX_TOOLBOX_TRAY_H
|
||||
Submodule
+1
Submodule lib/c_tray added at 7387d66ca4
Submodule
+1
Submodule lib/cppcodec added at 8019b8b580
Submodule
+1
Submodule lib/json added at a006a7a48b
@@ -1,100 +1,21 @@
|
||||
#include <iostream>
|
||||
#include <saucer/smartview.hpp>
|
||||
#include <saucer/webview.hpp>
|
||||
#include <windows.h>
|
||||
#include "modules/hwnd_module.h"
|
||||
#include "all.hpp"
|
||||
#include <sol/sol.hpp>
|
||||
#include "toolboxWindow.h"
|
||||
#include <saucer/app.hpp>
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
int main(int argc, char** argv) {
|
||||
// Initialisiere die Saucer-Anwendung
|
||||
auto app = saucer::application::acquire({
|
||||
.id = "toolbox",
|
||||
});
|
||||
|
||||
saucer::smartview<saucer::default_serializer, hwnd_module> webview({
|
||||
.application = app,
|
||||
.id = "toolbox",
|
||||
});
|
||||
|
||||
int screenWidth = GetSystemMetrics(SM_CXSCREEN);
|
||||
int screenHeight = GetSystemMetrics(SM_CYSCREEN);
|
||||
|
||||
// Berechne die relativen Fenstermaße
|
||||
int windowWidth = static_cast<int>(screenWidth * (400.0 / 1920.0));
|
||||
int windowHeight = static_cast<int>(screenHeight * (600.0 / 1080.0));
|
||||
|
||||
webview.set_size(windowWidth, windowHeight);
|
||||
webview.set_force_dark_mode(true);
|
||||
|
||||
int xPos = screenWidth - windowWidth; // 400 ist die Fensterbreite
|
||||
int yPos = screenHeight - 42 - windowHeight; // 600 ist die Fensterhöhe
|
||||
|
||||
// Zugriff auf das native Fenster-Handle
|
||||
if (HWND hwnd = webview.module<hwnd_module>().get_hwnd()) {
|
||||
// Setze die Fensterposition auf (x: 100, y: 100)
|
||||
SetWindowPos(hwnd, nullptr, xPos, yPos, 0, 0, SWP_NOZORDER | SWP_NOSIZE);
|
||||
}
|
||||
|
||||
|
||||
// Erstelle ein WebView-Fenster
|
||||
webview.expose(
|
||||
"add_random",
|
||||
[&](float number)
|
||||
{
|
||||
auto random = webview.evaluate<float>("Math.random()").get();
|
||||
return number + random;
|
||||
},
|
||||
saucer::launch::async);
|
||||
|
||||
// Lade die eingebettete "index.html" aus den Ressourcen
|
||||
auto resources = saucer::embedded::all();
|
||||
|
||||
if (!resources.contains("html/card.html")) {
|
||||
std::cerr << "Fehler: 'card.html' wurde nicht gefunden!" << std::endl;
|
||||
return 1;
|
||||
}
|
||||
// Überprüfen, ob die "index.html"-Ressource verfügbar ist
|
||||
auto it = resources.find("html/index.html");
|
||||
if (it == resources.end())
|
||||
{
|
||||
std::cerr << "Fehler: 'index.html' wurde nicht gefunden!" << std::endl;
|
||||
return 1;
|
||||
}
|
||||
webview.embed(resources); // Bindet alle eingebetteten Ressourcen ein
|
||||
webview.serve("html/index.html"); // Stellt "index.html" bereit
|
||||
|
||||
|
||||
webview.set_context_menu(false);
|
||||
|
||||
|
||||
if (!resources.contains("ico/toolbox.png"))
|
||||
{
|
||||
std::cerr << "Fehler: 'toolbox.png' wurde nicht gefunden!" << std::endl;
|
||||
return 1;
|
||||
}
|
||||
|
||||
// Erstellen eines saucer::icon-Objekts aus den eingebetteten Bilddaten
|
||||
saucer::icon window_icon = saucer::icon::from(resources.find("ico/toolbox.png")->second.content).value();
|
||||
|
||||
// Setzen des Fenster-Icons mit dem erstellten saucer::icon-Objekt
|
||||
webview.set_icon(window_icon);
|
||||
webview.set_title("Toolbox");
|
||||
webview.register_scheme("Toolbox");
|
||||
//webview.set_decorations(false);
|
||||
// Erstelle und initialisiere das Toolbox-Fenster
|
||||
ToolboxWindow toolboxWindow(app);
|
||||
toolboxWindow.initialize();
|
||||
|
||||
// Zeige das Fenster an
|
||||
webview.show();
|
||||
|
||||
// Lua-Umgebung erstellen
|
||||
sol::state lua;
|
||||
// Standardbibliotheken öffnen
|
||||
lua.open_libraries(sol::lib::base);
|
||||
// Weitere Implementierung folgt...
|
||||
// Lua-Code ausführen
|
||||
lua.script("print('Hallo von Lua!')");
|
||||
|
||||
toolboxWindow.show();
|
||||
|
||||
// Starte die Saucer-Anwendung
|
||||
app->run();
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
namespace saucer::embedded
|
||||
{
|
||||
static constexpr std::array<std::uint8_t, 253> fIMvMxLtCtgaCyOWT9Sq2cpZQFAUlr60fpjd781IKV2QwoDk = {
|
||||
0x3c, 0x61, 0x20, 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, 0x23, 0x22, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x74, 0x6f, 0x6f, 0x6c, 0x2d, 0x63, 0x61, 0x72, 0x64, 0x22, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x3c, 0x69, 0x6d, 0x67, 0x20, 0x73, 0x72, 0x63, 0x3d, 0x22, 0x7b, 0x7b, 0x69, 0x6d, 0x67, 0x53, 0x72, 0x63, 0x7d, 0x7d, 0x22, 0x20, 0x61, 0x6c, 0x74, 0x3d, 0x22, 0x7b, 0x7b, 0x74, 0x6f, 0x6f, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x7d, 0x7d, 0x22, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x74, 0x6f, 0x6f, 0x6c, 0x2d, 0x69, 0x6e, 0x66, 0x6f, 0x22, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x68, 0x33, 0x3e, 0x7b, 0x7b, 0x74, 0x6f, 0x6f, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x7d, 0x7d, 0x3c, 0x2f, 0x68, 0x33, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x3e, 0x7b, 0x7b, 0x74, 0x6f, 0x6f, 0x6c, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x7d, 0x7d, 0x3c, 0x2f, 0x70, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x74, 0x6f, 0x6f, 0x6c, 0x2d, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e, 0x7b, 0x7b, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x7d, 0x7d, 0x3c, 0x2f, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0xd, 0xa, 0x3c, 0x2f, 0x61, 0x3e };
|
||||
static constexpr std::array<std::uint8_t, 285> fIMvMxLtCtgaCyOWT9Sq2cpZQFAUlr60fpjd781IKV2QwoDk = {
|
||||
0x3c, 0x61, 0x20, 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, 0x23, 0x22, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x74, 0x6f, 0x6f, 0x6c, 0x2d, 0x63, 0x61, 0x72, 0x64, 0x22, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x3c, 0x69, 0x6d, 0x67, 0x20, 0x73, 0x72, 0x63, 0x3d, 0x22, 0x7b, 0x7b, 0x69, 0x6d, 0x67, 0x53, 0x72, 0x63, 0x7d, 0x7d, 0x22, 0x20, 0x61, 0x6c, 0x74, 0x3d, 0x22, 0x7b, 0x7b, 0x74, 0x6f, 0x6f, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x7d, 0x7d, 0x22, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x74, 0x6f, 0x6f, 0x6c, 0x2d, 0x69, 0x6e, 0x66, 0x6f, 0x22, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x68, 0x33, 0x3e, 0x7b, 0x7b, 0x74, 0x6f, 0x6f, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x7d, 0x7d, 0x3c, 0x2f, 0x68, 0x33, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x3e, 0x7b, 0x7b, 0x74, 0x6f, 0x6f, 0x6c, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x7d, 0x7d, 0x3c, 0x2f, 0x70, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x74, 0x6f, 0x6f, 0x6c, 0x2d, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x6f, 0x6e, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x3d, 0x22, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x22, 0x3e, 0x7b, 0x7b, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x7d, 0x7d, 0x3c, 0x2f, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0xd, 0xa, 0x3c, 0x2f, 0x61, 0x3e, 0xd, 0xa };
|
||||
} // namespace saucer::embedded
|
||||
|
||||
+547
-545
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -5,6 +5,6 @@
|
||||
|
||||
namespace saucer::embedded
|
||||
{
|
||||
static constexpr std::array<std::uint8_t, 511> fAozejtuXFOLAtexqZuCMvXb5YpX9lV9TU2z6CKwt3j9Gjtbvim6HITK9BzhBMpCGZmAObsjg1r = {
|
||||
0x2f, 0x2a, 0x21, 0x20, 0x60, 0x6a, 0x73, 0x6f, 0x6e, 0x60, 0x20, 0x67, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x48, 0x69, 0x67, 0x68, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2e, 0x6a, 0x73, 0x20, 0x31, 0x31, 0x2e, 0x31, 0x30, 0x2e, 0x30, 0x20, 0x2a, 0x2f, 0xa, 0x76, 0x61, 0x72, 0x20, 0x68, 0x6c, 0x6a, 0x73, 0x47, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x3d, 0x28, 0x28, 0x29, 0x3d, 0x3e, 0x7b, 0x22, 0x75, 0x73, 0x65, 0x20, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x22, 0x3b, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x65, 0x3d, 0x3e, 0x7b, 0xa, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x61, 0x3d, 0x5b, 0x22, 0x74, 0x72, 0x75, 0x65, 0x22, 0x2c, 0x22, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x22, 0x2c, 0x22, 0x6e, 0x75, 0x6c, 0x6c, 0x22, 0x5d, 0x2c, 0x72, 0x3d, 0x7b, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x3a, 0x22, 0x6c, 0x69, 0x74, 0x65, 0x72, 0x61, 0x6c, 0x22, 0x2c, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x3a, 0x61, 0x2e, 0x6a, 0x6f, 0x69, 0x6e, 0x28, 0x22, 0x20, 0x22, 0x29, 0x7d, 0xa, 0x3b, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x4a, 0x53, 0x4f, 0x4e, 0x22, 0x2c, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x3a, 0x5b, 0x22, 0x6a, 0x73, 0x6f, 0x6e, 0x63, 0x22, 0x5d, 0x2c, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x3a, 0x7b, 0x6c, 0x69, 0x74, 0x65, 0x72, 0x61, 0x6c, 0x3a, 0x61, 0x7d, 0x2c, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x73, 0x3a, 0x5b, 0x7b, 0xa, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x61, 0x74, 0x74, 0x72, 0x22, 0x2c, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x3a, 0x2f, 0x22, 0x28, 0x5c, 0x5c, 0x2e, 0x7c, 0x5b, 0x5e, 0x5c, 0x5c, 0x22, 0x5c, 0x72, 0x5c, 0x6e, 0x5d, 0x29, 0x2a, 0x22, 0x28, 0x3f, 0x3d, 0x5c, 0x73, 0x2a, 0x3a, 0x29, 0x2f, 0x2c, 0x72, 0x65, 0x6c, 0x65, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x31, 0x2e, 0x30, 0x31, 0x7d, 0x2c, 0x7b, 0xa, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x3a, 0x2f, 0x5b, 0x7b, 0x7d, 0x5b, 0x5c, 0x5d, 0x2c, 0x3a, 0x5d, 0x2f, 0x2c, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x70, 0x75, 0x6e, 0x63, 0x74, 0x75, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x2c, 0x72, 0x65, 0x6c, 0x65, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x30, 0xa, 0x7d, 0x2c, 0x65, 0x2e, 0x51, 0x55, 0x4f, 0x54, 0x45, 0x5f, 0x53, 0x54, 0x52, 0x49, 0x4e, 0x47, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x2c, 0x72, 0x2c, 0x65, 0x2e, 0x43, 0x5f, 0x4e, 0x55, 0x4d, 0x42, 0x45, 0x52, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x2c, 0x65, 0x2e, 0x43, 0x5f, 0x4c, 0x49, 0x4e, 0x45, 0x5f, 0x43, 0x4f, 0x4d, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x2c, 0x65, 0x2e, 0x43, 0x5f, 0x42, 0x4c, 0x4f, 0x43, 0x4b, 0x5f, 0x43, 0x4f, 0x4d, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x5d, 0x2c, 0xa, 0x69, 0x6c, 0x6c, 0x65, 0x67, 0x61, 0x6c, 0x3a, 0x22, 0x5c, 0x5c, 0x53, 0x22, 0x7d, 0x7d, 0x7d, 0x29, 0x28, 0x29, 0x3b, 0x65, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x20, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x20, 0x68, 0x6c, 0x6a, 0x73, 0x47, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x3b };
|
||||
static constexpr std::array<std::uint8_t, 518> fAozejtuXFOLAx7y6v7duQ2EGLLXpuz7ViX1sshROYvwnILiPV0eCBDX5JrQg1axoC83pRnnmcN = {
|
||||
0x2f, 0x2a, 0x21, 0x20, 0x60, 0x6a, 0x73, 0x6f, 0x6e, 0x60, 0x20, 0x67, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x48, 0x69, 0x67, 0x68, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2e, 0x6a, 0x73, 0x20, 0x31, 0x31, 0x2e, 0x31, 0x30, 0x2e, 0x30, 0x20, 0x2a, 0x2f, 0xd, 0xa, 0x76, 0x61, 0x72, 0x20, 0x68, 0x6c, 0x6a, 0x73, 0x47, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x3d, 0x28, 0x28, 0x29, 0x3d, 0x3e, 0x7b, 0x22, 0x75, 0x73, 0x65, 0x20, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x22, 0x3b, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x65, 0x3d, 0x3e, 0x7b, 0xd, 0xa, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x61, 0x3d, 0x5b, 0x22, 0x74, 0x72, 0x75, 0x65, 0x22, 0x2c, 0x22, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x22, 0x2c, 0x22, 0x6e, 0x75, 0x6c, 0x6c, 0x22, 0x5d, 0x2c, 0x72, 0x3d, 0x7b, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x3a, 0x22, 0x6c, 0x69, 0x74, 0x65, 0x72, 0x61, 0x6c, 0x22, 0x2c, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x3a, 0x61, 0x2e, 0x6a, 0x6f, 0x69, 0x6e, 0x28, 0x22, 0x20, 0x22, 0x29, 0x7d, 0xd, 0xa, 0x3b, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x4a, 0x53, 0x4f, 0x4e, 0x22, 0x2c, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x3a, 0x5b, 0x22, 0x6a, 0x73, 0x6f, 0x6e, 0x63, 0x22, 0x5d, 0x2c, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x3a, 0x7b, 0x6c, 0x69, 0x74, 0x65, 0x72, 0x61, 0x6c, 0x3a, 0x61, 0x7d, 0x2c, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x73, 0x3a, 0x5b, 0x7b, 0xd, 0xa, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x61, 0x74, 0x74, 0x72, 0x22, 0x2c, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x3a, 0x2f, 0x22, 0x28, 0x5c, 0x5c, 0x2e, 0x7c, 0x5b, 0x5e, 0x5c, 0x5c, 0x22, 0x5c, 0x72, 0x5c, 0x6e, 0x5d, 0x29, 0x2a, 0x22, 0x28, 0x3f, 0x3d, 0x5c, 0x73, 0x2a, 0x3a, 0x29, 0x2f, 0x2c, 0x72, 0x65, 0x6c, 0x65, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x31, 0x2e, 0x30, 0x31, 0x7d, 0x2c, 0x7b, 0xd, 0xa, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x3a, 0x2f, 0x5b, 0x7b, 0x7d, 0x5b, 0x5c, 0x5d, 0x2c, 0x3a, 0x5d, 0x2f, 0x2c, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x70, 0x75, 0x6e, 0x63, 0x74, 0x75, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x2c, 0x72, 0x65, 0x6c, 0x65, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x30, 0xd, 0xa, 0x7d, 0x2c, 0x65, 0x2e, 0x51, 0x55, 0x4f, 0x54, 0x45, 0x5f, 0x53, 0x54, 0x52, 0x49, 0x4e, 0x47, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x2c, 0x72, 0x2c, 0x65, 0x2e, 0x43, 0x5f, 0x4e, 0x55, 0x4d, 0x42, 0x45, 0x52, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x2c, 0x65, 0x2e, 0x43, 0x5f, 0x4c, 0x49, 0x4e, 0x45, 0x5f, 0x43, 0x4f, 0x4d, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x2c, 0x65, 0x2e, 0x43, 0x5f, 0x42, 0x4c, 0x4f, 0x43, 0x4b, 0x5f, 0x43, 0x4f, 0x4d, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x5d, 0x2c, 0xd, 0xa, 0x69, 0x6c, 0x6c, 0x65, 0x67, 0x61, 0x6c, 0x3a, 0x22, 0x5c, 0x5c, 0x53, 0x22, 0x7d, 0x7d, 0x7d, 0x29, 0x28, 0x29, 0x3b, 0x65, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x20, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x20, 0x68, 0x6c, 0x6a, 0x73, 0x47, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x3b };
|
||||
} // namespace saucer::embedded
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -5,6 +5,6 @@
|
||||
|
||||
namespace saucer::embedded
|
||||
{
|
||||
static constexpr std::array<std::uint8_t, 324> figYaDWrRHYVQzp976G34faj8xomuK8d7k4KHawV9LOQH7VccKsbvQH5BxWkMXlW8Z0rfBU796e3 = {
|
||||
0x2f, 0x2a, 0x21, 0x20, 0x60, 0x73, 0x68, 0x65, 0x6c, 0x6c, 0x60, 0x20, 0x67, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x48, 0x69, 0x67, 0x68, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2e, 0x6a, 0x73, 0x20, 0x31, 0x31, 0x2e, 0x31, 0x30, 0x2e, 0x30, 0x20, 0x2a, 0x2f, 0xa, 0x76, 0x61, 0x72, 0x20, 0x68, 0x6c, 0x6a, 0x73, 0x47, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x3d, 0x28, 0x28, 0x29, 0x3d, 0x3e, 0x7b, 0x22, 0x75, 0x73, 0x65, 0x20, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x22, 0x3b, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x73, 0x3d, 0x3e, 0x28, 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x53, 0x68, 0x65, 0x6c, 0x6c, 0x20, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x2c, 0xa, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x3a, 0x5b, 0x22, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x22, 0x2c, 0x22, 0x73, 0x68, 0x65, 0x6c, 0x6c, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x5d, 0x2c, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x73, 0x3a, 0x5b, 0x7b, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x22, 0x2c, 0xa, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x3a, 0x2f, 0x5e, 0x5c, 0x73, 0x7b, 0x30, 0x2c, 0x33, 0x7d, 0x5b, 0x2f, 0x7e, 0x5c, 0x77, 0x5c, 0x64, 0x5b, 0x5c, 0x5d, 0x28, 0x29, 0x40, 0x2d, 0x5d, 0x2a, 0x5b, 0x3e, 0x25, 0x24, 0x23, 0x5d, 0x5b, 0x20, 0x5d, 0x3f, 0x2f, 0x2c, 0x73, 0x74, 0x61, 0x72, 0x74, 0x73, 0x3a, 0x7b, 0x65, 0x6e, 0x64, 0x3a, 0x2f, 0x5b, 0x5e, 0x5c, 0x5c, 0x5d, 0x28, 0x3f, 0x3d, 0x5c, 0x73, 0x2a, 0x24, 0x29, 0x2f, 0x2c, 0xa, 0x73, 0x75, 0x62, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x3a, 0x22, 0x62, 0x61, 0x73, 0x68, 0x22, 0x7d, 0x7d, 0x5d, 0x7d, 0x29, 0x7d, 0x29, 0x28, 0x29, 0x3b, 0x65, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x20, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x20, 0x68, 0x6c, 0x6a, 0x73, 0x47, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x3b };
|
||||
static constexpr std::array<std::uint8_t, 328> figYaDWrRHYVRE8uCZrYmxVCtU8xiNIN0xsNmbrN7QFGlXlfNI2fyIJsby0cD86kRNNGXzrk6JQB = {
|
||||
0x2f, 0x2a, 0x21, 0x20, 0x60, 0x73, 0x68, 0x65, 0x6c, 0x6c, 0x60, 0x20, 0x67, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x48, 0x69, 0x67, 0x68, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2e, 0x6a, 0x73, 0x20, 0x31, 0x31, 0x2e, 0x31, 0x30, 0x2e, 0x30, 0x20, 0x2a, 0x2f, 0xd, 0xa, 0x76, 0x61, 0x72, 0x20, 0x68, 0x6c, 0x6a, 0x73, 0x47, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x3d, 0x28, 0x28, 0x29, 0x3d, 0x3e, 0x7b, 0x22, 0x75, 0x73, 0x65, 0x20, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x22, 0x3b, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x73, 0x3d, 0x3e, 0x28, 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x53, 0x68, 0x65, 0x6c, 0x6c, 0x20, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x2c, 0xd, 0xa, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x3a, 0x5b, 0x22, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x22, 0x2c, 0x22, 0x73, 0x68, 0x65, 0x6c, 0x6c, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x5d, 0x2c, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x73, 0x3a, 0x5b, 0x7b, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x22, 0x2c, 0xd, 0xa, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x3a, 0x2f, 0x5e, 0x5c, 0x73, 0x7b, 0x30, 0x2c, 0x33, 0x7d, 0x5b, 0x2f, 0x7e, 0x5c, 0x77, 0x5c, 0x64, 0x5b, 0x5c, 0x5d, 0x28, 0x29, 0x40, 0x2d, 0x5d, 0x2a, 0x5b, 0x3e, 0x25, 0x24, 0x23, 0x5d, 0x5b, 0x20, 0x5d, 0x3f, 0x2f, 0x2c, 0x73, 0x74, 0x61, 0x72, 0x74, 0x73, 0x3a, 0x7b, 0x65, 0x6e, 0x64, 0x3a, 0x2f, 0x5b, 0x5e, 0x5c, 0x5c, 0x5d, 0x28, 0x3f, 0x3d, 0x5c, 0x73, 0x2a, 0x24, 0x29, 0x2f, 0x2c, 0xd, 0xa, 0x73, 0x75, 0x62, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x3a, 0x22, 0x62, 0x61, 0x73, 0x68, 0x22, 0x7d, 0x7d, 0x5d, 0x7d, 0x29, 0x7d, 0x29, 0x28, 0x29, 0x3b, 0x65, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x20, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x20, 0x68, 0x6c, 0x6a, 0x73, 0x47, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x3b };
|
||||
} // namespace saucer::embedded
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -5,6 +5,6 @@
|
||||
|
||||
namespace saucer::embedded
|
||||
{
|
||||
static constexpr std::array<std::uint8_t, 20> f7OPm7vIuBp2COXuNRP4hnVR3Y4PeiCygKCTJpJtZ102bFNQFW7vW1bF8BxESNC = {
|
||||
static constexpr std::array<std::uint8_t, 20> f7OPm7vIuBp2CQunSckZbTM7TWMkL8Kp7Ww7R3u1jcdq48HfhWZvP04VK21lq7K = {
|
||||
0x7b, 0x20, 0x22, 0x74, 0x79, 0x70, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x22, 0x20, 0x7d };
|
||||
} // namespace saucer::embedded
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -5,6 +5,6 @@
|
||||
|
||||
namespace saucer::embedded
|
||||
{
|
||||
static constexpr std::array<std::uint8_t, 516> f9WyAbPBHunlndnFRNaGuJBHy4lrjCKXD9JVJ8cfDDbdlfCnDwk5nXOL9HjtSf1gxtLA9QZ = {
|
||||
0x2f, 0x2a, 0x21, 0x20, 0x60, 0x6a, 0x73, 0x6f, 0x6e, 0x60, 0x20, 0x67, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x48, 0x69, 0x67, 0x68, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2e, 0x6a, 0x73, 0x20, 0x31, 0x31, 0x2e, 0x31, 0x30, 0x2e, 0x30, 0x20, 0x2a, 0x2f, 0xa, 0x28, 0x28, 0x29, 0x3d, 0x3e, 0x7b, 0x76, 0x61, 0x72, 0x20, 0x65, 0x3d, 0x28, 0x28, 0x29, 0x3d, 0x3e, 0x7b, 0x22, 0x75, 0x73, 0x65, 0x20, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x22, 0x3b, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x65, 0x3d, 0x3e, 0x7b, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x61, 0x3d, 0x5b, 0x22, 0x74, 0x72, 0x75, 0x65, 0x22, 0x2c, 0x22, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x22, 0x2c, 0x22, 0x6e, 0x75, 0x6c, 0x6c, 0x22, 0x5d, 0x2c, 0x73, 0x3d, 0x7b, 0xa, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x3a, 0x22, 0x6c, 0x69, 0x74, 0x65, 0x72, 0x61, 0x6c, 0x22, 0x2c, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x3a, 0x61, 0x2e, 0x6a, 0x6f, 0x69, 0x6e, 0x28, 0x22, 0x20, 0x22, 0x29, 0x7d, 0x3b, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x4a, 0x53, 0x4f, 0x4e, 0x22, 0x2c, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x3a, 0x5b, 0x22, 0x6a, 0x73, 0x6f, 0x6e, 0x63, 0x22, 0x5d, 0x2c, 0xa, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x3a, 0x7b, 0x6c, 0x69, 0x74, 0x65, 0x72, 0x61, 0x6c, 0x3a, 0x61, 0x7d, 0x2c, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x73, 0x3a, 0x5b, 0x7b, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x61, 0x74, 0x74, 0x72, 0x22, 0x2c, 0xa, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x3a, 0x2f, 0x22, 0x28, 0x5c, 0x5c, 0x2e, 0x7c, 0x5b, 0x5e, 0x5c, 0x5c, 0x22, 0x5c, 0x72, 0x5c, 0x6e, 0x5d, 0x29, 0x2a, 0x22, 0x28, 0x3f, 0x3d, 0x5c, 0x73, 0x2a, 0x3a, 0x29, 0x2f, 0x2c, 0x72, 0x65, 0x6c, 0x65, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x31, 0x2e, 0x30, 0x31, 0x7d, 0x2c, 0x7b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x3a, 0x2f, 0x5b, 0x7b, 0x7d, 0x5b, 0x5c, 0x5d, 0x2c, 0x3a, 0x5d, 0x2f, 0x2c, 0xa, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x70, 0x75, 0x6e, 0x63, 0x74, 0x75, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x2c, 0x72, 0x65, 0x6c, 0x65, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x30, 0xa, 0x7d, 0x2c, 0x65, 0x2e, 0x51, 0x55, 0x4f, 0x54, 0x45, 0x5f, 0x53, 0x54, 0x52, 0x49, 0x4e, 0x47, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x2c, 0x73, 0x2c, 0x65, 0x2e, 0x43, 0x5f, 0x4e, 0x55, 0x4d, 0x42, 0x45, 0x52, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x2c, 0x65, 0x2e, 0x43, 0x5f, 0x4c, 0x49, 0x4e, 0x45, 0x5f, 0x43, 0x4f, 0x4d, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x2c, 0x65, 0x2e, 0x43, 0x5f, 0x42, 0x4c, 0x4f, 0x43, 0x4b, 0x5f, 0x43, 0x4f, 0x4d, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x5d, 0x2c, 0xa, 0x69, 0x6c, 0x6c, 0x65, 0x67, 0x61, 0x6c, 0x3a, 0x22, 0x5c, 0x5c, 0x53, 0x22, 0x7d, 0x7d, 0x7d, 0x29, 0x28, 0x29, 0x3b, 0x68, 0x6c, 0x6a, 0x73, 0x2e, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x28, 0x22, 0x6a, 0x73, 0x6f, 0x6e, 0x22, 0x2c, 0x65, 0x29, 0x7d, 0x29, 0x28, 0x29, 0x3b };
|
||||
static constexpr std::array<std::uint8_t, 523> f9WyAbPBHunlngqbuiIzAC3zsDdFbI2XIThko3QkMxWuidWEKkrjwnkFVEknHSgMe7VfI1b = {
|
||||
0x2f, 0x2a, 0x21, 0x20, 0x60, 0x6a, 0x73, 0x6f, 0x6e, 0x60, 0x20, 0x67, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x48, 0x69, 0x67, 0x68, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2e, 0x6a, 0x73, 0x20, 0x31, 0x31, 0x2e, 0x31, 0x30, 0x2e, 0x30, 0x20, 0x2a, 0x2f, 0xd, 0xa, 0x28, 0x28, 0x29, 0x3d, 0x3e, 0x7b, 0x76, 0x61, 0x72, 0x20, 0x65, 0x3d, 0x28, 0x28, 0x29, 0x3d, 0x3e, 0x7b, 0x22, 0x75, 0x73, 0x65, 0x20, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x22, 0x3b, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x65, 0x3d, 0x3e, 0x7b, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x61, 0x3d, 0x5b, 0x22, 0x74, 0x72, 0x75, 0x65, 0x22, 0x2c, 0x22, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x22, 0x2c, 0x22, 0x6e, 0x75, 0x6c, 0x6c, 0x22, 0x5d, 0x2c, 0x73, 0x3d, 0x7b, 0xd, 0xa, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x3a, 0x22, 0x6c, 0x69, 0x74, 0x65, 0x72, 0x61, 0x6c, 0x22, 0x2c, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x3a, 0x61, 0x2e, 0x6a, 0x6f, 0x69, 0x6e, 0x28, 0x22, 0x20, 0x22, 0x29, 0x7d, 0x3b, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x4a, 0x53, 0x4f, 0x4e, 0x22, 0x2c, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x3a, 0x5b, 0x22, 0x6a, 0x73, 0x6f, 0x6e, 0x63, 0x22, 0x5d, 0x2c, 0xd, 0xa, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x3a, 0x7b, 0x6c, 0x69, 0x74, 0x65, 0x72, 0x61, 0x6c, 0x3a, 0x61, 0x7d, 0x2c, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x73, 0x3a, 0x5b, 0x7b, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x61, 0x74, 0x74, 0x72, 0x22, 0x2c, 0xd, 0xa, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x3a, 0x2f, 0x22, 0x28, 0x5c, 0x5c, 0x2e, 0x7c, 0x5b, 0x5e, 0x5c, 0x5c, 0x22, 0x5c, 0x72, 0x5c, 0x6e, 0x5d, 0x29, 0x2a, 0x22, 0x28, 0x3f, 0x3d, 0x5c, 0x73, 0x2a, 0x3a, 0x29, 0x2f, 0x2c, 0x72, 0x65, 0x6c, 0x65, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x31, 0x2e, 0x30, 0x31, 0x7d, 0x2c, 0x7b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x3a, 0x2f, 0x5b, 0x7b, 0x7d, 0x5b, 0x5c, 0x5d, 0x2c, 0x3a, 0x5d, 0x2f, 0x2c, 0xd, 0xa, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x70, 0x75, 0x6e, 0x63, 0x74, 0x75, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x2c, 0x72, 0x65, 0x6c, 0x65, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x30, 0xd, 0xa, 0x7d, 0x2c, 0x65, 0x2e, 0x51, 0x55, 0x4f, 0x54, 0x45, 0x5f, 0x53, 0x54, 0x52, 0x49, 0x4e, 0x47, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x2c, 0x73, 0x2c, 0x65, 0x2e, 0x43, 0x5f, 0x4e, 0x55, 0x4d, 0x42, 0x45, 0x52, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x2c, 0x65, 0x2e, 0x43, 0x5f, 0x4c, 0x49, 0x4e, 0x45, 0x5f, 0x43, 0x4f, 0x4d, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x2c, 0x65, 0x2e, 0x43, 0x5f, 0x42, 0x4c, 0x4f, 0x43, 0x4b, 0x5f, 0x43, 0x4f, 0x4d, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x5d, 0x2c, 0xd, 0xa, 0x69, 0x6c, 0x6c, 0x65, 0x67, 0x61, 0x6c, 0x3a, 0x22, 0x5c, 0x5c, 0x53, 0x22, 0x7d, 0x7d, 0x7d, 0x29, 0x28, 0x29, 0x3b, 0x68, 0x6c, 0x6a, 0x73, 0x2e, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x28, 0x22, 0x6a, 0x73, 0x6f, 0x6e, 0x22, 0x2c, 0x65, 0x29, 0x7d, 0x29, 0x28, 0x29, 0x3b };
|
||||
} // namespace saucer::embedded
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -5,6 +5,6 @@
|
||||
|
||||
namespace saucer::embedded
|
||||
{
|
||||
static constexpr std::array<std::uint8_t, 330> fdM8RmRybyXVMyJLl3NloVCcC3hdqcun8ISXH1beAaBQCo8pFaYJwXsVNwlcUSgy8rZUSUfj = {
|
||||
0x2f, 0x2a, 0x21, 0x20, 0x60, 0x73, 0x68, 0x65, 0x6c, 0x6c, 0x60, 0x20, 0x67, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x48, 0x69, 0x67, 0x68, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2e, 0x6a, 0x73, 0x20, 0x31, 0x31, 0x2e, 0x31, 0x30, 0x2e, 0x30, 0x20, 0x2a, 0x2f, 0xa, 0x28, 0x28, 0x29, 0x3d, 0x3e, 0x7b, 0x76, 0x61, 0x72, 0x20, 0x73, 0x3d, 0x28, 0x28, 0x29, 0x3d, 0x3e, 0x7b, 0x22, 0x75, 0x73, 0x65, 0x20, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x22, 0x3b, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x73, 0x3d, 0x3e, 0x28, 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x53, 0x68, 0x65, 0x6c, 0x6c, 0x20, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x2c, 0xa, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x3a, 0x5b, 0x22, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x22, 0x2c, 0x22, 0x73, 0x68, 0x65, 0x6c, 0x6c, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x5d, 0x2c, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x73, 0x3a, 0x5b, 0x7b, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x22, 0x2c, 0xa, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x3a, 0x2f, 0x5e, 0x5c, 0x73, 0x7b, 0x30, 0x2c, 0x33, 0x7d, 0x5b, 0x2f, 0x7e, 0x5c, 0x77, 0x5c, 0x64, 0x5b, 0x5c, 0x5d, 0x28, 0x29, 0x40, 0x2d, 0x5d, 0x2a, 0x5b, 0x3e, 0x25, 0x24, 0x23, 0x5d, 0x5b, 0x20, 0x5d, 0x3f, 0x2f, 0x2c, 0x73, 0x74, 0x61, 0x72, 0x74, 0x73, 0x3a, 0x7b, 0x65, 0x6e, 0x64, 0x3a, 0x2f, 0x5b, 0x5e, 0x5c, 0x5c, 0x5d, 0x28, 0x3f, 0x3d, 0x5c, 0x73, 0x2a, 0x24, 0x29, 0x2f, 0x2c, 0xa, 0x73, 0x75, 0x62, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x3a, 0x22, 0x62, 0x61, 0x73, 0x68, 0x22, 0x7d, 0x7d, 0x5d, 0x7d, 0x29, 0x7d, 0x29, 0x28, 0x29, 0x3b, 0x68, 0x6c, 0x6a, 0x73, 0x2e, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x28, 0x22, 0x73, 0x68, 0x65, 0x6c, 0x6c, 0x22, 0x2c, 0x73, 0x29, 0x7d, 0x29, 0x28, 0x29, 0x3b };
|
||||
static constexpr std::array<std::uint8_t, 334> fdM8RmRybyXVNAvEYAwOY5oVTsI4PyUTUIefGgARSnnuCJB5BhVtinOy4aRKyDiuFE4r1zZz = {
|
||||
0x2f, 0x2a, 0x21, 0x20, 0x60, 0x73, 0x68, 0x65, 0x6c, 0x6c, 0x60, 0x20, 0x67, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x48, 0x69, 0x67, 0x68, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2e, 0x6a, 0x73, 0x20, 0x31, 0x31, 0x2e, 0x31, 0x30, 0x2e, 0x30, 0x20, 0x2a, 0x2f, 0xd, 0xa, 0x28, 0x28, 0x29, 0x3d, 0x3e, 0x7b, 0x76, 0x61, 0x72, 0x20, 0x73, 0x3d, 0x28, 0x28, 0x29, 0x3d, 0x3e, 0x7b, 0x22, 0x75, 0x73, 0x65, 0x20, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x22, 0x3b, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x73, 0x3d, 0x3e, 0x28, 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x53, 0x68, 0x65, 0x6c, 0x6c, 0x20, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x2c, 0xd, 0xa, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x3a, 0x5b, 0x22, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x22, 0x2c, 0x22, 0x73, 0x68, 0x65, 0x6c, 0x6c, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x5d, 0x2c, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x73, 0x3a, 0x5b, 0x7b, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x22, 0x2c, 0xd, 0xa, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x3a, 0x2f, 0x5e, 0x5c, 0x73, 0x7b, 0x30, 0x2c, 0x33, 0x7d, 0x5b, 0x2f, 0x7e, 0x5c, 0x77, 0x5c, 0x64, 0x5b, 0x5c, 0x5d, 0x28, 0x29, 0x40, 0x2d, 0x5d, 0x2a, 0x5b, 0x3e, 0x25, 0x24, 0x23, 0x5d, 0x5b, 0x20, 0x5d, 0x3f, 0x2f, 0x2c, 0x73, 0x74, 0x61, 0x72, 0x74, 0x73, 0x3a, 0x7b, 0x65, 0x6e, 0x64, 0x3a, 0x2f, 0x5b, 0x5e, 0x5c, 0x5c, 0x5d, 0x28, 0x3f, 0x3d, 0x5c, 0x73, 0x2a, 0x24, 0x29, 0x2f, 0x2c, 0xd, 0xa, 0x73, 0x75, 0x62, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x3a, 0x22, 0x62, 0x61, 0x73, 0x68, 0x22, 0x7d, 0x7d, 0x5d, 0x7d, 0x29, 0x7d, 0x29, 0x28, 0x29, 0x3b, 0x68, 0x6c, 0x6a, 0x73, 0x2e, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x28, 0x22, 0x73, 0x68, 0x65, 0x6c, 0x6c, 0x22, 0x2c, 0x73, 0x29, 0x7d, 0x29, 0x28, 0x29, 0x3b };
|
||||
} // namespace saucer::embedded
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -5,6 +5,6 @@
|
||||
|
||||
namespace saucer::embedded
|
||||
{
|
||||
static constexpr std::array<std::uint8_t, 611> fojilm7xNwRcwzNixtiYkMUlrHmm4AtERXQoLq6fQKxQUXDhiIb9V3w97UBhznGKAjkrNm5MbwHsxUpv = {
|
||||
static constexpr std::array<std::uint8_t, 611> fojilm7xNwRcxFdhECfLlduVz6Dklcc4ZUb13bs8qeDuDjNERR8McKkkdN1nJY9Orql2zqoFt3pmUjNz = {
|
||||
0x70, 0x72, 0x65, 0x20, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x7b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x3b, 0x6f, 0x76, 0x65, 0x72, 0x66, 0x6c, 0x6f, 0x77, 0x2d, 0x78, 0x3a, 0x61, 0x75, 0x74, 0x6f, 0x3b, 0x70, 0x61, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x3a, 0x31, 0x65, 0x6d, 0x7d, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x7b, 0x70, 0x61, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x3a, 0x33, 0x70, 0x78, 0x20, 0x35, 0x70, 0x78, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x61, 0x39, 0x62, 0x37, 0x63, 0x36, 0x3b, 0x62, 0x61, 0x63, 0x6b, 0x67, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3a, 0x23, 0x32, 0x38, 0x32, 0x62, 0x32, 0x65, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x62, 0x75, 0x6c, 0x6c, 0x65, 0x74, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6c, 0x69, 0x74, 0x65, 0x72, 0x61, 0x6c, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x36, 0x38, 0x39, 0x37, 0x62, 0x62, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2d, 0x74, 0x61, 0x67, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x63, 0x63, 0x37, 0x38, 0x33, 0x32, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6c, 0x69, 0x6e, 0x6b, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2d, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x36, 0x32, 0x39, 0x37, 0x35, 0x35, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x67, 0x72, 0x65, 0x79, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6d, 0x65, 0x74, 0x61, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x62, 0x62, 0x62, 0x35, 0x32, 0x39, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x36, 0x61, 0x38, 0x37, 0x35, 0x39, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x66, 0x66, 0x63, 0x36, 0x36, 0x64, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2d, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2d, 0x69, 0x64, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x65, 0x38, 0x62, 0x66, 0x36, 0x61, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x65, 0x6d, 0x70, 0x68, 0x61, 0x73, 0x69, 0x73, 0x7b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3a, 0x69, 0x74, 0x61, 0x6c, 0x69, 0x63, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x74, 0x72, 0x6f, 0x6e, 0x67, 0x7b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3a, 0x37, 0x30, 0x30, 0x7d };
|
||||
} // namespace saucer::embedded
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -5,6 +5,6 @@
|
||||
|
||||
namespace saucer::embedded
|
||||
{
|
||||
static constexpr std::array<std::uint8_t, 673> fYf7WVKUDpdTzhBYbgTBOrHu6VXIbHy2eQWWNmyHCYRqnfK3dpFSmZFGqiwSS0fzTnal = {
|
||||
static constexpr std::array<std::uint8_t, 673> fYf7WVKUDpdTzsIByLsdRRDqFTtopAfSz2ygwQKNpbRNB5LbB937IIsDC8p0X5SPgC7H = {
|
||||
0x70, 0x72, 0x65, 0x20, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x7b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x3b, 0x6f, 0x76, 0x65, 0x72, 0x66, 0x6c, 0x6f, 0x77, 0x2d, 0x78, 0x3a, 0x61, 0x75, 0x74, 0x6f, 0x3b, 0x70, 0x61, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x3a, 0x31, 0x65, 0x6d, 0x7d, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x7b, 0x70, 0x61, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x3a, 0x33, 0x70, 0x78, 0x20, 0x35, 0x70, 0x78, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x7b, 0x62, 0x61, 0x63, 0x6b, 0x67, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3a, 0x23, 0x32, 0x32, 0x32, 0x3b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x61, 0x61, 0x61, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x75, 0x62, 0x73, 0x74, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x61, 0x61, 0x61, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x66, 0x66, 0x66, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6d, 0x65, 0x74, 0x61, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x34, 0x34, 0x34, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x62, 0x75, 0x6c, 0x6c, 0x65, 0x74, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x72, 0x65, 0x67, 0x65, 0x78, 0x70, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x66, 0x63, 0x33, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x30, 0x63, 0x36, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x62, 0x75, 0x69, 0x6c, 0x74, 0x5f, 0x69, 0x6e, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6c, 0x69, 0x6e, 0x6b, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6c, 0x69, 0x74, 0x65, 0x72, 0x61, 0x6c, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2d, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x33, 0x32, 0x61, 0x61, 0x65, 0x65, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2d, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2d, 0x69, 0x64, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2d, 0x74, 0x61, 0x67, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x36, 0x34, 0x61, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2d, 0x74, 0x61, 0x67, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x62, 0x31, 0x36, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x64, 0x6f, 0x63, 0x74, 0x61, 0x67, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x74, 0x72, 0x6f, 0x6e, 0x67, 0x7b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3a, 0x37, 0x30, 0x30, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x65, 0x6d, 0x70, 0x68, 0x61, 0x73, 0x69, 0x73, 0x7b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3a, 0x69, 0x74, 0x61, 0x6c, 0x69, 0x63, 0x7d };
|
||||
} // namespace saucer::embedded
|
||||
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
namespace saucer::embedded
|
||||
{
|
||||
static constexpr std::array<std::uint8_t, 628> f8OUOpBG2Ne4qEoke7rZDHkTZTuzAy3OrNrPHNy82YUxls5LE0IlAnFEhWVBXdXeWsl = {
|
||||
0x70, 0x72, 0x65, 0x20, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x20, 0x7b, 0xa, 0x20, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x20, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x3b, 0xa, 0x20, 0x20, 0x6f, 0x76, 0x65, 0x72, 0x66, 0x6c, 0x6f, 0x77, 0x2d, 0x78, 0x3a, 0x20, 0x61, 0x75, 0x74, 0x6f, 0x3b, 0xa, 0x20, 0x20, 0x70, 0x61, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x31, 0x65, 0x6d, 0xa, 0x7d, 0xa, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x20, 0x7b, 0xa, 0x20, 0x20, 0x70, 0x61, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x33, 0x70, 0x78, 0x20, 0x35, 0x70, 0x78, 0xa, 0x7d, 0xa, 0x2f, 0x2a, 0xa, 0xa, 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x6d, 0x61, 0x6e, 0x69, 0x61, 0x63, 0x73, 0x2e, 0x6f, 0x72, 0x67, 0x20, 0x28, 0x63, 0x29, 0x20, 0x49, 0x76, 0x61, 0x6e, 0x20, 0x53, 0x61, 0x67, 0x61, 0x6c, 0x61, 0x65, 0x76, 0x20, 0x3c, 0x4d, 0x61, 0x6e, 0x69, 0x61, 0x63, 0x40, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x4d, 0x61, 0x6e, 0x69, 0x61, 0x63, 0x73, 0x2e, 0x4f, 0x72, 0x67, 0x3e, 0xa, 0xa, 0x2a, 0x2f, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x20, 0x7b, 0xa, 0x20, 0x20, 0x62, 0x61, 0x63, 0x6b, 0x67, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3a, 0x20, 0x77, 0x68, 0x69, 0x74, 0x65, 0x3b, 0xa, 0x20, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x20, 0x62, 0x6c, 0x61, 0x63, 0x6b, 0xa, 0x7d, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2c, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x2c, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2d, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x2c, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x2c, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x62, 0x75, 0x6c, 0x6c, 0x65, 0x74, 0x2c, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x2c, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6c, 0x69, 0x6e, 0x6b, 0x20, 0x7b, 0xa, 0x20, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x20, 0x23, 0x38, 0x38, 0x38, 0xa, 0x7d, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x2c, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x2c, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6d, 0x65, 0x74, 0x61, 0x2c, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x7b, 0xa, 0x20, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x20, 0x23, 0x63, 0x63, 0x63, 0xa, 0x7d, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x2c, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2d, 0x74, 0x61, 0x67, 0x2c, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x2c, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x74, 0x72, 0x6f, 0x6e, 0x67, 0x20, 0x7b, 0xa, 0x20, 0x20, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3a, 0x20, 0x62, 0x6f, 0x6c, 0x64, 0xa, 0x7d, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x65, 0x6d, 0x70, 0x68, 0x61, 0x73, 0x69, 0x73, 0x20, 0x7b, 0xa, 0x20, 0x20, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3a, 0x20, 0x69, 0x74, 0x61, 0x6c, 0x69, 0x63, 0xa, 0x7d };
|
||||
static constexpr std::array<std::uint8_t, 672> f8OUOpBG2Ne4qHVWvj17c82rpDXNRtNbXBrRpviee6e3Bt3mEo8zLNy1hrmkv9DPYup = {
|
||||
0x70, 0x72, 0x65, 0x20, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x20, 0x7b, 0xd, 0xa, 0x20, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x20, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x3b, 0xd, 0xa, 0x20, 0x20, 0x6f, 0x76, 0x65, 0x72, 0x66, 0x6c, 0x6f, 0x77, 0x2d, 0x78, 0x3a, 0x20, 0x61, 0x75, 0x74, 0x6f, 0x3b, 0xd, 0xa, 0x20, 0x20, 0x70, 0x61, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x31, 0x65, 0x6d, 0xd, 0xa, 0x7d, 0xd, 0xa, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x20, 0x7b, 0xd, 0xa, 0x20, 0x20, 0x70, 0x61, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x33, 0x70, 0x78, 0x20, 0x35, 0x70, 0x78, 0xd, 0xa, 0x7d, 0xd, 0xa, 0x2f, 0x2a, 0xd, 0xa, 0xd, 0xa, 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x6d, 0x61, 0x6e, 0x69, 0x61, 0x63, 0x73, 0x2e, 0x6f, 0x72, 0x67, 0x20, 0x28, 0x63, 0x29, 0x20, 0x49, 0x76, 0x61, 0x6e, 0x20, 0x53, 0x61, 0x67, 0x61, 0x6c, 0x61, 0x65, 0x76, 0x20, 0x3c, 0x4d, 0x61, 0x6e, 0x69, 0x61, 0x63, 0x40, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x4d, 0x61, 0x6e, 0x69, 0x61, 0x63, 0x73, 0x2e, 0x4f, 0x72, 0x67, 0x3e, 0xd, 0xa, 0xd, 0xa, 0x2a, 0x2f, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x20, 0x7b, 0xd, 0xa, 0x20, 0x20, 0x62, 0x61, 0x63, 0x6b, 0x67, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3a, 0x20, 0x77, 0x68, 0x69, 0x74, 0x65, 0x3b, 0xd, 0xa, 0x20, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x20, 0x62, 0x6c, 0x61, 0x63, 0x6b, 0xd, 0xa, 0x7d, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2d, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x62, 0x75, 0x6c, 0x6c, 0x65, 0x74, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6c, 0x69, 0x6e, 0x6b, 0x20, 0x7b, 0xd, 0xa, 0x20, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x20, 0x23, 0x38, 0x38, 0x38, 0xd, 0xa, 0x7d, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6d, 0x65, 0x74, 0x61, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x7b, 0xd, 0xa, 0x20, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x20, 0x23, 0x63, 0x63, 0x63, 0xd, 0xa, 0x7d, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2d, 0x74, 0x61, 0x67, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x74, 0x72, 0x6f, 0x6e, 0x67, 0x20, 0x7b, 0xd, 0xa, 0x20, 0x20, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3a, 0x20, 0x62, 0x6f, 0x6c, 0x64, 0xd, 0xa, 0x7d, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x65, 0x6d, 0x70, 0x68, 0x61, 0x73, 0x69, 0x73, 0x20, 0x7b, 0xd, 0xa, 0x20, 0x20, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3a, 0x20, 0x69, 0x74, 0x61, 0x6c, 0x69, 0x63, 0xd, 0xa, 0x7d };
|
||||
} // namespace saucer::embedded
|
||||
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
namespace saucer::embedded
|
||||
{
|
||||
static constexpr std::array<std::uint8_t, 454> fdM8RmRybyXVMyJLl3NloVCcC3hdqcun8ISXH1beAaBhPmJu1OKnDBXmtDUiqc89Uj39Minb = {
|
||||
static constexpr std::array<std::uint8_t, 454> fdM8RmRybyXVNAvEYAwOY5oVTsI4PyUTUIefGgARSnoBPHM9xVIMzR4FZrARKNA5b5YVwDhr = {
|
||||
0x70, 0x72, 0x65, 0x20, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x7b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x3b, 0x6f, 0x76, 0x65, 0x72, 0x66, 0x6c, 0x6f, 0x77, 0x2d, 0x78, 0x3a, 0x61, 0x75, 0x74, 0x6f, 0x3b, 0x70, 0x61, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x3a, 0x31, 0x65, 0x6d, 0x7d, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x7b, 0x70, 0x61, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x3a, 0x33, 0x70, 0x78, 0x20, 0x35, 0x70, 0x78, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x7b, 0x62, 0x61, 0x63, 0x6b, 0x67, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3a, 0x23, 0x66, 0x66, 0x66, 0x3b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x30, 0x30, 0x30, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x62, 0x75, 0x6c, 0x6c, 0x65, 0x74, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6c, 0x69, 0x6e, 0x6b, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2d, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6d, 0x65, 0x74, 0x61, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x63, 0x63, 0x63, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2d, 0x74, 0x61, 0x67, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x74, 0x72, 0x6f, 0x6e, 0x67, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x7b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3a, 0x37, 0x30, 0x30, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x65, 0x6d, 0x70, 0x68, 0x61, 0x73, 0x69, 0x73, 0x7b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3a, 0x69, 0x74, 0x61, 0x6c, 0x69, 0x63, 0x7d };
|
||||
} // namespace saucer::embedded
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user