diff --git a/Motus/CMakeLists.txt b/Motus/CMakeLists.txt
index 1938c61213d6ab5349139c510aa04e7ed7ee8d67..88862787ef054f3fe94fad0fa82f1e417e2a791a 100644
--- a/Motus/CMakeLists.txt
+++ b/Motus/CMakeLists.txt
@@ -20,6 +20,7 @@ qt_add_qml_module(appMotus
         RESOURCES Ressources.qrc
         QML_FILES Case.qml
         QML_FILES Bouton.qml
+        QML_FILES Key.qml
 )
 
 # Qt for iOS sets MACOSX_BUNDLE_GUI_IDENTIFIER automatically since Qt 6.1.
diff --git a/Motus/Key.qml b/Motus/Key.qml
index 6ffea51076d4e6e8ea86119480777b2c9c9cc88a..13b9f34cf116306234b934b86c16bf52e085b10b 100644
--- a/Motus/Key.qml
+++ b/Motus/Key.qml
@@ -4,6 +4,7 @@ Item {
     id: _item
     width: 70
     height: 100
+    property alias labelText: label.text
     focus: true
     scale: 2
 
@@ -12,15 +13,16 @@ Item {
         color: "#7a7a7a"
         radius: 20
         anchors.fill: parent
+
         
         Text {
-            id: _text
+            id: label
             x: 25
             y: 42
             color: "#ffffff"
             text: qsTr("A")
             anchors.fill: parent
-            font.pixelSize: 50
+            font.pixelSize: 70
             horizontalAlignment: Text.AlignHCenter
             verticalAlignment: Text.AlignVCenter
             font.family: "Tahoma"
diff --git a/Motus/Main.qml b/Motus/Main.qml
index c78bee2fd5a49b901ada3197dde701caf0cc2bc8..d749a09c8ece7f8b4c955d4cdcff31818591dcb4 100644
--- a/Motus/Main.qml
+++ b/Motus/Main.qml
@@ -62,12 +62,12 @@ Window {
             border.width: 5
 
             Row {
-                id: row
-                x: 90
-                y: 42
+                id: row1
+                x: 128
+                y: 19
                 height: 100
                 spacing: 5
-                width: (10 * 56) + (9 * spacing)
+                width: (10 * 70) + (9 * spacing)
 
                 Key {
                     id: key
@@ -78,67 +78,194 @@ Window {
                 Key {
                     id: key1
                     x: 70
+                    labelText: "Z"
                     scale: 0.8
                 }
 
                 Key {
                     id: key2
                     x: 140
+                    labelText: "E"
+                    antialiasing: true
                     scale: 0.8
                 }
 
                 Key {
                     id: key3
                     x: 210
+                    labelText: "R"
                     scale: 0.8
                 }
 
                 Key {
                     id: key4
                     x: 280
+                    labelText: "T"
                     scale: 0.8
                 }
 
                 Key {
                     id: key5
                     x: 350
+                    labelText: "Y"
                     scale: 0.8
                 }
 
                 Key {
                     id: key6
                     x: 420
+                    labelText: "U"
                     scale: 0.8
                 }
 
                 Key {
                     id: key7
                     x: 490
+                    labelText: "I"
                     scale: 0.8
                 }
 
                 Key {
                     id: key8
                     x: 560
+                    labelText: "O"
                     scale: 0.8
                 }
 
                 Key {
                     id: key9
                     x: 630
+                    labelText: "P"
+                    scale: 0.8
+                }
+            }
+
+            Column {
+                id: column
+                anchors.fill: parent
+            }
+
+            Row {
+                id: row2
+                x: 165
+                y: 125
+                width: (9 * 70) + (8 * spacing)
+                height: 100
+                spacing: 5
+
+                Key {
+                    id: key12
+                    x: 140
+                    labelText: "Q"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key13
+                    x: 210
+                    labelText: "S"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key14
+                    x: 280
+                    labelText: "D"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key15
+                    x: 350
+                    labelText: "F"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key16
+                    x: 420
+                    labelText: "G"
                     scale: 0.8
                 }
 
                 Key {
-                    id: key10
-                    x: 700
+                    id: key17
+                    x: 490
+                    labelText: "H"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key18
+                    x: 560
+                    labelText: "J"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key19
+                    x: 630
+                    labelText: "K"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key20
+                    x: 630
+                    labelText: "L"
                     scale: 0.8
                 }
             }
 
-            Column {
-                id: column
-                anchors.fill: parent
+            Row {
+                id: row3
+                x: 128
+                y: 231
+                width: (6 * 70) + (5 * spacing)
+                height: 100
+                spacing: 5
+
+                Key {
+                    id: key23
+                    x: 140
+                    labelText: "W"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key24
+                    x: 210
+                    labelText: "X"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key25
+                    x: 280
+                    labelText: "C"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key26
+                    x: 350
+                    labelText: "V"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key27
+                    x: 420
+                    labelText: "B"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key28
+                    x: 490
+                    labelText: "N"
+                    scale: 0.8
+                }
             }
         }
 
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/cmakeFiles-v1-5cf46ff022157af4fa31.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/cmakeFiles-v1-5cf46ff022157af4fa31.json
deleted file mode 100644
index dc58e9a19f92b3ec957d85daef387c2aae65f0ab..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/cmakeFiles-v1-5cf46ff022157af4fa31.json
+++ /dev/null
@@ -1,3593 +0,0 @@
-{
-	"inputs" : 
-	[
-		{
-			"path" : "CMakeLists.txt"
-		},
-		{
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineSystem.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystem.cmake.in"
-		},
-		{
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeSystem.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeNinjaFindMake.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInitialize.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-Initialize.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCXXCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-Determine-CXX.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerId.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCompilerIdDetection.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/ADSP-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/ARMClang-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Borland-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Clang-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Cray-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/CrayClang-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GHS-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/HP-CXX-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IAR-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Intel-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/MSVC-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/NVHPC-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/OrangeC-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/PGI-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/PathScale-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/SCO-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/TI-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/TIClang-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Tasking-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Watcom-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/XL-CXX-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindBinUtils.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-FindBinUtils.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompiler.cmake.in"
-		},
-		{
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeCXXCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInformation.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeGenericSystem.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeInitializeConfigs.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/WindowsPaths.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXInformation.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeLanguageInformation.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-CXX.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineRCCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeRCCompiler.cmake.in"
-		},
-		{
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeRCCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeRCInformation.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-windres.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestRCCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCommonLanguageInclude.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCompilerCommon.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CMakeDetermineLinkerId.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeParseImplicitIncludeInfo.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeParseImplicitLinkInfo.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeParseLibraryArchitecture.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCompilerCommon.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompileFeatures.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/FeatureTesting.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompiler.cmake.in"
-		},
-		{
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeCXXCompiler.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX-ABI.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/Qt6Config.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtFeature.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckCompilerFlag.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckFlagCommonConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicSbomAttributionHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicSbomCpeHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicSbomDepHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicSbomFileHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicSbomLicenseHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicSbomOpsHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicSbomPurlHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicSbomPythonHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicSbomSystemDepHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindThreads.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckLibraryExists.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckIncludeFileCXX.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickConfigVersion.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickConfigVersionImpl.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QuickTools/Qt6QuickToolsConfigVersion.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QuickTools/Qt6QuickToolsConfigVersionImpl.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QuickTools/Qt6QuickToolsConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QuickTools/Qt6QuickToolsDependencies.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersion.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersionImpl.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlTools/Qt6QmlToolsDependencies.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlTools/Qt6QmlToolsAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlTools/Qt6QmlToolsVersionlessTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QuickTools/Qt6QuickToolsTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QuickTools/Qt6QuickToolsTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QuickTools/Qt6QuickToolsAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QuickTools/Qt6QuickToolsVersionlessTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersion.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersionImpl.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateVersionlessAliasTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersion.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersionImpl.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointMinGW32Target.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateVersionlessAliasTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindVulkan.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlConfigVersion.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlConfigVersionImpl.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlDependencies.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersion.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersionImpl.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlTools/Qt6QmlToolsConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlTools/Qt6QmlToolsDependencies.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlTools/Qt6QmlToolsAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlTools/Qt6QmlToolsVersionlessTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersion.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersionImpl.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationVersionlessAliasTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6NetworkConfigVersion.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6NetworkConfigVersionImpl.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6NetworkConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6NetworkDependencies.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6NetworkTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6NetworkTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6NetworkAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6NetworkPlugins.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6QNLMNIPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6QNLMNIPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6QNLMNIPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6QNLMNIPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6QSchannelBackendPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6QSchannelBackendPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6QSchannelBackendPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6QSchannelBackendPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6NetworkVersionlessAliasTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlConfigExtras.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlFindQmlscInternal.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlPublicCMakeHelpers.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlPlugins.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6LabsPlatformpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6LabsPlatformpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6LabsPlatformpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6LabsPlatformpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlAssetDownloaderpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlAssetDownloaderpluginDependencies.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlAssetDownloader/Qt6QmlAssetDownloaderConfigVersion.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlAssetDownloader/Qt6QmlAssetDownloaderConfigVersionImpl.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlAssetDownloader/Qt6QmlAssetDownloaderConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlAssetDownloader/Qt6QmlAssetDownloaderDependencies.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6ExamplesAssetDownloaderPrivate/Qt6ExamplesAssetDownloaderPrivateConfigVersion.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6ExamplesAssetDownloaderPrivate/Qt6ExamplesAssetDownloaderPrivateConfigVersionImpl.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6ExamplesAssetDownloaderPrivate/Qt6ExamplesAssetDownloaderPrivateConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6ExamplesAssetDownloaderPrivate/Qt6ExamplesAssetDownloaderPrivateDependencies.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Concurrent/Qt6ConcurrentConfigVersion.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Concurrent/Qt6ConcurrentConfigVersionImpl.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Concurrent/Qt6ConcurrentConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Concurrent/Qt6ConcurrentDependencies.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Concurrent/Qt6ConcurrentTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Concurrent/Qt6ConcurrentTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Concurrent/Qt6ConcurrentAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Concurrent/Qt6ConcurrentVersionlessAliasTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6ExamplesAssetDownloaderPrivate/Qt6ExamplesAssetDownloaderPrivateTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6ExamplesAssetDownloaderPrivate/Qt6ExamplesAssetDownloaderPrivateTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6ExamplesAssetDownloaderPrivate/Qt6ExamplesAssetDownloaderPrivateAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6ExamplesAssetDownloaderPrivate/Qt6ExamplesAssetDownloaderPrivateVersionlessAliasTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlAssetDownloader/Qt6QmlAssetDownloaderTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlAssetDownloader/Qt6QmlAssetDownloaderTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlAssetDownloader/Qt6QmlAssetDownloaderAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlAssetDownloader/Qt6QmlAssetDownloaderVersionlessAliasTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlAssetDownloaderpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlAssetDownloaderpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlAssetDownloaderpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6Quick3DXrpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6Quick3DXrpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6Quick3DXrpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6Quick3DXrpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquickvectorimagepluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquickvectorimagepluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquickvectorimagepluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquickvectorimagepluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Config.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Targets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2AdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fluentwinui3styleimplpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fluentwinui3styleimplpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fluentwinui3styleimplpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fluentwinui3styleimplpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fluentwinui3stylepluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fluentwinui3stylepluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fluentwinui3stylepluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fluentwinui3stylepluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2windowsstyleimplpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2windowsstyleimplpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2windowsstyleimplpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2windowsstyleimplpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2windowsstylepluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2windowsstylepluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2windowsstylepluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2windowsstylepluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6LabsPlatformpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlAssetDownloaderpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6Quick3DXrpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qquickvectorimagepluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtchartsqml2Config.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelpersimplpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fluentwinui3styleimplpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fluentwinui3stylepluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2windowsstyleimplpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2windowsstylepluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelineblendtreespluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dspatialaudioConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickmultimediaConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlVersionlessAliasTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaConfigVersion.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaConfigVersionImpl.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaDependencies.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersion.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersionImpl.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlModels/Qt6QmlModelsConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlModels/Qt6QmlModelsDependencies.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlModels/Qt6QmlModelsAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlModels/Qt6QmlModelsVersionlessAliasTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptConfigVersion.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptConfigVersionImpl.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptDependencies.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptVersionlessAliasTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaVersionlessAliasTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersion.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersionImpl.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6OpenGL/Qt6OpenGLConfig.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6OpenGL/Qt6OpenGLDependencies.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindVulkan.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6OpenGL/Qt6OpenGLTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6OpenGL/Qt6OpenGLAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6OpenGL/Qt6OpenGLVersionlessAliasTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickTargets-relwithdebinfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickAdditionalTargetInfo.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickPlugins.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickVersionlessAliasTargets.cmake"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlModuleDirMappingTemplate.qrc.in"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in"
-		},
-		{
-			"isCMake" : true,
-			"isExternal" : true,
-			"path" : "C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake"
-		},
-		{
-			"isExternal" : true,
-			"path" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in"
-		},
-		{
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/qml_imports/appMotus_conf.cmake"
-		}
-	],
-	"kind" : "cmakeFiles",
-	"paths" : 
-	{
-		"build" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug",
-		"source" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus"
-	},
-	"version" : 
-	{
-		"major" : 1,
-		"minor" : 0
-	}
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/cmakeFiles-v1-90d17ce99cd82b9e07cc.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/cmakeFiles-v1-90d17ce99cd82b9e07cc.json
similarity index 100%
rename from Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/cmakeFiles-v1-90d17ce99cd82b9e07cc.json
rename to Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/cmakeFiles-v1-90d17ce99cd82b9e07cc.json
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-3e514770bcee07b1760d.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-3e514770bcee07b1760d.json
deleted file mode 100644
index 4bd1d285a6065551523658dd9d69c2369ed2091f..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-3e514770bcee07b1760d.json
+++ /dev/null
@@ -1,196 +0,0 @@
-{
-	"configurations" : 
-	[
-		{
-			"directories" : 
-			[
-				{
-					"build" : ".",
-					"hasInstallRule" : true,
-					"jsonFile" : "directory-.-Debug-416bbd532cae6808e53d.json",
-					"minimumCMakeVersion" : 
-					{
-						"string" : "3.16"
-					},
-					"projectIndex" : 0,
-					"source" : ".",
-					"targetIndexes" : 
-					[
-						0,
-						1,
-						2,
-						3,
-						4,
-						5,
-						6,
-						7,
-						8,
-						9,
-						10,
-						11,
-						12,
-						13,
-						14,
-						15
-					]
-				}
-			],
-			"name" : "Debug",
-			"projects" : 
-			[
-				{
-					"directoryIndexes" : 
-					[
-						0
-					],
-					"name" : "Motus",
-					"targetIndexes" : 
-					[
-						0,
-						1,
-						2,
-						3,
-						4,
-						5,
-						6,
-						7,
-						8,
-						9,
-						10,
-						11,
-						12,
-						13,
-						14,
-						15
-					]
-				}
-			],
-			"targets" : 
-			[
-				{
-					"directoryIndex" : 0,
-					"id" : "all_aotstats::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_aotstats-Debug-fb131674c43a1f470950.json",
-					"name" : "all_aotstats",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmllint::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmllint-Debug-4ec16165dce68666b660.json",
-					"name" : "all_qmllint",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmllint_json::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmllint_json-Debug-0677b46ada7ac654b9e9.json",
-					"name" : "all_qmllint_json",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmllint_module::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmllint_module-Debug-a0bbcaba16d6c94b5ae5.json",
-					"name" : "all_qmllint_module",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmltyperegistrations-Debug-d557d90c3f30ed917d94.json",
-					"name" : "all_qmltyperegistrations",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus-Debug-80e794640f1592cb4e01.json",
-					"name" : "appMotus",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_autogen::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_autogen-Debug-ff03fb459454804b344e.json",
-					"name" : "appMotus_autogen",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_autogen_timestamp_deps::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_autogen_timestamp_deps-Debug-a2a098c444f9c6d2e92f.json",
-					"name" : "appMotus_autogen_timestamp_deps",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_copy_qml::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_copy_qml-Debug-8a5ed087c87cb2c519da.json",
-					"name" : "appMotus_copy_qml",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_copy_res::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_copy_res-Debug-908248cd2bfa42ca36e0.json",
-					"name" : "appMotus_copy_res",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmlimportscan::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmlimportscan-Debug-d7f94ebf71135bfea388.json",
-					"name" : "appMotus_qmlimportscan",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmllint::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmllint-Debug-7685cd6bcc7457ec51f5.json",
-					"name" : "appMotus_qmllint",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmllint_json::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmllint_json-Debug-b90b075ebdd61f628d9d.json",
-					"name" : "appMotus_qmllint_json",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmllint_module::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmllint_module-Debug-6309847041883c80ecf4.json",
-					"name" : "appMotus_qmllint_module",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmltyperegistration::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmltyperegistration-Debug-e533cc2ce7c0fa43de2f.json",
-					"name" : "appMotus_qmltyperegistration",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "module_appMotus_aotstats_target::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-module_appMotus_aotstats_target-Debug-47c572bfa1476fdbbfa4.json",
-					"name" : "module_appMotus_aotstats_target",
-					"projectIndex" : 0
-				}
-			]
-		}
-	],
-	"kind" : "codemodel",
-	"paths" : 
-	{
-		"build" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug",
-		"source" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus"
-	},
-	"version" : 
-	{
-		"major" : 2,
-		"minor" : 7
-	}
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/codemodel-v2-4609ddfb7c287fe92bac.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-4609ddfb7c287fe92bac.json
similarity index 100%
rename from Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/codemodel-v2-4609ddfb7c287fe92bac.json
rename to Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-4609ddfb7c287fe92bac.json
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-5490553c682a8d7c5e23.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-5490553c682a8d7c5e23.json
deleted file mode 100644
index 8b6d0382021696d96dbec203d5ca5674b04a197f..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-5490553c682a8d7c5e23.json
+++ /dev/null
@@ -1,196 +0,0 @@
-{
-	"configurations" : 
-	[
-		{
-			"directories" : 
-			[
-				{
-					"build" : ".",
-					"hasInstallRule" : true,
-					"jsonFile" : "directory-.-Debug-d8f3750058250a40ece4.json",
-					"minimumCMakeVersion" : 
-					{
-						"string" : "3.16"
-					},
-					"projectIndex" : 0,
-					"source" : ".",
-					"targetIndexes" : 
-					[
-						0,
-						1,
-						2,
-						3,
-						4,
-						5,
-						6,
-						7,
-						8,
-						9,
-						10,
-						11,
-						12,
-						13,
-						14,
-						15
-					]
-				}
-			],
-			"name" : "Debug",
-			"projects" : 
-			[
-				{
-					"directoryIndexes" : 
-					[
-						0
-					],
-					"name" : "Motus",
-					"targetIndexes" : 
-					[
-						0,
-						1,
-						2,
-						3,
-						4,
-						5,
-						6,
-						7,
-						8,
-						9,
-						10,
-						11,
-						12,
-						13,
-						14,
-						15
-					]
-				}
-			],
-			"targets" : 
-			[
-				{
-					"directoryIndex" : 0,
-					"id" : "all_aotstats::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_aotstats-Debug-4aa7237c5de74a8c58a7.json",
-					"name" : "all_aotstats",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmllint::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmllint-Debug-4ec16165dce68666b660.json",
-					"name" : "all_qmllint",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmllint_json::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmllint_json-Debug-0677b46ada7ac654b9e9.json",
-					"name" : "all_qmllint_json",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmllint_module::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmllint_module-Debug-a0bbcaba16d6c94b5ae5.json",
-					"name" : "all_qmllint_module",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmltyperegistrations-Debug-d557d90c3f30ed917d94.json",
-					"name" : "all_qmltyperegistrations",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus-Debug-cebdc56ff18f9c17862e.json",
-					"name" : "appMotus",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_autogen::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_autogen-Debug-ff03fb459454804b344e.json",
-					"name" : "appMotus_autogen",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_autogen_timestamp_deps::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_autogen_timestamp_deps-Debug-a2a098c444f9c6d2e92f.json",
-					"name" : "appMotus_autogen_timestamp_deps",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_copy_qml::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_copy_qml-Debug-8a5ed087c87cb2c519da.json",
-					"name" : "appMotus_copy_qml",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_copy_res::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_copy_res-Debug-908248cd2bfa42ca36e0.json",
-					"name" : "appMotus_copy_res",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmlimportscan::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmlimportscan-Debug-d7f94ebf71135bfea388.json",
-					"name" : "appMotus_qmlimportscan",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmllint::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmllint-Debug-7685cd6bcc7457ec51f5.json",
-					"name" : "appMotus_qmllint",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmllint_json::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmllint_json-Debug-b90b075ebdd61f628d9d.json",
-					"name" : "appMotus_qmllint_json",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmllint_module::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmllint_module-Debug-6309847041883c80ecf4.json",
-					"name" : "appMotus_qmllint_module",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmltyperegistration::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmltyperegistration-Debug-e533cc2ce7c0fa43de2f.json",
-					"name" : "appMotus_qmltyperegistration",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "module_appMotus_aotstats_target::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-module_appMotus_aotstats_target-Debug-dbc832e1760cd1c28c4d.json",
-					"name" : "module_appMotus_aotstats_target",
-					"projectIndex" : 0
-				}
-			]
-		}
-	],
-	"kind" : "codemodel",
-	"paths" : 
-	{
-		"build" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug",
-		"source" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus"
-	},
-	"version" : 
-	{
-		"major" : 2,
-		"minor" : 7
-	}
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-54c7cb0417321595753e.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-54c7cb0417321595753e.json
deleted file mode 100644
index 4139ee192f4a2579ab0d85c560f7c61b2aba6800..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-54c7cb0417321595753e.json
+++ /dev/null
@@ -1,196 +0,0 @@
-{
-	"configurations" : 
-	[
-		{
-			"directories" : 
-			[
-				{
-					"build" : ".",
-					"hasInstallRule" : true,
-					"jsonFile" : "directory-.-Debug-c0201d06610e1bf23ca6.json",
-					"minimumCMakeVersion" : 
-					{
-						"string" : "3.16"
-					},
-					"projectIndex" : 0,
-					"source" : ".",
-					"targetIndexes" : 
-					[
-						0,
-						1,
-						2,
-						3,
-						4,
-						5,
-						6,
-						7,
-						8,
-						9,
-						10,
-						11,
-						12,
-						13,
-						14,
-						15
-					]
-				}
-			],
-			"name" : "Debug",
-			"projects" : 
-			[
-				{
-					"directoryIndexes" : 
-					[
-						0
-					],
-					"name" : "Motus",
-					"targetIndexes" : 
-					[
-						0,
-						1,
-						2,
-						3,
-						4,
-						5,
-						6,
-						7,
-						8,
-						9,
-						10,
-						11,
-						12,
-						13,
-						14,
-						15
-					]
-				}
-			],
-			"targets" : 
-			[
-				{
-					"directoryIndex" : 0,
-					"id" : "all_aotstats::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_aotstats-Debug-4aa7237c5de74a8c58a7.json",
-					"name" : "all_aotstats",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmllint::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmllint-Debug-4ec16165dce68666b660.json",
-					"name" : "all_qmllint",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmllint_json::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmllint_json-Debug-0677b46ada7ac654b9e9.json",
-					"name" : "all_qmllint_json",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmllint_module::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmllint_module-Debug-a0bbcaba16d6c94b5ae5.json",
-					"name" : "all_qmllint_module",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmltyperegistrations-Debug-d557d90c3f30ed917d94.json",
-					"name" : "all_qmltyperegistrations",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus-Debug-ec17c123db014b7b78d5.json",
-					"name" : "appMotus",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_autogen::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_autogen-Debug-ff03fb459454804b344e.json",
-					"name" : "appMotus_autogen",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_autogen_timestamp_deps::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_autogen_timestamp_deps-Debug-a2a098c444f9c6d2e92f.json",
-					"name" : "appMotus_autogen_timestamp_deps",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_copy_qml::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_copy_qml-Debug-8a5ed087c87cb2c519da.json",
-					"name" : "appMotus_copy_qml",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_copy_res::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_copy_res-Debug-908248cd2bfa42ca36e0.json",
-					"name" : "appMotus_copy_res",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmlimportscan::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmlimportscan-Debug-d7f94ebf71135bfea388.json",
-					"name" : "appMotus_qmlimportscan",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmllint::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmllint-Debug-7685cd6bcc7457ec51f5.json",
-					"name" : "appMotus_qmllint",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmllint_json::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmllint_json-Debug-b90b075ebdd61f628d9d.json",
-					"name" : "appMotus_qmllint_json",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmllint_module::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmllint_module-Debug-6309847041883c80ecf4.json",
-					"name" : "appMotus_qmllint_module",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmltyperegistration::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmltyperegistration-Debug-e533cc2ce7c0fa43de2f.json",
-					"name" : "appMotus_qmltyperegistration",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "module_appMotus_aotstats_target::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-module_appMotus_aotstats_target-Debug-dbc832e1760cd1c28c4d.json",
-					"name" : "module_appMotus_aotstats_target",
-					"projectIndex" : 0
-				}
-			]
-		}
-	],
-	"kind" : "codemodel",
-	"paths" : 
-	{
-		"build" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug",
-		"source" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus"
-	},
-	"version" : 
-	{
-		"major" : 2,
-		"minor" : 7
-	}
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-752049f6dd68d61bdb6f.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-752049f6dd68d61bdb6f.json
deleted file mode 100644
index 9f17e65d20a932cf8d2e8605b3d206bbb17fdcba..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-752049f6dd68d61bdb6f.json
+++ /dev/null
@@ -1,196 +0,0 @@
-{
-	"configurations" : 
-	[
-		{
-			"directories" : 
-			[
-				{
-					"build" : ".",
-					"hasInstallRule" : true,
-					"jsonFile" : "directory-.-Debug-05e0d488c8b1000caf44.json",
-					"minimumCMakeVersion" : 
-					{
-						"string" : "3.16"
-					},
-					"projectIndex" : 0,
-					"source" : ".",
-					"targetIndexes" : 
-					[
-						0,
-						1,
-						2,
-						3,
-						4,
-						5,
-						6,
-						7,
-						8,
-						9,
-						10,
-						11,
-						12,
-						13,
-						14,
-						15
-					]
-				}
-			],
-			"name" : "Debug",
-			"projects" : 
-			[
-				{
-					"directoryIndexes" : 
-					[
-						0
-					],
-					"name" : "Motus",
-					"targetIndexes" : 
-					[
-						0,
-						1,
-						2,
-						3,
-						4,
-						5,
-						6,
-						7,
-						8,
-						9,
-						10,
-						11,
-						12,
-						13,
-						14,
-						15
-					]
-				}
-			],
-			"targets" : 
-			[
-				{
-					"directoryIndex" : 0,
-					"id" : "all_aotstats::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_aotstats-Debug-4aa7237c5de74a8c58a7.json",
-					"name" : "all_aotstats",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmllint::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmllint-Debug-4ec16165dce68666b660.json",
-					"name" : "all_qmllint",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmllint_json::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmllint_json-Debug-0677b46ada7ac654b9e9.json",
-					"name" : "all_qmllint_json",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmllint_module::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmllint_module-Debug-a0bbcaba16d6c94b5ae5.json",
-					"name" : "all_qmllint_module",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmltyperegistrations-Debug-d557d90c3f30ed917d94.json",
-					"name" : "all_qmltyperegistrations",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus-Debug-3777182dc0811a1f3d71.json",
-					"name" : "appMotus",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_autogen::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_autogen-Debug-ff03fb459454804b344e.json",
-					"name" : "appMotus_autogen",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_autogen_timestamp_deps::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_autogen_timestamp_deps-Debug-a2a098c444f9c6d2e92f.json",
-					"name" : "appMotus_autogen_timestamp_deps",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_copy_qml::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_copy_qml-Debug-8a5ed087c87cb2c519da.json",
-					"name" : "appMotus_copy_qml",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_copy_res::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_copy_res-Debug-908248cd2bfa42ca36e0.json",
-					"name" : "appMotus_copy_res",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmlimportscan::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmlimportscan-Debug-d7f94ebf71135bfea388.json",
-					"name" : "appMotus_qmlimportscan",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmllint::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmllint-Debug-7685cd6bcc7457ec51f5.json",
-					"name" : "appMotus_qmllint",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmllint_json::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmllint_json-Debug-b90b075ebdd61f628d9d.json",
-					"name" : "appMotus_qmllint_json",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmllint_module::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmllint_module-Debug-6309847041883c80ecf4.json",
-					"name" : "appMotus_qmllint_module",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmltyperegistration::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmltyperegistration-Debug-e533cc2ce7c0fa43de2f.json",
-					"name" : "appMotus_qmltyperegistration",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "module_appMotus_aotstats_target::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-module_appMotus_aotstats_target-Debug-dbc832e1760cd1c28c4d.json",
-					"name" : "module_appMotus_aotstats_target",
-					"projectIndex" : 0
-				}
-			]
-		}
-	],
-	"kind" : "codemodel",
-	"paths" : 
-	{
-		"build" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug",
-		"source" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus"
-	},
-	"version" : 
-	{
-		"major" : 2,
-		"minor" : 7
-	}
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-8988bfc57a9cada56cb6.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-8988bfc57a9cada56cb6.json
deleted file mode 100644
index 929ed8ca912ae59276734b7df595d72c97b304b3..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-8988bfc57a9cada56cb6.json
+++ /dev/null
@@ -1,196 +0,0 @@
-{
-	"configurations" : 
-	[
-		{
-			"directories" : 
-			[
-				{
-					"build" : ".",
-					"hasInstallRule" : true,
-					"jsonFile" : "directory-.-Debug-1ea45b8dc2ebb456b665.json",
-					"minimumCMakeVersion" : 
-					{
-						"string" : "3.16"
-					},
-					"projectIndex" : 0,
-					"source" : ".",
-					"targetIndexes" : 
-					[
-						0,
-						1,
-						2,
-						3,
-						4,
-						5,
-						6,
-						7,
-						8,
-						9,
-						10,
-						11,
-						12,
-						13,
-						14,
-						15
-					]
-				}
-			],
-			"name" : "Debug",
-			"projects" : 
-			[
-				{
-					"directoryIndexes" : 
-					[
-						0
-					],
-					"name" : "Motus",
-					"targetIndexes" : 
-					[
-						0,
-						1,
-						2,
-						3,
-						4,
-						5,
-						6,
-						7,
-						8,
-						9,
-						10,
-						11,
-						12,
-						13,
-						14,
-						15
-					]
-				}
-			],
-			"targets" : 
-			[
-				{
-					"directoryIndex" : 0,
-					"id" : "all_aotstats::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_aotstats-Debug-4aa7237c5de74a8c58a7.json",
-					"name" : "all_aotstats",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmllint::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmllint-Debug-4ec16165dce68666b660.json",
-					"name" : "all_qmllint",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmllint_json::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmllint_json-Debug-0677b46ada7ac654b9e9.json",
-					"name" : "all_qmllint_json",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmllint_module::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmllint_module-Debug-a0bbcaba16d6c94b5ae5.json",
-					"name" : "all_qmllint_module",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmltyperegistrations-Debug-d557d90c3f30ed917d94.json",
-					"name" : "all_qmltyperegistrations",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus-Debug-8bda4a854cd5d448e17e.json",
-					"name" : "appMotus",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_autogen::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_autogen-Debug-ff03fb459454804b344e.json",
-					"name" : "appMotus_autogen",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_autogen_timestamp_deps::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_autogen_timestamp_deps-Debug-f57fc48b1dee06dfda4a.json",
-					"name" : "appMotus_autogen_timestamp_deps",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_copy_qml::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_copy_qml-Debug-8a5ed087c87cb2c519da.json",
-					"name" : "appMotus_copy_qml",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_copy_res::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_copy_res-Debug-908248cd2bfa42ca36e0.json",
-					"name" : "appMotus_copy_res",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmlimportscan::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmlimportscan-Debug-d7f94ebf71135bfea388.json",
-					"name" : "appMotus_qmlimportscan",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmllint::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmllint-Debug-7685cd6bcc7457ec51f5.json",
-					"name" : "appMotus_qmllint",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmllint_json::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmllint_json-Debug-b90b075ebdd61f628d9d.json",
-					"name" : "appMotus_qmllint_json",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmllint_module::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmllint_module-Debug-6309847041883c80ecf4.json",
-					"name" : "appMotus_qmllint_module",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmltyperegistration::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmltyperegistration-Debug-e533cc2ce7c0fa43de2f.json",
-					"name" : "appMotus_qmltyperegistration",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "module_appMotus_aotstats_target::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-module_appMotus_aotstats_target-Debug-dbc832e1760cd1c28c4d.json",
-					"name" : "module_appMotus_aotstats_target",
-					"projectIndex" : 0
-				}
-			]
-		}
-	],
-	"kind" : "codemodel",
-	"paths" : 
-	{
-		"build" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug",
-		"source" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus"
-	},
-	"version" : 
-	{
-		"major" : 2,
-		"minor" : 7
-	}
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/codemodel-v2-d0de6fed719321b4dde7.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-d0de6fed719321b4dde7.json
similarity index 100%
rename from Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/codemodel-v2-d0de6fed719321b4dde7.json
rename to Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-d0de6fed719321b4dde7.json
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-e00e3d90ef3d3ec612b7.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-e00e3d90ef3d3ec612b7.json
deleted file mode 100644
index 249cb3d6f14cc114424dfb0623579cc1772a6471..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-e00e3d90ef3d3ec612b7.json
+++ /dev/null
@@ -1,196 +0,0 @@
-{
-	"configurations" : 
-	[
-		{
-			"directories" : 
-			[
-				{
-					"build" : ".",
-					"hasInstallRule" : true,
-					"jsonFile" : "directory-.-Debug-21e1a9049ac1a304c630.json",
-					"minimumCMakeVersion" : 
-					{
-						"string" : "3.16"
-					},
-					"projectIndex" : 0,
-					"source" : ".",
-					"targetIndexes" : 
-					[
-						0,
-						1,
-						2,
-						3,
-						4,
-						5,
-						6,
-						7,
-						8,
-						9,
-						10,
-						11,
-						12,
-						13,
-						14,
-						15
-					]
-				}
-			],
-			"name" : "Debug",
-			"projects" : 
-			[
-				{
-					"directoryIndexes" : 
-					[
-						0
-					],
-					"name" : "Motus",
-					"targetIndexes" : 
-					[
-						0,
-						1,
-						2,
-						3,
-						4,
-						5,
-						6,
-						7,
-						8,
-						9,
-						10,
-						11,
-						12,
-						13,
-						14,
-						15
-					]
-				}
-			],
-			"targets" : 
-			[
-				{
-					"directoryIndex" : 0,
-					"id" : "all_aotstats::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_aotstats-Debug-4aa7237c5de74a8c58a7.json",
-					"name" : "all_aotstats",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmllint::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmllint-Debug-4ec16165dce68666b660.json",
-					"name" : "all_qmllint",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmllint_json::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmllint_json-Debug-0677b46ada7ac654b9e9.json",
-					"name" : "all_qmllint_json",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmllint_module::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmllint_module-Debug-a0bbcaba16d6c94b5ae5.json",
-					"name" : "all_qmllint_module",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_qmltyperegistrations-Debug-d557d90c3f30ed917d94.json",
-					"name" : "all_qmltyperegistrations",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus-Debug-90bc9f6f888bd5e264e0.json",
-					"name" : "appMotus",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_autogen::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_autogen-Debug-ff03fb459454804b344e.json",
-					"name" : "appMotus_autogen",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_autogen_timestamp_deps::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_autogen_timestamp_deps-Debug-8ecb6561b9981a1bf617.json",
-					"name" : "appMotus_autogen_timestamp_deps",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_copy_qml::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_copy_qml-Debug-8a5ed087c87cb2c519da.json",
-					"name" : "appMotus_copy_qml",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_copy_res::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_copy_res-Debug-908248cd2bfa42ca36e0.json",
-					"name" : "appMotus_copy_res",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmlimportscan::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmlimportscan-Debug-d7f94ebf71135bfea388.json",
-					"name" : "appMotus_qmlimportscan",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmllint::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmllint-Debug-7685cd6bcc7457ec51f5.json",
-					"name" : "appMotus_qmllint",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmllint_json::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmllint_json-Debug-b90b075ebdd61f628d9d.json",
-					"name" : "appMotus_qmllint_json",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmllint_module::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmllint_module-Debug-6309847041883c80ecf4.json",
-					"name" : "appMotus_qmllint_module",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "appMotus_qmltyperegistration::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus_qmltyperegistration-Debug-e533cc2ce7c0fa43de2f.json",
-					"name" : "appMotus_qmltyperegistration",
-					"projectIndex" : 0
-				},
-				{
-					"directoryIndex" : 0,
-					"id" : "module_appMotus_aotstats_target::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-module_appMotus_aotstats_target-Debug-dbc832e1760cd1c28c4d.json",
-					"name" : "module_appMotus_aotstats_target",
-					"projectIndex" : 0
-				}
-			]
-		}
-	],
-	"kind" : "codemodel",
-	"paths" : 
-	{
-		"build" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug",
-		"source" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus"
-	},
-	"version" : 
-	{
-		"major" : 2,
-		"minor" : 7
-	}
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-.-Debug-05e0d488c8b1000caf44.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-.-Debug-05e0d488c8b1000caf44.json
deleted file mode 100644
index f3e24eb86b2b6376ed46c6e6587f0185fab23994..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-.-Debug-05e0d488c8b1000caf44.json
+++ /dev/null
@@ -1,45 +0,0 @@
-{
-	"backtraceGraph" : 
-	{
-		"commands" : 
-		[
-			"install"
-		],
-		"files" : 
-		[
-			"CMakeLists.txt"
-		],
-		"nodes" : 
-		[
-			{
-				"file" : 0
-			},
-			{
-				"command" : 0,
-				"file" : 0,
-				"line" : 39,
-				"parent" : 0
-			}
-		]
-	},
-	"installers" : 
-	[
-		{
-			"backtrace" : 1,
-			"component" : "Unspecified",
-			"destination" : "bin",
-			"paths" : 
-			[
-				"appMotus.exe"
-			],
-			"targetId" : "appMotus::@6890427a1f51a3e7e1df",
-			"targetIndex" : 5,
-			"type" : "target"
-		}
-	],
-	"paths" : 
-	{
-		"build" : ".",
-		"source" : "."
-	}
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/directory-.-Debug-1ea45b8dc2ebb456b665.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-.-Debug-1ea45b8dc2ebb456b665.json
similarity index 100%
rename from Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/directory-.-Debug-1ea45b8dc2ebb456b665.json
rename to Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-.-Debug-1ea45b8dc2ebb456b665.json
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-.-Debug-21e1a9049ac1a304c630.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-.-Debug-21e1a9049ac1a304c630.json
deleted file mode 100644
index 7f004755354e144316f853b05b381667154e1b87..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-.-Debug-21e1a9049ac1a304c630.json
+++ /dev/null
@@ -1,45 +0,0 @@
-{
-	"backtraceGraph" : 
-	{
-		"commands" : 
-		[
-			"install"
-		],
-		"files" : 
-		[
-			"CMakeLists.txt"
-		],
-		"nodes" : 
-		[
-			{
-				"file" : 0
-			},
-			{
-				"command" : 0,
-				"file" : 0,
-				"line" : 43,
-				"parent" : 0
-			}
-		]
-	},
-	"installers" : 
-	[
-		{
-			"backtrace" : 1,
-			"component" : "Unspecified",
-			"destination" : "bin",
-			"paths" : 
-			[
-				"appMotus.exe"
-			],
-			"targetId" : "appMotus::@6890427a1f51a3e7e1df",
-			"targetIndex" : 5,
-			"type" : "target"
-		}
-	],
-	"paths" : 
-	{
-		"build" : ".",
-		"source" : "."
-	}
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-.-Debug-416bbd532cae6808e53d.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-.-Debug-416bbd532cae6808e53d.json
deleted file mode 100644
index 57c172ba597cec3c34f281f6595ff873134f7c68..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-.-Debug-416bbd532cae6808e53d.json
+++ /dev/null
@@ -1,45 +0,0 @@
-{
-	"backtraceGraph" : 
-	{
-		"commands" : 
-		[
-			"install"
-		],
-		"files" : 
-		[
-			"CMakeLists.txt"
-		],
-		"nodes" : 
-		[
-			{
-				"file" : 0
-			},
-			{
-				"command" : 0,
-				"file" : 0,
-				"line" : 38,
-				"parent" : 0
-			}
-		]
-	},
-	"installers" : 
-	[
-		{
-			"backtrace" : 1,
-			"component" : "Unspecified",
-			"destination" : "bin",
-			"paths" : 
-			[
-				"appMotus.exe"
-			],
-			"targetId" : "appMotus::@6890427a1f51a3e7e1df",
-			"targetIndex" : 5,
-			"type" : "target"
-		}
-	],
-	"paths" : 
-	{
-		"build" : ".",
-		"source" : "."
-	}
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-.-Debug-d8f3750058250a40ece4.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-.-Debug-d8f3750058250a40ece4.json
deleted file mode 100644
index 92537cbe4474a4828bf6842a4c79dda73a9ce53d..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-.-Debug-d8f3750058250a40ece4.json
+++ /dev/null
@@ -1,45 +0,0 @@
-{
-	"backtraceGraph" : 
-	{
-		"commands" : 
-		[
-			"install"
-		],
-		"files" : 
-		[
-			"CMakeLists.txt"
-		],
-		"nodes" : 
-		[
-			{
-				"file" : 0
-			},
-			{
-				"command" : 0,
-				"file" : 0,
-				"line" : 40,
-				"parent" : 0
-			}
-		]
-	},
-	"installers" : 
-	[
-		{
-			"backtrace" : 1,
-			"component" : "Unspecified",
-			"destination" : "bin",
-			"paths" : 
-			[
-				"appMotus.exe"
-			],
-			"targetId" : "appMotus::@6890427a1f51a3e7e1df",
-			"targetIndex" : 5,
-			"type" : "target"
-		}
-	],
-	"paths" : 
-	{
-		"build" : ".",
-		"source" : "."
-	}
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T09-48-23-0786.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T09-48-23-0786.json
deleted file mode 100644
index 0218c4e845fda19b83e64cd9becb6cd51fce4ca8..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T09-48-23-0786.json
+++ /dev/null
@@ -1,89 +0,0 @@
-{
-	"cmake" : 
-	{
-		"generator" : 
-		{
-			"multiConfig" : false,
-			"name" : "Ninja"
-		},
-		"paths" : 
-		{
-			"cmake" : "C:/Qt/Tools/CMake_64/bin/cmake.exe",
-			"cpack" : "C:/Qt/Tools/CMake_64/bin/cpack.exe",
-			"ctest" : "C:/Qt/Tools/CMake_64/bin/ctest.exe",
-			"root" : "C:/Qt/Tools/CMake_64/share/cmake-3.29"
-		},
-		"version" : 
-		{
-			"isDirty" : false,
-			"major" : 3,
-			"minor" : 29,
-			"patch" : 3,
-			"string" : "3.29.3",
-			"suffix" : ""
-		}
-	},
-	"objects" : 
-	[
-		{
-			"jsonFile" : "codemodel-v2-752049f6dd68d61bdb6f.json",
-			"kind" : "codemodel",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 7
-			}
-		},
-		{
-			"jsonFile" : "cache-v2-1a4203f66a7d04b680da.json",
-			"kind" : "cache",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 0
-			}
-		},
-		{
-			"jsonFile" : "cmakeFiles-v1-90d17ce99cd82b9e07cc.json",
-			"kind" : "cmakeFiles",
-			"version" : 
-			{
-				"major" : 1,
-				"minor" : 0
-			}
-		}
-	],
-	"reply" : 
-	{
-		"cache-v2" : 
-		{
-			"jsonFile" : "cache-v2-1a4203f66a7d04b680da.json",
-			"kind" : "cache",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 0
-			}
-		},
-		"cmakeFiles-v1" : 
-		{
-			"jsonFile" : "cmakeFiles-v1-90d17ce99cd82b9e07cc.json",
-			"kind" : "cmakeFiles",
-			"version" : 
-			{
-				"major" : 1,
-				"minor" : 0
-			}
-		},
-		"codemodel-v2" : 
-		{
-			"jsonFile" : "codemodel-v2-752049f6dd68d61bdb6f.json",
-			"kind" : "codemodel",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 7
-			}
-		}
-	}
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T09-54-09-0648.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T09-54-09-0648.json
deleted file mode 100644
index bdfe892e3fbeb6b1b84fac40ed5f40cc4ac23b8f..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T09-54-09-0648.json
+++ /dev/null
@@ -1,89 +0,0 @@
-{
-	"cmake" : 
-	{
-		"generator" : 
-		{
-			"multiConfig" : false,
-			"name" : "Ninja"
-		},
-		"paths" : 
-		{
-			"cmake" : "C:/Qt/Tools/CMake_64/bin/cmake.exe",
-			"cpack" : "C:/Qt/Tools/CMake_64/bin/cpack.exe",
-			"ctest" : "C:/Qt/Tools/CMake_64/bin/ctest.exe",
-			"root" : "C:/Qt/Tools/CMake_64/share/cmake-3.29"
-		},
-		"version" : 
-		{
-			"isDirty" : false,
-			"major" : 3,
-			"minor" : 29,
-			"patch" : 3,
-			"string" : "3.29.3",
-			"suffix" : ""
-		}
-	},
-	"objects" : 
-	[
-		{
-			"jsonFile" : "codemodel-v2-5490553c682a8d7c5e23.json",
-			"kind" : "codemodel",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 7
-			}
-		},
-		{
-			"jsonFile" : "cache-v2-1a4203f66a7d04b680da.json",
-			"kind" : "cache",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 0
-			}
-		},
-		{
-			"jsonFile" : "cmakeFiles-v1-90d17ce99cd82b9e07cc.json",
-			"kind" : "cmakeFiles",
-			"version" : 
-			{
-				"major" : 1,
-				"minor" : 0
-			}
-		}
-	],
-	"reply" : 
-	{
-		"cache-v2" : 
-		{
-			"jsonFile" : "cache-v2-1a4203f66a7d04b680da.json",
-			"kind" : "cache",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 0
-			}
-		},
-		"cmakeFiles-v1" : 
-		{
-			"jsonFile" : "cmakeFiles-v1-90d17ce99cd82b9e07cc.json",
-			"kind" : "cmakeFiles",
-			"version" : 
-			{
-				"major" : 1,
-				"minor" : 0
-			}
-		},
-		"codemodel-v2" : 
-		{
-			"jsonFile" : "codemodel-v2-5490553c682a8d7c5e23.json",
-			"kind" : "codemodel",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 7
-			}
-		}
-	}
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T09-54-41-0567.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T09-54-41-0567.json
deleted file mode 100644
index 4f96731e407dcafa2260f801160aa3bc6148b38d..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T09-54-41-0567.json
+++ /dev/null
@@ -1,89 +0,0 @@
-{
-	"cmake" : 
-	{
-		"generator" : 
-		{
-			"multiConfig" : false,
-			"name" : "Ninja"
-		},
-		"paths" : 
-		{
-			"cmake" : "C:/Qt/Tools/CMake_64/bin/cmake.exe",
-			"cpack" : "C:/Qt/Tools/CMake_64/bin/cpack.exe",
-			"ctest" : "C:/Qt/Tools/CMake_64/bin/ctest.exe",
-			"root" : "C:/Qt/Tools/CMake_64/share/cmake-3.29"
-		},
-		"version" : 
-		{
-			"isDirty" : false,
-			"major" : 3,
-			"minor" : 29,
-			"patch" : 3,
-			"string" : "3.29.3",
-			"suffix" : ""
-		}
-	},
-	"objects" : 
-	[
-		{
-			"jsonFile" : "codemodel-v2-8988bfc57a9cada56cb6.json",
-			"kind" : "codemodel",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 7
-			}
-		},
-		{
-			"jsonFile" : "cache-v2-1a4203f66a7d04b680da.json",
-			"kind" : "cache",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 0
-			}
-		},
-		{
-			"jsonFile" : "cmakeFiles-v1-90d17ce99cd82b9e07cc.json",
-			"kind" : "cmakeFiles",
-			"version" : 
-			{
-				"major" : 1,
-				"minor" : 0
-			}
-		}
-	],
-	"reply" : 
-	{
-		"cache-v2" : 
-		{
-			"jsonFile" : "cache-v2-1a4203f66a7d04b680da.json",
-			"kind" : "cache",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 0
-			}
-		},
-		"cmakeFiles-v1" : 
-		{
-			"jsonFile" : "cmakeFiles-v1-90d17ce99cd82b9e07cc.json",
-			"kind" : "cmakeFiles",
-			"version" : 
-			{
-				"major" : 1,
-				"minor" : 0
-			}
-		},
-		"codemodel-v2" : 
-		{
-			"jsonFile" : "codemodel-v2-8988bfc57a9cada56cb6.json",
-			"kind" : "codemodel",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 7
-			}
-		}
-	}
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T09-55-36-0419.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T09-55-36-0419.json
deleted file mode 100644
index 6825e68d7bd6e079456515870f3e8017ce10e932..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T09-55-36-0419.json
+++ /dev/null
@@ -1,89 +0,0 @@
-{
-	"cmake" : 
-	{
-		"generator" : 
-		{
-			"multiConfig" : false,
-			"name" : "Ninja"
-		},
-		"paths" : 
-		{
-			"cmake" : "C:/Qt/Tools/CMake_64/bin/cmake.exe",
-			"cpack" : "C:/Qt/Tools/CMake_64/bin/cpack.exe",
-			"ctest" : "C:/Qt/Tools/CMake_64/bin/ctest.exe",
-			"root" : "C:/Qt/Tools/CMake_64/share/cmake-3.29"
-		},
-		"version" : 
-		{
-			"isDirty" : false,
-			"major" : 3,
-			"minor" : 29,
-			"patch" : 3,
-			"string" : "3.29.3",
-			"suffix" : ""
-		}
-	},
-	"objects" : 
-	[
-		{
-			"jsonFile" : "codemodel-v2-54c7cb0417321595753e.json",
-			"kind" : "codemodel",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 7
-			}
-		},
-		{
-			"jsonFile" : "cache-v2-1a4203f66a7d04b680da.json",
-			"kind" : "cache",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 0
-			}
-		},
-		{
-			"jsonFile" : "cmakeFiles-v1-90d17ce99cd82b9e07cc.json",
-			"kind" : "cmakeFiles",
-			"version" : 
-			{
-				"major" : 1,
-				"minor" : 0
-			}
-		}
-	],
-	"reply" : 
-	{
-		"cache-v2" : 
-		{
-			"jsonFile" : "cache-v2-1a4203f66a7d04b680da.json",
-			"kind" : "cache",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 0
-			}
-		},
-		"cmakeFiles-v1" : 
-		{
-			"jsonFile" : "cmakeFiles-v1-90d17ce99cd82b9e07cc.json",
-			"kind" : "cmakeFiles",
-			"version" : 
-			{
-				"major" : 1,
-				"minor" : 0
-			}
-		},
-		"codemodel-v2" : 
-		{
-			"jsonFile" : "codemodel-v2-54c7cb0417321595753e.json",
-			"kind" : "codemodel",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 7
-			}
-		}
-	}
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T09-57-29-0298.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T09-57-29-0298.json
deleted file mode 100644
index d8bcd634770c763eaba23b87caf76b4182baa045..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T09-57-29-0298.json
+++ /dev/null
@@ -1,89 +0,0 @@
-{
-	"cmake" : 
-	{
-		"generator" : 
-		{
-			"multiConfig" : false,
-			"name" : "Ninja"
-		},
-		"paths" : 
-		{
-			"cmake" : "C:/Qt/Tools/CMake_64/bin/cmake.exe",
-			"cpack" : "C:/Qt/Tools/CMake_64/bin/cpack.exe",
-			"ctest" : "C:/Qt/Tools/CMake_64/bin/ctest.exe",
-			"root" : "C:/Qt/Tools/CMake_64/share/cmake-3.29"
-		},
-		"version" : 
-		{
-			"isDirty" : false,
-			"major" : 3,
-			"minor" : 29,
-			"patch" : 3,
-			"string" : "3.29.3",
-			"suffix" : ""
-		}
-	},
-	"objects" : 
-	[
-		{
-			"jsonFile" : "codemodel-v2-e00e3d90ef3d3ec612b7.json",
-			"kind" : "codemodel",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 7
-			}
-		},
-		{
-			"jsonFile" : "cache-v2-1a4203f66a7d04b680da.json",
-			"kind" : "cache",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 0
-			}
-		},
-		{
-			"jsonFile" : "cmakeFiles-v1-90d17ce99cd82b9e07cc.json",
-			"kind" : "cmakeFiles",
-			"version" : 
-			{
-				"major" : 1,
-				"minor" : 0
-			}
-		}
-	],
-	"reply" : 
-	{
-		"cache-v2" : 
-		{
-			"jsonFile" : "cache-v2-1a4203f66a7d04b680da.json",
-			"kind" : "cache",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 0
-			}
-		},
-		"cmakeFiles-v1" : 
-		{
-			"jsonFile" : "cmakeFiles-v1-90d17ce99cd82b9e07cc.json",
-			"kind" : "cmakeFiles",
-			"version" : 
-			{
-				"major" : 1,
-				"minor" : 0
-			}
-		},
-		"codemodel-v2" : 
-		{
-			"jsonFile" : "codemodel-v2-e00e3d90ef3d3ec612b7.json",
-			"kind" : "codemodel",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 7
-			}
-		}
-	}
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T10-02-05-0445.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T10-02-05-0445.json
deleted file mode 100644
index a83e4d246c249cd196e64228697ff4aa1382b8cb..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T10-02-05-0445.json
+++ /dev/null
@@ -1,89 +0,0 @@
-{
-	"cmake" : 
-	{
-		"generator" : 
-		{
-			"multiConfig" : false,
-			"name" : "Ninja"
-		},
-		"paths" : 
-		{
-			"cmake" : "C:/Qt/Tools/CMake_64/bin/cmake.exe",
-			"cpack" : "C:/Qt/Tools/CMake_64/bin/cpack.exe",
-			"ctest" : "C:/Qt/Tools/CMake_64/bin/ctest.exe",
-			"root" : "C:/Qt/Tools/CMake_64/share/cmake-3.29"
-		},
-		"version" : 
-		{
-			"isDirty" : false,
-			"major" : 3,
-			"minor" : 29,
-			"patch" : 3,
-			"string" : "3.29.3",
-			"suffix" : ""
-		}
-	},
-	"objects" : 
-	[
-		{
-			"jsonFile" : "codemodel-v2-3e514770bcee07b1760d.json",
-			"kind" : "codemodel",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 7
-			}
-		},
-		{
-			"jsonFile" : "cache-v2-1a4203f66a7d04b680da.json",
-			"kind" : "cache",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 0
-			}
-		},
-		{
-			"jsonFile" : "cmakeFiles-v1-5cf46ff022157af4fa31.json",
-			"kind" : "cmakeFiles",
-			"version" : 
-			{
-				"major" : 1,
-				"minor" : 0
-			}
-		}
-	],
-	"reply" : 
-	{
-		"cache-v2" : 
-		{
-			"jsonFile" : "cache-v2-1a4203f66a7d04b680da.json",
-			"kind" : "cache",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 0
-			}
-		},
-		"cmakeFiles-v1" : 
-		{
-			"jsonFile" : "cmakeFiles-v1-5cf46ff022157af4fa31.json",
-			"kind" : "cmakeFiles",
-			"version" : 
-			{
-				"major" : 1,
-				"minor" : 0
-			}
-		},
-		"codemodel-v2" : 
-		{
-			"jsonFile" : "codemodel-v2-3e514770bcee07b1760d.json",
-			"kind" : "codemodel",
-			"version" : 
-			{
-				"major" : 2,
-				"minor" : 7
-			}
-		}
-	}
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/index-2025-03-17T10-30-57-0033.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T10-30-57-0033.json
similarity index 100%
rename from Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/index-2025-03-17T10-30-57-0033.json
rename to Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T10-30-57-0033.json
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/index-2025-03-17T10-40-15-0135.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T10-40-15-0135.json
similarity index 100%
rename from Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/index-2025-03-17T10-40-15-0135.json
rename to Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T10-40-15-0135.json
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-all_aotstats-Debug-4aa7237c5de74a8c58a7.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-all_aotstats-Debug-4aa7237c5de74a8c58a7.json
deleted file mode 100644
index 1e79e0ca8bee0554dc56746736b637770fda718f..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-all_aotstats-Debug-4aa7237c5de74a8c58a7.json
+++ /dev/null
@@ -1,121 +0,0 @@
-{
-	"backtrace" : 3,
-	"backtraceGraph" : 
-	{
-		"commands" : 
-		[
-			"add_custom_target",
-			"_qt_internal_deferred_aotstats_setup"
-		],
-		"files" : 
-		[
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake:1085:EVAL",
-			"CMakeLists.txt"
-		],
-		"nodes" : 
-		[
-			{
-				"file" : 2
-			},
-			{
-				"file" : 2,
-				"line" : -1,
-				"parent" : 0
-			},
-			{
-				"command" : 1,
-				"file" : 1,
-				"line" : 1,
-				"parent" : 1
-			},
-			{
-				"command" : 0,
-				"file" : 0,
-				"line" : 1199,
-				"parent" : 2
-			}
-		]
-	},
-	"dependencies" : 
-	[
-		{
-			"id" : "module_appMotus_aotstats_target::@6890427a1f51a3e7e1df"
-		}
-	],
-	"id" : "all_aotstats::@6890427a1f51a3e7e1df",
-	"name" : "all_aotstats",
-	"paths" : 
-	{
-		"build" : ".",
-		"source" : "."
-	},
-	"sourceGroups" : 
-	[
-		{
-			"name" : "",
-			"sourceIndexes" : 
-			[
-				0
-			]
-		},
-		{
-			"name" : "CMake Rules",
-			"sourceIndexes" : 
-			[
-				1,
-				2,
-				3,
-				4,
-				5,
-				6
-			]
-		}
-	],
-	"sources" : 
-	[
-		{
-			"backtrace" : 3,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/all_aotstats",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/all_aotstats.rule",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/all_aotstats.aotstats.rule",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/module_appMotus.aotstats.rule",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.rule",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.rule",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appmotus_qmltyperegistrations.cpp.rule",
-			"sourceGroupIndex" : 1
-		}
-	],
-	"type" : "UTILITY"
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-all_aotstats-Debug-8a3bf6c02ca06ee0343d.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-all_aotstats-Debug-8a3bf6c02ca06ee0343d.json
similarity index 100%
rename from Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-all_aotstats-Debug-8a3bf6c02ca06ee0343d.json
rename to Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-all_aotstats-Debug-8a3bf6c02ca06ee0343d.json
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-all_aotstats-Debug-fb131674c43a1f470950.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-all_aotstats-Debug-fb131674c43a1f470950.json
deleted file mode 100644
index 9f75725ffb9afd7cfe872273f663902f5cfcdb35..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-all_aotstats-Debug-fb131674c43a1f470950.json
+++ /dev/null
@@ -1,114 +0,0 @@
-{
-	"backtrace" : 3,
-	"backtraceGraph" : 
-	{
-		"commands" : 
-		[
-			"add_custom_target",
-			"_qt_internal_deferred_aotstats_setup"
-		],
-		"files" : 
-		[
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake:1085:EVAL",
-			"CMakeLists.txt"
-		],
-		"nodes" : 
-		[
-			{
-				"file" : 2
-			},
-			{
-				"file" : 2,
-				"line" : -1,
-				"parent" : 0
-			},
-			{
-				"command" : 1,
-				"file" : 1,
-				"line" : 1,
-				"parent" : 1
-			},
-			{
-				"command" : 0,
-				"file" : 0,
-				"line" : 1199,
-				"parent" : 2
-			}
-		]
-	},
-	"dependencies" : 
-	[
-		{
-			"id" : "module_appMotus_aotstats_target::@6890427a1f51a3e7e1df"
-		}
-	],
-	"id" : "all_aotstats::@6890427a1f51a3e7e1df",
-	"name" : "all_aotstats",
-	"paths" : 
-	{
-		"build" : ".",
-		"source" : "."
-	},
-	"sourceGroups" : 
-	[
-		{
-			"name" : "",
-			"sourceIndexes" : 
-			[
-				0
-			]
-		},
-		{
-			"name" : "CMake Rules",
-			"sourceIndexes" : 
-			[
-				1,
-				2,
-				3,
-				4,
-				5
-			]
-		}
-	],
-	"sources" : 
-	[
-		{
-			"backtrace" : 3,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/all_aotstats",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/all_aotstats.rule",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/all_aotstats.aotstats.rule",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/module_appMotus.aotstats.rule",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.rule",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appmotus_qmltyperegistrations.cpp.rule",
-			"sourceGroupIndex" : 1
-		}
-	],
-	"type" : "UTILITY"
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-appMotus-Debug-1bd023165ff81f31c1b3.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-1bd023165ff81f31c1b3.json
similarity index 100%
rename from Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-appMotus-Debug-1bd023165ff81f31c1b3.json
rename to Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-1bd023165ff81f31c1b3.json
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-appMotus-Debug-2d4fc25eec10566aa020.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-2d4fc25eec10566aa020.json
similarity index 100%
rename from Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-appMotus-Debug-2d4fc25eec10566aa020.json
rename to Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-2d4fc25eec10566aa020.json
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-3777182dc0811a1f3d71.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-3777182dc0811a1f3d71.json
deleted file mode 100644
index 141f2695b3ab218b169a8fb7ae2bcfcebcb6f52e..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-3777182dc0811a1f3d71.json
+++ /dev/null
@@ -1,1425 +0,0 @@
-{
-	"artifacts" : 
-	[
-		{
-			"path" : "appMotus.exe"
-		},
-		{
-			"path" : "appMotus.pdb"
-		}
-	],
-	"backtrace" : 4,
-	"backtraceGraph" : 
-	{
-		"commands" : 
-		[
-			"add_executable",
-			"_qt_internal_create_executable",
-			"qt6_add_executable",
-			"qt_add_executable",
-			"install",
-			"target_link_libraries",
-			"set_target_properties",
-			"include",
-			"find_package",
-			"find_dependency",
-			"_qt_internal_find_qt_dependencies",
-			"qt6_add_qml_module",
-			"qt_add_qml_module",
-			"add_dependencies",
-			"_qt_internal_qml_copy_files_to_build_dir",
-			"qt6_target_qml_sources",
-			"_qt_internal_scan_qml_imports",
-			"_qt_internal_generate_deploy_qml_imports_script",
-			"cmake_language",
-			"_qt_internal_finalize_executable",
-			"qt6_finalize_target",
-			"target_include_directories",
-			"_qt_internal_qml_type_registration",
-			"target_sources",
-			"qt6_extract_metatypes",
-			"set_source_files_properties",
-			"__qt_propagate_generated_resource",
-			"_qt_internal_process_resource",
-			"qt6_add_resources",
-			"_qt_internal_target_enable_qmlcachegen",
-			"_qt_internal_expose_deferred_files_to_ide"
-		],
-		"files" : 
-		[
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake",
-			"CMakeLists.txt",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/Qt6Config.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaConfig.cmake",
-			"C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6NetworkTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6NetworkConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlDependencies.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:792:EVAL"
-		],
-		"nodes" : 
-		[
-			{
-				"file" : 1
-			},
-			{
-				"command" : 3,
-				"file" : 1,
-				"line" : 11,
-				"parent" : 0
-			},
-			{
-				"command" : 2,
-				"file" : 0,
-				"line" : 945,
-				"parent" : 1
-			},
-			{
-				"command" : 1,
-				"file" : 0,
-				"line" : 646,
-				"parent" : 2
-			},
-			{
-				"command" : 0,
-				"file" : 0,
-				"line" : 695,
-				"parent" : 3
-			},
-			{
-				"command" : 4,
-				"file" : 1,
-				"line" : 39,
-				"parent" : 0
-			},
-			{
-				"command" : 5,
-				"file" : 1,
-				"line" : 34,
-				"parent" : 0
-			},
-			{
-				"command" : 8,
-				"file" : 1,
-				"line" : 7,
-				"parent" : 0
-			},
-			{
-				"file" : 4,
-				"parent" : 7
-			},
-			{
-				"command" : 8,
-				"file" : 4,
-				"line" : 190,
-				"parent" : 8
-			},
-			{
-				"file" : 3,
-				"parent" : 9
-			},
-			{
-				"command" : 7,
-				"file" : 3,
-				"line" : 55,
-				"parent" : 10
-			},
-			{
-				"file" : 2,
-				"parent" : 11
-			},
-			{
-				"command" : 6,
-				"file" : 2,
-				"line" : 61,
-				"parent" : 12
-			},
-			{
-				"command" : 7,
-				"file" : 3,
-				"line" : 43,
-				"parent" : 10
-			},
-			{
-				"file" : 9,
-				"parent" : 14
-			},
-			{
-				"command" : 10,
-				"file" : 9,
-				"line" : 45,
-				"parent" : 15
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 17
-			},
-			{
-				"file" : 6,
-				"parent" : 18
-			},
-			{
-				"command" : 7,
-				"file" : 6,
-				"line" : 55,
-				"parent" : 19
-			},
-			{
-				"file" : 5,
-				"parent" : 20
-			},
-			{
-				"command" : 6,
-				"file" : 5,
-				"line" : 61,
-				"parent" : 21
-			},
-			{
-				"command" : 12,
-				"file" : 1,
-				"line" : 15,
-				"parent" : 0
-			},
-			{
-				"command" : 11,
-				"file" : 10,
-				"line" : 1241,
-				"parent" : 23
-			},
-			{
-				"command" : 5,
-				"file" : 10,
-				"line" : 591,
-				"parent" : 24
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 26
-			},
-			{
-				"file" : 12,
-				"parent" : 27
-			},
-			{
-				"command" : 7,
-				"file" : 12,
-				"line" : 58,
-				"parent" : 28
-			},
-			{
-				"file" : 11,
-				"parent" : 29
-			},
-			{
-				"command" : 6,
-				"file" : 11,
-				"line" : 61,
-				"parent" : 30
-			},
-			{
-				"command" : 7,
-				"file" : 12,
-				"line" : 46,
-				"parent" : 28
-			},
-			{
-				"file" : 15,
-				"parent" : 32
-			},
-			{
-				"command" : 10,
-				"file" : 15,
-				"line" : 45,
-				"parent" : 33
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 34
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 35
-			},
-			{
-				"file" : 14,
-				"parent" : 36
-			},
-			{
-				"command" : 7,
-				"file" : 14,
-				"line" : 55,
-				"parent" : 37
-			},
-			{
-				"file" : 13,
-				"parent" : 38
-			},
-			{
-				"command" : 6,
-				"file" : 13,
-				"line" : 61,
-				"parent" : 39
-			},
-			{
-				"command" : 5,
-				"file" : 0,
-				"line" : 647,
-				"parent" : 2
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 42
-			},
-			{
-				"file" : 17,
-				"parent" : 43
-			},
-			{
-				"command" : 7,
-				"file" : 17,
-				"line" : 57,
-				"parent" : 44
-			},
-			{
-				"file" : 16,
-				"parent" : 45
-			},
-			{
-				"command" : 6,
-				"file" : 16,
-				"line" : 61,
-				"parent" : 46
-			},
-			{
-				"command" : 7,
-				"file" : 17,
-				"line" : 45,
-				"parent" : 44
-			},
-			{
-				"file" : 20,
-				"parent" : 48
-			},
-			{
-				"command" : 10,
-				"file" : 20,
-				"line" : 46,
-				"parent" : 49
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 50
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 51
-			},
-			{
-				"file" : 19,
-				"parent" : 52
-			},
-			{
-				"command" : 7,
-				"file" : 19,
-				"line" : 55,
-				"parent" : 53
-			},
-			{
-				"file" : 18,
-				"parent" : 54
-			},
-			{
-				"command" : 6,
-				"file" : 18,
-				"line" : 61,
-				"parent" : 55
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 57
-			},
-			{
-				"file" : 22,
-				"parent" : 58
-			},
-			{
-				"command" : 7,
-				"file" : 22,
-				"line" : 55,
-				"parent" : 59
-			},
-			{
-				"file" : 21,
-				"parent" : 60
-			},
-			{
-				"command" : 6,
-				"file" : 21,
-				"line" : 61,
-				"parent" : 61
-			},
-			{
-				"command" : 15,
-				"file" : 10,
-				"line" : 896,
-				"parent" : 24
-			},
-			{
-				"command" : 14,
-				"file" : 10,
-				"line" : 3448,
-				"parent" : 63
-			},
-			{
-				"command" : 13,
-				"file" : 10,
-				"line" : 2859,
-				"parent" : 64
-			},
-			{
-				"command" : 14,
-				"file" : 10,
-				"line" : 3454,
-				"parent" : 63
-			},
-			{
-				"command" : 13,
-				"file" : 10,
-				"line" : 2859,
-				"parent" : 66
-			},
-			{
-				"file" : 1,
-				"line" : -1,
-				"parent" : 0
-			},
-			{
-				"command" : 20,
-				"file" : 23,
-				"line" : 1,
-				"parent" : 68
-			},
-			{
-				"command" : 19,
-				"file" : 0,
-				"line" : 823,
-				"parent" : 69
-			},
-			{
-				"command" : 18,
-				"file" : 0,
-				"line" : 745,
-				"parent" : 70
-			},
-			{
-				"command" : 17,
-				"file" : 0,
-				"line" : 745,
-				"parent" : 71
-			},
-			{
-				"command" : 16,
-				"file" : 10,
-				"line" : 4324,
-				"parent" : 72
-			},
-			{
-				"command" : 13,
-				"file" : 10,
-				"line" : 4102,
-				"parent" : 73
-			},
-			{
-				"command" : 22,
-				"file" : 10,
-				"line" : 785,
-				"parent" : 24
-			},
-			{
-				"command" : 21,
-				"file" : 10,
-				"line" : 3830,
-				"parent" : 75
-			},
-			{
-				"command" : 21,
-				"file" : 10,
-				"line" : 3855,
-				"parent" : 75
-			},
-			{
-				"command" : 24,
-				"file" : 10,
-				"line" : 3655,
-				"parent" : 75
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 1500,
-				"parent" : 78
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3821,
-				"parent" : 75
-			},
-			{
-				"command" : 25,
-				"file" : 10,
-				"line" : 3845,
-				"parent" : 75
-			},
-			{
-				"command" : 28,
-				"file" : 10,
-				"line" : 839,
-				"parent" : 24
-			},
-			{
-				"command" : 27,
-				"file" : 0,
-				"line" : 406,
-				"parent" : 82
-			},
-			{
-				"command" : 26,
-				"file" : 0,
-				"line" : 2491,
-				"parent" : 83
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 2089,
-				"parent" : 84
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3175,
-				"parent" : 63
-			},
-			{
-				"command" : 29,
-				"file" : 10,
-				"line" : 3312,
-				"parent" : 63
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 1710,
-				"parent" : 87
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3368,
-				"parent" : 63
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3175,
-				"parent" : 63
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3368,
-				"parent" : 63
-			},
-			{
-				"command" : 28,
-				"file" : 10,
-				"line" : 3470,
-				"parent" : 63
-			},
-			{
-				"command" : 27,
-				"file" : 0,
-				"line" : 406,
-				"parent" : 92
-			},
-			{
-				"command" : 26,
-				"file" : 0,
-				"line" : 2491,
-				"parent" : 93
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 2089,
-				"parent" : 94
-			},
-			{
-				"command" : 30,
-				"file" : 0,
-				"line" : 817,
-				"parent" : 69
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 2212,
-				"parent" : 96
-			}
-		]
-	},
-	"compileGroups" : 
-	[
-		{
-			"compileCommandFragments" : 
-			[
-				{
-					"fragment" : "-DQT_QML_DEBUG -g -fdiagnostics-color=always"
-				}
-			],
-			"defines" : 
-			[
-				{
-					"backtrace" : 41,
-					"define" : "MINGW_HAS_SECURE_API=1"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_CORE_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_GUI_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_NEEDS_QMAIN"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_NETWORK_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_OPENGL_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QMLINTEGRATION_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMETA_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMODELS_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLWORKERSCRIPT_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QML_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QUICK_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN32"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN64"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_WIN64"
-				}
-			],
-			"includes" : 
-			[
-				{
-					"backtrace" : 0,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/include"
-				},
-				{
-					"backtrace" : 76,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/mkspecs/win32-g++"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlIntegration"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtNetwork"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQuick"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtGui"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlMeta"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlModels"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlWorkerScript"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtOpenGL"
-				}
-			],
-			"language" : "CXX",
-			"sourceIndexes" : 
-			[
-				0,
-				1,
-				4,
-				6,
-				7,
-				9,
-				10
-			]
-		},
-		{
-			"compileCommandFragments" : 
-			[
-				{
-					"fragment" : "-DQT_QML_DEBUG -g -fdiagnostics-color=always"
-				},
-				{
-					"backtrace" : 81,
-					"fragment" : "-Wa,-mbig-obj"
-				}
-			],
-			"defines" : 
-			[
-				{
-					"backtrace" : 41,
-					"define" : "MINGW_HAS_SECURE_API=1"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_CORE_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_GUI_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_NEEDS_QMAIN"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_NETWORK_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_OPENGL_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QMLINTEGRATION_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMETA_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMODELS_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLWORKERSCRIPT_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QML_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QUICK_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN32"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN64"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_WIN64"
-				}
-			],
-			"includes" : 
-			[
-				{
-					"backtrace" : 0,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/include"
-				},
-				{
-					"backtrace" : 76,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/mkspecs/win32-g++"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlIntegration"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtNetwork"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQuick"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtGui"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlMeta"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlModels"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlWorkerScript"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtOpenGL"
-				}
-			],
-			"language" : "CXX",
-			"sourceIndexes" : 
-			[
-				3
-			]
-		}
-	],
-	"dependencies" : 
-	[
-		{
-			"backtrace" : 65,
-			"id" : "appMotus_copy_qml::@6890427a1f51a3e7e1df"
-		},
-		{
-			"backtrace" : 67,
-			"id" : "appMotus_copy_res::@6890427a1f51a3e7e1df"
-		},
-		{
-			"backtrace" : 74,
-			"id" : "appMotus_qmlimportscan::@6890427a1f51a3e7e1df"
-		},
-		{
-			"backtrace" : 0,
-			"id" : "appMotus_autogen::@6890427a1f51a3e7e1df"
-		},
-		{
-			"id" : "appMotus_autogen_timestamp_deps::@6890427a1f51a3e7e1df"
-		}
-	],
-	"id" : "appMotus::@6890427a1f51a3e7e1df",
-	"install" : 
-	{
-		"destinations" : 
-		[
-			{
-				"backtrace" : 5,
-				"path" : "bin"
-			}
-		],
-		"prefix" : 
-		{
-			"path" : "C:/Program Files (x86)/Motus"
-		}
-	},
-	"link" : 
-	{
-		"commandFragments" : 
-		[
-			{
-				"fragment" : "-DQT_QML_DEBUG -g",
-				"role" : "flags"
-			},
-			{
-				"fragment" : "-mwindows",
-				"role" : "flags"
-			},
-			{
-				"backtrace" : 6,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Quick.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6QmlMeta.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 22,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6QmlWorkerScript.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6QmlModels.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 25,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Qml.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 31,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Network.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 40,
-				"fragment" : "-lws2_32",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6OpenGL.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Gui.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 41,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Core.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 47,
-				"fragment" : "-lmpr",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 47,
-				"fragment" : "-luserenv",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 56,
-				"fragment" : "-lmingw32",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 56,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6EntryPoint.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 31,
-				"fragment" : "-lshell32",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ld3d11",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ldxgi",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ldxguid",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ld3d12",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "-luser32",
-				"role" : "libraries"
-			},
-			{
-				"fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32",
-				"role" : "libraries"
-			}
-		],
-		"language" : "CXX"
-	},
-	"name" : "appMotus",
-	"nameOnDisk" : "appMotus.exe",
-	"paths" : 
-	{
-		"build" : ".",
-		"source" : "."
-	},
-	"sourceGroups" : 
-	[
-		{
-			"name" : "Source Files\\Generated",
-			"sourceIndexes" : 
-			[
-				0,
-				14,
-				24,
-				25,
-				26,
-				27,
-				28,
-				29,
-				30,
-				31,
-				32
-			]
-		},
-		{
-			"name" : "Source Files",
-			"sourceIndexes" : 
-			[
-				1,
-				3,
-				4,
-				6,
-				7,
-				9,
-				10
-			]
-		},
-		{
-			"name" : "",
-			"sourceIndexes" : 
-			[
-				2,
-				5,
-				8,
-				12
-			]
-		},
-		{
-			"name" : "Resources",
-			"sourceIndexes" : 
-			[
-				11,
-				13
-			]
-		},
-		{
-			"name" : "CMake Rules",
-			"sourceIndexes" : 
-			[
-				15,
-				16,
-				17,
-				18,
-				19,
-				20,
-				21,
-				22,
-				23
-			]
-		}
-	],
-	"sources" : 
-	[
-		{
-			"backtrace" : 0,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/mocs_compilation.cpp",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 4,
-			"compileGroupIndex" : 0,
-			"path" : "main.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 79,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/qt6appmotus_debug_metatypes.json.gen",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 80,
-			"compileGroupIndex" : 1,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appmotus_qmltyperegistrations.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 85,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 86,
-			"path" : "Main.qml",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 88,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 89,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 90,
-			"path" : "Case.qml",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 91,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 95,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 97,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qmake_Motus.qrc",
-			"sourceGroupIndex" : 3
-		},
-		{
-			"backtrace" : 97,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/qmldir",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 97,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/appMotus_raw_qml_0.qrc",
-			"sourceGroupIndex" : 3
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/timestamp",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/qt6appmotus_debug_metatypes.json.gen.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appmotus_qmltyperegistrations.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/timestamp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/appMotus_json_file_list.txt.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 41,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6core_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 25,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qml_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 25,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6network_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6quick_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6gui_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qmlmeta_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qmlmodels_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qmlworkerscript_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6opengl_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		}
-	],
-	"type" : "EXECUTABLE"
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-80e794640f1592cb4e01.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-80e794640f1592cb4e01.json
deleted file mode 100644
index c660b5d750f93382f8dcfdfd666556d044c99609..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-80e794640f1592cb4e01.json
+++ /dev/null
@@ -1,1391 +0,0 @@
-{
-	"artifacts" : 
-	[
-		{
-			"path" : "appMotus.exe"
-		},
-		{
-			"path" : "appMotus.pdb"
-		}
-	],
-	"backtrace" : 4,
-	"backtraceGraph" : 
-	{
-		"commands" : 
-		[
-			"add_executable",
-			"_qt_internal_create_executable",
-			"qt6_add_executable",
-			"qt_add_executable",
-			"install",
-			"target_link_libraries",
-			"set_target_properties",
-			"include",
-			"find_package",
-			"find_dependency",
-			"_qt_internal_find_qt_dependencies",
-			"qt6_add_qml_module",
-			"qt_add_qml_module",
-			"add_dependencies",
-			"_qt_internal_qml_copy_files_to_build_dir",
-			"qt6_target_qml_sources",
-			"_qt_internal_scan_qml_imports",
-			"_qt_internal_generate_deploy_qml_imports_script",
-			"cmake_language",
-			"_qt_internal_finalize_executable",
-			"qt6_finalize_target",
-			"target_include_directories",
-			"_qt_internal_qml_type_registration",
-			"target_sources",
-			"qt6_extract_metatypes",
-			"set_source_files_properties",
-			"__qt_propagate_generated_resource",
-			"_qt_internal_process_resource",
-			"qt6_add_resources",
-			"_qt_internal_target_enable_qmlcachegen",
-			"_qt_internal_expose_deferred_files_to_ide"
-		],
-		"files" : 
-		[
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake",
-			"CMakeLists.txt",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/Qt6Config.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaConfig.cmake",
-			"C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6NetworkTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6NetworkConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlDependencies.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:792:EVAL"
-		],
-		"nodes" : 
-		[
-			{
-				"file" : 1
-			},
-			{
-				"command" : 3,
-				"file" : 1,
-				"line" : 11,
-				"parent" : 0
-			},
-			{
-				"command" : 2,
-				"file" : 0,
-				"line" : 945,
-				"parent" : 1
-			},
-			{
-				"command" : 1,
-				"file" : 0,
-				"line" : 646,
-				"parent" : 2
-			},
-			{
-				"command" : 0,
-				"file" : 0,
-				"line" : 695,
-				"parent" : 3
-			},
-			{
-				"command" : 4,
-				"file" : 1,
-				"line" : 38,
-				"parent" : 0
-			},
-			{
-				"command" : 5,
-				"file" : 1,
-				"line" : 33,
-				"parent" : 0
-			},
-			{
-				"command" : 8,
-				"file" : 1,
-				"line" : 7,
-				"parent" : 0
-			},
-			{
-				"file" : 4,
-				"parent" : 7
-			},
-			{
-				"command" : 8,
-				"file" : 4,
-				"line" : 190,
-				"parent" : 8
-			},
-			{
-				"file" : 3,
-				"parent" : 9
-			},
-			{
-				"command" : 7,
-				"file" : 3,
-				"line" : 55,
-				"parent" : 10
-			},
-			{
-				"file" : 2,
-				"parent" : 11
-			},
-			{
-				"command" : 6,
-				"file" : 2,
-				"line" : 61,
-				"parent" : 12
-			},
-			{
-				"command" : 7,
-				"file" : 3,
-				"line" : 43,
-				"parent" : 10
-			},
-			{
-				"file" : 9,
-				"parent" : 14
-			},
-			{
-				"command" : 10,
-				"file" : 9,
-				"line" : 45,
-				"parent" : 15
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 17
-			},
-			{
-				"file" : 6,
-				"parent" : 18
-			},
-			{
-				"command" : 7,
-				"file" : 6,
-				"line" : 55,
-				"parent" : 19
-			},
-			{
-				"file" : 5,
-				"parent" : 20
-			},
-			{
-				"command" : 6,
-				"file" : 5,
-				"line" : 61,
-				"parent" : 21
-			},
-			{
-				"command" : 12,
-				"file" : 1,
-				"line" : 15,
-				"parent" : 0
-			},
-			{
-				"command" : 11,
-				"file" : 10,
-				"line" : 1241,
-				"parent" : 23
-			},
-			{
-				"command" : 5,
-				"file" : 10,
-				"line" : 591,
-				"parent" : 24
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 26
-			},
-			{
-				"file" : 12,
-				"parent" : 27
-			},
-			{
-				"command" : 7,
-				"file" : 12,
-				"line" : 58,
-				"parent" : 28
-			},
-			{
-				"file" : 11,
-				"parent" : 29
-			},
-			{
-				"command" : 6,
-				"file" : 11,
-				"line" : 61,
-				"parent" : 30
-			},
-			{
-				"command" : 7,
-				"file" : 12,
-				"line" : 46,
-				"parent" : 28
-			},
-			{
-				"file" : 15,
-				"parent" : 32
-			},
-			{
-				"command" : 10,
-				"file" : 15,
-				"line" : 45,
-				"parent" : 33
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 34
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 35
-			},
-			{
-				"file" : 14,
-				"parent" : 36
-			},
-			{
-				"command" : 7,
-				"file" : 14,
-				"line" : 55,
-				"parent" : 37
-			},
-			{
-				"file" : 13,
-				"parent" : 38
-			},
-			{
-				"command" : 6,
-				"file" : 13,
-				"line" : 61,
-				"parent" : 39
-			},
-			{
-				"command" : 5,
-				"file" : 0,
-				"line" : 647,
-				"parent" : 2
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 42
-			},
-			{
-				"file" : 17,
-				"parent" : 43
-			},
-			{
-				"command" : 7,
-				"file" : 17,
-				"line" : 57,
-				"parent" : 44
-			},
-			{
-				"file" : 16,
-				"parent" : 45
-			},
-			{
-				"command" : 6,
-				"file" : 16,
-				"line" : 61,
-				"parent" : 46
-			},
-			{
-				"command" : 7,
-				"file" : 17,
-				"line" : 45,
-				"parent" : 44
-			},
-			{
-				"file" : 20,
-				"parent" : 48
-			},
-			{
-				"command" : 10,
-				"file" : 20,
-				"line" : 46,
-				"parent" : 49
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 50
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 51
-			},
-			{
-				"file" : 19,
-				"parent" : 52
-			},
-			{
-				"command" : 7,
-				"file" : 19,
-				"line" : 55,
-				"parent" : 53
-			},
-			{
-				"file" : 18,
-				"parent" : 54
-			},
-			{
-				"command" : 6,
-				"file" : 18,
-				"line" : 61,
-				"parent" : 55
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 57
-			},
-			{
-				"file" : 22,
-				"parent" : 58
-			},
-			{
-				"command" : 7,
-				"file" : 22,
-				"line" : 55,
-				"parent" : 59
-			},
-			{
-				"file" : 21,
-				"parent" : 60
-			},
-			{
-				"command" : 6,
-				"file" : 21,
-				"line" : 61,
-				"parent" : 61
-			},
-			{
-				"command" : 15,
-				"file" : 10,
-				"line" : 896,
-				"parent" : 24
-			},
-			{
-				"command" : 14,
-				"file" : 10,
-				"line" : 3448,
-				"parent" : 63
-			},
-			{
-				"command" : 13,
-				"file" : 10,
-				"line" : 2859,
-				"parent" : 64
-			},
-			{
-				"command" : 14,
-				"file" : 10,
-				"line" : 3454,
-				"parent" : 63
-			},
-			{
-				"command" : 13,
-				"file" : 10,
-				"line" : 2859,
-				"parent" : 66
-			},
-			{
-				"file" : 1,
-				"line" : -1,
-				"parent" : 0
-			},
-			{
-				"command" : 20,
-				"file" : 23,
-				"line" : 1,
-				"parent" : 68
-			},
-			{
-				"command" : 19,
-				"file" : 0,
-				"line" : 823,
-				"parent" : 69
-			},
-			{
-				"command" : 18,
-				"file" : 0,
-				"line" : 745,
-				"parent" : 70
-			},
-			{
-				"command" : 17,
-				"file" : 0,
-				"line" : 745,
-				"parent" : 71
-			},
-			{
-				"command" : 16,
-				"file" : 10,
-				"line" : 4324,
-				"parent" : 72
-			},
-			{
-				"command" : 13,
-				"file" : 10,
-				"line" : 4102,
-				"parent" : 73
-			},
-			{
-				"command" : 22,
-				"file" : 10,
-				"line" : 785,
-				"parent" : 24
-			},
-			{
-				"command" : 21,
-				"file" : 10,
-				"line" : 3830,
-				"parent" : 75
-			},
-			{
-				"command" : 21,
-				"file" : 10,
-				"line" : 3855,
-				"parent" : 75
-			},
-			{
-				"command" : 24,
-				"file" : 10,
-				"line" : 3655,
-				"parent" : 75
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 1500,
-				"parent" : 78
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3821,
-				"parent" : 75
-			},
-			{
-				"command" : 25,
-				"file" : 10,
-				"line" : 3845,
-				"parent" : 75
-			},
-			{
-				"command" : 28,
-				"file" : 10,
-				"line" : 839,
-				"parent" : 24
-			},
-			{
-				"command" : 27,
-				"file" : 0,
-				"line" : 406,
-				"parent" : 82
-			},
-			{
-				"command" : 26,
-				"file" : 0,
-				"line" : 2491,
-				"parent" : 83
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 2089,
-				"parent" : 84
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3175,
-				"parent" : 63
-			},
-			{
-				"command" : 29,
-				"file" : 10,
-				"line" : 3312,
-				"parent" : 63
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 1710,
-				"parent" : 87
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3368,
-				"parent" : 63
-			},
-			{
-				"command" : 28,
-				"file" : 10,
-				"line" : 3470,
-				"parent" : 63
-			},
-			{
-				"command" : 27,
-				"file" : 0,
-				"line" : 406,
-				"parent" : 90
-			},
-			{
-				"command" : 26,
-				"file" : 0,
-				"line" : 2491,
-				"parent" : 91
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 2089,
-				"parent" : 92
-			},
-			{
-				"command" : 30,
-				"file" : 0,
-				"line" : 817,
-				"parent" : 69
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 2212,
-				"parent" : 94
-			}
-		]
-	},
-	"compileGroups" : 
-	[
-		{
-			"compileCommandFragments" : 
-			[
-				{
-					"fragment" : "-DQT_QML_DEBUG -g -fdiagnostics-color=always"
-				}
-			],
-			"defines" : 
-			[
-				{
-					"backtrace" : 41,
-					"define" : "MINGW_HAS_SECURE_API=1"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_CORE_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_GUI_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_NEEDS_QMAIN"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_NETWORK_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_OPENGL_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QMLINTEGRATION_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMETA_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMODELS_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLWORKERSCRIPT_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QML_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QUICK_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN32"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN64"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_WIN64"
-				}
-			],
-			"includes" : 
-			[
-				{
-					"backtrace" : 0,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/include"
-				},
-				{
-					"backtrace" : 76,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/mkspecs/win32-g++"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlIntegration"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtNetwork"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQuick"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtGui"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlMeta"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlModels"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlWorkerScript"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtOpenGL"
-				}
-			],
-			"language" : "CXX",
-			"sourceIndexes" : 
-			[
-				0,
-				1,
-				4,
-				6,
-				7,
-				8
-			]
-		},
-		{
-			"compileCommandFragments" : 
-			[
-				{
-					"fragment" : "-DQT_QML_DEBUG -g -fdiagnostics-color=always"
-				},
-				{
-					"backtrace" : 81,
-					"fragment" : "-Wa,-mbig-obj"
-				}
-			],
-			"defines" : 
-			[
-				{
-					"backtrace" : 41,
-					"define" : "MINGW_HAS_SECURE_API=1"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_CORE_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_GUI_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_NEEDS_QMAIN"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_NETWORK_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_OPENGL_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QMLINTEGRATION_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMETA_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMODELS_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLWORKERSCRIPT_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QML_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QUICK_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN32"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN64"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_WIN64"
-				}
-			],
-			"includes" : 
-			[
-				{
-					"backtrace" : 0,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/include"
-				},
-				{
-					"backtrace" : 76,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/mkspecs/win32-g++"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlIntegration"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtNetwork"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQuick"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtGui"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlMeta"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlModels"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlWorkerScript"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtOpenGL"
-				}
-			],
-			"language" : "CXX",
-			"sourceIndexes" : 
-			[
-				3
-			]
-		}
-	],
-	"dependencies" : 
-	[
-		{
-			"backtrace" : 65,
-			"id" : "appMotus_copy_qml::@6890427a1f51a3e7e1df"
-		},
-		{
-			"backtrace" : 67,
-			"id" : "appMotus_copy_res::@6890427a1f51a3e7e1df"
-		},
-		{
-			"backtrace" : 74,
-			"id" : "appMotus_qmlimportscan::@6890427a1f51a3e7e1df"
-		},
-		{
-			"id" : "appMotus_autogen_timestamp_deps::@6890427a1f51a3e7e1df"
-		},
-		{
-			"backtrace" : 0,
-			"id" : "appMotus_autogen::@6890427a1f51a3e7e1df"
-		}
-	],
-	"id" : "appMotus::@6890427a1f51a3e7e1df",
-	"install" : 
-	{
-		"destinations" : 
-		[
-			{
-				"backtrace" : 5,
-				"path" : "bin"
-			}
-		],
-		"prefix" : 
-		{
-			"path" : "C:/Program Files (x86)/Motus"
-		}
-	},
-	"link" : 
-	{
-		"commandFragments" : 
-		[
-			{
-				"fragment" : "-DQT_QML_DEBUG -g",
-				"role" : "flags"
-			},
-			{
-				"fragment" : "-mwindows",
-				"role" : "flags"
-			},
-			{
-				"backtrace" : 6,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Quick.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6QmlMeta.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 22,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6QmlWorkerScript.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6QmlModels.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 25,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Qml.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 31,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Network.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 40,
-				"fragment" : "-lws2_32",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6OpenGL.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Gui.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 41,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Core.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 47,
-				"fragment" : "-lmpr",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 47,
-				"fragment" : "-luserenv",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 56,
-				"fragment" : "-lmingw32",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 56,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6EntryPoint.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 31,
-				"fragment" : "-lshell32",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ld3d11",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ldxgi",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ldxguid",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ld3d12",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "-luser32",
-				"role" : "libraries"
-			},
-			{
-				"fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32",
-				"role" : "libraries"
-			}
-		],
-		"language" : "CXX"
-	},
-	"name" : "appMotus",
-	"nameOnDisk" : "appMotus.exe",
-	"paths" : 
-	{
-		"build" : ".",
-		"source" : "."
-	},
-	"sourceGroups" : 
-	[
-		{
-			"name" : "Source Files\\Generated",
-			"sourceIndexes" : 
-			[
-				0,
-				12,
-				21,
-				22,
-				23,
-				24,
-				25,
-				26,
-				27,
-				28,
-				29
-			]
-		},
-		{
-			"name" : "Source Files",
-			"sourceIndexes" : 
-			[
-				1,
-				3,
-				4,
-				6,
-				7,
-				8
-			]
-		},
-		{
-			"name" : "",
-			"sourceIndexes" : 
-			[
-				2,
-				5,
-				10
-			]
-		},
-		{
-			"name" : "Resources",
-			"sourceIndexes" : 
-			[
-				9,
-				11
-			]
-		},
-		{
-			"name" : "CMake Rules",
-			"sourceIndexes" : 
-			[
-				13,
-				14,
-				15,
-				16,
-				17,
-				18,
-				19,
-				20
-			]
-		}
-	],
-	"sources" : 
-	[
-		{
-			"backtrace" : 0,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/mocs_compilation.cpp",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 4,
-			"compileGroupIndex" : 0,
-			"path" : "main.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 79,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/qt6appmotus_debug_metatypes.json.gen",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 80,
-			"compileGroupIndex" : 1,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appmotus_qmltyperegistrations.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 85,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 86,
-			"path" : "Main.qml",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 88,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 89,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 93,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 95,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qmake_Motus.qrc",
-			"sourceGroupIndex" : 3
-		},
-		{
-			"backtrace" : 95,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/qmldir",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 95,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/appMotus_raw_qml_0.qrc",
-			"sourceGroupIndex" : 3
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/timestamp",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/qt6appmotus_debug_metatypes.json.gen.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appmotus_qmltyperegistrations.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/timestamp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/appMotus_json_file_list.txt.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 41,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6core_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 25,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qml_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 25,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6network_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6quick_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6gui_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qmlmeta_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qmlmodels_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qmlworkerscript_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6opengl_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		}
-	],
-	"type" : "EXECUTABLE"
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-8bda4a854cd5d448e17e.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-8bda4a854cd5d448e17e.json
deleted file mode 100644
index 663fb6a99ac0f9e144584ea72d3ea42edeefd60b..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-8bda4a854cd5d448e17e.json
+++ /dev/null
@@ -1,1431 +0,0 @@
-{
-	"artifacts" : 
-	[
-		{
-			"path" : "appMotus.exe"
-		},
-		{
-			"path" : "appMotus.pdb"
-		}
-	],
-	"backtrace" : 4,
-	"backtraceGraph" : 
-	{
-		"commands" : 
-		[
-			"add_executable",
-			"_qt_internal_create_executable",
-			"qt6_add_executable",
-			"qt_add_executable",
-			"install",
-			"target_link_libraries",
-			"set_target_properties",
-			"include",
-			"find_package",
-			"find_dependency",
-			"_qt_internal_find_qt_dependencies",
-			"qt6_add_qml_module",
-			"qt_add_qml_module",
-			"add_dependencies",
-			"_qt_internal_scan_qml_imports",
-			"_qt_internal_generate_deploy_qml_imports_script",
-			"cmake_language",
-			"_qt_internal_finalize_executable",
-			"qt6_finalize_target",
-			"_qt_internal_qml_copy_files_to_build_dir",
-			"qt6_target_qml_sources",
-			"target_include_directories",
-			"_qt_internal_qml_type_registration",
-			"target_sources",
-			"qt6_extract_metatypes",
-			"set_source_files_properties",
-			"__qt_propagate_generated_resource",
-			"_qt_internal_process_resource",
-			"qt6_add_resources",
-			"_qt_internal_target_enable_qmlcachegen",
-			"_qt_internal_expose_deferred_files_to_ide"
-		],
-		"files" : 
-		[
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake",
-			"CMakeLists.txt",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/Qt6Config.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaConfig.cmake",
-			"C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6NetworkTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6NetworkConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlDependencies.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:792:EVAL"
-		],
-		"nodes" : 
-		[
-			{
-				"file" : 1
-			},
-			{
-				"command" : 3,
-				"file" : 1,
-				"line" : 11,
-				"parent" : 0
-			},
-			{
-				"command" : 2,
-				"file" : 0,
-				"line" : 945,
-				"parent" : 1
-			},
-			{
-				"command" : 1,
-				"file" : 0,
-				"line" : 646,
-				"parent" : 2
-			},
-			{
-				"command" : 0,
-				"file" : 0,
-				"line" : 695,
-				"parent" : 3
-			},
-			{
-				"command" : 4,
-				"file" : 1,
-				"line" : 41,
-				"parent" : 0
-			},
-			{
-				"command" : 5,
-				"file" : 1,
-				"line" : 36,
-				"parent" : 0
-			},
-			{
-				"command" : 8,
-				"file" : 1,
-				"line" : 7,
-				"parent" : 0
-			},
-			{
-				"file" : 4,
-				"parent" : 7
-			},
-			{
-				"command" : 8,
-				"file" : 4,
-				"line" : 190,
-				"parent" : 8
-			},
-			{
-				"file" : 3,
-				"parent" : 9
-			},
-			{
-				"command" : 7,
-				"file" : 3,
-				"line" : 55,
-				"parent" : 10
-			},
-			{
-				"file" : 2,
-				"parent" : 11
-			},
-			{
-				"command" : 6,
-				"file" : 2,
-				"line" : 61,
-				"parent" : 12
-			},
-			{
-				"command" : 7,
-				"file" : 3,
-				"line" : 43,
-				"parent" : 10
-			},
-			{
-				"file" : 9,
-				"parent" : 14
-			},
-			{
-				"command" : 10,
-				"file" : 9,
-				"line" : 45,
-				"parent" : 15
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 17
-			},
-			{
-				"file" : 6,
-				"parent" : 18
-			},
-			{
-				"command" : 7,
-				"file" : 6,
-				"line" : 55,
-				"parent" : 19
-			},
-			{
-				"file" : 5,
-				"parent" : 20
-			},
-			{
-				"command" : 6,
-				"file" : 5,
-				"line" : 61,
-				"parent" : 21
-			},
-			{
-				"command" : 12,
-				"file" : 1,
-				"line" : 15,
-				"parent" : 0
-			},
-			{
-				"command" : 11,
-				"file" : 10,
-				"line" : 1241,
-				"parent" : 23
-			},
-			{
-				"command" : 5,
-				"file" : 10,
-				"line" : 591,
-				"parent" : 24
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 26
-			},
-			{
-				"file" : 12,
-				"parent" : 27
-			},
-			{
-				"command" : 7,
-				"file" : 12,
-				"line" : 58,
-				"parent" : 28
-			},
-			{
-				"file" : 11,
-				"parent" : 29
-			},
-			{
-				"command" : 6,
-				"file" : 11,
-				"line" : 61,
-				"parent" : 30
-			},
-			{
-				"command" : 7,
-				"file" : 12,
-				"line" : 46,
-				"parent" : 28
-			},
-			{
-				"file" : 15,
-				"parent" : 32
-			},
-			{
-				"command" : 10,
-				"file" : 15,
-				"line" : 45,
-				"parent" : 33
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 34
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 35
-			},
-			{
-				"file" : 14,
-				"parent" : 36
-			},
-			{
-				"command" : 7,
-				"file" : 14,
-				"line" : 55,
-				"parent" : 37
-			},
-			{
-				"file" : 13,
-				"parent" : 38
-			},
-			{
-				"command" : 6,
-				"file" : 13,
-				"line" : 61,
-				"parent" : 39
-			},
-			{
-				"command" : 5,
-				"file" : 0,
-				"line" : 647,
-				"parent" : 2
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 42
-			},
-			{
-				"file" : 17,
-				"parent" : 43
-			},
-			{
-				"command" : 7,
-				"file" : 17,
-				"line" : 57,
-				"parent" : 44
-			},
-			{
-				"file" : 16,
-				"parent" : 45
-			},
-			{
-				"command" : 6,
-				"file" : 16,
-				"line" : 61,
-				"parent" : 46
-			},
-			{
-				"command" : 7,
-				"file" : 17,
-				"line" : 45,
-				"parent" : 44
-			},
-			{
-				"file" : 20,
-				"parent" : 48
-			},
-			{
-				"command" : 10,
-				"file" : 20,
-				"line" : 46,
-				"parent" : 49
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 50
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 51
-			},
-			{
-				"file" : 19,
-				"parent" : 52
-			},
-			{
-				"command" : 7,
-				"file" : 19,
-				"line" : 55,
-				"parent" : 53
-			},
-			{
-				"file" : 18,
-				"parent" : 54
-			},
-			{
-				"command" : 6,
-				"file" : 18,
-				"line" : 61,
-				"parent" : 55
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 57
-			},
-			{
-				"file" : 22,
-				"parent" : 58
-			},
-			{
-				"command" : 7,
-				"file" : 22,
-				"line" : 55,
-				"parent" : 59
-			},
-			{
-				"file" : 21,
-				"parent" : 60
-			},
-			{
-				"command" : 6,
-				"file" : 21,
-				"line" : 61,
-				"parent" : 61
-			},
-			{
-				"file" : 1,
-				"line" : -1,
-				"parent" : 0
-			},
-			{
-				"command" : 18,
-				"file" : 23,
-				"line" : 1,
-				"parent" : 63
-			},
-			{
-				"command" : 17,
-				"file" : 0,
-				"line" : 823,
-				"parent" : 64
-			},
-			{
-				"command" : 16,
-				"file" : 0,
-				"line" : 745,
-				"parent" : 65
-			},
-			{
-				"command" : 15,
-				"file" : 0,
-				"line" : 745,
-				"parent" : 66
-			},
-			{
-				"command" : 14,
-				"file" : 10,
-				"line" : 4324,
-				"parent" : 67
-			},
-			{
-				"command" : 13,
-				"file" : 10,
-				"line" : 4102,
-				"parent" : 68
-			},
-			{
-				"command" : 20,
-				"file" : 10,
-				"line" : 896,
-				"parent" : 24
-			},
-			{
-				"command" : 19,
-				"file" : 10,
-				"line" : 3448,
-				"parent" : 70
-			},
-			{
-				"command" : 13,
-				"file" : 10,
-				"line" : 2859,
-				"parent" : 71
-			},
-			{
-				"command" : 19,
-				"file" : 10,
-				"line" : 3454,
-				"parent" : 70
-			},
-			{
-				"command" : 13,
-				"file" : 10,
-				"line" : 2859,
-				"parent" : 73
-			},
-			{
-				"command" : 22,
-				"file" : 10,
-				"line" : 785,
-				"parent" : 24
-			},
-			{
-				"command" : 21,
-				"file" : 10,
-				"line" : 3830,
-				"parent" : 75
-			},
-			{
-				"command" : 21,
-				"file" : 10,
-				"line" : 3855,
-				"parent" : 75
-			},
-			{
-				"command" : 24,
-				"file" : 10,
-				"line" : 3655,
-				"parent" : 75
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 1500,
-				"parent" : 78
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3821,
-				"parent" : 75
-			},
-			{
-				"command" : 25,
-				"file" : 10,
-				"line" : 3845,
-				"parent" : 75
-			},
-			{
-				"command" : 28,
-				"file" : 10,
-				"line" : 839,
-				"parent" : 24
-			},
-			{
-				"command" : 27,
-				"file" : 0,
-				"line" : 406,
-				"parent" : 82
-			},
-			{
-				"command" : 26,
-				"file" : 0,
-				"line" : 2491,
-				"parent" : 83
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 2089,
-				"parent" : 84
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3175,
-				"parent" : 70
-			},
-			{
-				"command" : 29,
-				"file" : 10,
-				"line" : 3312,
-				"parent" : 70
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 1710,
-				"parent" : 87
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3368,
-				"parent" : 70
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3175,
-				"parent" : 70
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3368,
-				"parent" : 70
-			},
-			{
-				"command" : 28,
-				"file" : 10,
-				"line" : 3470,
-				"parent" : 70
-			},
-			{
-				"command" : 27,
-				"file" : 0,
-				"line" : 406,
-				"parent" : 92
-			},
-			{
-				"command" : 26,
-				"file" : 0,
-				"line" : 2491,
-				"parent" : 93
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 2089,
-				"parent" : 94
-			},
-			{
-				"command" : 30,
-				"file" : 0,
-				"line" : 817,
-				"parent" : 64
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 2212,
-				"parent" : 96
-			}
-		]
-	},
-	"compileGroups" : 
-	[
-		{
-			"compileCommandFragments" : 
-			[
-				{
-					"fragment" : "-DQT_QML_DEBUG -g -fdiagnostics-color=always"
-				}
-			],
-			"defines" : 
-			[
-				{
-					"backtrace" : 41,
-					"define" : "MINGW_HAS_SECURE_API=1"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_CORE_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_GUI_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_NEEDS_QMAIN"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_NETWORK_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_OPENGL_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QMLINTEGRATION_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMETA_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMODELS_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLWORKERSCRIPT_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QML_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QUICK_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN32"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN64"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_WIN64"
-				}
-			],
-			"includes" : 
-			[
-				{
-					"backtrace" : 0,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/include"
-				},
-				{
-					"backtrace" : 76,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/mkspecs/win32-g++"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlIntegration"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtNetwork"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQuick"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtGui"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlMeta"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlModels"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlWorkerScript"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtOpenGL"
-				}
-			],
-			"language" : "CXX",
-			"sourceIndexes" : 
-			[
-				0,
-				1,
-				4,
-				6,
-				7,
-				9,
-				10
-			]
-		},
-		{
-			"compileCommandFragments" : 
-			[
-				{
-					"fragment" : "-DQT_QML_DEBUG -g -fdiagnostics-color=always"
-				},
-				{
-					"backtrace" : 81,
-					"fragment" : "-Wa,-mbig-obj"
-				}
-			],
-			"defines" : 
-			[
-				{
-					"backtrace" : 41,
-					"define" : "MINGW_HAS_SECURE_API=1"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_CORE_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_GUI_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_NEEDS_QMAIN"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_NETWORK_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_OPENGL_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QMLINTEGRATION_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMETA_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMODELS_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLWORKERSCRIPT_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QML_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QUICK_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN32"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN64"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_WIN64"
-				}
-			],
-			"includes" : 
-			[
-				{
-					"backtrace" : 0,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/include"
-				},
-				{
-					"backtrace" : 76,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/mkspecs/win32-g++"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlIntegration"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtNetwork"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQuick"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtGui"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlMeta"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlModels"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlWorkerScript"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtOpenGL"
-				}
-			],
-			"language" : "CXX",
-			"sourceIndexes" : 
-			[
-				3
-			]
-		}
-	],
-	"dependencies" : 
-	[
-		{
-			"backtrace" : 69,
-			"id" : "appMotus_qmlimportscan::@6890427a1f51a3e7e1df"
-		},
-		{
-			"backtrace" : 72,
-			"id" : "appMotus_copy_qml::@6890427a1f51a3e7e1df"
-		},
-		{
-			"backtrace" : 74,
-			"id" : "appMotus_copy_res::@6890427a1f51a3e7e1df"
-		},
-		{
-			"id" : "appMotus_autogen_timestamp_deps::@6890427a1f51a3e7e1df"
-		},
-		{
-			"backtrace" : 0,
-			"id" : "appMotus_autogen::@6890427a1f51a3e7e1df"
-		}
-	],
-	"id" : "appMotus::@6890427a1f51a3e7e1df",
-	"install" : 
-	{
-		"destinations" : 
-		[
-			{
-				"backtrace" : 5,
-				"path" : "bin"
-			}
-		],
-		"prefix" : 
-		{
-			"path" : "C:/Program Files (x86)/Motus"
-		}
-	},
-	"link" : 
-	{
-		"commandFragments" : 
-		[
-			{
-				"fragment" : "-DQT_QML_DEBUG -g",
-				"role" : "flags"
-			},
-			{
-				"fragment" : "-mwindows",
-				"role" : "flags"
-			},
-			{
-				"backtrace" : 6,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Quick.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6QmlMeta.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 22,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6QmlWorkerScript.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6QmlModels.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 25,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Qml.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 31,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Network.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 40,
-				"fragment" : "-lws2_32",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6OpenGL.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Gui.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 41,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Core.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 47,
-				"fragment" : "-lmpr",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 47,
-				"fragment" : "-luserenv",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 56,
-				"fragment" : "-lmingw32",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 56,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6EntryPoint.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 31,
-				"fragment" : "-lshell32",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ld3d11",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ldxgi",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ldxguid",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ld3d12",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "-luser32",
-				"role" : "libraries"
-			},
-			{
-				"fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32",
-				"role" : "libraries"
-			}
-		],
-		"language" : "CXX"
-	},
-	"name" : "appMotus",
-	"nameOnDisk" : "appMotus.exe",
-	"paths" : 
-	{
-		"build" : ".",
-		"source" : "."
-	},
-	"sourceGroups" : 
-	[
-		{
-			"name" : "Source Files\\Generated",
-			"sourceIndexes" : 
-			[
-				0,
-				15,
-				25,
-				26,
-				27,
-				28,
-				29,
-				30,
-				31,
-				32,
-				33
-			]
-		},
-		{
-			"name" : "Source Files",
-			"sourceIndexes" : 
-			[
-				1,
-				3,
-				4,
-				6,
-				7,
-				9,
-				10
-			]
-		},
-		{
-			"name" : "",
-			"sourceIndexes" : 
-			[
-				2,
-				5,
-				8,
-				12
-			]
-		},
-		{
-			"name" : "Resources",
-			"sourceIndexes" : 
-			[
-				11,
-				13,
-				14
-			]
-		},
-		{
-			"name" : "CMake Rules",
-			"sourceIndexes" : 
-			[
-				16,
-				17,
-				18,
-				19,
-				20,
-				21,
-				22,
-				23,
-				24
-			]
-		}
-	],
-	"sources" : 
-	[
-		{
-			"backtrace" : 0,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/mocs_compilation.cpp",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 4,
-			"compileGroupIndex" : 0,
-			"path" : "main.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 79,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/qt6appmotus_debug_metatypes.json.gen",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 80,
-			"compileGroupIndex" : 1,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appmotus_qmltyperegistrations.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 85,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 86,
-			"path" : "Main.qml",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 88,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 89,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 90,
-			"path" : "Case.qml",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 91,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 95,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 97,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qmake_Motus.qrc",
-			"sourceGroupIndex" : 3
-		},
-		{
-			"backtrace" : 97,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/qmldir",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 97,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/appMotus_raw_qml_0.qrc",
-			"sourceGroupIndex" : 3
-		},
-		{
-			"backtrace" : 97,
-			"path" : "Ressources.qrc",
-			"sourceGroupIndex" : 3
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/timestamp",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/qt6appmotus_debug_metatypes.json.gen.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appmotus_qmltyperegistrations.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/timestamp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/appMotus_json_file_list.txt.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 41,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6core_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 25,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qml_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 25,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6network_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6quick_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6gui_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qmlmeta_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qmlmodels_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qmlworkerscript_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6opengl_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		}
-	],
-	"type" : "EXECUTABLE"
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-90bc9f6f888bd5e264e0.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-90bc9f6f888bd5e264e0.json
deleted file mode 100644
index e74cb2b74ad66fe8f4d04a086ee3ee143a6eb24f..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-90bc9f6f888bd5e264e0.json
+++ /dev/null
@@ -1,1431 +0,0 @@
-{
-	"artifacts" : 
-	[
-		{
-			"path" : "appMotus.exe"
-		},
-		{
-			"path" : "appMotus.pdb"
-		}
-	],
-	"backtrace" : 4,
-	"backtraceGraph" : 
-	{
-		"commands" : 
-		[
-			"add_executable",
-			"_qt_internal_create_executable",
-			"qt6_add_executable",
-			"qt_add_executable",
-			"install",
-			"target_link_libraries",
-			"set_target_properties",
-			"include",
-			"find_package",
-			"find_dependency",
-			"_qt_internal_find_qt_dependencies",
-			"qt6_add_qml_module",
-			"qt_add_qml_module",
-			"add_dependencies",
-			"_qt_internal_scan_qml_imports",
-			"_qt_internal_generate_deploy_qml_imports_script",
-			"cmake_language",
-			"_qt_internal_finalize_executable",
-			"qt6_finalize_target",
-			"_qt_internal_qml_copy_files_to_build_dir",
-			"qt6_target_qml_sources",
-			"target_include_directories",
-			"_qt_internal_qml_type_registration",
-			"target_sources",
-			"qt6_extract_metatypes",
-			"set_source_files_properties",
-			"__qt_propagate_generated_resource",
-			"_qt_internal_process_resource",
-			"qt6_add_resources",
-			"_qt_internal_target_enable_qmlcachegen",
-			"_qt_internal_expose_deferred_files_to_ide"
-		],
-		"files" : 
-		[
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake",
-			"CMakeLists.txt",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/Qt6Config.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaConfig.cmake",
-			"C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6NetworkTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6NetworkConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlDependencies.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:792:EVAL"
-		],
-		"nodes" : 
-		[
-			{
-				"file" : 1
-			},
-			{
-				"command" : 3,
-				"file" : 1,
-				"line" : 11,
-				"parent" : 0
-			},
-			{
-				"command" : 2,
-				"file" : 0,
-				"line" : 945,
-				"parent" : 1
-			},
-			{
-				"command" : 1,
-				"file" : 0,
-				"line" : 646,
-				"parent" : 2
-			},
-			{
-				"command" : 0,
-				"file" : 0,
-				"line" : 695,
-				"parent" : 3
-			},
-			{
-				"command" : 4,
-				"file" : 1,
-				"line" : 43,
-				"parent" : 0
-			},
-			{
-				"command" : 5,
-				"file" : 1,
-				"line" : 38,
-				"parent" : 0
-			},
-			{
-				"command" : 8,
-				"file" : 1,
-				"line" : 7,
-				"parent" : 0
-			},
-			{
-				"file" : 4,
-				"parent" : 7
-			},
-			{
-				"command" : 8,
-				"file" : 4,
-				"line" : 190,
-				"parent" : 8
-			},
-			{
-				"file" : 3,
-				"parent" : 9
-			},
-			{
-				"command" : 7,
-				"file" : 3,
-				"line" : 55,
-				"parent" : 10
-			},
-			{
-				"file" : 2,
-				"parent" : 11
-			},
-			{
-				"command" : 6,
-				"file" : 2,
-				"line" : 61,
-				"parent" : 12
-			},
-			{
-				"command" : 7,
-				"file" : 3,
-				"line" : 43,
-				"parent" : 10
-			},
-			{
-				"file" : 9,
-				"parent" : 14
-			},
-			{
-				"command" : 10,
-				"file" : 9,
-				"line" : 45,
-				"parent" : 15
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 17
-			},
-			{
-				"file" : 6,
-				"parent" : 18
-			},
-			{
-				"command" : 7,
-				"file" : 6,
-				"line" : 55,
-				"parent" : 19
-			},
-			{
-				"file" : 5,
-				"parent" : 20
-			},
-			{
-				"command" : 6,
-				"file" : 5,
-				"line" : 61,
-				"parent" : 21
-			},
-			{
-				"command" : 12,
-				"file" : 1,
-				"line" : 15,
-				"parent" : 0
-			},
-			{
-				"command" : 11,
-				"file" : 10,
-				"line" : 1241,
-				"parent" : 23
-			},
-			{
-				"command" : 5,
-				"file" : 10,
-				"line" : 591,
-				"parent" : 24
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 26
-			},
-			{
-				"file" : 12,
-				"parent" : 27
-			},
-			{
-				"command" : 7,
-				"file" : 12,
-				"line" : 58,
-				"parent" : 28
-			},
-			{
-				"file" : 11,
-				"parent" : 29
-			},
-			{
-				"command" : 6,
-				"file" : 11,
-				"line" : 61,
-				"parent" : 30
-			},
-			{
-				"command" : 7,
-				"file" : 12,
-				"line" : 46,
-				"parent" : 28
-			},
-			{
-				"file" : 15,
-				"parent" : 32
-			},
-			{
-				"command" : 10,
-				"file" : 15,
-				"line" : 45,
-				"parent" : 33
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 34
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 35
-			},
-			{
-				"file" : 14,
-				"parent" : 36
-			},
-			{
-				"command" : 7,
-				"file" : 14,
-				"line" : 55,
-				"parent" : 37
-			},
-			{
-				"file" : 13,
-				"parent" : 38
-			},
-			{
-				"command" : 6,
-				"file" : 13,
-				"line" : 61,
-				"parent" : 39
-			},
-			{
-				"command" : 5,
-				"file" : 0,
-				"line" : 647,
-				"parent" : 2
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 42
-			},
-			{
-				"file" : 17,
-				"parent" : 43
-			},
-			{
-				"command" : 7,
-				"file" : 17,
-				"line" : 57,
-				"parent" : 44
-			},
-			{
-				"file" : 16,
-				"parent" : 45
-			},
-			{
-				"command" : 6,
-				"file" : 16,
-				"line" : 61,
-				"parent" : 46
-			},
-			{
-				"command" : 7,
-				"file" : 17,
-				"line" : 45,
-				"parent" : 44
-			},
-			{
-				"file" : 20,
-				"parent" : 48
-			},
-			{
-				"command" : 10,
-				"file" : 20,
-				"line" : 46,
-				"parent" : 49
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 50
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 51
-			},
-			{
-				"file" : 19,
-				"parent" : 52
-			},
-			{
-				"command" : 7,
-				"file" : 19,
-				"line" : 55,
-				"parent" : 53
-			},
-			{
-				"file" : 18,
-				"parent" : 54
-			},
-			{
-				"command" : 6,
-				"file" : 18,
-				"line" : 61,
-				"parent" : 55
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 57
-			},
-			{
-				"file" : 22,
-				"parent" : 58
-			},
-			{
-				"command" : 7,
-				"file" : 22,
-				"line" : 55,
-				"parent" : 59
-			},
-			{
-				"file" : 21,
-				"parent" : 60
-			},
-			{
-				"command" : 6,
-				"file" : 21,
-				"line" : 61,
-				"parent" : 61
-			},
-			{
-				"file" : 1,
-				"line" : -1,
-				"parent" : 0
-			},
-			{
-				"command" : 18,
-				"file" : 23,
-				"line" : 1,
-				"parent" : 63
-			},
-			{
-				"command" : 17,
-				"file" : 0,
-				"line" : 823,
-				"parent" : 64
-			},
-			{
-				"command" : 16,
-				"file" : 0,
-				"line" : 745,
-				"parent" : 65
-			},
-			{
-				"command" : 15,
-				"file" : 0,
-				"line" : 745,
-				"parent" : 66
-			},
-			{
-				"command" : 14,
-				"file" : 10,
-				"line" : 4324,
-				"parent" : 67
-			},
-			{
-				"command" : 13,
-				"file" : 10,
-				"line" : 4102,
-				"parent" : 68
-			},
-			{
-				"command" : 20,
-				"file" : 10,
-				"line" : 896,
-				"parent" : 24
-			},
-			{
-				"command" : 19,
-				"file" : 10,
-				"line" : 3454,
-				"parent" : 70
-			},
-			{
-				"command" : 13,
-				"file" : 10,
-				"line" : 2859,
-				"parent" : 71
-			},
-			{
-				"command" : 19,
-				"file" : 10,
-				"line" : 3448,
-				"parent" : 70
-			},
-			{
-				"command" : 13,
-				"file" : 10,
-				"line" : 2859,
-				"parent" : 73
-			},
-			{
-				"command" : 22,
-				"file" : 10,
-				"line" : 785,
-				"parent" : 24
-			},
-			{
-				"command" : 21,
-				"file" : 10,
-				"line" : 3830,
-				"parent" : 75
-			},
-			{
-				"command" : 21,
-				"file" : 10,
-				"line" : 3855,
-				"parent" : 75
-			},
-			{
-				"command" : 24,
-				"file" : 10,
-				"line" : 3655,
-				"parent" : 75
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 1500,
-				"parent" : 78
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3821,
-				"parent" : 75
-			},
-			{
-				"command" : 25,
-				"file" : 10,
-				"line" : 3845,
-				"parent" : 75
-			},
-			{
-				"command" : 28,
-				"file" : 10,
-				"line" : 839,
-				"parent" : 24
-			},
-			{
-				"command" : 27,
-				"file" : 0,
-				"line" : 406,
-				"parent" : 82
-			},
-			{
-				"command" : 26,
-				"file" : 0,
-				"line" : 2491,
-				"parent" : 83
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 2089,
-				"parent" : 84
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3175,
-				"parent" : 70
-			},
-			{
-				"command" : 29,
-				"file" : 10,
-				"line" : 3312,
-				"parent" : 70
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 1710,
-				"parent" : 87
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3368,
-				"parent" : 70
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3175,
-				"parent" : 70
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3368,
-				"parent" : 70
-			},
-			{
-				"command" : 28,
-				"file" : 10,
-				"line" : 3470,
-				"parent" : 70
-			},
-			{
-				"command" : 27,
-				"file" : 0,
-				"line" : 406,
-				"parent" : 92
-			},
-			{
-				"command" : 26,
-				"file" : 0,
-				"line" : 2491,
-				"parent" : 93
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 2089,
-				"parent" : 94
-			},
-			{
-				"command" : 30,
-				"file" : 0,
-				"line" : 817,
-				"parent" : 64
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 2212,
-				"parent" : 96
-			}
-		]
-	},
-	"compileGroups" : 
-	[
-		{
-			"compileCommandFragments" : 
-			[
-				{
-					"fragment" : "-DQT_QML_DEBUG -g -fdiagnostics-color=always"
-				}
-			],
-			"defines" : 
-			[
-				{
-					"backtrace" : 41,
-					"define" : "MINGW_HAS_SECURE_API=1"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_CORE_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_GUI_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_NEEDS_QMAIN"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_NETWORK_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_OPENGL_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QMLINTEGRATION_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMETA_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMODELS_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLWORKERSCRIPT_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QML_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QUICK_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN32"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN64"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_WIN64"
-				}
-			],
-			"includes" : 
-			[
-				{
-					"backtrace" : 0,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/include"
-				},
-				{
-					"backtrace" : 76,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/mkspecs/win32-g++"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlIntegration"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtNetwork"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQuick"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtGui"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlMeta"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlModels"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlWorkerScript"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtOpenGL"
-				}
-			],
-			"language" : "CXX",
-			"sourceIndexes" : 
-			[
-				0,
-				1,
-				4,
-				6,
-				7,
-				9,
-				10
-			]
-		},
-		{
-			"compileCommandFragments" : 
-			[
-				{
-					"fragment" : "-DQT_QML_DEBUG -g -fdiagnostics-color=always"
-				},
-				{
-					"backtrace" : 81,
-					"fragment" : "-Wa,-mbig-obj"
-				}
-			],
-			"defines" : 
-			[
-				{
-					"backtrace" : 41,
-					"define" : "MINGW_HAS_SECURE_API=1"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_CORE_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_GUI_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_NEEDS_QMAIN"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_NETWORK_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_OPENGL_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QMLINTEGRATION_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMETA_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMODELS_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLWORKERSCRIPT_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QML_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QUICK_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN32"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN64"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_WIN64"
-				}
-			],
-			"includes" : 
-			[
-				{
-					"backtrace" : 0,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/include"
-				},
-				{
-					"backtrace" : 76,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/mkspecs/win32-g++"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlIntegration"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtNetwork"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQuick"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtGui"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlMeta"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlModels"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlWorkerScript"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtOpenGL"
-				}
-			],
-			"language" : "CXX",
-			"sourceIndexes" : 
-			[
-				3
-			]
-		}
-	],
-	"dependencies" : 
-	[
-		{
-			"backtrace" : 69,
-			"id" : "appMotus_qmlimportscan::@6890427a1f51a3e7e1df"
-		},
-		{
-			"backtrace" : 72,
-			"id" : "appMotus_copy_res::@6890427a1f51a3e7e1df"
-		},
-		{
-			"id" : "appMotus_autogen_timestamp_deps::@6890427a1f51a3e7e1df"
-		},
-		{
-			"backtrace" : 74,
-			"id" : "appMotus_copy_qml::@6890427a1f51a3e7e1df"
-		},
-		{
-			"backtrace" : 0,
-			"id" : "appMotus_autogen::@6890427a1f51a3e7e1df"
-		}
-	],
-	"id" : "appMotus::@6890427a1f51a3e7e1df",
-	"install" : 
-	{
-		"destinations" : 
-		[
-			{
-				"backtrace" : 5,
-				"path" : "bin"
-			}
-		],
-		"prefix" : 
-		{
-			"path" : "C:/Program Files (x86)/Motus"
-		}
-	},
-	"link" : 
-	{
-		"commandFragments" : 
-		[
-			{
-				"fragment" : "-DQT_QML_DEBUG -g",
-				"role" : "flags"
-			},
-			{
-				"fragment" : "-mwindows",
-				"role" : "flags"
-			},
-			{
-				"backtrace" : 6,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Quick.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6QmlMeta.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 22,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6QmlWorkerScript.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6QmlModels.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 25,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Qml.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 31,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Network.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 40,
-				"fragment" : "-lws2_32",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6OpenGL.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Gui.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 41,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Core.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 47,
-				"fragment" : "-lmpr",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 47,
-				"fragment" : "-luserenv",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 56,
-				"fragment" : "-lmingw32",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 56,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6EntryPoint.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 31,
-				"fragment" : "-lshell32",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ld3d11",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ldxgi",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ldxguid",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ld3d12",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "-luser32",
-				"role" : "libraries"
-			},
-			{
-				"fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32",
-				"role" : "libraries"
-			}
-		],
-		"language" : "CXX"
-	},
-	"name" : "appMotus",
-	"nameOnDisk" : "appMotus.exe",
-	"paths" : 
-	{
-		"build" : ".",
-		"source" : "."
-	},
-	"sourceGroups" : 
-	[
-		{
-			"name" : "Source Files\\Generated",
-			"sourceIndexes" : 
-			[
-				0,
-				15,
-				25,
-				26,
-				27,
-				28,
-				29,
-				30,
-				31,
-				32,
-				33
-			]
-		},
-		{
-			"name" : "Source Files",
-			"sourceIndexes" : 
-			[
-				1,
-				3,
-				4,
-				6,
-				7,
-				9,
-				10
-			]
-		},
-		{
-			"name" : "",
-			"sourceIndexes" : 
-			[
-				2,
-				5,
-				8,
-				12
-			]
-		},
-		{
-			"name" : "Resources",
-			"sourceIndexes" : 
-			[
-				11,
-				13,
-				14
-			]
-		},
-		{
-			"name" : "CMake Rules",
-			"sourceIndexes" : 
-			[
-				16,
-				17,
-				18,
-				19,
-				20,
-				21,
-				22,
-				23,
-				24
-			]
-		}
-	],
-	"sources" : 
-	[
-		{
-			"backtrace" : 0,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/mocs_compilation.cpp",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 4,
-			"compileGroupIndex" : 0,
-			"path" : "main.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 79,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/qt6appmotus_debug_metatypes.json.gen",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 80,
-			"compileGroupIndex" : 1,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appmotus_qmltyperegistrations.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 85,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 86,
-			"path" : "Main.qml",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 88,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 89,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 90,
-			"path" : "Case.qml",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 91,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 95,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 97,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qmake_Motus.qrc",
-			"sourceGroupIndex" : 3
-		},
-		{
-			"backtrace" : 97,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/qmldir",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 97,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/appMotus_raw_qml_0.qrc",
-			"sourceGroupIndex" : 3
-		},
-		{
-			"backtrace" : 97,
-			"path" : "Ressources.qrc",
-			"sourceGroupIndex" : 3
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/timestamp",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/qt6appmotus_debug_metatypes.json.gen.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appmotus_qmltyperegistrations.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/timestamp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/appMotus_json_file_list.txt.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 41,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6core_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 25,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qml_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 25,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6network_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6quick_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6gui_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qmlmeta_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qmlmodels_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qmlworkerscript_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6opengl_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		}
-	],
-	"type" : "EXECUTABLE"
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-cebdc56ff18f9c17862e.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-cebdc56ff18f9c17862e.json
deleted file mode 100644
index c344f5ad7c0226c4f45ce2f0da6cf153a02c2cef..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-cebdc56ff18f9c17862e.json
+++ /dev/null
@@ -1,1431 +0,0 @@
-{
-	"artifacts" : 
-	[
-		{
-			"path" : "appMotus.exe"
-		},
-		{
-			"path" : "appMotus.pdb"
-		}
-	],
-	"backtrace" : 4,
-	"backtraceGraph" : 
-	{
-		"commands" : 
-		[
-			"add_executable",
-			"_qt_internal_create_executable",
-			"qt6_add_executable",
-			"qt_add_executable",
-			"install",
-			"target_link_libraries",
-			"set_target_properties",
-			"include",
-			"find_package",
-			"find_dependency",
-			"_qt_internal_find_qt_dependencies",
-			"qt6_add_qml_module",
-			"qt_add_qml_module",
-			"add_dependencies",
-			"_qt_internal_qml_copy_files_to_build_dir",
-			"qt6_target_qml_sources",
-			"_qt_internal_scan_qml_imports",
-			"_qt_internal_generate_deploy_qml_imports_script",
-			"cmake_language",
-			"_qt_internal_finalize_executable",
-			"qt6_finalize_target",
-			"target_include_directories",
-			"_qt_internal_qml_type_registration",
-			"target_sources",
-			"qt6_extract_metatypes",
-			"set_source_files_properties",
-			"__qt_propagate_generated_resource",
-			"_qt_internal_process_resource",
-			"qt6_add_resources",
-			"_qt_internal_target_enable_qmlcachegen",
-			"_qt_internal_expose_deferred_files_to_ide"
-		],
-		"files" : 
-		[
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake",
-			"CMakeLists.txt",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/Qt6Config.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaConfig.cmake",
-			"C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6NetworkTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6NetworkConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlDependencies.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:792:EVAL"
-		],
-		"nodes" : 
-		[
-			{
-				"file" : 1
-			},
-			{
-				"command" : 3,
-				"file" : 1,
-				"line" : 11,
-				"parent" : 0
-			},
-			{
-				"command" : 2,
-				"file" : 0,
-				"line" : 945,
-				"parent" : 1
-			},
-			{
-				"command" : 1,
-				"file" : 0,
-				"line" : 646,
-				"parent" : 2
-			},
-			{
-				"command" : 0,
-				"file" : 0,
-				"line" : 695,
-				"parent" : 3
-			},
-			{
-				"command" : 4,
-				"file" : 1,
-				"line" : 40,
-				"parent" : 0
-			},
-			{
-				"command" : 5,
-				"file" : 1,
-				"line" : 35,
-				"parent" : 0
-			},
-			{
-				"command" : 8,
-				"file" : 1,
-				"line" : 7,
-				"parent" : 0
-			},
-			{
-				"file" : 4,
-				"parent" : 7
-			},
-			{
-				"command" : 8,
-				"file" : 4,
-				"line" : 190,
-				"parent" : 8
-			},
-			{
-				"file" : 3,
-				"parent" : 9
-			},
-			{
-				"command" : 7,
-				"file" : 3,
-				"line" : 55,
-				"parent" : 10
-			},
-			{
-				"file" : 2,
-				"parent" : 11
-			},
-			{
-				"command" : 6,
-				"file" : 2,
-				"line" : 61,
-				"parent" : 12
-			},
-			{
-				"command" : 7,
-				"file" : 3,
-				"line" : 43,
-				"parent" : 10
-			},
-			{
-				"file" : 9,
-				"parent" : 14
-			},
-			{
-				"command" : 10,
-				"file" : 9,
-				"line" : 45,
-				"parent" : 15
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 17
-			},
-			{
-				"file" : 6,
-				"parent" : 18
-			},
-			{
-				"command" : 7,
-				"file" : 6,
-				"line" : 55,
-				"parent" : 19
-			},
-			{
-				"file" : 5,
-				"parent" : 20
-			},
-			{
-				"command" : 6,
-				"file" : 5,
-				"line" : 61,
-				"parent" : 21
-			},
-			{
-				"command" : 12,
-				"file" : 1,
-				"line" : 15,
-				"parent" : 0
-			},
-			{
-				"command" : 11,
-				"file" : 10,
-				"line" : 1241,
-				"parent" : 23
-			},
-			{
-				"command" : 5,
-				"file" : 10,
-				"line" : 591,
-				"parent" : 24
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 26
-			},
-			{
-				"file" : 12,
-				"parent" : 27
-			},
-			{
-				"command" : 7,
-				"file" : 12,
-				"line" : 58,
-				"parent" : 28
-			},
-			{
-				"file" : 11,
-				"parent" : 29
-			},
-			{
-				"command" : 6,
-				"file" : 11,
-				"line" : 61,
-				"parent" : 30
-			},
-			{
-				"command" : 7,
-				"file" : 12,
-				"line" : 46,
-				"parent" : 28
-			},
-			{
-				"file" : 15,
-				"parent" : 32
-			},
-			{
-				"command" : 10,
-				"file" : 15,
-				"line" : 45,
-				"parent" : 33
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 34
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 35
-			},
-			{
-				"file" : 14,
-				"parent" : 36
-			},
-			{
-				"command" : 7,
-				"file" : 14,
-				"line" : 55,
-				"parent" : 37
-			},
-			{
-				"file" : 13,
-				"parent" : 38
-			},
-			{
-				"command" : 6,
-				"file" : 13,
-				"line" : 61,
-				"parent" : 39
-			},
-			{
-				"command" : 5,
-				"file" : 0,
-				"line" : 647,
-				"parent" : 2
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 42
-			},
-			{
-				"file" : 17,
-				"parent" : 43
-			},
-			{
-				"command" : 7,
-				"file" : 17,
-				"line" : 57,
-				"parent" : 44
-			},
-			{
-				"file" : 16,
-				"parent" : 45
-			},
-			{
-				"command" : 6,
-				"file" : 16,
-				"line" : 61,
-				"parent" : 46
-			},
-			{
-				"command" : 7,
-				"file" : 17,
-				"line" : 45,
-				"parent" : 44
-			},
-			{
-				"file" : 20,
-				"parent" : 48
-			},
-			{
-				"command" : 10,
-				"file" : 20,
-				"line" : 46,
-				"parent" : 49
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 50
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 51
-			},
-			{
-				"file" : 19,
-				"parent" : 52
-			},
-			{
-				"command" : 7,
-				"file" : 19,
-				"line" : 55,
-				"parent" : 53
-			},
-			{
-				"file" : 18,
-				"parent" : 54
-			},
-			{
-				"command" : 6,
-				"file" : 18,
-				"line" : 61,
-				"parent" : 55
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 57
-			},
-			{
-				"file" : 22,
-				"parent" : 58
-			},
-			{
-				"command" : 7,
-				"file" : 22,
-				"line" : 55,
-				"parent" : 59
-			},
-			{
-				"file" : 21,
-				"parent" : 60
-			},
-			{
-				"command" : 6,
-				"file" : 21,
-				"line" : 61,
-				"parent" : 61
-			},
-			{
-				"command" : 15,
-				"file" : 10,
-				"line" : 896,
-				"parent" : 24
-			},
-			{
-				"command" : 14,
-				"file" : 10,
-				"line" : 3448,
-				"parent" : 63
-			},
-			{
-				"command" : 13,
-				"file" : 10,
-				"line" : 2859,
-				"parent" : 64
-			},
-			{
-				"command" : 14,
-				"file" : 10,
-				"line" : 3454,
-				"parent" : 63
-			},
-			{
-				"command" : 13,
-				"file" : 10,
-				"line" : 2859,
-				"parent" : 66
-			},
-			{
-				"file" : 1,
-				"line" : -1,
-				"parent" : 0
-			},
-			{
-				"command" : 20,
-				"file" : 23,
-				"line" : 1,
-				"parent" : 68
-			},
-			{
-				"command" : 19,
-				"file" : 0,
-				"line" : 823,
-				"parent" : 69
-			},
-			{
-				"command" : 18,
-				"file" : 0,
-				"line" : 745,
-				"parent" : 70
-			},
-			{
-				"command" : 17,
-				"file" : 0,
-				"line" : 745,
-				"parent" : 71
-			},
-			{
-				"command" : 16,
-				"file" : 10,
-				"line" : 4324,
-				"parent" : 72
-			},
-			{
-				"command" : 13,
-				"file" : 10,
-				"line" : 4102,
-				"parent" : 73
-			},
-			{
-				"command" : 22,
-				"file" : 10,
-				"line" : 785,
-				"parent" : 24
-			},
-			{
-				"command" : 21,
-				"file" : 10,
-				"line" : 3830,
-				"parent" : 75
-			},
-			{
-				"command" : 21,
-				"file" : 10,
-				"line" : 3855,
-				"parent" : 75
-			},
-			{
-				"command" : 24,
-				"file" : 10,
-				"line" : 3655,
-				"parent" : 75
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 1500,
-				"parent" : 78
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3821,
-				"parent" : 75
-			},
-			{
-				"command" : 25,
-				"file" : 10,
-				"line" : 3845,
-				"parent" : 75
-			},
-			{
-				"command" : 28,
-				"file" : 10,
-				"line" : 839,
-				"parent" : 24
-			},
-			{
-				"command" : 27,
-				"file" : 0,
-				"line" : 406,
-				"parent" : 82
-			},
-			{
-				"command" : 26,
-				"file" : 0,
-				"line" : 2491,
-				"parent" : 83
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 2089,
-				"parent" : 84
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3175,
-				"parent" : 63
-			},
-			{
-				"command" : 29,
-				"file" : 10,
-				"line" : 3312,
-				"parent" : 63
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 1710,
-				"parent" : 87
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3368,
-				"parent" : 63
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3175,
-				"parent" : 63
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3368,
-				"parent" : 63
-			},
-			{
-				"command" : 28,
-				"file" : 10,
-				"line" : 3470,
-				"parent" : 63
-			},
-			{
-				"command" : 27,
-				"file" : 0,
-				"line" : 406,
-				"parent" : 92
-			},
-			{
-				"command" : 26,
-				"file" : 0,
-				"line" : 2491,
-				"parent" : 93
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 2089,
-				"parent" : 94
-			},
-			{
-				"command" : 30,
-				"file" : 0,
-				"line" : 817,
-				"parent" : 69
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 2212,
-				"parent" : 96
-			}
-		]
-	},
-	"compileGroups" : 
-	[
-		{
-			"compileCommandFragments" : 
-			[
-				{
-					"fragment" : "-DQT_QML_DEBUG -g -fdiagnostics-color=always"
-				}
-			],
-			"defines" : 
-			[
-				{
-					"backtrace" : 41,
-					"define" : "MINGW_HAS_SECURE_API=1"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_CORE_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_GUI_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_NEEDS_QMAIN"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_NETWORK_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_OPENGL_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QMLINTEGRATION_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMETA_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMODELS_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLWORKERSCRIPT_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QML_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QUICK_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN32"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN64"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_WIN64"
-				}
-			],
-			"includes" : 
-			[
-				{
-					"backtrace" : 0,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/include"
-				},
-				{
-					"backtrace" : 76,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/mkspecs/win32-g++"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlIntegration"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtNetwork"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQuick"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtGui"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlMeta"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlModels"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlWorkerScript"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtOpenGL"
-				}
-			],
-			"language" : "CXX",
-			"sourceIndexes" : 
-			[
-				0,
-				1,
-				4,
-				6,
-				7,
-				9,
-				10
-			]
-		},
-		{
-			"compileCommandFragments" : 
-			[
-				{
-					"fragment" : "-DQT_QML_DEBUG -g -fdiagnostics-color=always"
-				},
-				{
-					"backtrace" : 81,
-					"fragment" : "-Wa,-mbig-obj"
-				}
-			],
-			"defines" : 
-			[
-				{
-					"backtrace" : 41,
-					"define" : "MINGW_HAS_SECURE_API=1"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_CORE_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_GUI_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_NEEDS_QMAIN"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_NETWORK_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_OPENGL_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QMLINTEGRATION_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMETA_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMODELS_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLWORKERSCRIPT_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QML_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QUICK_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN32"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN64"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_WIN64"
-				}
-			],
-			"includes" : 
-			[
-				{
-					"backtrace" : 0,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/include"
-				},
-				{
-					"backtrace" : 76,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/mkspecs/win32-g++"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlIntegration"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtNetwork"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQuick"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtGui"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlMeta"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlModels"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlWorkerScript"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtOpenGL"
-				}
-			],
-			"language" : "CXX",
-			"sourceIndexes" : 
-			[
-				3
-			]
-		}
-	],
-	"dependencies" : 
-	[
-		{
-			"backtrace" : 65,
-			"id" : "appMotus_copy_qml::@6890427a1f51a3e7e1df"
-		},
-		{
-			"backtrace" : 67,
-			"id" : "appMotus_copy_res::@6890427a1f51a3e7e1df"
-		},
-		{
-			"backtrace" : 74,
-			"id" : "appMotus_qmlimportscan::@6890427a1f51a3e7e1df"
-		},
-		{
-			"id" : "appMotus_autogen_timestamp_deps::@6890427a1f51a3e7e1df"
-		},
-		{
-			"backtrace" : 0,
-			"id" : "appMotus_autogen::@6890427a1f51a3e7e1df"
-		}
-	],
-	"id" : "appMotus::@6890427a1f51a3e7e1df",
-	"install" : 
-	{
-		"destinations" : 
-		[
-			{
-				"backtrace" : 5,
-				"path" : "bin"
-			}
-		],
-		"prefix" : 
-		{
-			"path" : "C:/Program Files (x86)/Motus"
-		}
-	},
-	"link" : 
-	{
-		"commandFragments" : 
-		[
-			{
-				"fragment" : "-DQT_QML_DEBUG -g",
-				"role" : "flags"
-			},
-			{
-				"fragment" : "-mwindows",
-				"role" : "flags"
-			},
-			{
-				"backtrace" : 6,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Quick.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6QmlMeta.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 22,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6QmlWorkerScript.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6QmlModels.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 25,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Qml.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 31,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Network.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 40,
-				"fragment" : "-lws2_32",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6OpenGL.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Gui.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 41,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Core.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 47,
-				"fragment" : "-lmpr",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 47,
-				"fragment" : "-luserenv",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 56,
-				"fragment" : "-lmingw32",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 56,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6EntryPoint.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 31,
-				"fragment" : "-lshell32",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ld3d11",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ldxgi",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ldxguid",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ld3d12",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "-luser32",
-				"role" : "libraries"
-			},
-			{
-				"fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32",
-				"role" : "libraries"
-			}
-		],
-		"language" : "CXX"
-	},
-	"name" : "appMotus",
-	"nameOnDisk" : "appMotus.exe",
-	"paths" : 
-	{
-		"build" : ".",
-		"source" : "."
-	},
-	"sourceGroups" : 
-	[
-		{
-			"name" : "Source Files\\Generated",
-			"sourceIndexes" : 
-			[
-				0,
-				15,
-				25,
-				26,
-				27,
-				28,
-				29,
-				30,
-				31,
-				32,
-				33
-			]
-		},
-		{
-			"name" : "Source Files",
-			"sourceIndexes" : 
-			[
-				1,
-				3,
-				4,
-				6,
-				7,
-				9,
-				10
-			]
-		},
-		{
-			"name" : "",
-			"sourceIndexes" : 
-			[
-				2,
-				5,
-				8,
-				12
-			]
-		},
-		{
-			"name" : "Resources",
-			"sourceIndexes" : 
-			[
-				11,
-				13,
-				14
-			]
-		},
-		{
-			"name" : "CMake Rules",
-			"sourceIndexes" : 
-			[
-				16,
-				17,
-				18,
-				19,
-				20,
-				21,
-				22,
-				23,
-				24
-			]
-		}
-	],
-	"sources" : 
-	[
-		{
-			"backtrace" : 0,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/mocs_compilation.cpp",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 4,
-			"compileGroupIndex" : 0,
-			"path" : "main.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 79,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/qt6appmotus_debug_metatypes.json.gen",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 80,
-			"compileGroupIndex" : 1,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appmotus_qmltyperegistrations.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 85,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 86,
-			"path" : "Main.qml",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 88,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 89,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 90,
-			"path" : "Case.qml",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 91,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 95,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 97,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qmake_Motus.qrc",
-			"sourceGroupIndex" : 3
-		},
-		{
-			"backtrace" : 97,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/qmldir",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 97,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/appMotus_raw_qml_0.qrc",
-			"sourceGroupIndex" : 3
-		},
-		{
-			"backtrace" : 97,
-			"path" : "Ressources.qrc",
-			"sourceGroupIndex" : 3
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/timestamp",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/qt6appmotus_debug_metatypes.json.gen.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appmotus_qmltyperegistrations.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/timestamp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/appMotus_json_file_list.txt.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 41,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6core_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 25,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qml_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 25,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6network_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6quick_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6gui_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qmlmeta_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qmlmodels_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qmlworkerscript_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6opengl_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		}
-	],
-	"type" : "EXECUTABLE"
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-ec17c123db014b7b78d5.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-ec17c123db014b7b78d5.json
deleted file mode 100644
index 48ef02a5cd28b91394381af3a5abea15fa1c9d20..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-ec17c123db014b7b78d5.json
+++ /dev/null
@@ -1,1431 +0,0 @@
-{
-	"artifacts" : 
-	[
-		{
-			"path" : "appMotus.exe"
-		},
-		{
-			"path" : "appMotus.pdb"
-		}
-	],
-	"backtrace" : 4,
-	"backtraceGraph" : 
-	{
-		"commands" : 
-		[
-			"add_executable",
-			"_qt_internal_create_executable",
-			"qt6_add_executable",
-			"qt_add_executable",
-			"install",
-			"target_link_libraries",
-			"set_target_properties",
-			"include",
-			"find_package",
-			"find_dependency",
-			"_qt_internal_find_qt_dependencies",
-			"qt6_add_qml_module",
-			"qt_add_qml_module",
-			"add_dependencies",
-			"_qt_internal_qml_copy_files_to_build_dir",
-			"qt6_target_qml_sources",
-			"_qt_internal_scan_qml_imports",
-			"_qt_internal_generate_deploy_qml_imports_script",
-			"cmake_language",
-			"_qt_internal_finalize_executable",
-			"qt6_finalize_target",
-			"target_include_directories",
-			"_qt_internal_qml_type_registration",
-			"target_sources",
-			"qt6_extract_metatypes",
-			"set_source_files_properties",
-			"__qt_propagate_generated_resource",
-			"_qt_internal_process_resource",
-			"qt6_add_resources",
-			"_qt_internal_target_enable_qmlcachegen",
-			"_qt_internal_expose_deferred_files_to_ide"
-		],
-		"files" : 
-		[
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake",
-			"CMakeLists.txt",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/Qt6Config.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaConfig.cmake",
-			"C:/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6NetworkTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network/Qt6NetworkConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlDependencies.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:792:EVAL"
-		],
-		"nodes" : 
-		[
-			{
-				"file" : 1
-			},
-			{
-				"command" : 3,
-				"file" : 1,
-				"line" : 11,
-				"parent" : 0
-			},
-			{
-				"command" : 2,
-				"file" : 0,
-				"line" : 945,
-				"parent" : 1
-			},
-			{
-				"command" : 1,
-				"file" : 0,
-				"line" : 646,
-				"parent" : 2
-			},
-			{
-				"command" : 0,
-				"file" : 0,
-				"line" : 695,
-				"parent" : 3
-			},
-			{
-				"command" : 4,
-				"file" : 1,
-				"line" : 42,
-				"parent" : 0
-			},
-			{
-				"command" : 5,
-				"file" : 1,
-				"line" : 37,
-				"parent" : 0
-			},
-			{
-				"command" : 8,
-				"file" : 1,
-				"line" : 7,
-				"parent" : 0
-			},
-			{
-				"file" : 4,
-				"parent" : 7
-			},
-			{
-				"command" : 8,
-				"file" : 4,
-				"line" : 190,
-				"parent" : 8
-			},
-			{
-				"file" : 3,
-				"parent" : 9
-			},
-			{
-				"command" : 7,
-				"file" : 3,
-				"line" : 55,
-				"parent" : 10
-			},
-			{
-				"file" : 2,
-				"parent" : 11
-			},
-			{
-				"command" : 6,
-				"file" : 2,
-				"line" : 61,
-				"parent" : 12
-			},
-			{
-				"command" : 7,
-				"file" : 3,
-				"line" : 43,
-				"parent" : 10
-			},
-			{
-				"file" : 9,
-				"parent" : 14
-			},
-			{
-				"command" : 10,
-				"file" : 9,
-				"line" : 45,
-				"parent" : 15
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 17
-			},
-			{
-				"file" : 6,
-				"parent" : 18
-			},
-			{
-				"command" : 7,
-				"file" : 6,
-				"line" : 55,
-				"parent" : 19
-			},
-			{
-				"file" : 5,
-				"parent" : 20
-			},
-			{
-				"command" : 6,
-				"file" : 5,
-				"line" : 61,
-				"parent" : 21
-			},
-			{
-				"command" : 12,
-				"file" : 1,
-				"line" : 15,
-				"parent" : 0
-			},
-			{
-				"command" : 11,
-				"file" : 10,
-				"line" : 1241,
-				"parent" : 23
-			},
-			{
-				"command" : 5,
-				"file" : 10,
-				"line" : 591,
-				"parent" : 24
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 26
-			},
-			{
-				"file" : 12,
-				"parent" : 27
-			},
-			{
-				"command" : 7,
-				"file" : 12,
-				"line" : 58,
-				"parent" : 28
-			},
-			{
-				"file" : 11,
-				"parent" : 29
-			},
-			{
-				"command" : 6,
-				"file" : 11,
-				"line" : 61,
-				"parent" : 30
-			},
-			{
-				"command" : 7,
-				"file" : 12,
-				"line" : 46,
-				"parent" : 28
-			},
-			{
-				"file" : 15,
-				"parent" : 32
-			},
-			{
-				"command" : 10,
-				"file" : 15,
-				"line" : 45,
-				"parent" : 33
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 34
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 35
-			},
-			{
-				"file" : 14,
-				"parent" : 36
-			},
-			{
-				"command" : 7,
-				"file" : 14,
-				"line" : 55,
-				"parent" : 37
-			},
-			{
-				"file" : 13,
-				"parent" : 38
-			},
-			{
-				"command" : 6,
-				"file" : 13,
-				"line" : 61,
-				"parent" : 39
-			},
-			{
-				"command" : 5,
-				"file" : 0,
-				"line" : 647,
-				"parent" : 2
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 42
-			},
-			{
-				"file" : 17,
-				"parent" : 43
-			},
-			{
-				"command" : 7,
-				"file" : 17,
-				"line" : 57,
-				"parent" : 44
-			},
-			{
-				"file" : 16,
-				"parent" : 45
-			},
-			{
-				"command" : 6,
-				"file" : 16,
-				"line" : 61,
-				"parent" : 46
-			},
-			{
-				"command" : 7,
-				"file" : 17,
-				"line" : 45,
-				"parent" : 44
-			},
-			{
-				"file" : 20,
-				"parent" : 48
-			},
-			{
-				"command" : 10,
-				"file" : 20,
-				"line" : 46,
-				"parent" : 49
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 50
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 51
-			},
-			{
-				"file" : 19,
-				"parent" : 52
-			},
-			{
-				"command" : 7,
-				"file" : 19,
-				"line" : 55,
-				"parent" : 53
-			},
-			{
-				"file" : 18,
-				"parent" : 54
-			},
-			{
-				"command" : 6,
-				"file" : 18,
-				"line" : 61,
-				"parent" : 55
-			},
-			{
-				"command" : 9,
-				"file" : 8,
-				"line" : 145,
-				"parent" : 16
-			},
-			{
-				"command" : 8,
-				"file" : 7,
-				"line" : 76,
-				"parent" : 57
-			},
-			{
-				"file" : 22,
-				"parent" : 58
-			},
-			{
-				"command" : 7,
-				"file" : 22,
-				"line" : 55,
-				"parent" : 59
-			},
-			{
-				"file" : 21,
-				"parent" : 60
-			},
-			{
-				"command" : 6,
-				"file" : 21,
-				"line" : 61,
-				"parent" : 61
-			},
-			{
-				"command" : 15,
-				"file" : 10,
-				"line" : 896,
-				"parent" : 24
-			},
-			{
-				"command" : 14,
-				"file" : 10,
-				"line" : 3448,
-				"parent" : 63
-			},
-			{
-				"command" : 13,
-				"file" : 10,
-				"line" : 2859,
-				"parent" : 64
-			},
-			{
-				"command" : 14,
-				"file" : 10,
-				"line" : 3454,
-				"parent" : 63
-			},
-			{
-				"command" : 13,
-				"file" : 10,
-				"line" : 2859,
-				"parent" : 66
-			},
-			{
-				"file" : 1,
-				"line" : -1,
-				"parent" : 0
-			},
-			{
-				"command" : 20,
-				"file" : 23,
-				"line" : 1,
-				"parent" : 68
-			},
-			{
-				"command" : 19,
-				"file" : 0,
-				"line" : 823,
-				"parent" : 69
-			},
-			{
-				"command" : 18,
-				"file" : 0,
-				"line" : 745,
-				"parent" : 70
-			},
-			{
-				"command" : 17,
-				"file" : 0,
-				"line" : 745,
-				"parent" : 71
-			},
-			{
-				"command" : 16,
-				"file" : 10,
-				"line" : 4324,
-				"parent" : 72
-			},
-			{
-				"command" : 13,
-				"file" : 10,
-				"line" : 4102,
-				"parent" : 73
-			},
-			{
-				"command" : 22,
-				"file" : 10,
-				"line" : 785,
-				"parent" : 24
-			},
-			{
-				"command" : 21,
-				"file" : 10,
-				"line" : 3830,
-				"parent" : 75
-			},
-			{
-				"command" : 21,
-				"file" : 10,
-				"line" : 3855,
-				"parent" : 75
-			},
-			{
-				"command" : 24,
-				"file" : 10,
-				"line" : 3655,
-				"parent" : 75
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 1500,
-				"parent" : 78
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3821,
-				"parent" : 75
-			},
-			{
-				"command" : 25,
-				"file" : 10,
-				"line" : 3845,
-				"parent" : 75
-			},
-			{
-				"command" : 28,
-				"file" : 10,
-				"line" : 839,
-				"parent" : 24
-			},
-			{
-				"command" : 27,
-				"file" : 0,
-				"line" : 406,
-				"parent" : 82
-			},
-			{
-				"command" : 26,
-				"file" : 0,
-				"line" : 2491,
-				"parent" : 83
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 2089,
-				"parent" : 84
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3175,
-				"parent" : 63
-			},
-			{
-				"command" : 29,
-				"file" : 10,
-				"line" : 3312,
-				"parent" : 63
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 1710,
-				"parent" : 87
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3368,
-				"parent" : 63
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3175,
-				"parent" : 63
-			},
-			{
-				"command" : 23,
-				"file" : 10,
-				"line" : 3368,
-				"parent" : 63
-			},
-			{
-				"command" : 28,
-				"file" : 10,
-				"line" : 3470,
-				"parent" : 63
-			},
-			{
-				"command" : 27,
-				"file" : 0,
-				"line" : 406,
-				"parent" : 92
-			},
-			{
-				"command" : 26,
-				"file" : 0,
-				"line" : 2491,
-				"parent" : 93
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 2089,
-				"parent" : 94
-			},
-			{
-				"command" : 30,
-				"file" : 0,
-				"line" : 817,
-				"parent" : 69
-			},
-			{
-				"command" : 23,
-				"file" : 0,
-				"line" : 2212,
-				"parent" : 96
-			}
-		]
-	},
-	"compileGroups" : 
-	[
-		{
-			"compileCommandFragments" : 
-			[
-				{
-					"fragment" : "-DQT_QML_DEBUG -g -fdiagnostics-color=always"
-				}
-			],
-			"defines" : 
-			[
-				{
-					"backtrace" : 41,
-					"define" : "MINGW_HAS_SECURE_API=1"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_CORE_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_GUI_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_NEEDS_QMAIN"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_NETWORK_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_OPENGL_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QMLINTEGRATION_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMETA_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMODELS_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLWORKERSCRIPT_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QML_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QUICK_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN32"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN64"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_WIN64"
-				}
-			],
-			"includes" : 
-			[
-				{
-					"backtrace" : 0,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/include"
-				},
-				{
-					"backtrace" : 76,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/mkspecs/win32-g++"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlIntegration"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtNetwork"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQuick"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtGui"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlMeta"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlModels"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlWorkerScript"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtOpenGL"
-				}
-			],
-			"language" : "CXX",
-			"sourceIndexes" : 
-			[
-				0,
-				1,
-				4,
-				6,
-				7,
-				9,
-				10
-			]
-		},
-		{
-			"compileCommandFragments" : 
-			[
-				{
-					"fragment" : "-DQT_QML_DEBUG -g -fdiagnostics-color=always"
-				},
-				{
-					"backtrace" : 81,
-					"fragment" : "-Wa,-mbig-obj"
-				}
-			],
-			"defines" : 
-			[
-				{
-					"backtrace" : 41,
-					"define" : "MINGW_HAS_SECURE_API=1"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_CORE_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_GUI_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "QT_NEEDS_QMAIN"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_NETWORK_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_OPENGL_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QMLINTEGRATION_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMETA_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLMODELS_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QMLWORKERSCRIPT_LIB"
-				},
-				{
-					"backtrace" : 25,
-					"define" : "QT_QML_LIB"
-				},
-				{
-					"backtrace" : 6,
-					"define" : "QT_QUICK_LIB"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN32"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "WIN64"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_UNICODE"
-				},
-				{
-					"backtrace" : 41,
-					"define" : "_WIN64"
-				}
-			],
-			"includes" : 
-			[
-				{
-					"backtrace" : 0,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/include"
-				},
-				{
-					"backtrace" : 76,
-					"path" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtCore"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/mkspecs/win32-g++"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQml"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlIntegration"
-				},
-				{
-					"backtrace" : 77,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtNetwork"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQuick"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtGui"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlMeta"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlModels"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtQmlWorkerScript"
-				},
-				{
-					"backtrace" : 6,
-					"isSystem" : true,
-					"path" : "C:/Qt/6.8.2/mingw_64/include/QtOpenGL"
-				}
-			],
-			"language" : "CXX",
-			"sourceIndexes" : 
-			[
-				3
-			]
-		}
-	],
-	"dependencies" : 
-	[
-		{
-			"backtrace" : 65,
-			"id" : "appMotus_copy_qml::@6890427a1f51a3e7e1df"
-		},
-		{
-			"backtrace" : 67,
-			"id" : "appMotus_copy_res::@6890427a1f51a3e7e1df"
-		},
-		{
-			"backtrace" : 74,
-			"id" : "appMotus_qmlimportscan::@6890427a1f51a3e7e1df"
-		},
-		{
-			"backtrace" : 0,
-			"id" : "appMotus_autogen::@6890427a1f51a3e7e1df"
-		},
-		{
-			"id" : "appMotus_autogen_timestamp_deps::@6890427a1f51a3e7e1df"
-		}
-	],
-	"id" : "appMotus::@6890427a1f51a3e7e1df",
-	"install" : 
-	{
-		"destinations" : 
-		[
-			{
-				"backtrace" : 5,
-				"path" : "bin"
-			}
-		],
-		"prefix" : 
-		{
-			"path" : "C:/Program Files (x86)/Motus"
-		}
-	},
-	"link" : 
-	{
-		"commandFragments" : 
-		[
-			{
-				"fragment" : "-DQT_QML_DEBUG -g",
-				"role" : "flags"
-			},
-			{
-				"fragment" : "-mwindows",
-				"role" : "flags"
-			},
-			{
-				"backtrace" : 6,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Quick.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6QmlMeta.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 22,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6QmlWorkerScript.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6QmlModels.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 25,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Qml.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 31,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Network.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 40,
-				"fragment" : "-lws2_32",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6OpenGL.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Gui.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 41,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6Core.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 47,
-				"fragment" : "-lmpr",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 47,
-				"fragment" : "-luserenv",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 56,
-				"fragment" : "-lmingw32",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 56,
-				"fragment" : "C:\\Qt\\6.8.2\\mingw_64\\lib\\libQt6EntryPoint.a",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 31,
-				"fragment" : "-lshell32",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ld3d11",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ldxgi",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ldxguid",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 62,
-				"fragment" : "-ld3d12",
-				"role" : "libraries"
-			},
-			{
-				"backtrace" : 13,
-				"fragment" : "-luser32",
-				"role" : "libraries"
-			},
-			{
-				"fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32",
-				"role" : "libraries"
-			}
-		],
-		"language" : "CXX"
-	},
-	"name" : "appMotus",
-	"nameOnDisk" : "appMotus.exe",
-	"paths" : 
-	{
-		"build" : ".",
-		"source" : "."
-	},
-	"sourceGroups" : 
-	[
-		{
-			"name" : "Source Files\\Generated",
-			"sourceIndexes" : 
-			[
-				0,
-				15,
-				25,
-				26,
-				27,
-				28,
-				29,
-				30,
-				31,
-				32,
-				33
-			]
-		},
-		{
-			"name" : "Source Files",
-			"sourceIndexes" : 
-			[
-				1,
-				3,
-				4,
-				6,
-				7,
-				9,
-				10
-			]
-		},
-		{
-			"name" : "",
-			"sourceIndexes" : 
-			[
-				2,
-				5,
-				8,
-				12
-			]
-		},
-		{
-			"name" : "Resources",
-			"sourceIndexes" : 
-			[
-				11,
-				13,
-				14
-			]
-		},
-		{
-			"name" : "CMake Rules",
-			"sourceIndexes" : 
-			[
-				16,
-				17,
-				18,
-				19,
-				20,
-				21,
-				22,
-				23,
-				24
-			]
-		}
-	],
-	"sources" : 
-	[
-		{
-			"backtrace" : 0,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/mocs_compilation.cpp",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 4,
-			"compileGroupIndex" : 0,
-			"path" : "main.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 79,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/qt6appmotus_debug_metatypes.json.gen",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 80,
-			"compileGroupIndex" : 1,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appmotus_qmltyperegistrations.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 85,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 86,
-			"path" : "Main.qml",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 88,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 89,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 90,
-			"path" : "Case.qml",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 91,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 95,
-			"compileGroupIndex" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 97,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qmake_Motus.qrc",
-			"sourceGroupIndex" : 3
-		},
-		{
-			"backtrace" : 97,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/qmldir",
-			"sourceGroupIndex" : 2
-		},
-		{
-			"backtrace" : 97,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/appMotus_raw_qml_0.qrc",
-			"sourceGroupIndex" : 3
-		},
-		{
-			"backtrace" : 97,
-			"path" : "Ressources.qrc",
-			"sourceGroupIndex" : 3
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/timestamp",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/qt6appmotus_debug_metatypes.json.gen.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appmotus_qmltyperegistrations.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/timestamp.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/appMotus_json_file_list.txt.rule",
-			"sourceGroupIndex" : 4
-		},
-		{
-			"backtrace" : 41,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6core_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 25,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qml_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 25,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6network_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6quick_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6gui_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qmlmeta_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qmlmodels_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6qmlworkerscript_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 6,
-			"path" : "C:/Qt/6.8.2/mingw_64/metatypes/qt6opengl_relwithdebinfo_metatypes.json",
-			"sourceGroupIndex" : 0
-		}
-	],
-	"type" : "EXECUTABLE"
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus_autogen_timestamp_deps-Debug-8ecb6561b9981a1bf617.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus_autogen_timestamp_deps-Debug-8ecb6561b9981a1bf617.json
deleted file mode 100644
index d117b43105cd536a41d9708dff5797e2cf1c8d1f..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus_autogen_timestamp_deps-Debug-8ecb6561b9981a1bf617.json
+++ /dev/null
@@ -1,96 +0,0 @@
-{
-	"backtrace" : 0,
-	"backtraceGraph" : 
-	{
-		"commands" : 
-		[
-			"add_dependencies",
-			"_qt_internal_qml_copy_files_to_build_dir",
-			"qt6_target_qml_sources",
-			"qt6_add_qml_module",
-			"qt_add_qml_module"
-		],
-		"files" : 
-		[
-			"CMakeLists.txt",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake"
-		],
-		"nodes" : 
-		[
-			{
-				"file" : 0
-			},
-			{
-				"command" : 4,
-				"file" : 0,
-				"line" : 15,
-				"parent" : 0
-			},
-			{
-				"command" : 3,
-				"file" : 1,
-				"line" : 1241,
-				"parent" : 1
-			},
-			{
-				"command" : 2,
-				"file" : 1,
-				"line" : 896,
-				"parent" : 2
-			},
-			{
-				"command" : 1,
-				"file" : 1,
-				"line" : 3454,
-				"parent" : 3
-			},
-			{
-				"command" : 0,
-				"file" : 1,
-				"line" : 2859,
-				"parent" : 4
-			},
-			{
-				"command" : 1,
-				"file" : 1,
-				"line" : 3448,
-				"parent" : 3
-			},
-			{
-				"command" : 0,
-				"file" : 1,
-				"line" : 2859,
-				"parent" : 6
-			}
-		]
-	},
-	"dependencies" : 
-	[
-		{
-			"backtrace" : 0,
-			"id" : "appMotus_qmlimportscan::@6890427a1f51a3e7e1df"
-		},
-		{
-			"backtrace" : 5,
-			"id" : "appMotus_copy_res::@6890427a1f51a3e7e1df"
-		},
-		{
-			"backtrace" : 7,
-			"id" : "appMotus_copy_qml::@6890427a1f51a3e7e1df"
-		}
-	],
-	"folder" : 
-	{
-		"name" : "QtInternalTargets"
-	},
-	"id" : "appMotus_autogen_timestamp_deps::@6890427a1f51a3e7e1df",
-	"isGeneratorProvided" : true,
-	"name" : "appMotus_autogen_timestamp_deps",
-	"paths" : 
-	{
-		"build" : ".",
-		"source" : "."
-	},
-	"sources" : [],
-	"type" : "UTILITY"
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-module_appMotus_aotstats_target-Debug-47c572bfa1476fdbbfa4.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-module_appMotus_aotstats_target-Debug-47c572bfa1476fdbbfa4.json
deleted file mode 100644
index 3ed14c40436c98098f7313e65aef6b3f61348335..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-module_appMotus_aotstats_target-Debug-47c572bfa1476fdbbfa4.json
+++ /dev/null
@@ -1,119 +0,0 @@
-{
-	"backtrace" : 3,
-	"backtraceGraph" : 
-	{
-		"commands" : 
-		[
-			"add_custom_target",
-			"_qt_internal_deferred_aotstats_setup",
-			"add_dependencies"
-		],
-		"files" : 
-		[
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake:1085:EVAL",
-			"CMakeLists.txt"
-		],
-		"nodes" : 
-		[
-			{
-				"file" : 2
-			},
-			{
-				"file" : 2,
-				"line" : -1,
-				"parent" : 0
-			},
-			{
-				"command" : 1,
-				"file" : 1,
-				"line" : 1,
-				"parent" : 1
-			},
-			{
-				"command" : 0,
-				"file" : 0,
-				"line" : 1138,
-				"parent" : 2
-			},
-			{
-				"command" : 2,
-				"file" : 0,
-				"line" : 1143,
-				"parent" : 2
-			}
-		]
-	},
-	"dependencies" : 
-	[
-		{
-			"backtrace" : 4,
-			"id" : "appMotus_qmltyperegistration::@6890427a1f51a3e7e1df"
-		}
-	],
-	"folder" : 
-	{
-		"name" : "QtInternalTargets"
-	},
-	"id" : "module_appMotus_aotstats_target::@6890427a1f51a3e7e1df",
-	"name" : "module_appMotus_aotstats_target",
-	"paths" : 
-	{
-		"build" : ".",
-		"source" : "."
-	},
-	"sourceGroups" : 
-	[
-		{
-			"name" : "",
-			"sourceIndexes" : 
-			[
-				0
-			]
-		},
-		{
-			"name" : "CMake Rules",
-			"sourceIndexes" : 
-			[
-				1,
-				2,
-				3,
-				4
-			]
-		}
-	],
-	"sources" : 
-	[
-		{
-			"backtrace" : 3,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/module_appMotus_aotstats_target",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/module_appMotus_aotstats_target.rule",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/module_appMotus.aotstats.rule",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.rule",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appmotus_qmltyperegistrations.cpp.rule",
-			"sourceGroupIndex" : 1
-		}
-	],
-	"type" : "UTILITY"
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-module_appMotus_aotstats_target-Debug-8079dda22c37a7141332.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-module_appMotus_aotstats_target-Debug-8079dda22c37a7141332.json
similarity index 100%
rename from Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-module_appMotus_aotstats_target-Debug-8079dda22c37a7141332.json
rename to Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-module_appMotus_aotstats_target-Debug-8079dda22c37a7141332.json
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-module_appMotus_aotstats_target-Debug-dbc832e1760cd1c28c4d.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-module_appMotus_aotstats_target-Debug-dbc832e1760cd1c28c4d.json
deleted file mode 100644
index c1e6426f7a7813bdab37eae04366cb6d2f1501a5..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-module_appMotus_aotstats_target-Debug-dbc832e1760cd1c28c4d.json
+++ /dev/null
@@ -1,126 +0,0 @@
-{
-	"backtrace" : 3,
-	"backtraceGraph" : 
-	{
-		"commands" : 
-		[
-			"add_custom_target",
-			"_qt_internal_deferred_aotstats_setup",
-			"add_dependencies"
-		],
-		"files" : 
-		[
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake:1085:EVAL",
-			"CMakeLists.txt"
-		],
-		"nodes" : 
-		[
-			{
-				"file" : 2
-			},
-			{
-				"file" : 2,
-				"line" : -1,
-				"parent" : 0
-			},
-			{
-				"command" : 1,
-				"file" : 1,
-				"line" : 1,
-				"parent" : 1
-			},
-			{
-				"command" : 0,
-				"file" : 0,
-				"line" : 1138,
-				"parent" : 2
-			},
-			{
-				"command" : 2,
-				"file" : 0,
-				"line" : 1143,
-				"parent" : 2
-			}
-		]
-	},
-	"dependencies" : 
-	[
-		{
-			"backtrace" : 4,
-			"id" : "appMotus_qmltyperegistration::@6890427a1f51a3e7e1df"
-		}
-	],
-	"folder" : 
-	{
-		"name" : "QtInternalTargets"
-	},
-	"id" : "module_appMotus_aotstats_target::@6890427a1f51a3e7e1df",
-	"name" : "module_appMotus_aotstats_target",
-	"paths" : 
-	{
-		"build" : ".",
-		"source" : "."
-	},
-	"sourceGroups" : 
-	[
-		{
-			"name" : "",
-			"sourceIndexes" : 
-			[
-				0
-			]
-		},
-		{
-			"name" : "CMake Rules",
-			"sourceIndexes" : 
-			[
-				1,
-				2,
-				3,
-				4,
-				5
-			]
-		}
-	],
-	"sources" : 
-	[
-		{
-			"backtrace" : 3,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/module_appMotus_aotstats_target",
-			"sourceGroupIndex" : 0
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/module_appMotus_aotstats_target.rule",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/module_appMotus.aotstats.rule",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.rule",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.rule",
-			"sourceGroupIndex" : 1
-		},
-		{
-			"backtrace" : 0,
-			"isGenerated" : true,
-			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appmotus_qmltyperegistrations.cpp.rule",
-			"sourceGroupIndex" : 1
-		}
-	],
-	"type" : "UTILITY"
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/cache-v2-1a4203f66a7d04b680da.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/cache-v2-1a4203f66a7d04b680da.json
deleted file mode 100644
index 8ab60339d7c8781abff7c410d29538e052620a81..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/cache-v2-1a4203f66a7d04b680da.json
+++ /dev/null
@@ -1,6379 +0,0 @@
-{
-	"entries" : 
-	[
-		{
-			"name" : "CMAKE_ADDR2LINE",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Path to a program."
-				}
-			],
-			"type" : "FILEPATH",
-			"value" : "C:/Qt/Tools/mingw1310_64/bin/addr2line.exe"
-		},
-		{
-			"name" : "CMAKE_AR",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Path to a program."
-				}
-			],
-			"type" : "FILEPATH",
-			"value" : "C:/Qt/Tools/mingw1310_64/bin/ar.exe"
-		},
-		{
-			"name" : "CMAKE_BUILD_TYPE",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "No help, variable specified on the command line."
-				}
-			],
-			"type" : "STRING",
-			"value" : "Debug"
-		},
-		{
-			"name" : "CMAKE_CACHEFILE_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "This is the directory where this CMakeCache.txt was created"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "c:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug"
-		},
-		{
-			"name" : "CMAKE_CACHE_MAJOR_VERSION",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Major version of cmake used to create the current loaded cache"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "3"
-		},
-		{
-			"name" : "CMAKE_CACHE_MINOR_VERSION",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Minor version of cmake used to create the current loaded cache"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "29"
-		},
-		{
-			"name" : "CMAKE_CACHE_PATCH_VERSION",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Patch version of cmake used to create the current loaded cache"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "3"
-		},
-		{
-			"name" : "CMAKE_COLOR_DIAGNOSTICS",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "No help, variable specified on the command line."
-				}
-			],
-			"type" : "BOOL",
-			"value" : "ON"
-		},
-		{
-			"name" : "CMAKE_COMMAND",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Path to CMake executable."
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "C:/Qt/Tools/CMake_64/bin/cmake.exe"
-		},
-		{
-			"name" : "CMAKE_CPACK_COMMAND",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Path to cpack program executable."
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "C:/Qt/Tools/CMake_64/bin/cpack.exe"
-		},
-		{
-			"name" : "CMAKE_CTEST_COMMAND",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Path to ctest program executable."
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "C:/Qt/Tools/CMake_64/bin/ctest.exe"
-		},
-		{
-			"name" : "CMAKE_CXX_COMPILER",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "CXX compiler"
-				}
-			],
-			"type" : "STRING",
-			"value" : "C:/Qt/Tools/mingw1310_64/bin/g++.exe"
-		},
-		{
-			"name" : "CMAKE_CXX_COMPILER_AR",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler"
-				}
-			],
-			"type" : "FILEPATH",
-			"value" : "C:/Qt/Tools/mingw1310_64/bin/gcc-ar.exe"
-		},
-		{
-			"name" : "CMAKE_CXX_COMPILER_RANLIB",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler"
-				}
-			],
-			"type" : "FILEPATH",
-			"value" : "C:/Qt/Tools/mingw1310_64/bin/gcc-ranlib.exe"
-		},
-		{
-			"name" : "CMAKE_CXX_FLAGS",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the CXX compiler during all build types."
-				}
-			],
-			"type" : "STRING",
-			"value" : "-DQT_QML_DEBUG"
-		},
-		{
-			"name" : "CMAKE_CXX_FLAGS_DEBUG",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the CXX compiler during DEBUG builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : "-g"
-		},
-		{
-			"name" : "CMAKE_CXX_FLAGS_INIT",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "No help, variable specified on the command line."
-				}
-			],
-			"type" : "STRING",
-			"value" : "-DQT_QML_DEBUG"
-		},
-		{
-			"name" : "CMAKE_CXX_FLAGS_MINSIZEREL",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the CXX compiler during MINSIZEREL builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : "-Os -DNDEBUG"
-		},
-		{
-			"name" : "CMAKE_CXX_FLAGS_RELEASE",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the CXX compiler during RELEASE builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : "-O3 -DNDEBUG"
-		},
-		{
-			"name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : "-O2 -g -DNDEBUG"
-		},
-		{
-			"name" : "CMAKE_CXX_OUTPUT_EXTENSION",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : ""
-				}
-			],
-			"type" : "STRING",
-			"value" : ".obj"
-		},
-		{
-			"name" : "CMAKE_CXX_STANDARD_LIBRARIES",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Libraries linked by default with all C++ applications."
-				}
-			],
-			"type" : "STRING",
-			"value" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32"
-		},
-		{
-			"name" : "CMAKE_C_COMPILER",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "No help, variable specified on the command line."
-				}
-			],
-			"type" : "FILEPATH",
-			"value" : "C:/Qt/Tools/mingw1310_64/bin/gcc.exe"
-		},
-		{
-			"name" : "CMAKE_C_OUTPUT_EXTENSION",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : ""
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_DLLTOOL",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Path to a program."
-				}
-			],
-			"type" : "FILEPATH",
-			"value" : "C:/Qt/Tools/mingw1310_64/bin/dlltool.exe"
-		},
-		{
-			"name" : "CMAKE_EDIT_COMMAND",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Path to cache edit program executable."
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "C:/Qt/Tools/CMake_64/bin/cmake-gui.exe"
-		},
-		{
-			"name" : "CMAKE_EXECUTABLE_FORMAT",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Executable file format"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "Unknown"
-		},
-		{
-			"name" : "CMAKE_EXE_LINKER_FLAGS",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the linker during all build types."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the linker during DEBUG builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the linker during MINSIZEREL builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the linker during RELEASE builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the linker during RELWITHDEBINFO builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_EXPORT_COMPILE_COMMANDS",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Enable/Disable output of compile commands during generation."
-				}
-			],
-			"type" : "BOOL",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_FIND_PACKAGE_REDIRECTS_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Value Computed by CMake."
-				}
-			],
-			"type" : "STATIC",
-			"value" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/pkgRedirects"
-		},
-		{
-			"name" : "CMAKE_GENERATOR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "No help, variable specified on the command line."
-				}
-			],
-			"type" : "STRING",
-			"value" : "Ninja"
-		},
-		{
-			"name" : "CMAKE_GENERATOR_INSTANCE",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Generator instance identifier."
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_GENERATOR_PLATFORM",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Name of generator platform."
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_GENERATOR_TOOLSET",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Name of generator toolset."
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_GNUtoMS",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Convert GNU import libraries to MS format (requires Visual Studio)"
-				}
-			],
-			"type" : "BOOL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "CMAKE_HAVE_LIBC_PTHREAD",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Test CMAKE_HAVE_LIBC_PTHREAD"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "1"
-		},
-		{
-			"name" : "CMAKE_HOME_DIRECTORY",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Source directory with the top level CMakeLists.txt file for this project"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus"
-		},
-		{
-			"name" : "CMAKE_INSTALL_BINDIR",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "User executables (bin)"
-				}
-			],
-			"type" : "PATH",
-			"value" : "bin"
-		},
-		{
-			"name" : "CMAKE_INSTALL_DATADIR",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Read-only architecture-independent data (DATAROOTDIR)"
-				}
-			],
-			"type" : "PATH",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_INSTALL_DATAROOTDIR",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Read-only architecture-independent data root (share)"
-				}
-			],
-			"type" : "PATH",
-			"value" : "share"
-		},
-		{
-			"name" : "CMAKE_INSTALL_DOCDIR",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Documentation root (DATAROOTDIR/doc/PROJECT_NAME)"
-				}
-			],
-			"type" : "PATH",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_INSTALL_INCLUDEDIR",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "C header files (include)"
-				}
-			],
-			"type" : "PATH",
-			"value" : "include"
-		},
-		{
-			"name" : "CMAKE_INSTALL_INFODIR",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Info documentation (DATAROOTDIR/info)"
-				}
-			],
-			"type" : "PATH",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_INSTALL_LIBDIR",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Object code libraries (lib)"
-				}
-			],
-			"type" : "PATH",
-			"value" : "lib"
-		},
-		{
-			"name" : "CMAKE_INSTALL_LIBEXECDIR",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Program executables (libexec)"
-				}
-			],
-			"type" : "PATH",
-			"value" : "libexec"
-		},
-		{
-			"name" : "CMAKE_INSTALL_LOCALEDIR",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Locale-dependent data (DATAROOTDIR/locale)"
-				}
-			],
-			"type" : "PATH",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_INSTALL_LOCALSTATEDIR",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Modifiable single-machine data (var)"
-				}
-			],
-			"type" : "PATH",
-			"value" : "var"
-		},
-		{
-			"name" : "CMAKE_INSTALL_MANDIR",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Man documentation (DATAROOTDIR/man)"
-				}
-			],
-			"type" : "PATH",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_INSTALL_OLDINCLUDEDIR",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "C header files for non-gcc (/usr/include)"
-				}
-			],
-			"type" : "PATH",
-			"value" : "/usr/include"
-		},
-		{
-			"name" : "CMAKE_INSTALL_PREFIX",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Install path prefix, prepended onto install directories."
-				}
-			],
-			"type" : "PATH",
-			"value" : "C:/Program Files (x86)/Motus"
-		},
-		{
-			"name" : "CMAKE_INSTALL_RUNSTATEDIR",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Run-time variable data (LOCALSTATEDIR/run)"
-				}
-			],
-			"type" : "PATH",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_INSTALL_SBINDIR",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "System admin executables (sbin)"
-				}
-			],
-			"type" : "PATH",
-			"value" : "sbin"
-		},
-		{
-			"name" : "CMAKE_INSTALL_SHAREDSTATEDIR",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Modifiable architecture-independent data (com)"
-				}
-			],
-			"type" : "PATH",
-			"value" : "com"
-		},
-		{
-			"name" : "CMAKE_INSTALL_SYSCONFDIR",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Read-only single-machine data (etc)"
-				}
-			],
-			"type" : "PATH",
-			"value" : "etc"
-		},
-		{
-			"name" : "CMAKE_LINKER",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Path to a program."
-				}
-			],
-			"type" : "FILEPATH",
-			"value" : "C:/Qt/Tools/mingw1310_64/bin/ld.exe"
-		},
-		{
-			"name" : "CMAKE_MAKE_PROGRAM",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Program used to build from build.ninja files."
-				}
-			],
-			"type" : "FILEPATH",
-			"value" : "C:/Qt/Tools/Ninja/ninja.exe"
-		},
-		{
-			"name" : "CMAKE_MODULE_LINKER_FLAGS",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the linker during the creation of modules during all build types."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the linker during the creation of modules during DEBUG builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the linker during the creation of modules during RELEASE builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_NM",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Path to a program."
-				}
-			],
-			"type" : "FILEPATH",
-			"value" : "C:/Qt/Tools/mingw1310_64/bin/nm.exe"
-		},
-		{
-			"name" : "CMAKE_NUMBER_OF_MAKEFILES",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "number of local generators"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "1"
-		},
-		{
-			"name" : "CMAKE_OBJCOPY",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Path to a program."
-				}
-			],
-			"type" : "FILEPATH",
-			"value" : "C:/Qt/Tools/mingw1310_64/bin/objcopy.exe"
-		},
-		{
-			"name" : "CMAKE_OBJDUMP",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Path to a program."
-				}
-			],
-			"type" : "FILEPATH",
-			"value" : "C:/Qt/Tools/mingw1310_64/bin/objdump.exe"
-		},
-		{
-			"name" : "CMAKE_PLATFORM_INFO_INITIALIZED",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Platform information initialized"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "1"
-		},
-		{
-			"name" : "CMAKE_PREFIX_PATH",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "No help, variable specified on the command line."
-				}
-			],
-			"type" : "PATH",
-			"value" : "C:/Qt/6.8.2/mingw_64"
-		},
-		{
-			"name" : "CMAKE_PROJECT_DESCRIPTION",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Value Computed by CMake"
-				}
-			],
-			"type" : "STATIC",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_PROJECT_HOMEPAGE_URL",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Value Computed by CMake"
-				}
-			],
-			"type" : "STATIC",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_PROJECT_INCLUDE_BEFORE",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "No help, variable specified on the command line."
-				}
-			],
-			"type" : "FILEPATH",
-			"value" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake"
-		},
-		{
-			"name" : "CMAKE_PROJECT_NAME",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Value Computed by CMake"
-				}
-			],
-			"type" : "STATIC",
-			"value" : "Motus"
-		},
-		{
-			"name" : "CMAKE_PROJECT_VERSION",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Value Computed by CMake"
-				}
-			],
-			"type" : "STATIC",
-			"value" : "0.1"
-		},
-		{
-			"name" : "CMAKE_PROJECT_VERSION_MAJOR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Value Computed by CMake"
-				}
-			],
-			"type" : "STATIC",
-			"value" : "0"
-		},
-		{
-			"name" : "CMAKE_PROJECT_VERSION_MINOR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Value Computed by CMake"
-				}
-			],
-			"type" : "STATIC",
-			"value" : "1"
-		},
-		{
-			"name" : "CMAKE_PROJECT_VERSION_PATCH",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Value Computed by CMake"
-				}
-			],
-			"type" : "STATIC",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_PROJECT_VERSION_TWEAK",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Value Computed by CMake"
-				}
-			],
-			"type" : "STATIC",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_RANLIB",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Path to a program."
-				}
-			],
-			"type" : "FILEPATH",
-			"value" : "C:/Qt/Tools/mingw1310_64/bin/ranlib.exe"
-		},
-		{
-			"name" : "CMAKE_RC_COMPILER",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "RC compiler"
-				}
-			],
-			"type" : "FILEPATH",
-			"value" : "C:/Qt/Tools/mingw1310_64/bin/windres.exe"
-		},
-		{
-			"name" : "CMAKE_RC_COMPILER_WORKS",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : ""
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "1"
-		},
-		{
-			"name" : "CMAKE_RC_FLAGS",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags for Windows Resource Compiler during all build types."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_RC_FLAGS_DEBUG",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags for Windows Resource Compiler during DEBUG builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_RC_FLAGS_MINSIZEREL",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags for Windows Resource Compiler during MINSIZEREL builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_RC_FLAGS_RELEASE",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags for Windows Resource Compiler during RELEASE builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_RC_FLAGS_RELWITHDEBINFO",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags for Windows Resource Compiler during RELWITHDEBINFO builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_READELF",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Path to a program."
-				}
-			],
-			"type" : "FILEPATH",
-			"value" : "C:/Qt/Tools/mingw1310_64/bin/readelf.exe"
-		},
-		{
-			"name" : "CMAKE_ROOT",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Path to CMake installation."
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "C:/Qt/Tools/CMake_64/share/cmake-3.29"
-		},
-		{
-			"name" : "CMAKE_SHARED_LINKER_FLAGS",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the linker during the creation of shared libraries during all build types."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_SKIP_INSTALL_RPATH",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "If set, runtime paths are not added when installing shared libraries, but are added when building."
-				}
-			],
-			"type" : "BOOL",
-			"value" : "NO"
-		},
-		{
-			"name" : "CMAKE_SKIP_RPATH",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "If set, runtime paths are not added when using shared libraries."
-				}
-			],
-			"type" : "BOOL",
-			"value" : "NO"
-		},
-		{
-			"name" : "CMAKE_STATIC_LINKER_FLAGS",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the linker during the creation of static libraries during all build types."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the linker during the creation of static libraries during DEBUG builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the linker during the creation of static libraries during RELEASE builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds."
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "CMAKE_STRIP",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Path to a program."
-				}
-			],
-			"type" : "FILEPATH",
-			"value" : "C:/Qt/Tools/mingw1310_64/bin/strip.exe"
-		},
-		{
-			"name" : "CMAKE_TAPI",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Path to a program."
-				}
-			],
-			"type" : "FILEPATH",
-			"value" : "CMAKE_TAPI-NOTFOUND"
-		},
-		{
-			"name" : "CMAKE_VERBOSE_MAKEFILE",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make.  This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo."
-				}
-			],
-			"type" : "BOOL",
-			"value" : "FALSE"
-		},
-		{
-			"name" : "FIND_PACKAGE_MESSAGE_DETAILS_Threads",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Details about finding Threads"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "[TRUE][v()]"
-		},
-		{
-			"name" : "FIND_PACKAGE_MESSAGE_DETAILS_WrapAtomic",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Details about finding WrapAtomic"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "[1][v()]"
-		},
-		{
-			"name" : "HAVE_STDATOMIC",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Test HAVE_STDATOMIC"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "1"
-		},
-		{
-			"name" : "Motus_BINARY_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Value Computed by CMake"
-				}
-			],
-			"type" : "STATIC",
-			"value" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug"
-		},
-		{
-			"name" : "Motus_IS_TOP_LEVEL",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Value Computed by CMake"
-				}
-			],
-			"type" : "STATIC",
-			"value" : "ON"
-		},
-		{
-			"name" : "Motus_SOURCE_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Value Computed by CMake"
-				}
-			],
-			"type" : "STATIC",
-			"value" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus"
-		},
-		{
-			"name" : "QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Additional directories where find(Qt6 ...) host Qt components are searched"
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "QT_ADDITIONAL_PACKAGES_PREFIX_PATH",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Additional directories where find(Qt6 ...) components are searched"
-				}
-			],
-			"type" : "STRING",
-			"value" : ""
-		},
-		{
-			"name" : "QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Skip Qt Creator's package manager auto-setup"
-				}
-			],
-			"type" : "BOOL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_CREATOR_SOURCE_GROUPS",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt Creator source groups extensions"
-				}
-			],
-			"type" : "BOOL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_accessibility",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: accessibility (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_accessibility_atspi_bridge",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: accessibility_atspi_bridge (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_action",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: action (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_aesni",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: aesni (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_alloca",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: alloca (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_alloca_h",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: alloca_h (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_alloca_malloc_h",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: alloca_malloc_h (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_android_style_assets",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: android_style_assets (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_animation",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: animation (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_appstore_compliant",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: appstore_compliant (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_arm_crc32",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: arm_crc32 (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_arm_crypto",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: arm_crypto (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_avx",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: avx (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_avx2",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: avx2 (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_avx512bw",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: avx512bw (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_avx512cd",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: avx512cd (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_avx512dq",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: avx512dq (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_avx512er",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: avx512er (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_avx512f",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: avx512f (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_avx512ifma",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: avx512ifma (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_avx512pf",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: avx512pf (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_avx512vbmi",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: avx512vbmi (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_avx512vbmi2",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: avx512vbmi2 (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_avx512vl",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: avx512vl (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_backtrace",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: backtrace (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_broken_threadlocal_dtors",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: broken_threadlocal_dtors (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_brotli",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: brotli (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_cborstreamreader",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: cborstreamreader (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_cborstreamwriter",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: cborstreamwriter (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_clipboard",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: clipboard (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_clock_gettime",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: clock_gettime (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_clock_monotonic",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: clock_monotonic (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_close_range",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: close_range (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_colornames",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: colornames (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_commandlineparser",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: commandlineparser (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_concatenatetablesproxymodel",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: concatenatetablesproxymodel (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_concurrent",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: concurrent (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_cpp_winrt",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: cpp_winrt (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_cross_compile",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: cross_compile (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_cssparser",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: cssparser (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_ctf",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: ctf (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_cursor",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: cursor (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_cxx11_future",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: cxx11_future (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_cxx17_filesystem",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: cxx17_filesystem (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_cxx20",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: cxx20 (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_cxx23_stacktrace",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: cxx23_stacktrace (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_cxx2a",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: cxx2a (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_cxx2b",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: cxx2b (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_datestring",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: datestring (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_datetimeparser",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: datetimeparser (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_dbus",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: dbus (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_dbus_linked",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: dbus_linked (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_debug",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: debug (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_debug_and_release",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: debug_and_release (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_desktopservices",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: desktopservices (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_developer_build",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: developer_build (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_direct2d",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: direct2d (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_direct2d1_1",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: direct2d1_1 (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_directfb",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: directfb (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_directwrite",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: directwrite (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_directwrite3",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: directwrite3 (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_dladdr",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: dladdr (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_dlopen",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: dlopen (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_dnslookup",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: dnslookup (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_doubleconversion",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: doubleconversion (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_draganddrop",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: draganddrop (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_drm_atomic",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: drm_atomic (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_dtls",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: dtls (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_dynamicgl",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: dynamicgl (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_easingcurve",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: easingcurve (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_egl",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: egl (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_egl_x11",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: egl_x11 (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_eglfs",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: eglfs (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_eglfs_brcm",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: eglfs_brcm (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_eglfs_egldevice",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: eglfs_egldevice (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_eglfs_gbm",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: eglfs_gbm (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_eglfs_mali",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: eglfs_mali (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_eglfs_openwfd",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: eglfs_openwfd (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_eglfs_rcar",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: eglfs_rcar (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_eglfs_viv",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: eglfs_viv (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_eglfs_viv_wl",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: eglfs_viv_wl (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_eglfs_vsp2",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: eglfs_vsp2 (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_eglfs_x11",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: eglfs_x11 (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_elf_private_full_version",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: elf_private_full_version (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_etw",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: etw (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_evdev",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: evdev (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_f16c",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: f16c (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_filesystemiterator",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: filesystemiterator (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_filesystemmodel",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: filesystemmodel (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_filesystemwatcher",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: filesystemwatcher (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_fontconfig",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: fontconfig (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_force_asserts",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: force_asserts (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_force_debug_info",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: force_debug_info (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_forkfd_pidfd",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: forkfd_pidfd (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_framework",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: framework (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_freetype",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: freetype (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_futimens",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: futimens (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_future",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: future (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_gc_binaries",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: gc_binaries (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_gestures",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: gestures (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_getauxval",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: getauxval (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_getentropy",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: getentropy (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_getifaddrs",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: getifaddrs (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_gif",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: gif (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_glib",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: glib (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_glibc_fortify_source",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: glibc_fortify_source (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_graphicsframecapture",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: graphicsframecapture (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_gssapi",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: gssapi (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_gui",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: gui (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_harfbuzz",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: harfbuzz (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_highdpiscaling",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: highdpiscaling (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_hijricalendar",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: hijricalendar (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_http",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: http (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_ico",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: ico (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_icu",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: icu (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_identityproxymodel",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: identityproxymodel (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_im",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: im (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_image_heuristic_mask",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: image_heuristic_mask (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_image_text",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: image_text (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_imageformat_bmp",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: imageformat_bmp (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_imageformat_jpeg",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: imageformat_jpeg (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_imageformat_png",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: imageformat_png (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_imageformat_ppm",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: imageformat_ppm (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_imageformat_xbm",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: imageformat_xbm (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_imageformat_xpm",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: imageformat_xpm (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_imageformatplugin",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: imageformatplugin (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_imageio_text_loading",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: imageio_text_loading (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_inotify",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: inotify (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_integrityfb",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: integrityfb (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_integrityhid",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: integrityhid (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_intelcet",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: intelcet (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_ipv6ifname",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: ipv6ifname (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_islamiccivilcalendar",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: islamiccivilcalendar (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_itemmodel",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: itemmodel (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_jalalicalendar",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: jalalicalendar (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_journald",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: journald (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_jpeg",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: jpeg (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_kms",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: kms (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_largefile",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: largefile (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_libcpp_hardening",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: libcpp_hardening (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_libinput",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: libinput (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_libinput_axis_api",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: libinput_axis_api (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_libinput_hires_wheel_support",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: libinput_hires_wheel_support (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_libproxy",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: libproxy (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_library",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: library (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_libresolv",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: libresolv (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_libstdcpp_assertions",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: libstdcpp_assertions (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_libudev",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: libudev (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_linkat",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: linkat (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_linux_netlink",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: linux_netlink (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_linuxfb",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: linuxfb (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_localserver",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: localserver (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_localtime_r",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: localtime_r (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_localtime_s",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: localtime_s (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_lttng",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: lttng (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_memmem",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: memmem (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_memrchr",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: memrchr (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_metal",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: metal (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_mimetype",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: mimetype (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_mimetype_database",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: mimetype_database (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_mips_dsp",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: mips_dsp (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_mips_dspr2",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: mips_dspr2 (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_movie",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: movie (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_mtdev",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: mtdev (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_multiprocess",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: multiprocess (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_neon",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: neon (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_network",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: network (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_networkdiskcache",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: networkdiskcache (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_networkinterface",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: networkinterface (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_networklistmanager",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: networklistmanager (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_networkproxy",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: networkproxy (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_no_direct_extern_access",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: no_direct_extern_access (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_no_pkg_config",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: no_pkg_config (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_ocsp",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: ocsp (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_opengl",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: opengl (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_opengles2",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: opengles2 (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_opengles3",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: opengles3 (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_opengles31",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: opengles31 (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_opengles32",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: opengles32 (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_openssl",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: openssl (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_openssl_hash",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: openssl_hash (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_openssl_linked",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: openssl_linked (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_opensslv11",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: opensslv11 (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_opensslv30",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: opensslv30 (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_openvg",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: openvg (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_pcre2",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: pcre2 (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_pdf",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: pdf (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_permissions",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: permissions (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_picture",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: picture (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_pkg_config",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: pkg_config (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_plugin_manifest",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: plugin_manifest (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_png",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: png (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_poll_exit_on_error",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: poll_exit_on_error (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_poll_poll",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: poll_poll (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_poll_pollts",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: poll_pollts (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_poll_ppoll",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: poll_ppoll (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_poll_select",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: poll_select (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_posix_fallocate",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: posix_fallocate (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_posix_sem",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: posix_sem (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_posix_shm",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: posix_shm (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_precompile_header",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: precompile_header (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_printsupport",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: printsupport (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_private_tests",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: private_tests (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_process",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: process (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_processenvironment",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: processenvironment (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_proxymodel",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: proxymodel (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_publicsuffix_qt",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: publicsuffix_qt (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_publicsuffix_system",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: publicsuffix_system (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_qml_animation",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: qml_animation (from target Qt6::Qml)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_qml_debug",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: qml_debug (from target Qt6::Qml)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_qml_delegate_model",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: qml_delegate_model (from target Qt6::QmlModels)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_qml_itemmodel",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: qml_itemmodel (from target Qt6::Qml)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_qml_jit",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: qml_jit (from target Qt6::Qml)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_qml_list_model",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: qml_list_model (from target Qt6::QmlModels)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_qml_locale",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: qml_locale (from target Qt6::Qml)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_qml_network",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: qml_network (from target Qt6::Qml)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_qml_object_model",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: qml_object_model (from target Qt6::QmlModels)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_qml_preview",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: qml_preview (from target Qt6::Qml)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_qml_profiler",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: qml_profiler (from target Qt6::Qml)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_qml_python",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: qml_python (from target Qt6::Qml)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_qml_ssl",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: qml_ssl (from target Qt6::Qml)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_qml_table_model",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: qml_table_model (from target Qt6::QmlModels)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_qml_worker_script",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: qml_worker_script (from target Qt6::Qml)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_qml_xml_http_request",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: qml_xml_http_request (from target Qt6::Qml)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_qml_xmllistmodel",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: qml_xmllistmodel (from target Qt6::Qml)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_qqnx_imf",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: qqnx_imf (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_qqnx_pps",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: qqnx_pps (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_quick_animatedimage",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: quick_animatedimage (from target Qt6::Quick)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_quick_canvas",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: quick_canvas (from target Qt6::Quick)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_quick_designer",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: quick_designer (from target Qt6::Quick)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_quick_draganddrop",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: quick_draganddrop (from target Qt6::Quick)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_quick_flipable",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: quick_flipable (from target Qt6::Quick)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_quick_gridview",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: quick_gridview (from target Qt6::Quick)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_quick_itemview",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: quick_itemview (from target Qt6::Quick)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_quick_listview",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: quick_listview (from target Qt6::Quick)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_quick_particles",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: quick_particles (from target Qt6::Quick)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_quick_path",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: quick_path (from target Qt6::Quick)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_quick_pathview",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: quick_pathview (from target Qt6::Quick)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_quick_pixmap_cache_threaded_download",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: quick_pixmap_cache_threaded_download (from target Qt6::Quick)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_quick_positioners",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: quick_positioners (from target Qt6::Quick)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_quick_repeater",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: quick_repeater (from target Qt6::Quick)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_quick_shadereffect",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: quick_shadereffect (from target Qt6::Quick)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_quick_sprite",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: quick_sprite (from target Qt6::Quick)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_quick_tableview",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: quick_tableview (from target Qt6::Quick)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_quick_treeview",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: quick_treeview (from target Qt6::Quick)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_quick_viewtransitions",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: quick_viewtransitions (from target Qt6::Quick)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_raster_64bit",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: raster_64bit (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_raster_fp",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: raster_fp (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_rdrnd",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: rdrnd (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_rdseed",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: rdseed (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_reduce_exports",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: reduce_exports (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_reduce_relocations",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: reduce_relocations (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_regularexpression",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: regularexpression (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_relocatable",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: relocatable (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_relro_now_linker",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: relro_now_linker (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_renameat2",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: renameat2 (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_res_setservers",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: res_setservers (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_rpath",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: rpath (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_schannel",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: schannel (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_sctp",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: sctp (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_securetransport",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: securetransport (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_separate_debug_info",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: separate_debug_info (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_sessionmanager",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: sessionmanager (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_settings",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: settings (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_sha3_fast",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: sha3_fast (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_shani",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: shani (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_shared",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: shared (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_sharedmemory",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: sharedmemory (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_shortcut",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: shortcut (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_signaling_nan",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: signaling_nan (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_simulator_and_device",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: simulator_and_device (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_slog2",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: slog2 (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_socks5",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: socks5 (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_sortfilterproxymodel",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: sortfilterproxymodel (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_sql",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: sql (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_sse2",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: sse2 (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_sse3",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: sse3 (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_sse4_1",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: sse4_1 (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_sse4_2",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: sse4_2 (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_ssl",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: ssl (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_sspi",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: sspi (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_ssse3",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: ssse3 (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_stack_clash_protection",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: stack_clash_protection (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_stack_protector",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: stack_protector (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_standarditemmodel",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: standarditemmodel (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_static",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: static (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_std_atomic64",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: std_atomic64 (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_stdlib_libcpp",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: stdlib_libcpp (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_stringlistmodel",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: stringlistmodel (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_syslog",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: syslog (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_system_doubleconversion",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: system_doubleconversion (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_system_freetype",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: system_freetype (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_system_harfbuzz",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: system_harfbuzz (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_system_jpeg",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: system_jpeg (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_system_libb2",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: system_libb2 (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_system_pcre2",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: system_pcre2 (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_system_png",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: system_png (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_system_proxies",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: system_proxies (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_system_textmarkdownreader",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: system_textmarkdownreader (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_system_xcb_xinput",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: system_xcb_xinput (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_system_zlib",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: system_zlib (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_systemsemaphore",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: systemsemaphore (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_systemtrayicon",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: systemtrayicon (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_sysv_sem",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: sysv_sem (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_sysv_shm",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: sysv_shm (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_tabletevent",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: tabletevent (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_temporaryfile",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: temporaryfile (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_testlib",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: testlib (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_textdate",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: textdate (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_texthtmlparser",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: texthtmlparser (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_textmarkdownreader",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: textmarkdownreader (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_textmarkdownwriter",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: textmarkdownwriter (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_textodfwriter",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: textodfwriter (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_thread",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: thread (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_timezone",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: timezone (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_timezone_locale",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: timezone_locale (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_topleveldomain",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: topleveldomain (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_translation",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: translation (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_transposeproxymodel",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: transposeproxymodel (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_trivial_auto_var_init_pattern",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: trivial_auto_var_init_pattern (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_tslib",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: tslib (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_tuiotouch",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: tuiotouch (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_udpsocket",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: udpsocket (from target Qt6::Network)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_undocommand",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: undocommand (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_undogroup",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: undogroup (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_undostack",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: undostack (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_use_bfd_linker",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: use_bfd_linker (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_use_gold_linker",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: use_gold_linker (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_use_lld_linker",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: use_lld_linker (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_use_mold_linker",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: use_mold_linker (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_vaes",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: vaes (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_validator",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: validator (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_version_tagging",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: version_tagging (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_vkgen",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: vkgen (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_vkkhrdisplay",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: vkkhrdisplay (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_vnc",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: vnc (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_vsp2",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: vsp2 (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_vulkan",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: vulkan (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_wasm_exceptions",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: wasm_exceptions (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_wasm_simd128",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: wasm_simd128 (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_wayland",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: wayland (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_whatsthis",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: whatsthis (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_wheelevent",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: wheelevent (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_widgets",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: widgets (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_x86intrin",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: x86intrin (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_xcb",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: xcb (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_xcb_egl_plugin",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: xcb_egl_plugin (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_xcb_glx",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: xcb_glx (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_xcb_glx_plugin",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: xcb_glx_plugin (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_xcb_native_painting",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: xcb_native_painting (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_xcb_sm",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: xcb_sm (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_xcb_xlib",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: xcb_xlib (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_xkbcommon",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: xkbcommon (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_xkbcommon_x11",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: xkbcommon_x11 (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_xlib",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: xlib (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_xml",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: xml (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_xmlstream",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: xmlstream (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_xmlstreamreader",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: xmlstreamreader (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_xmlstreamwriter",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: xmlstreamwriter (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "ON"
-		},
-		{
-			"name" : "QT_FEATURE_xrender",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: xrender (from target Qt6::Gui)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_FEATURE_zstd",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Qt feature: zstd (from target Qt6::Core)"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "OFF"
-		},
-		{
-			"name" : "QT_QMAKE_EXECUTABLE",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "No help, variable specified on the command line."
-				}
-			],
-			"type" : "FILEPATH",
-			"value" : "C:/Qt/6.8.2/mingw_64/bin/qmake.exe"
-		},
-		{
-			"name" : "QT_TOOL_COMMAND_WRAPPER_PATH",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Path to the wrapper of the tool commands"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/bin/qt_setup_tool_path.bat"
-		},
-		{
-			"name" : "Qt6Concurrent_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "The directory containing a CMake configuration file for Qt6Concurrent."
-				}
-			],
-			"type" : "PATH",
-			"value" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Concurrent"
-		},
-		{
-			"name" : "Qt6CoreTools_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "The directory containing a CMake configuration file for Qt6CoreTools."
-				}
-			],
-			"type" : "PATH",
-			"value" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6CoreTools"
-		},
-		{
-			"name" : "Qt6Core_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "The directory containing a CMake configuration file for Qt6Core."
-				}
-			],
-			"type" : "PATH",
-			"value" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Core"
-		},
-		{
-			"name" : "Qt6EntryPointPrivate_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "The directory containing a CMake configuration file for Qt6EntryPointPrivate."
-				}
-			],
-			"type" : "PATH",
-			"value" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6EntryPointPrivate"
-		},
-		{
-			"name" : "Qt6ExamplesAssetDownloaderPrivate_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "The directory containing a CMake configuration file for Qt6ExamplesAssetDownloaderPrivate."
-				}
-			],
-			"type" : "PATH",
-			"value" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6ExamplesAssetDownloaderPrivate"
-		},
-		{
-			"name" : "Qt6GuiTools_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "The directory containing a CMake configuration file for Qt6GuiTools."
-				}
-			],
-			"type" : "PATH",
-			"value" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6GuiTools"
-		},
-		{
-			"name" : "Qt6Gui_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "The directory containing a CMake configuration file for Qt6Gui."
-				}
-			],
-			"type" : "PATH",
-			"value" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Gui"
-		},
-		{
-			"name" : "Qt6Network_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "The directory containing a CMake configuration file for Qt6Network."
-				}
-			],
-			"type" : "PATH",
-			"value" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Network"
-		},
-		{
-			"name" : "Qt6OpenGL_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "The directory containing a CMake configuration file for Qt6OpenGL."
-				}
-			],
-			"type" : "PATH",
-			"value" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6OpenGL"
-		},
-		{
-			"name" : "Qt6QmlAssetDownloader_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "The directory containing a CMake configuration file for Qt6QmlAssetDownloader."
-				}
-			],
-			"type" : "PATH",
-			"value" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlAssetDownloader"
-		},
-		{
-			"name" : "Qt6QmlCompilerPlusPrivateTools_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "The directory containing a CMake configuration file for Qt6QmlCompilerPlusPrivateTools."
-				}
-			],
-			"type" : "PATH",
-			"value" : "Qt6QmlCompilerPlusPrivateTools_DIR-NOTFOUND"
-		},
-		{
-			"name" : "Qt6QmlIntegration_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "The directory containing a CMake configuration file for Qt6QmlIntegration."
-				}
-			],
-			"type" : "PATH",
-			"value" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlIntegration"
-		},
-		{
-			"name" : "Qt6QmlMeta_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "The directory containing a CMake configuration file for Qt6QmlMeta."
-				}
-			],
-			"type" : "PATH",
-			"value" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlMeta"
-		},
-		{
-			"name" : "Qt6QmlModels_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "The directory containing a CMake configuration file for Qt6QmlModels."
-				}
-			],
-			"type" : "PATH",
-			"value" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlModels"
-		},
-		{
-			"name" : "Qt6QmlTools_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "The directory containing a CMake configuration file for Qt6QmlTools."
-				}
-			],
-			"type" : "PATH",
-			"value" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlTools"
-		},
-		{
-			"name" : "Qt6QmlWorkerScript_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "The directory containing a CMake configuration file for Qt6QmlWorkerScript."
-				}
-			],
-			"type" : "PATH",
-			"value" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QmlWorkerScript"
-		},
-		{
-			"name" : "Qt6Qml_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "The directory containing a CMake configuration file for Qt6Qml."
-				}
-			],
-			"type" : "PATH",
-			"value" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml"
-		},
-		{
-			"name" : "Qt6QuickTools_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "The directory containing a CMake configuration file for Qt6QuickTools."
-				}
-			],
-			"type" : "PATH",
-			"value" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6QuickTools"
-		},
-		{
-			"name" : "Qt6Quick_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "The directory containing a CMake configuration file for Qt6Quick."
-				}
-			],
-			"type" : "PATH",
-			"value" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Quick"
-		},
-		{
-			"name" : "Qt6ZlibPrivate_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "The directory containing a CMake configuration file for Qt6ZlibPrivate."
-				}
-			],
-			"type" : "PATH",
-			"value" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6ZlibPrivate"
-		},
-		{
-			"name" : "Qt6_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "The directory containing a CMake configuration file for Qt6."
-				}
-			],
-			"type" : "PATH",
-			"value" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6"
-		},
-		{
-			"name" : "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Path to a program."
-				}
-			],
-			"type" : "FILEPATH",
-			"value" : "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-NOTFOUND"
-		},
-		{
-			"name" : "Vulkan_GLSLC_EXECUTABLE",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Path to a program."
-				}
-			],
-			"type" : "FILEPATH",
-			"value" : "Vulkan_GLSLC_EXECUTABLE-NOTFOUND"
-		},
-		{
-			"name" : "Vulkan_INCLUDE_DIR",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Path to a file."
-				}
-			],
-			"type" : "PATH",
-			"value" : "Vulkan_INCLUDE_DIR-NOTFOUND"
-		},
-		{
-			"name" : "Vulkan_LIBRARY",
-			"properties" : 
-			[
-				{
-					"name" : "ADVANCED",
-					"value" : "1"
-				},
-				{
-					"name" : "HELPSTRING",
-					"value" : "Path to a library."
-				}
-			],
-			"type" : "FILEPATH",
-			"value" : "Vulkan_LIBRARY-NOTFOUND"
-		},
-		{
-			"name" : "WINDEPLOYQT_EXECUTABLE",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "Path to a program."
-				}
-			],
-			"type" : "FILEPATH",
-			"value" : "C:/Qt/6.8.2/mingw_64/bin/windeployqt.exe"
-		},
-		{
-			"name" : "_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "linker supports push/pop state"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "TRUE"
-		},
-		{
-			"name" : "_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : "CMAKE_INSTALL_PREFIX during last run"
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "C:/Program Files (x86)/Motus"
-		},
-		{
-			"name" : "__qt_qml_macros_module_base_dir",
-			"properties" : 
-			[
-				{
-					"name" : "HELPSTRING",
-					"value" : ""
-				}
-			],
-			"type" : "INTERNAL",
-			"value" : "C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml"
-		}
-	],
-	"kind" : "cache",
-	"version" : 
-	{
-		"major" : 2,
-		"minor" : 0
-	}
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-2e69c02c709821a1e5c2.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/codemodel-v2-53996ad472446e51d17e.json
similarity index 96%
rename from Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-2e69c02c709821a1e5c2.json
rename to Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/codemodel-v2-53996ad472446e51d17e.json
index 6c46d763e0d2025d757811f22a0e47a0fcbe1f2a..9561eee5f37f3a05e2549e8c640f00151942eb79 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-2e69c02c709821a1e5c2.json
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/codemodel-v2-53996ad472446e51d17e.json
@@ -70,7 +70,7 @@
 				{
 					"directoryIndex" : 0,
 					"id" : "all_aotstats::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-all_aotstats-Debug-f044889fc43268276973.json",
+					"jsonFile" : "target-all_aotstats-Debug-3345a1422489c0c12ce6.json",
 					"name" : "all_aotstats",
 					"projectIndex" : 0
 				},
@@ -105,7 +105,7 @@
 				{
 					"directoryIndex" : 0,
 					"id" : "appMotus::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-appMotus-Debug-494a7a8e581520370937.json",
+					"jsonFile" : "target-appMotus-Debug-90c93b9a020331ad7914.json",
 					"name" : "appMotus",
 					"projectIndex" : 0
 				},
@@ -175,7 +175,7 @@
 				{
 					"directoryIndex" : 0,
 					"id" : "module_appMotus_aotstats_target::@6890427a1f51a3e7e1df",
-					"jsonFile" : "target-module_appMotus_aotstats_target-Debug-0587256a2adabd997349.json",
+					"jsonFile" : "target-module_appMotus_aotstats_target-Debug-a5f698d6f20f056d305e.json",
 					"name" : "module_appMotus_aotstats_target",
 					"projectIndex" : 0
 				}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-.-Debug-c0201d06610e1bf23ca6.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/directory-.-Debug-c0201d06610e1bf23ca6.json
similarity index 100%
rename from Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-.-Debug-c0201d06610e1bf23ca6.json
rename to Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/directory-.-Debug-c0201d06610e1bf23ca6.json
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T10-14-11-0899.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/index-2025-03-17T13-41-34-0762.json
similarity index 91%
rename from Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T10-14-11-0899.json
rename to Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/index-2025-03-17T13-41-34-0762.json
index 79fdf337adf1ae31b3fbc1279e3459d54dddf847..92c34db8e65fca1f110111429229334fd6dedd08 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2025-03-17T10-14-11-0899.json
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/index-2025-03-17T13-41-34-0762.json
@@ -26,7 +26,7 @@
 	"objects" : 
 	[
 		{
-			"jsonFile" : "codemodel-v2-2e69c02c709821a1e5c2.json",
+			"jsonFile" : "codemodel-v2-53996ad472446e51d17e.json",
 			"kind" : "codemodel",
 			"version" : 
 			{
@@ -77,7 +77,7 @@
 		},
 		"codemodel-v2" : 
 		{
-			"jsonFile" : "codemodel-v2-2e69c02c709821a1e5c2.json",
+			"jsonFile" : "codemodel-v2-53996ad472446e51d17e.json",
 			"kind" : "codemodel",
 			"version" : 
 			{
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-all_aotstats-Debug-f044889fc43268276973.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-all_aotstats-Debug-3345a1422489c0c12ce6.json
similarity index 92%
rename from Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-all_aotstats-Debug-f044889fc43268276973.json
rename to Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-all_aotstats-Debug-3345a1422489c0c12ce6.json
index ca5a2a708f00fa22eb4c853f65fe6fbe2f012abd..3d77cc2d9679003cfcf145dcafb33b155bf4caab 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-all_aotstats-Debug-f044889fc43268276973.json
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-all_aotstats-Debug-3345a1422489c0c12ce6.json
@@ -69,7 +69,8 @@
 				4,
 				5,
 				6,
-				7
+				7,
+				8
 			]
 		}
 	],
@@ -99,6 +100,12 @@
 			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/module_appMotus.aotstats.rule",
 			"sourceGroupIndex" : 1
 		},
+		{
+			"backtrace" : 0,
+			"isGenerated" : true,
+			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp.rule",
+			"sourceGroupIndex" : 1
+		},
 		{
 			"backtrace" : 0,
 			"isGenerated" : true,
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-494a7a8e581520370937.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-appMotus-Debug-90c93b9a020331ad7914.json
similarity index 97%
rename from Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-494a7a8e581520370937.json
rename to Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-appMotus-Debug-90c93b9a020331ad7914.json
index 54fb575d240154f1941b3bc8fb3bdfd2a63f847d..887e5c9a3d9083a65ebbefb35b1c5a27897a44d7 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus-Debug-494a7a8e581520370937.json
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-appMotus-Debug-90c93b9a020331ad7914.json
@@ -598,6 +598,18 @@
 				"line" : 3368,
 				"parent" : 70
 			},
+			{
+				"command" : 23,
+				"file" : 10,
+				"line" : 3175,
+				"parent" : 70
+			},
+			{
+				"command" : 23,
+				"file" : 10,
+				"line" : 3368,
+				"parent" : 70
+			},
 			{
 				"command" : 28,
 				"file" : 10,
@@ -608,19 +620,19 @@
 				"command" : 27,
 				"file" : 0,
 				"line" : 406,
-				"parent" : 94
+				"parent" : 96
 			},
 			{
 				"command" : 26,
 				"file" : 0,
 				"line" : 2491,
-				"parent" : 95
+				"parent" : 97
 			},
 			{
 				"command" : 23,
 				"file" : 0,
 				"line" : 2089,
-				"parent" : 96
+				"parent" : 98
 			},
 			{
 				"command" : 30,
@@ -632,7 +644,7 @@
 				"command" : 23,
 				"file" : 0,
 				"line" : 2212,
-				"parent" : 98
+				"parent" : 100
 			}
 		]
 	},
@@ -821,7 +833,8 @@
 				7,
 				9,
 				11,
-				12
+				13,
+				14
 			]
 		},
 		{
@@ -1010,13 +1023,16 @@
 	],
 	"dependencies" : 
 	[
+		{
+			"backtrace" : 69,
+			"id" : "appMotus_qmlimportscan::@6890427a1f51a3e7e1df"
+		},
 		{
 			"backtrace" : 0,
 			"id" : "appMotus_autogen::@6890427a1f51a3e7e1df"
 		},
 		{
-			"backtrace" : 69,
-			"id" : "appMotus_qmlimportscan::@6890427a1f51a3e7e1df"
+			"id" : "appMotus_autogen_timestamp_deps::@6890427a1f51a3e7e1df"
 		},
 		{
 			"backtrace" : 72,
@@ -1025,9 +1041,6 @@
 		{
 			"backtrace" : 74,
 			"id" : "appMotus_copy_res::@6890427a1f51a3e7e1df"
-		},
-		{
-			"id" : "appMotus_autogen_timestamp_deps::@6890427a1f51a3e7e1df"
 		}
 	],
 	"id" : "appMotus::@6890427a1f51a3e7e1df",
@@ -1178,16 +1191,16 @@
 			"sourceIndexes" : 
 			[
 				0,
-				18,
-				29,
-				30,
+				19,
 				31,
 				32,
 				33,
 				34,
 				35,
 				36,
-				37
+				37,
+				38,
+				39
 			]
 		},
 		{
@@ -1201,7 +1214,8 @@
 				7,
 				9,
 				11,
-				12
+				13,
+				14
 			]
 		},
 		{
@@ -1212,24 +1226,23 @@
 				5,
 				8,
 				10,
-				14,
-				17
+				12,
+				16
 			]
 		},
 		{
 			"name" : "Resources",
 			"sourceIndexes" : 
 			[
-				13,
 				15,
-				16
+				17,
+				18
 			]
 		},
 		{
 			"name" : "CMake Rules",
 			"sourceIndexes" : 
 			[
-				19,
 				20,
 				21,
 				22,
@@ -1238,7 +1251,9 @@
 				25,
 				26,
 				27,
-				28
+				28,
+				29,
+				30
 			]
 		}
 	],
@@ -1310,51 +1325,58 @@
 		},
 		{
 			"backtrace" : 92,
-			"path" : "Key.qml",
+			"path" : "Bouton.qml",
 			"sourceGroupIndex" : 2
 		},
 		{
 			"backtrace" : 93,
 			"compileGroupIndex" : 0,
 			"isGenerated" : true,
+			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp",
+			"sourceGroupIndex" : 1
+		},
+		{
+			"backtrace" : 94,
+			"path" : "Key.qml",
+			"sourceGroupIndex" : 2
+		},
+		{
+			"backtrace" : 95,
+			"compileGroupIndex" : 0,
+			"isGenerated" : true,
 			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp",
 			"sourceGroupIndex" : 1
 		},
 		{
-			"backtrace" : 97,
+			"backtrace" : 99,
 			"compileGroupIndex" : 0,
 			"isGenerated" : true,
 			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp",
 			"sourceGroupIndex" : 1
 		},
 		{
-			"backtrace" : 99,
+			"backtrace" : 101,
 			"isGenerated" : true,
 			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qmake_Motus.qrc",
 			"sourceGroupIndex" : 3
 		},
 		{
-			"backtrace" : 99,
+			"backtrace" : 101,
 			"isGenerated" : true,
 			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/qmldir",
 			"sourceGroupIndex" : 2
 		},
 		{
-			"backtrace" : 99,
+			"backtrace" : 101,
 			"isGenerated" : true,
 			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/appMotus_raw_qml_0.qrc",
 			"sourceGroupIndex" : 3
 		},
 		{
-			"backtrace" : 99,
+			"backtrace" : 101,
 			"path" : "Ressources.qrc",
 			"sourceGroupIndex" : 3
 		},
-		{
-			"backtrace" : 99,
-			"path" : ".gitignore",
-			"sourceGroupIndex" : 2
-		},
 		{
 			"backtrace" : 0,
 			"isGenerated" : true,
@@ -1397,6 +1419,12 @@
 			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.rule",
 			"sourceGroupIndex" : 4
 		},
+		{
+			"backtrace" : 0,
+			"isGenerated" : true,
+			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp.rule",
+			"sourceGroupIndex" : 4
+		},
 		{
 			"backtrace" : 0,
 			"isGenerated" : true,
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-appMotus_autogen_timestamp_deps-Debug-a2a098c444f9c6d2e92f.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-appMotus_autogen_timestamp_deps-Debug-a2a098c444f9c6d2e92f.json
deleted file mode 100644
index 0736815d675ecb33ef08539d5a1e59d9c4351002..0000000000000000000000000000000000000000
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-appMotus_autogen_timestamp_deps-Debug-a2a098c444f9c6d2e92f.json
+++ /dev/null
@@ -1,96 +0,0 @@
-{
-	"backtrace" : 0,
-	"backtraceGraph" : 
-	{
-		"commands" : 
-		[
-			"add_dependencies",
-			"_qt_internal_qml_copy_files_to_build_dir",
-			"qt6_target_qml_sources",
-			"qt6_add_qml_module",
-			"qt_add_qml_module"
-		],
-		"files" : 
-		[
-			"CMakeLists.txt",
-			"C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake"
-		],
-		"nodes" : 
-		[
-			{
-				"file" : 0
-			},
-			{
-				"command" : 4,
-				"file" : 0,
-				"line" : 15,
-				"parent" : 0
-			},
-			{
-				"command" : 3,
-				"file" : 1,
-				"line" : 1241,
-				"parent" : 1
-			},
-			{
-				"command" : 2,
-				"file" : 1,
-				"line" : 896,
-				"parent" : 2
-			},
-			{
-				"command" : 1,
-				"file" : 1,
-				"line" : 3448,
-				"parent" : 3
-			},
-			{
-				"command" : 0,
-				"file" : 1,
-				"line" : 2859,
-				"parent" : 4
-			},
-			{
-				"command" : 1,
-				"file" : 1,
-				"line" : 3454,
-				"parent" : 3
-			},
-			{
-				"command" : 0,
-				"file" : 1,
-				"line" : 2859,
-				"parent" : 6
-			}
-		]
-	},
-	"dependencies" : 
-	[
-		{
-			"backtrace" : 5,
-			"id" : "appMotus_copy_qml::@6890427a1f51a3e7e1df"
-		},
-		{
-			"backtrace" : 7,
-			"id" : "appMotus_copy_res::@6890427a1f51a3e7e1df"
-		},
-		{
-			"backtrace" : 0,
-			"id" : "appMotus_qmlimportscan::@6890427a1f51a3e7e1df"
-		}
-	],
-	"folder" : 
-	{
-		"name" : "QtInternalTargets"
-	},
-	"id" : "appMotus_autogen_timestamp_deps::@6890427a1f51a3e7e1df",
-	"isGeneratorProvided" : true,
-	"name" : "appMotus_autogen_timestamp_deps",
-	"paths" : 
-	{
-		"build" : ".",
-		"source" : "."
-	},
-	"sources" : [],
-	"type" : "UTILITY"
-}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus_autogen_timestamp_deps-Debug-f57fc48b1dee06dfda4a.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-appMotus_autogen_timestamp_deps-Debug-f57fc48b1dee06dfda4a.json
similarity index 100%
rename from Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-appMotus_autogen_timestamp_deps-Debug-f57fc48b1dee06dfda4a.json
rename to Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-appMotus_autogen_timestamp_deps-Debug-f57fc48b1dee06dfda4a.json
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-module_appMotus_aotstats_target-Debug-0587256a2adabd997349.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-module_appMotus_aotstats_target-Debug-a5f698d6f20f056d305e.json
similarity index 92%
rename from Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-module_appMotus_aotstats_target-Debug-0587256a2adabd997349.json
rename to Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-module_appMotus_aotstats_target-Debug-a5f698d6f20f056d305e.json
index f8905c05c1ed369704e46ae6511256e7925dcb9b..be04982c1941cea44878190d9d4ce66c94e7137b 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-module_appMotus_aotstats_target-Debug-0587256a2adabd997349.json
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-module_appMotus_aotstats_target-Debug-a5f698d6f20f056d305e.json
@@ -80,7 +80,8 @@
 				3,
 				4,
 				5,
-				6
+				6,
+				7
 			]
 		}
 	],
@@ -104,6 +105,12 @@
 			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/module_appMotus.aotstats.rule",
 			"sourceGroupIndex" : 1
 		},
+		{
+			"backtrace" : 0,
+			"isGenerated" : true,
+			"path" : "build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp.rule",
+			"sourceGroupIndex" : 1
+		},
 		{
 			"backtrace" : 0,
 			"isGenerated" : true,
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.ninja_deps b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.ninja_deps
index 6848ef7bcc664c5737870ce70fbc73eb598ce0e8..f624de218ec16ca0212e1d66394ffddeb9814310 100644
Binary files a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.ninja_deps and b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.ninja_deps differ
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.ninja_log b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.ninja_log
index 5c37abef16485e0b9b4124487cd88ec0977c056e..d8e15cee5e93a663dc6593ce45b6dbc71195cc4b 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.ninja_log
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.ninja_log
@@ -1,85 +1,161 @@
 # ninja log v6
-18	116	7639093853208183	.qt/appMotus_qml.txt	19d6e25073c985b8
-1610	1889	7639093868255880	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp.obj	730848838a271f07
-193	594	7639093856391438	appMotus_autogen/timestamp	e898ee6eb09485ae
-18	116	7639093853208183	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/appMotus_qml.txt	19d6e25073c985b8
-32	153	7639093853479950	.qt/appMotus_res.txt	15fe6511ba4c5c0a
-1239	1532	7639093867087220	.rcc/qmlcache/appMotus_Case_qml.cpp.aotstats	f252e3927fc365b1
-47	193	7639093853900212	.qt/qml_imports/appMotus_build.cmake	708442a6efb3e956
-32	153	7639093853479950	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/appMotus_res.txt	15fe6511ba4c5c0a
-47	193	7639093853900212	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/qml_imports/appMotus_build.cmake	708442a6efb3e956
-193	594	7639093856391438	appMotus_autogen/mocs_compilation.cpp	e898ee6eb09485ae
-602	714	7639093859203346	meta_types/appMotus_json_file_list.txt	9219a4c76f33c8f2
-1578	7638	7639093867792803	CMakeFiles/appMotus.dir/main.cpp.obj	fb328d669165dce9
-193	594	7639093856391438	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/timestamp	e898ee6eb09485ae
-193	594	7639093856391438	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/mocs_compilation.cpp	e898ee6eb09485ae
-637	809	7639093859777593	.rcc/qmlcache/appMotus_qmlcache_loader.cpp	ee8e5e3f63dcd499
-602	714	7639093859203346	meta_types/appMotus_json_file_list.txt.timestamp	9219a4c76f33c8f2
-602	714	7639093859203346	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/appMotus_json_file_list.txt	9219a4c76f33c8f2
-602	714	7639093859203346	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/appMotus_json_file_list.txt.timestamp	9219a4c76f33c8f2
-619	782	7639093859621190	.qt/rcc/qrc_qmake_Motus.cpp	35e4ee822ab97fef
-619	782	7639093859621190	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp	35e4ee822ab97fef
-8205	9278	7639093934208044	appMotus.exe	9fb096ba22de66a3
-661	787	7639093859777593	.qt/rcc/qrc_appMotus_raw_qml_0.cpp	7b24443f6fb7ff9b
-637	809	7639093859777593	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp	ee8e5e3f63dcd499
-661	787	7639093859777593	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp	7b24443f6fb7ff9b
-714	932	7639093861245351	meta_types/qt6appmotus_debug_metatypes.json.gen	50d103f36eaebe91
-714	932	7639093861245351	meta_types/qt6appmotus_debug_metatypes.json	50d103f36eaebe91
-714	932	7639093861245351	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/qt6appmotus_debug_metatypes.json.gen	50d103f36eaebe91
-1593	7320	7639093867943225	CMakeFiles/appMotus.dir/appmotus_qmltyperegistrations.cpp.obj	1b248c12894e2c6e
-714	932	7639093861245351	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/qt6appmotus_debug_metatypes.json	50d103f36eaebe91
-932	1226	7639093863068451	appmotus_qmltyperegistrations.cpp	a65128c62049b556
-932	1226	7639093863068451	Motus/appMotus.qmltypes	a65128c62049b556
-932	1226	7639093863068451	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appmotus_qmltyperegistrations.cpp	a65128c62049b556
-932	1226	7639093863068451	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/appMotus.qmltypes	a65128c62049b556
-1239	1532	7639093867087220	.rcc/qmlcache/appMotus_Case_qml.cpp	f252e3927fc365b1
-1239	1532	7639093867087220	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp	f252e3927fc365b1
-1633	8205	7639093868412178	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp.obj	70756d3da140a737
-1239	1532	7639093867087220	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.aotstats	f252e3927fc365b1
-1226	1561	7639093867399466	.rcc/qmlcache/appMotus_Main_qml.cpp	313eb81157fe6576
-1226	1561	7639093867399466	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp	313eb81157fe6576
-1226	1561	7639093867399466	.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats	313eb81157fe6576
-1226	1561	7639093867399466	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats	313eb81157fe6576
-1561	1837	7639093867659512	CMakeFiles/appMotus.dir/appMotus_autogen/mocs_compilation.cpp.obj	12d8cd84b3bb0aa9
-1698	1980	7639093869037164	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp.obj	b860d43e3dc34fb5
-1672	7597	7639093868724650	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.obj	1d8d7a2fb0e75c17
-1651	7982	7639093868568440	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.obj	323a36cadb9b22e4
-56	127	7639112509607321	.qt/appMotus_qml.txt	19d6e25073c985b8
-56	127	7639112509607321	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/appMotus_qml.txt	19d6e25073c985b8
+164	524	7639220562184477	.qt/appMotus_qml.txt	19d6e25073c985b8
+978	1685	7639112518201093	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp.obj	730848838a271f07
+188	414	7639112510232779	appMotus_autogen/timestamp	e898ee6eb09485ae
+164	524	7639220562184477	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/appMotus_qml.txt	19d6e25073c985b8
 70	140	7639112509763713	.qt/appMotus_res.txt	15fe6511ba4c5c0a
+541	1006	7639220566538343	.rcc/qmlcache/appMotus_Case_qml.cpp.aotstats	f252e3927fc365b1
+201	470	7639220561574728	.qt/qml_imports/appMotus_build.cmake	708442a6efb3e956
 70	140	7639112509763713	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/appMotus_res.txt	15fe6511ba4c5c0a
-83	188	7639112510232779	.qt/qml_imports/appMotus_build.cmake	708442a6efb3e956
-83	188	7639112510232779	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/qml_imports/appMotus_build.cmake	708442a6efb3e956
-188	414	7639112510232779	appMotus_autogen/timestamp	e898ee6eb09485ae
+201	470	7639220561574728	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/qml_imports/appMotus_build.cmake	708442a6efb3e956
 188	414	7639112510232779	appMotus_autogen/mocs_compilation.cpp	e898ee6eb09485ae
+415	563	7639112512576459	meta_types/appMotus_json_file_list.txt	9219a4c76f33c8f2
+1578	7638	7639093867792803	CMakeFiles/appMotus.dir/main.cpp.obj	fb328d669165dce9
 188	414	7639112510232779	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/timestamp	e898ee6eb09485ae
 188	414	7639112510232779	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/mocs_compilation.cpp	e898ee6eb09485ae
-415	563	7639112512576459	meta_types/appMotus_json_file_list.txt	9219a4c76f33c8f2
+441	751	7639112514607335	.rcc/qmlcache/appMotus_qmlcache_loader.cpp	ee8e5e3f63dcd499
 415	563	7639112512576459	meta_types/appMotus_json_file_list.txt.timestamp	9219a4c76f33c8f2
 415	563	7639112512576459	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/appMotus_json_file_list.txt	9219a4c76f33c8f2
 415	563	7639112512576459	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/appMotus_json_file_list.txt.timestamp	9219a4c76f33c8f2
-468	620	7639112513982616	.qt/rcc/qrc_appMotus_raw_qml_0.cpp	7b24443f6fb7ff9b
-468	620	7639112513982616	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp	7b24443f6fb7ff9b
 427	620	7639112514138587	.qt/rcc/qrc_qmake_Motus.cpp	35e4ee822ab97fef
 427	620	7639112514138587	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp	35e4ee822ab97fef
-441	751	7639112514607335	.rcc/qmlcache/appMotus_qmlcache_loader.cpp	ee8e5e3f63dcd499
+6021	7474	7639220617235516	appMotus.exe	7c7c6477327467a5
+559	713	7639220563960287	.qt/rcc/qrc_appMotus_raw_qml_0.cpp	7b24443f6fb7ff9b
 441	751	7639112514607335	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp	ee8e5e3f63dcd499
-563	836	7639112516482823	.rcc/qmlcache/appMotus_Main_qml.cpp	313eb81157fe6576
-563	836	7639112516482823	.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats	313eb81157fe6576
-563	836	7639112516482823	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp	313eb81157fe6576
-563	836	7639112516482823	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats	313eb81157fe6576
-583	976	7639112517888859	.rcc/qmlcache/appMotus_Case_qml.cpp	f252e3927fc365b1
-583	976	7639112517888859	.rcc/qmlcache/appMotus_Case_qml.cpp.aotstats	f252e3927fc365b1
-583	976	7639112517888859	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp	f252e3927fc365b1
-583	976	7639112517888859	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.aotstats	f252e3927fc365b1
-601	978	7639112517888859	.rcc/qmlcache/appMotus_Bouton_qml.cpp	8b83501569f9bbec
-601	978	7639112517888859	.rcc/qmlcache/appMotus_Bouton_qml.cpp.aotstats	8b83501569f9bbec
+559	713	7639220563960287	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp	7b24443f6fb7ff9b
+714	932	7639093861245351	meta_types/qt6appmotus_debug_metatypes.json.gen	50d103f36eaebe91
+714	932	7639093861245351	meta_types/qt6appmotus_debug_metatypes.json	50d103f36eaebe91
+714	932	7639093861245351	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/qt6appmotus_debug_metatypes.json.gen	50d103f36eaebe91
+1593	7320	7639093867943225	CMakeFiles/appMotus.dir/appmotus_qmltyperegistrations.cpp.obj	1b248c12894e2c6e
+714	932	7639093861245351	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/qt6appmotus_debug_metatypes.json	50d103f36eaebe91
+932	1226	7639093863068451	appmotus_qmltyperegistrations.cpp	a65128c62049b556
+932	1226	7639093863068451	Motus/appMotus.qmltypes	a65128c62049b556
 601	978	7639112517888859	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp	8b83501569f9bbec
-601	978	7639112517888859	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp.aotstats	8b83501569f9bbec
-978	1685	7639112518201093	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp.obj	730848838a271f07
-1449	1695	7639112522926307	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp.obj	b860d43e3dc34fb5
-1369	5168	7639112522142977	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp.obj	30cdf2505aef4c8f
-1238	5170	7639112520701301	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.obj	1d8d7a2fb0e75c17
-1204	5293	7639112520388860	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.obj	323a36cadb9b22e4
+932	1226	7639093863068451	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appmotus_qmltyperegistrations.cpp	a65128c62049b556
+932	1226	7639093863068451	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/appMotus.qmltypes	a65128c62049b556
+541	1006	7639220566538343	.rcc/qmlcache/appMotus_Case_qml.cpp	f252e3927fc365b1
+541	1006	7639220566538343	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp	f252e3927fc365b1
 1188	5302	7639112520232900	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp.obj	70756d3da140a737
-5302	7556	7639112561478116	appMotus.exe	7c7c6477327467a5
+541	1006	7639220566538343	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.aotstats	f252e3927fc365b1
+525	1059	7639220567260791	.rcc/qmlcache/appMotus_Main_qml.cpp	313eb81157fe6576
+525	1059	7639220567260791	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp	313eb81157fe6576
+525	1059	7639220567260791	.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats	313eb81157fe6576
+525	1059	7639220567260791	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats	313eb81157fe6576
+1125	5791	7639220568270880	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp.obj	30cdf2505aef4c8f
+1561	1837	7639093867659512	CMakeFiles/appMotus.dir/appMotus_autogen/mocs_compilation.cpp.obj	12d8cd84b3bb0aa9
+1149	1393	7639220568508105	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp.obj	b860d43e3dc34fb5
+1097	5801	7639220567997007	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.obj	1d8d7a2fb0e75c17
+1059	6021	7639220567611255	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.obj	323a36cadb9b22e4
+601	978	7639112517888859	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp.aotstats	8b83501569f9bbec
+601	978	7639112517888859	.rcc/qmlcache/appMotus_Bouton_qml.cpp	8b83501569f9bbec
+601	978	7639112517888859	.rcc/qmlcache/appMotus_Bouton_qml.cpp.aotstats	8b83501569f9bbec
+167	483	7639221034170926	.qt/qml_imports/appMotus_build.cmake	708442a6efb3e956
+167	483	7639221034170926	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/qml_imports/appMotus_build.cmake	708442a6efb3e956
+483	1096	7639221034267296	appMotus_autogen/timestamp	e898ee6eb09485ae
+483	1096	7639221034267296	appMotus_autogen/mocs_compilation.cpp	e898ee6eb09485ae
+483	1096	7639221034267296	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/timestamp	e898ee6eb09485ae
+483	1096	7639221034267296	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/mocs_compilation.cpp	e898ee6eb09485ae
+1112	1212	7639221041347395	.qt/rcc/qrc_qmake_Motus.cpp	35e4ee822ab97fef
+1112	1212	7639221041347395	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp	35e4ee822ab97fef
+1148	1249	7639221041831978	.qt/rcc/qrc_appMotus_raw_qml_0.cpp	7b24443f6fb7ff9b
+1148	1249	7639221041831978	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp	7b24443f6fb7ff9b
+1097	1261	7639221040408178	meta_types/appMotus_json_file_list.txt	9219a4c76f33c8f2
+1097	1261	7639221040408178	meta_types/appMotus_json_file_list.txt.timestamp	9219a4c76f33c8f2
+1097	1261	7639221040408178	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/appMotus_json_file_list.txt	9219a4c76f33c8f2
+1097	1261	7639221040408178	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/meta_types/appMotus_json_file_list.txt.timestamp	9219a4c76f33c8f2
+1130	1384	7639221041791359	.rcc/qmlcache/appMotus_qmlcache_loader.cpp	ee8e5e3f63dcd499
+1130	1384	7639221041791359	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp	ee8e5e3f63dcd499
+1302	1642	7639221045441792	.rcc/qmlcache/appMotus_Bouton_qml.cpp	8b83501569f9bbec
+1302	1642	7639221045441792	.rcc/qmlcache/appMotus_Bouton_qml.cpp.aotstats	8b83501569f9bbec
+1302	1642	7639221045441792	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp	8b83501569f9bbec
+1302	1642	7639221045441792	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp.aotstats	8b83501569f9bbec
+1261	1647	7639221045441792	.rcc/qmlcache/appMotus_Main_qml.cpp	313eb81157fe6576
+1261	1647	7639221045441792	.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats	313eb81157fe6576
+1261	1647	7639221045441792	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp	313eb81157fe6576
+1261	1647	7639221045441792	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats	313eb81157fe6576
+1280	1654	7639221045431777	.rcc/qmlcache/appMotus_Case_qml.cpp	f252e3927fc365b1
+1280	1654	7639221045431777	.rcc/qmlcache/appMotus_Case_qml.cpp.aotstats	f252e3927fc365b1
+1280	1654	7639221045431777	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp	f252e3927fc365b1
+1280	1654	7639221045431777	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.aotstats	f252e3927fc365b1
+1327	1664	7639221045726425	.rcc/qmlcache/appMotus_Key_qml.cpp	42166a5847cccb98
+1327	1664	7639221045726425	.rcc/qmlcache/appMotus_Key_qml.cpp.aotstats	42166a5847cccb98
+1327	1664	7639221045726425	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp	42166a5847cccb98
+1327	1664	7639221045726425	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp.aotstats	42166a5847cccb98
+1664	1856	7639221046088379	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp.obj	730848838a271f07
+1743	1929	7639221046875843	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp.obj	b860d43e3dc34fb5
+1710	7928	7639221046545911	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.obj	1d8d7a2fb0e75c17
+1732	7930	7639221046767407	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp.obj	711b7ca2392af57
+1721	8006	7639221046658643	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp.obj	30cdf2505aef4c8f
+1684	8026	7639221046284067	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp.obj	70756d3da140a737
+1697	8027	7639221046412144	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.obj	323a36cadb9b22e4
+8028	10697	7639221109719525	appMotus.exe	3e1f20139a7cbe0f
+158	488	7639224174123605	.qt/appMotus_qml.txt	19d6e25073c985b8
+158	488	7639224174123605	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/appMotus_qml.txt	19d6e25073c985b8
+207	587	7639224175147693	.qt/qml_imports/appMotus_build.cmake	708442a6efb3e956
+207	587	7639224175147693	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/qml_imports/appMotus_build.cmake	708442a6efb3e956
+614	899	7639224178113344	.qt/rcc/qrc_appMotus_raw_qml_0.cpp	7b24443f6fb7ff9b
+614	899	7639224178113344	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp	7b24443f6fb7ff9b
+587	1116	7639224180162052	.rcc/qmlcache/appMotus_Main_qml.cpp	313eb81157fe6576
+587	1116	7639224180162052	.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats	313eb81157fe6576
+587	1116	7639224180162052	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp	313eb81157fe6576
+587	1116	7639224180162052	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats	313eb81157fe6576
+1143	1420	7639224180874459	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp.obj	b860d43e3dc34fb5
+1117	4411	7639224180624635	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.obj	323a36cadb9b22e4
+4411	5647	7639224213565901	appMotus.exe	3e1f20139a7cbe0f
+70	172	7639225571925454	.qt/appMotus_qml.txt	19d6e25073c985b8
+70	172	7639225571925454	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/appMotus_qml.txt	19d6e25073c985b8
+92	257	7639225572745005	.qt/qml_imports/appMotus_build.cmake	708442a6efb3e956
+92	257	7639225572745005	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/qml_imports/appMotus_build.cmake	708442a6efb3e956
+281	386	7639225574042291	.qt/rcc/qrc_appMotus_raw_qml_0.cpp	7b24443f6fb7ff9b
+281	386	7639225574042291	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp	7b24443f6fb7ff9b
+257	597	7639225575911865	.rcc/qmlcache/appMotus_Main_qml.cpp	313eb81157fe6576
+257	597	7639225575911865	.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats	313eb81157fe6576
+257	597	7639225575911865	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp	313eb81157fe6576
+257	597	7639225575911865	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats	313eb81157fe6576
+627	810	7639225576574646	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp.obj	b860d43e3dc34fb5
+597	3802	7639225576277446	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.obj	323a36cadb9b22e4
+3802	4436	7639225608322150	appMotus.exe	3e1f20139a7cbe0f
+62	152	7639226249496855	.qt/appMotus_qml.txt	19d6e25073c985b8
+62	152	7639226249496855	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/appMotus_qml.txt	19d6e25073c985b8
+79	241	7639226250346681	.qt/qml_imports/appMotus_build.cmake	708442a6efb3e956
+79	241	7639226250346681	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/qml_imports/appMotus_build.cmake	708442a6efb3e956
+270	423	7639226252168215	.qt/rcc/qrc_appMotus_raw_qml_0.cpp	7b24443f6fb7ff9b
+270	423	7639226252168215	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp	7b24443f6fb7ff9b
+241	583	7639226253661855	.rcc/qmlcache/appMotus_Main_qml.cpp	313eb81157fe6576
+241	583	7639226253661855	.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats	313eb81157fe6576
+241	583	7639226253661855	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp	313eb81157fe6576
+241	583	7639226253661855	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats	313eb81157fe6576
+606	827	7639226254151068	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp.obj	b860d43e3dc34fb5
+584	4210	7639226253924838	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.obj	323a36cadb9b22e4
+4210	5032	7639226290195517	appMotus.exe	3e1f20139a7cbe0f
+572	1043	7639260131853345	.qt/qml_imports/appMotus_build.cmake	708442a6efb3e956
+572	1043	7639260131853345	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/qml_imports/appMotus_build.cmake	708442a6efb3e956
+508	1085	7639260132171328	.qt/appMotus_qml.txt	19d6e25073c985b8
+508	1085	7639260132171328	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/appMotus_qml.txt	19d6e25073c985b8
+1168	1470	7639260136374219	.qt/rcc/qrc_appMotus_raw_qml_0.cpp	7b24443f6fb7ff9b
+1168	1470	7639260136374219	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp	7b24443f6fb7ff9b
+1131	1672	7639260138266321	.rcc/qmlcache/appMotus_Key_qml.cpp	42166a5847cccb98
+1131	1672	7639260138266321	.rcc/qmlcache/appMotus_Key_qml.cpp.aotstats	42166a5847cccb98
+1131	1672	7639260138266321	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp	42166a5847cccb98
+1131	1672	7639260138266321	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp.aotstats	42166a5847cccb98
+1086	1943	7639260140867057	.rcc/qmlcache/appMotus_Main_qml.cpp	313eb81157fe6576
+1086	1943	7639260140867057	.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats	313eb81157fe6576
+1086	1943	7639260140867057	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp	313eb81157fe6576
+1086	1943	7639260140867057	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats	313eb81157fe6576
+2021	2388	7639260141963111	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp.obj	b860d43e3dc34fb5
+1995	5378	7639260141769395	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp.obj	711b7ca2392af57
+1944	5682	7639260141261104	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.obj	323a36cadb9b22e4
+5682	7083	7639260178646916	appMotus.exe	3e1f20139a7cbe0f
+96	342	7639264352401613	.qt/qml_imports/appMotus_build.cmake	708442a6efb3e956
+96	342	7639264352401613	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/qml_imports/appMotus_build.cmake	708442a6efb3e956
+78	574	7639264354719878	.qt/appMotus_qml.txt	19d6e25073c985b8
+78	574	7639264354719878	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/appMotus_qml.txt	19d6e25073c985b8
+595	729	7639264356363582	.qt/rcc/qrc_appMotus_raw_qml_0.cpp	7b24443f6fb7ff9b
+595	729	7639264356363582	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp	7b24443f6fb7ff9b
+574	968	7639264358379934	.rcc/qmlcache/appMotus_Main_qml.cpp	313eb81157fe6576
+574	968	7639264358379934	.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats	313eb81157fe6576
+574	968	7639264358379934	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp	313eb81157fe6576
+574	968	7639264358379934	D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats	313eb81157fe6576
+994	1232	7639264359107390	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp.obj	b860d43e3dc34fb5
+968	4254	7639264358813988	CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.obj	323a36cadb9b22e4
+4255	5032	7639264391741408	appMotus.exe	3e1f20139a7cbe0f
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/appMotus_qml.cmake b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/appMotus_qml.cmake
index 49c8a05ab9c9952ad06b6783b691f256d97f2aa5..977985a6c8c3c5acf51765fdb2826844b9927767 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/appMotus_qml.cmake
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/appMotus_qml.cmake
@@ -8,6 +8,8 @@ set(src_and_dest_list
     "D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/Case.qml"
     "D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Bouton.qml"
     "D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/Bouton.qml"
+    "D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Key.qml"
+    "D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/Key.qml"
 
 )
 set(timestamp_file "D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/appMotus_qml.txt")
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/appMotus_raw_qml_0.qrc b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/appMotus_raw_qml_0.qrc
index 67dd349940d67c294d18504536f83701ec40d927..714460c744ce230aa040bf1659623906403add3d 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/appMotus_raw_qml_0.qrc
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/appMotus_raw_qml_0.qrc
@@ -3,6 +3,7 @@
     <file alias="Main.qml">D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Main.qml</file>
     <file alias="Case.qml">D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Case.qml</file>
     <file alias="Bouton.qml">D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Bouton.qml</file>
+    <file alias="Key.qml">D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Key.qml</file>
     <file alias="Ressources.qrc">D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Ressources.qrc</file>
   </qresource>
 </RCC>
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp.aotstats b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp.aotstats
index 2ef974cf8daf9a86b6a876d31a33532ff51a97f8..c2110ccd723a10b0e3b88f972184a5b4b1445fcf 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp.aotstats
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp.aotstats
@@ -6,11 +6,7 @@
                     {
                         "codegenSuccessfull": true,
                         "column": 34,
-<<<<<<< HEAD
-                        "durationMicroseconds": 286,
-=======
-                        "durationMicroseconds": 323,
->>>>>>> 6cc66958136fdbb18439db80c352afb1fe61b8e5
+                        "durationMicroseconds": 467,
                         "errorMessage": "",
                         "functionName": "horizontalAlignment",
                         "line": 24
@@ -18,21 +14,13 @@
                     {
                         "codegenSuccessfull": true,
                         "column": 32,
-<<<<<<< HEAD
-                        "durationMicroseconds": 66,
-=======
-                        "durationMicroseconds": 107,
->>>>>>> 6cc66958136fdbb18439db80c352afb1fe61b8e5
+                        "durationMicroseconds": 187,
                         "errorMessage": "",
                         "functionName": "verticalAlignment",
                         "line": 25
                     }
                 ],
-<<<<<<< HEAD
-                "filepath": "C:/Users/pierr/OneDrive/Documents/GitHub/motusetbouchecousue/Motus/Bouton.qml"
-=======
                 "filepath": "D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Bouton.qml"
->>>>>>> 6cc66958136fdbb18439db80c352afb1fe61b8e5
             }
         ],
         "moduleId": "Motus(appMotus)"
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp
index 049f441c808fdfa1534f8b74727bedfb7a9cef3c..52aa3928f2f8026f7027f7f7ae868992d9fdb6af 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp
@@ -23,18 +23,18 @@ extern const unsigned char qmlData alignas(16) [] = {
 0x71,0x76,0x34,0x63,0x64,0x61,0x74,0x61,
 0x42,0x0,0x0,0x0,0x2,0x8,0x6,0x0,
 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-0xa0,0x6,0x0,0x0,0x30,0x61,0x38,0x31,
+0xf0,0x6,0x0,0x0,0x30,0x61,0x38,0x31,
 0x33,0x39,0x63,0x35,0x37,0x34,0x66,0x65,
 0x31,0x35,0x30,0x61,0x62,0x61,0x39,0x32,
 0x64,0x35,0x66,0x32,0x34,0x38,0x34,0x61,
 0x38,0x66,0x33,0x66,0x64,0x62,0x37,0x37,
 0x34,0x39,0x37,0x37,0x0,0x0,0x0,0x0,
-0x0,0x0,0x0,0x0,0x72,0x9e,0xd,0x56,
-0x67,0x78,0xe4,0xf3,0x2b,0x4,0x88,0x7e,
-0xe,0x2a,0x75,0x76,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0xb1,0xd0,0xa4,0xef,
+0x5,0x8,0x3,0x36,0xce,0xa4,0xcb,0x27,
+0x26,0x25,0x20,0xcf,0x0,0x0,0x0,0x0,
 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,
-0x13,0x0,0x0,0x0,0xe0,0x1,0x0,0x0,
+0x15,0x0,0x0,0x0,0xe0,0x1,0x0,0x0,
 0x2,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,
 0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,
 0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,
@@ -50,46 +50,47 @@ extern const unsigned char qmlData alignas(16) [] = {
 0x0,0x0,0x0,0x0,0x40,0x1,0x0,0x0,
 0x0,0x0,0x0,0x0,0x40,0x1,0x0,0x0,
 0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
-0x0,0x0,0x0,0x0,0x38,0x4,0x0,0x0,
+0x0,0x0,0x0,0x0,0x70,0x4,0x0,0x0,
 0x40,0x1,0x0,0x0,0x90,0x1,0x0,0x0,
-0x83,0x0,0x0,0x0,0x10,0x1,0x0,0x0,
-0x83,0x0,0x0,0x0,0x20,0x1,0x0,0x0,
+0xa3,0x0,0x0,0x0,0x30,0x1,0x0,0x0,
+0xa3,0x0,0x0,0x0,0x40,0x1,0x0,0x0,
 0x0,0x0,0x0,0x0,0x0,0xc0,0xa3,0x3f,
 0x0,0x0,0x0,0x0,0x0,0x40,0xf5,0x7f,
 0x0,0x0,0x0,0x0,0x0,0x40,0xcd,0x3f,
-0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x44,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
-0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x38,0x0,0x0,0x0,0x0,0x0,0x1,0x0,
 0xff,0xff,0xff,0xff,0x7,0x0,0x0,0x0,
-0x10,0x0,0x90,0x0,0x0,0x0,0x0,0x0,
+0x12,0x0,0x90,0x0,0x0,0x0,0x0,0x0,
 0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,
-0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,
 0x1,0x0,0x0,0x0,0x2e,0x0,0x3c,0x1,
 0x18,0x6,0x2,0x0,0x0,0x0,0x0,0x0,
 0x44,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
-0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x38,0x0,0x0,0x0,0x0,0x0,0x1,0x0,
 0xff,0xff,0xff,0xff,0x7,0x0,0x0,0x0,
-0x11,0x0,0x90,0x0,0x0,0x0,0x0,0x0,
+0x13,0x0,0x90,0x0,0x0,0x0,0x0,0x0,
 0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,
-0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,
 0x1,0x0,0x0,0x0,0x2e,0x2,0x3c,0x3,
 0x18,0x6,0x2,0x0,0x0,0x0,0x0,0x0,
-0x30,0x2,0x0,0x0,0x38,0x2,0x0,0x0,
-0x50,0x2,0x0,0x0,0x60,0x2,0x0,0x0,
-0x70,0x2,0x0,0x0,0x88,0x2,0x0,0x0,
-0xa0,0x2,0x0,0x0,0xb0,0x2,0x0,0x0,
-0xc0,0x2,0x0,0x0,0xd0,0x2,0x0,0x0,
-0xd8,0x2,0x0,0x0,0xe0,0x2,0x0,0x0,
-0xf0,0x2,0x0,0x0,0x8,0x3,0x0,0x0,
-0x38,0x3,0x0,0x0,0x88,0x3,0x0,0x0,
-0xb0,0x3,0x0,0x0,0xf8,0x3,0x0,0x0,
-0x18,0x4,0x0,0x0,0x0,0x0,0x0,0x0,
+0x38,0x2,0x0,0x0,0x40,0x2,0x0,0x0,
+0x58,0x2,0x0,0x0,0x68,0x2,0x0,0x0,
+0x78,0x2,0x0,0x0,0x90,0x2,0x0,0x0,
+0xb0,0x2,0x0,0x0,0xc0,0x2,0x0,0x0,
+0xd0,0x2,0x0,0x0,0xe8,0x2,0x0,0x0,
+0xf8,0x2,0x0,0x0,0x8,0x3,0x0,0x0,
+0x10,0x3,0x0,0x0,0x18,0x3,0x0,0x0,
+0x28,0x3,0x0,0x0,0x40,0x3,0x0,0x0,
+0x70,0x3,0x0,0x0,0xc0,0x3,0x0,0x0,
+0xe8,0x3,0x0,0x0,0x30,0x4,0x0,0x0,
+0x50,0x4,0x0,0x0,0x0,0x0,0x0,0x0,
 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x7,0x0,0x0,0x0,0x51,0x0,0x74,0x0,
 0x51,0x0,0x75,0x0,0x69,0x0,0x63,0x0,
@@ -101,11 +102,17 @@ extern const unsigned char qmlData alignas(16) [] = {
 0x6,0x0,0x0,0x0,0x68,0x0,0x65,0x0,
 0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,
 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xa,0x0,0x0,0x0,0x5f,0x0,0x74,0x0,
+0x65,0x0,0x78,0x0,0x74,0x0,0x43,0x0,
+0x6f,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x5f,0x0,0x74,0x0,
+0x65,0x0,0x78,0x0,0x74,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x63,0x0,0x6f,0x0,
+0x6c,0x0,0x6f,0x0,0x72,0x0,0x0,0x0,
 0x9,0x0,0x0,0x0,0x5f,0x0,0x74,0x0,
 0x65,0x0,0x78,0x0,0x74,0x0,0x54,0x0,
 0x65,0x0,0x78,0x0,0x74,0x0,0x0,0x0,
-0x5,0x0,0x0,0x0,0x5f,0x0,0x74,0x0,
-0x65,0x0,0x78,0x0,0x74,0x0,0x0,0x0,
 0x4,0x0,0x0,0x0,0x74,0x0,0x65,0x0,
 0x78,0x0,0x74,0x0,0x0,0x0,0x0,0x0,
 0x4,0x0,0x0,0x0,0x54,0x0,0x65,0x0,
@@ -160,64 +167,67 @@ extern const unsigned char qmlData alignas(16) [] = {
 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
 0x0,0x0,0x0,0x0,0x1,0x0,0x10,0x0,
 0xff,0xff,0x0,0x0,0x30,0x0,0x0,0x0,
-0xe0,0x0,0x0,0x0,0xf8,0x1,0x0,0x0,
+0xf8,0x0,0x0,0x0,0x10,0x2,0x0,0x0,
 0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,
 0x0,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
 0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
-0x1,0x0,0x0,0x0,0x68,0x0,0x0,0x0,
-0x68,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
-0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-0xb0,0x0,0x0,0x0,0x3,0x0,0x10,0x0,
-0x0,0x0,0x0,0x0,0xb0,0x0,0x0,0x0,
-0x0,0x0,0x0,0x0,0xb0,0x0,0x0,0x0,
+0x2,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,
+0x7c,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xc4,0x0,0x0,0x0,0x3,0x0,0x10,0x0,
+0x0,0x0,0x0,0x0,0xc4,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0xc4,0x0,0x0,0x0,
 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
 0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
-0x6,0x0,0x50,0x0,0x6,0x0,0xf0,0x1,
-0x4,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
-0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-0x5,0x0,0x50,0x0,0x5,0x0,0xd0,0x0,
-0x3,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
-0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-0x4,0x0,0x50,0x0,0x4,0x0,0xc0,0x0,
-0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
-0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-0x8,0x0,0x50,0x0,0x8,0x0,0x50,0x0,
+0x6,0x0,0x50,0x0,0x6,0x0,0x0,0x2,
 0x8,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
+0x9,0x0,0x0,0x0,0x7,0x0,0x50,0x0,
+0x7,0x0,0xf0,0x1,0x4,0x0,0x0,0x0,
+0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x5,0x0,0x50,0x0,
+0x5,0x0,0xd0,0x0,0x3,0x0,0x0,0x0,
+0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x4,0x0,0x50,0x0,
+0x4,0x0,0xc0,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x8,0x0,0x1,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0xa,0x0,0x50,0x0,
+0xa,0x0,0x50,0x0,0x0,0x0,0x0,0x0,
+0xa,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
 0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,
 0x0,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
 0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
 0x0,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
 0x54,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-0x14,0x1,0x0,0x0,0x8,0x0,0x50,0x0,
-0x9,0x0,0x90,0x0,0x14,0x1,0x0,0x0,
+0x14,0x1,0x0,0x0,0xa,0x0,0x50,0x0,
+0xb,0x0,0x90,0x0,0x14,0x1,0x0,0x0,
 0x0,0x0,0x0,0x0,0x14,0x1,0x0,0x0,
-0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,
 0x0,0x0,0x7,0x0,0x1,0x0,0x0,0x0,
-0x0,0x0,0x0,0x0,0x11,0x0,0x90,0x0,
-0x11,0x0,0xc0,0x1,0xd,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x13,0x0,0x90,0x0,
+0x13,0x0,0xc0,0x1,0xf,0x0,0x0,0x0,
 0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,
-0x0,0x0,0x0,0x0,0x10,0x0,0x90,0x0,
-0x10,0x0,0xe0,0x1,0x7,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x12,0x0,0x90,0x0,
+0x12,0x0,0xe0,0x1,0x9,0x0,0x0,0x0,
 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,
-0x0,0x0,0x0,0x0,0xe,0x0,0x90,0x0,
-0xe,0x0,0xf0,0x0,0x4,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x10,0x0,0x90,0x0,
+0x10,0x0,0xf0,0x0,0x4,0x0,0x0,0x0,
 0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,
-0x0,0x0,0x0,0x0,0xd,0x0,0x90,0x0,
-0xd,0x0,0x10,0x1,0x3,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0xf,0x0,0x90,0x0,
+0xf,0x0,0x10,0x1,0x3,0x0,0x0,0x0,
 0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,
-0x0,0x0,0x0,0x0,0xc,0x0,0x90,0x0,
-0xc,0x0,0x0,0x1,0xa,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0xe,0x0,0x90,0x0,
+0xe,0x0,0x0,0x1,0xc,0x0,0x0,0x0,
 0x0,0x0,0x2,0x0,0x1,0x0,0x0,0x0,
-0x0,0x0,0x0,0x0,0xb,0x0,0x90,0x0,
-0xb,0x0,0xc0,0x0,0x9,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0xd,0x0,0x90,0x0,
+0xd,0x0,0xc0,0x0,0xb,0x0,0x0,0x0,
 0x0,0x0,0x2,0x0,0x1,0x0,0x0,0x0,
-0x0,0x0,0x0,0x0,0xa,0x0,0x90,0x0,
-0xa,0x0,0xc0,0x0,0xb,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0xc,0x0,0x90,0x0,
+0xc,0x0,0xc0,0x0,0xd,0x0,0x0,0x0,
 0x0,0x0,0xa,0x0,0x2,0x0,0x0,0x0,
-0x0,0x0,0x0,0x0,0xf,0x0,0x90,0x0,
-0xf,0x0,0xe0,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x11,0x0,0x90,0x0,
+0x11,0x0,0xe0,0x0,0x0,0x0,0x0,0x0,
 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,
 0x0,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
@@ -225,13 +235,13 @@ extern const unsigned char qmlData alignas(16) [] = {
 0x0,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
 0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,
 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-0x6c,0x0,0x0,0x0,0xf,0x0,0x90,0x0,
+0x6c,0x0,0x0,0x0,0x11,0x0,0x90,0x0,
 0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,
 0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,
-0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,
 0x0,0x0,0x2,0x0,0x2,0x0,0x0,0x0,
-0x0,0x0,0x0,0x0,0xf,0x0,0xe0,0x0,
-0xf,0x0,0x90,0x1,0x0,0x0,0x0,0x0
+0x0,0x0,0x0,0x0,0x11,0x0,0xe0,0x0,
+0x11,0x0,0x90,0x1,0x0,0x0,0x0,0x0
 };
 QT_WARNING_PUSH
 QT_WARNING_DISABLE_MSVC(4573)
@@ -246,7 +256,7 @@ extern const QQmlPrivate::AOTCompiledFunction aotBuiltFunctions[] = {
     [](const QQmlPrivate::AOTCompiledContext *aotContext, void **argv) {
 Q_UNUSED(aotContext)
 Q_UNUSED(argv)
-// expression for horizontalAlignment at line 16, column 9
+// expression for horizontalAlignment at line 18, column 9
 int r2_0;
 {
 }
@@ -290,7 +300,7 @@ return;
     [](const QQmlPrivate::AOTCompiledContext *aotContext, void **argv) {
 Q_UNUSED(aotContext)
 Q_UNUSED(argv)
-// expression for verticalAlignment at line 17, column 9
+// expression for verticalAlignment at line 19, column 9
 int r2_0;
 {
 }
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.aotstats b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.aotstats
index 1ba807235a765bdf2ca922fd6164c74af9b35855..765bfcdf01a067831a70f97b8b2b122ee3b04419 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.aotstats
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.aotstats
@@ -6,18 +6,18 @@
                     {
                         "codegenSuccessfull": true,
                         "column": 30,
-                        "durationMicroseconds": 288,
+                        "durationMicroseconds": 302,
                         "errorMessage": "",
                         "functionName": "horizontalAlignment",
-                        "line": 16
+                        "line": 18
                     },
                     {
                         "codegenSuccessfull": true,
                         "column": 28,
-                        "durationMicroseconds": 132,
+                        "durationMicroseconds": 149,
                         "errorMessage": "",
                         "functionName": "verticalAlignment",
-                        "line": 17
+                        "line": 19
                     }
                 ],
                 "filepath": "D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Case.qml"
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..f3567fa24a3856c257ea5792d487011ef9e38e2f
--- /dev/null
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp
@@ -0,0 +1,551 @@
+// /qt/qml/Motus/Key.qml
+#include <QtQml/qqmlprivate.h>
+#include <QtCore/qdatetime.h>
+#include <QtCore/qobject.h>
+#include <QtCore/qstring.h>
+#include <QtCore/qstringlist.h>
+#include <QtCore/qtimezone.h>
+#include <QtCore/qurl.h>
+#include <QtCore/qvariant.h>
+#include <QtQml/qjsengine.h>
+#include <QtQml/qjsprimitivevalue.h>
+#include <QtQml/qjsvalue.h>
+#include <QtQml/qqmlcomponent.h>
+#include <QtQml/qqmlcontext.h>
+#include <QtQml/qqmlengine.h>
+#include <QtQml/qqmllist.h>
+#include <type_traits>
+namespace QmlCacheGeneratedCode {
+namespace _qt_qml_Motus_Key_qml {
+extern const unsigned char qmlData alignas(16) [];
+extern const unsigned char qmlData alignas(16) [] = {
+
+0x71,0x76,0x34,0x63,0x64,0x61,0x74,0x61,
+0x42,0x0,0x0,0x0,0x2,0x8,0x6,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x1c,0xb,0x0,0x0,0x30,0x61,0x38,0x31,
+0x33,0x39,0x63,0x35,0x37,0x34,0x66,0x65,
+0x31,0x35,0x30,0x61,0x62,0x61,0x39,0x32,
+0x64,0x35,0x66,0x32,0x34,0x38,0x34,0x61,
+0x38,0x66,0x33,0x66,0x64,0x62,0x37,0x37,
+0x34,0x39,0x37,0x37,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x88,0xae,0xc2,0x1a,
+0x40,0xbc,0x63,0x41,0xa,0x6e,0xcd,0x2b,
+0x2d,0xb2,0x48,0x91,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,
+0x24,0x0,0x0,0x0,0xa8,0x2,0x0,0x0,
+0x4,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x8,0x1,0x0,0x0,
+0x0,0x0,0x0,0x0,0x8,0x1,0x0,0x0,
+0x0,0x0,0x0,0x0,0x8,0x1,0x0,0x0,
+0x6,0x0,0x0,0x0,0x8,0x1,0x0,0x0,
+0x0,0x0,0x0,0x0,0x20,0x1,0x0,0x0,
+0x6,0x0,0x0,0x0,0x20,0x1,0x0,0x0,
+0x0,0x0,0x0,0x0,0x50,0x1,0x0,0x0,
+0x1,0x0,0x0,0x0,0x50,0x1,0x0,0x0,
+0x0,0x0,0x0,0x0,0x68,0x1,0x0,0x0,
+0x0,0x0,0x0,0x0,0x68,0x1,0x0,0x0,
+0x0,0x0,0x0,0x0,0x68,0x1,0x0,0x0,
+0x0,0x0,0x0,0x0,0x68,0x1,0x0,0x0,
+0x0,0x0,0x0,0x0,0x68,0x1,0x0,0x0,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0xb0,0x6,0x0,0x0,
+0x68,0x1,0x0,0x0,0xb8,0x1,0x0,0x0,
+0x8,0x2,0x0,0x0,0x58,0x2,0x0,0x0,
+0x13,0x2,0x0,0x0,0x33,0x1,0x0,0x0,
+0x20,0x2,0x0,0x0,0x33,0x1,0x0,0x0,
+0x30,0x2,0x0,0x0,0x13,0x2,0x0,0x0,
+0x0,0x0,0x0,0x0,0x0,0xc0,0xa4,0x3f,
+0x0,0x0,0x0,0x0,0x0,0x40,0xac,0x3f,
+0x0,0x0,0x0,0x0,0x0,0x40,0xf5,0x3f,
+0x0,0x0,0x0,0x0,0x0,0x40,0xc1,0x3f,
+0x0,0x0,0x0,0x0,0x0,0x40,0xcc,0x3f,
+0x0,0x0,0x0,0x0,0x0,0x40,0xb0,0x3f,
+0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x44,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
+0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x38,0x0,0x0,0x0,0x0,0x0,0x1,0x0,
+0xff,0xff,0xff,0xff,0x7,0x0,0x0,0x0,
+0xf,0x0,0x90,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x2e,0x0,0x18,0x6,
+0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x44,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
+0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x38,0x0,0x0,0x0,0x0,0x0,0x1,0x0,
+0xff,0xff,0xff,0xff,0x7,0x0,0x0,0x0,
+0x1a,0x0,0xd0,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x2e,0x1,0x3c,0x2,
+0x18,0x6,0x2,0x0,0x0,0x0,0x0,0x0,
+0x44,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
+0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x38,0x0,0x0,0x0,0x0,0x0,0x1,0x0,
+0xff,0xff,0xff,0xff,0x7,0x0,0x0,0x0,
+0x1b,0x0,0xd0,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x2e,0x3,0x3c,0x4,
+0x18,0x6,0x2,0x0,0x0,0x0,0x0,0x0,
+0x44,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
+0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x38,0x0,0x0,0x0,0x0,0x0,0x1,0x0,
+0xff,0xff,0xff,0xff,0x7,0x0,0x0,0x0,
+0x18,0x0,0xd0,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x2e,0x5,0x18,0x6,
+0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x38,0x3,0x0,0x0,0x40,0x3,0x0,0x0,
+0x58,0x3,0x0,0x0,0x68,0x3,0x0,0x0,
+0x78,0x3,0x0,0x0,0x88,0x3,0x0,0x0,
+0xa0,0x3,0x0,0x0,0xb8,0x3,0x0,0x0,
+0xc8,0x3,0x0,0x0,0xd8,0x3,0x0,0x0,
+0xe8,0x3,0x0,0x0,0xf8,0x3,0x0,0x0,
+0x10,0x4,0x0,0x0,0x28,0x4,0x0,0x0,
+0x38,0x4,0x0,0x0,0x50,0x4,0x0,0x0,
+0x68,0x4,0x0,0x0,0x80,0x4,0x0,0x0,
+0x90,0x4,0x0,0x0,0xc0,0x4,0x0,0x0,
+0xd0,0x4,0x0,0x0,0xd8,0x4,0x0,0x0,
+0xe0,0x4,0x0,0x0,0xf8,0x4,0x0,0x0,
+0x0,0x5,0x0,0x0,0x10,0x5,0x0,0x0,
+0x28,0x5,0x0,0x0,0x58,0x5,0x0,0x0,
+0xa8,0x5,0x0,0x0,0xd0,0x5,0x0,0x0,
+0x18,0x6,0x0,0x0,0x30,0x6,0x0,0x0,
+0x48,0x6,0x0,0x0,0x58,0x6,0x0,0x0,
+0x70,0x6,0x0,0x0,0x90,0x6,0x0,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x7,0x0,0x0,0x0,0x51,0x0,0x74,0x0,
+0x51,0x0,0x75,0x0,0x69,0x0,0x63,0x0,
+0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x4,0x0,0x0,0x0,0x49,0x0,0x74,0x0,
+0x65,0x0,0x6d,0x0,0x0,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x5f,0x0,0x69,0x0,
+0x74,0x0,0x65,0x0,0x6d,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x77,0x0,0x69,0x0,
+0x64,0x0,0x74,0x0,0x68,0x0,0x0,0x0,
+0x6,0x0,0x0,0x0,0x68,0x0,0x65,0x0,
+0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9,0x0,0x0,0x0,0x6c,0x0,0x61,0x0,
+0x62,0x0,0x65,0x0,0x6c,0x0,0x54,0x0,
+0x65,0x0,0x78,0x0,0x74,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x6c,0x0,0x61,0x0,
+0x62,0x0,0x65,0x0,0x6c,0x0,0x0,0x0,
+0x4,0x0,0x0,0x0,0x74,0x0,0x65,0x0,
+0x78,0x0,0x74,0x0,0x0,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x66,0x0,0x6f,0x0,
+0x63,0x0,0x75,0x0,0x73,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x73,0x0,0x63,0x0,
+0x61,0x0,0x6c,0x0,0x65,0x0,0x0,0x0,
+0x9,0x0,0x0,0x0,0x52,0x0,0x65,0x0,
+0x63,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,
+0x67,0x0,0x6c,0x0,0x65,0x0,0x0,0x0,
+0x9,0x0,0x0,0x0,0x72,0x0,0x65,0x0,
+0x63,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,
+0x67,0x0,0x6c,0x0,0x65,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x63,0x0,0x6f,0x0,
+0x6c,0x0,0x6f,0x0,0x72,0x0,0x0,0x0,
+0x7,0x0,0x0,0x0,0x23,0x0,0x37,0x0,
+0x61,0x0,0x37,0x0,0x61,0x0,0x37,0x0,
+0x61,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x6,0x0,0x0,0x0,0x72,0x0,0x61,0x0,
+0x64,0x0,0x69,0x0,0x75,0x0,0x73,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x7,0x0,0x0,0x0,0x61,0x0,0x6e,0x0,
+0x63,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,
+0x73,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x4,0x0,0x0,0x0,0x66,0x0,0x69,0x0,
+0x6c,0x0,0x6c,0x0,0x0,0x0,0x0,0x0,
+0x13,0x0,0x0,0x0,0x65,0x0,0x78,0x0,
+0x70,0x0,0x72,0x0,0x65,0x0,0x73,0x0,
+0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,
+0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,
+0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,
+0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x4,0x0,0x0,0x0,0x54,0x0,0x65,0x0,
+0x78,0x0,0x74,0x0,0x0,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x78,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x79,0x0,0x0,0x0,
+0x7,0x0,0x0,0x0,0x23,0x0,0x66,0x0,
+0x66,0x0,0x66,0x0,0x66,0x0,0x66,0x0,
+0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x41,0x0,0x0,0x0,
+0x4,0x0,0x0,0x0,0x66,0x0,0x6f,0x0,
+0x6e,0x0,0x74,0x0,0x0,0x0,0x0,0x0,
+0x9,0x0,0x0,0x0,0x70,0x0,0x69,0x0,
+0x78,0x0,0x65,0x0,0x6c,0x0,0x53,0x0,
+0x69,0x0,0x7a,0x0,0x65,0x0,0x0,0x0,
+0x13,0x0,0x0,0x0,0x68,0x0,0x6f,0x0,
+0x72,0x0,0x69,0x0,0x7a,0x0,0x6f,0x0,
+0x6e,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,
+0x41,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,
+0x6e,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,
+0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x22,0x0,0x0,0x0,0x65,0x0,0x78,0x0,
+0x70,0x0,0x72,0x0,0x65,0x0,0x73,0x0,
+0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,
+0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,
+0x20,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,
+0x69,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,
+0x74,0x0,0x61,0x0,0x6c,0x0,0x41,0x0,
+0x6c,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,
+0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x11,0x0,0x0,0x0,0x76,0x0,0x65,0x0,
+0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0,
+0x61,0x0,0x6c,0x0,0x41,0x0,0x6c,0x0,
+0x69,0x0,0x67,0x0,0x6e,0x0,0x6d,0x0,
+0x65,0x0,0x6e,0x0,0x74,0x0,0x0,0x0,
+0x20,0x0,0x0,0x0,0x65,0x0,0x78,0x0,
+0x70,0x0,0x72,0x0,0x65,0x0,0x73,0x0,
+0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,
+0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,
+0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,
+0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,
+0x6c,0x0,0x41,0x0,0x6c,0x0,0x69,0x0,
+0x67,0x0,0x6e,0x0,0x6d,0x0,0x65,0x0,
+0x6e,0x0,0x74,0x0,0x0,0x0,0x0,0x0,
+0x6,0x0,0x0,0x0,0x66,0x0,0x61,0x0,
+0x6d,0x0,0x69,0x0,0x6c,0x0,0x79,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x6,0x0,0x0,0x0,0x54,0x0,0x61,0x0,
+0x68,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x4,0x0,0x0,0x0,0x62,0x0,0x6f,0x0,
+0x6c,0x0,0x64,0x0,0x0,0x0,0x0,0x0,
+0x6,0x0,0x0,0x0,0x70,0x0,0x61,0x0,
+0x72,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xc,0x0,0x0,0x0,0x41,0x0,0x6c,0x0,
+0x69,0x0,0x67,0x0,0x6e,0x0,0x48,0x0,
+0x43,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,
+0x65,0x0,0x72,0x0,0x0,0x0,0x0,0x0,
+0xc,0x0,0x0,0x0,0x41,0x0,0x6c,0x0,
+0x69,0x0,0x67,0x0,0x6e,0x0,0x56,0x0,
+0x43,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,
+0x65,0x0,0x72,0x0,0x0,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x10,0x0,0x0,0x0,
+0x6,0x0,0x0,0x0,0x24,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x1,0x0,0x10,0x0,
+0xff,0xff,0x0,0x0,0x3c,0x0,0x0,0x0,
+0x1c,0x1,0x0,0x0,0xd4,0x1,0x0,0x0,
+0x44,0x2,0x0,0x0,0x5c,0x3,0x0,0x0,
+0xcc,0x3,0x0,0x0,0x2,0x0,0x0,0x0,
+0x3,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
+0x68,0x0,0x0,0x0,0x68,0x0,0x0,0x0,
+0x0,0x0,0x5,0x0,0x68,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0xe0,0x0,0x0,0x0,
+0x3,0x0,0x10,0x0,0x4,0x0,0x50,0x0,
+0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
+0x8,0x0,0x0,0x0,0x7,0x0,0x50,0x0,
+0x7,0x0,0xf0,0x1,0xa,0x0,0x0,0x0,
+0x0,0x0,0x2,0x0,0x2,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9,0x0,0x50,0x0,
+0x9,0x0,0xc0,0x0,0x9,0x0,0x0,0x0,
+0x0,0x0,0x1,0x0,0x1,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x8,0x0,0x50,0x0,
+0x8,0x0,0xc0,0x0,0x5,0x0,0x0,0x0,
+0x0,0x0,0x2,0x0,0x1,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x6,0x0,0x50,0x0,
+0x6,0x0,0xd0,0x0,0x4,0x0,0x0,0x0,
+0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x5,0x0,0x50,0x0,
+0x5,0x0,0xc0,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x8,0x0,0x1,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0xb,0x0,0x50,0x0,
+0xb,0x0,0x50,0x0,0xb,0x0,0x0,0x0,
+0xc,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x4,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0xb4,0x0,0x0,0x0,
+0xb,0x0,0x50,0x0,0xc,0x0,0x90,0x0,
+0xb4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xb4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xf,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xe,0x0,0x90,0x0,0xe,0x0,0x10,0x1,
+0xd,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,
+0xd,0x0,0x90,0x0,0xd,0x0,0x0,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x12,0x0,0x90,0x0,0x12,0x0,0x90,0x0,
+0x10,0x0,0x0,0x0,0x0,0x0,0xa,0x0,
+0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xf,0x0,0x90,0x0,0xf,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x1,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,
+0xf,0x0,0x90,0x0,0x0,0x0,0x0,0x0,
+0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x11,0x0,0x0,0x0,0x0,0x0,0x7,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xf,0x0,0x10,0x1,0xf,0x0,0x70,0x1,
+0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,
+0x7,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x8,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x14,0x1,0x0,0x0,
+0x12,0x0,0x90,0x0,0x13,0x0,0xd0,0x0,
+0x14,0x1,0x0,0x0,0x0,0x0,0x0,0x0,
+0x14,0x1,0x0,0x0,0x0,0x0,0x0,0x0,
+0x1c,0x0,0x0,0x0,0x0,0x0,0x7,0x0,
+0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x1b,0x0,0xd0,0x0,0x1b,0x0,0x0,0x2,
+0x1a,0x0,0x0,0x0,0x0,0x0,0x7,0x0,
+0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x1a,0x0,0xd0,0x0,0x1a,0x0,0x20,0x2,
+0x8,0x0,0x0,0x0,0x0,0x0,0x5,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x17,0x0,0xd0,0x0,0x17,0x0,0x30,0x1,
+0xd,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,
+0x16,0x0,0xd0,0x0,0x16,0x0,0x40,0x1,
+0x15,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x15,0x0,0xd0,0x0,0x15,0x0,0x0,0x1,
+0x14,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x14,0x0,0xd0,0x0,0x14,0x0,0x0,0x1,
+0x18,0x0,0x0,0x0,0x0,0x0,0xa,0x0,
+0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x19,0x0,0xd0,0x0,0x19,0x0,0x20,0x1,
+0x10,0x0,0x0,0x0,0x0,0x0,0xa,0x0,
+0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x18,0x0,0xd0,0x0,0x18,0x0,0x50,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x1,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,
+0x18,0x0,0xd0,0x0,0x0,0x0,0x0,0x0,
+0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x11,0x0,0x0,0x0,0x0,0x0,0x7,0x0,
+0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x18,0x0,0x50,0x1,0x18,0x0,0xb0,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0x19,0x0,0xd0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x20,0x0,0x0,0x0,0x0,0x0,0x1,0x0,
+0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x1d,0x0,0x20,0x1,0x1d,0x0,0x80,0x1,
+0x1e,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,
+0x1c,0x0,0x20,0x1,0x1c,0x0,0xa0,0x1,
+0x19,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x19,0x0,0x20,0x1,0x19,0x0,0xd0,0x1,
+0x0,0x0,0x0,0x0
+};
+QT_WARNING_PUSH
+QT_WARNING_DISABLE_MSVC(4573)
+extern const QQmlPrivate::AOTCompiledFunction aotBuiltFunctions[];
+extern const QQmlPrivate::AOTCompiledFunction aotBuiltFunctions[] = {
+{ 0, 0, [](QV4::ExecutableCompilationUnit *unit, QMetaType *argTypes) {
+    struct { QV4::ExecutableCompilationUnit *compilationUnit; } c { unit };
+    const auto *aotContext = &c;
+    Q_UNUSED(aotContext);
+    argTypes[0] = []() { static const auto t = QMetaType::fromName("QQuickItem*"); return t; }();
+}, 
+    [](const QQmlPrivate::AOTCompiledContext *aotContext, void **argv) {
+Q_UNUSED(aotContext)
+Q_UNUSED(argv)
+// expression for fill at line 15, column 9
+QObject *r2_0;
+// generate_LoadQmlContextPropertyLookup
+#ifndef QT_NO_DEBUG
+aotContext->setInstructionPointer(2);
+#endif
+while (!aotContext->loadScopeObjectPropertyLookup(0, &r2_0)) {
+#ifdef QT_NO_DEBUG
+aotContext->setInstructionPointer(2);
+#endif
+aotContext->initLoadScopeObjectPropertyLookup(0, []() { static const auto t = QMetaType::fromName("QQuickItem*"); return t; }());
+if (aotContext->engine->hasError()) {
+aotContext->setReturnValueUndefined();
+if (argv[0]) {
+    *static_cast<QObject * *>(argv[0]) = nullptr;
+}
+return;
+}
+}
+{
+}
+{
+}
+// generate_Ret
+if (argv[0]) {
+    *static_cast<QObject * *>(argv[0]) = r2_0;
+}
+return;
+}
+ },{ 1, 0, [](QV4::ExecutableCompilationUnit *unit, QMetaType *argTypes) {
+    struct { QV4::ExecutableCompilationUnit *compilationUnit; } c { unit };
+    const auto *aotContext = &c;
+    Q_UNUSED(aotContext);
+    argTypes[0] = []() { static const auto t = QMetaType::fromName("QQuickText::HAlignment"); return t; }();
+}, 
+    [](const QQmlPrivate::AOTCompiledContext *aotContext, void **argv) {
+Q_UNUSED(aotContext)
+Q_UNUSED(argv)
+// expression for horizontalAlignment at line 26, column 13
+int r2_0;
+{
+}
+// generate_GetLookup
+#ifndef QT_NO_DEBUG
+aotContext->setInstructionPointer(4);
+#endif
+while (!aotContext->getEnumLookup(2, &r2_0)) {
+#ifdef QT_NO_DEBUG
+aotContext->setInstructionPointer(4);
+#endif
+aotContext->initGetEnumLookup(2, []() { static const auto t = QMetaType::fromName("QQuickText*"); return t; }().metaObject(), "HAlignment", "AlignHCenter");
+if (aotContext->engine->hasError()) {
+aotContext->setReturnValueUndefined();
+if (argv[0]) {
+    const QMetaType returnType = []() { static const auto t = QMetaType::fromName("QQuickText::HAlignment"); return t; }();
+    returnType.destruct(argv[0]);
+    returnType.construct(argv[0]);
+ }
+return;
+}
+}
+{
+}
+{
+}
+// generate_Ret
+if (argv[0]) {
+    const QMetaType returnType = QMetaType::fromType<int>();
+    returnType.destruct(argv[0]);
+    returnType.construct(argv[0], &r2_0);
+}
+return;
+}
+ },{ 2, 0, [](QV4::ExecutableCompilationUnit *unit, QMetaType *argTypes) {
+    struct { QV4::ExecutableCompilationUnit *compilationUnit; } c { unit };
+    const auto *aotContext = &c;
+    Q_UNUSED(aotContext);
+    argTypes[0] = []() { static const auto t = QMetaType::fromName("QQuickText::VAlignment"); return t; }();
+}, 
+    [](const QQmlPrivate::AOTCompiledContext *aotContext, void **argv) {
+Q_UNUSED(aotContext)
+Q_UNUSED(argv)
+// expression for verticalAlignment at line 27, column 13
+int r2_0;
+{
+}
+// generate_GetLookup
+#ifndef QT_NO_DEBUG
+aotContext->setInstructionPointer(4);
+#endif
+while (!aotContext->getEnumLookup(4, &r2_0)) {
+#ifdef QT_NO_DEBUG
+aotContext->setInstructionPointer(4);
+#endif
+aotContext->initGetEnumLookup(4, []() { static const auto t = QMetaType::fromName("QQuickText*"); return t; }().metaObject(), "VAlignment", "AlignVCenter");
+if (aotContext->engine->hasError()) {
+aotContext->setReturnValueUndefined();
+if (argv[0]) {
+    const QMetaType returnType = []() { static const auto t = QMetaType::fromName("QQuickText::VAlignment"); return t; }();
+    returnType.destruct(argv[0]);
+    returnType.construct(argv[0]);
+ }
+return;
+}
+}
+{
+}
+{
+}
+// generate_Ret
+if (argv[0]) {
+    const QMetaType returnType = QMetaType::fromType<int>();
+    returnType.destruct(argv[0]);
+    returnType.construct(argv[0], &r2_0);
+}
+return;
+}
+ },{ 3, 0, [](QV4::ExecutableCompilationUnit *unit, QMetaType *argTypes) {
+    struct { QV4::ExecutableCompilationUnit *compilationUnit; } c { unit };
+    const auto *aotContext = &c;
+    Q_UNUSED(aotContext);
+    argTypes[0] = []() { static const auto t = QMetaType::fromName("QQuickItem*"); return t; }();
+}, 
+    [](const QQmlPrivate::AOTCompiledContext *aotContext, void **argv) {
+Q_UNUSED(aotContext)
+Q_UNUSED(argv)
+// expression for fill at line 24, column 13
+QObject *r2_0;
+// generate_LoadQmlContextPropertyLookup
+#ifndef QT_NO_DEBUG
+aotContext->setInstructionPointer(2);
+#endif
+while (!aotContext->loadScopeObjectPropertyLookup(5, &r2_0)) {
+#ifdef QT_NO_DEBUG
+aotContext->setInstructionPointer(2);
+#endif
+aotContext->initLoadScopeObjectPropertyLookup(5, []() { static const auto t = QMetaType::fromName("QQuickItem*"); return t; }());
+if (aotContext->engine->hasError()) {
+aotContext->setReturnValueUndefined();
+if (argv[0]) {
+    *static_cast<QObject * *>(argv[0]) = nullptr;
+}
+return;
+}
+}
+{
+}
+{
+}
+// generate_Ret
+if (argv[0]) {
+    *static_cast<QObject * *>(argv[0]) = r2_0;
+}
+return;
+}
+ },{ 0, 0, nullptr, nullptr }};
+QT_WARNING_POP
+}
+}
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp.aotstats b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp.aotstats
new file mode 100644
index 0000000000000000000000000000000000000000..8777baa7fe373a6f080e31af98aebe02f8b45b00
--- /dev/null
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp.aotstats
@@ -0,0 +1,44 @@
+[
+    {
+        "moduleFiles": [
+            {
+                "entries": [
+                    {
+                        "codegenSuccessfull": true,
+                        "column": 23,
+                        "durationMicroseconds": 6417,
+                        "errorMessage": "",
+                        "functionName": "fill",
+                        "line": 15
+                    },
+                    {
+                        "codegenSuccessfull": true,
+                        "column": 34,
+                        "durationMicroseconds": 321,
+                        "errorMessage": "",
+                        "functionName": "horizontalAlignment",
+                        "line": 26
+                    },
+                    {
+                        "codegenSuccessfull": true,
+                        "column": 32,
+                        "durationMicroseconds": 212,
+                        "errorMessage": "",
+                        "functionName": "verticalAlignment",
+                        "line": 27
+                    },
+                    {
+                        "codegenSuccessfull": true,
+                        "column": 27,
+                        "durationMicroseconds": 165,
+                        "errorMessage": "",
+                        "functionName": "fill",
+                        "line": 24
+                    }
+                ],
+                "filepath": "D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Key.qml"
+            }
+        ],
+        "moduleId": "Motus(appMotus)"
+    }
+]
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp
index baf1ded5859e1038a38e391bb9c43cb2214fac31..85422606bc68e1e3e8e83a58f55b1eaf4bb94ff1 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp
@@ -25,41 +25,47 @@ extern const unsigned char qmlData alignas(16) [] = {
 0x71,0x76,0x34,0x63,0x64,0x61,0x74,0x61,
 0x42,0x0,0x0,0x0,0x2,0x8,0x6,0x0,
 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-0xf4,0xa,0x0,0x0,0x30,0x61,0x38,0x31,
+0x64,0x2d,0x0,0x0,0x30,0x61,0x38,0x31,
 0x33,0x39,0x63,0x35,0x37,0x34,0x66,0x65,
 0x31,0x35,0x30,0x61,0x62,0x61,0x39,0x32,
 0x64,0x35,0x66,0x32,0x34,0x38,0x34,0x61,
 0x38,0x66,0x33,0x66,0x64,0x62,0x37,0x37,
 0x34,0x39,0x37,0x37,0x0,0x0,0x0,0x0,
-0x0,0x0,0x0,0x0,0x4,0xad,0xa1,0x1d,
-0xb5,0x45,0x8d,0x83,0x13,0x7,0xdb,0xcb,
-0xf6,0xbd,0xbd,0x80,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x33,0x3e,0xf3,0x72,
+0x4c,0x34,0xa6,0xd9,0x11,0x32,0x4b,0xbe,
+0xf1,0x9d,0x6b,0x22,0x0,0x0,0x0,0x0,
 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,
-0x26,0x0,0x0,0x0,0xd0,0x2,0x0,0x0,
-0x2,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,
-0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,
-0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,
-0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,
-0xb,0x0,0x0,0x0,0x4,0x1,0x0,0x0,
-0x0,0x0,0x0,0x0,0x30,0x1,0x0,0x0,
-0x9,0x0,0x0,0x0,0x30,0x1,0x0,0x0,
-0x0,0x0,0x0,0x0,0x78,0x1,0x0,0x0,
-0x1,0x0,0x0,0x0,0x78,0x1,0x0,0x0,
-0x0,0x0,0x0,0x0,0x90,0x1,0x0,0x0,
-0x0,0x0,0x0,0x0,0x90,0x1,0x0,0x0,
-0x0,0x0,0x0,0x0,0x90,0x1,0x0,0x0,
-0x0,0x0,0x0,0x0,0x90,0x1,0x0,0x0,
-0x0,0x0,0x0,0x0,0x90,0x1,0x0,0x0,
-0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
-0x0,0x0,0x0,0x0,0x50,0x6,0x0,0x0,
-0x90,0x1,0x0,0x0,0x0,0x2,0x0,0x0,
-0xc0,0x2,0x0,0x0,0xb0,0x1,0x0,0x0,
-0xc3,0x1,0x0,0x0,0xd0,0x1,0x0,0x0,
-0x3,0x1,0x0,0x0,0xf7,0x1,0x0,0x0,
-0x11,0x1,0x0,0x0,0x3,0x2,0x0,0x0,
-0xb0,0x1,0x0,0x0,0x30,0x2,0x0,0x0,
-0x14,0x2,0x0,0x0,0x41,0x2,0x0,0x0,
+0x71,0x0,0x0,0x0,0xc8,0x5,0x0,0x0,
+0x7,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x14,0x1,0x0,0x0,
+0x0,0x0,0x0,0x0,0x14,0x1,0x0,0x0,
+0x2,0x0,0x0,0x0,0x14,0x1,0x0,0x0,
+0x11,0x0,0x0,0x0,0x1c,0x1,0x0,0x0,
+0x0,0x0,0x0,0x0,0x60,0x1,0x0,0x0,
+0x25,0x0,0x0,0x0,0x60,0x1,0x0,0x0,
+0x0,0x0,0x0,0x0,0x88,0x2,0x0,0x0,
+0x1,0x0,0x0,0x0,0x88,0x2,0x0,0x0,
+0x0,0x0,0x0,0x0,0xa0,0x2,0x0,0x0,
+0x0,0x0,0x0,0x0,0xa0,0x2,0x0,0x0,
+0x0,0x0,0x0,0x0,0xa0,0x2,0x0,0x0,
+0x0,0x0,0x0,0x0,0xa0,0x2,0x0,0x0,
+0x0,0x0,0x0,0x0,0xa0,0x2,0x0,0x0,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x80,0xf,0x0,0x0,
+0xa0,0x2,0x0,0x0,0x8,0x3,0x0,0x0,
+0x68,0x3,0x0,0x0,0xb8,0x3,0x0,0x0,
+0x18,0x4,0x0,0x0,0x78,0x4,0x0,0x0,
+0xe8,0x4,0x0,0x0,0xa8,0x5,0x0,0x0,
+0xb8,0x5,0x0,0x0,0xc3,0x1,0x0,0x0,
+0x51,0x6,0x0,0x0,0x53,0x2,0x0,0x0,
+0x73,0x6,0x0,0x0,0x53,0x2,0x0,0x0,
+0x53,0x2,0x0,0x0,0x80,0x2,0x0,0x0,
+0x83,0x6,0x0,0x0,0x90,0x6,0x0,0x0,
+0x3,0x1,0x0,0x0,0xa7,0x6,0x0,0x0,
+0x11,0x1,0x0,0x0,0xb3,0x6,0x0,0x0,
+0x80,0x2,0x0,0x0,0xe0,0x6,0x0,0x0,
+0xc4,0x6,0x0,0x0,0xf1,0x6,0x0,0x0,
 0x0,0x0,0x0,0x0,0x0,0x40,0x6b,0x3f,
 0x0,0x0,0x0,0x0,0x0,0xa0,0x65,0x3f,
 0x0,0x0,0x0,0x0,0x0,0x40,0xf5,0x7f,
@@ -69,21 +75,108 @@ extern const unsigned char qmlData alignas(16) [] = {
 0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x3f,
 0x0,0x0,0x0,0x0,0x0,0x40,0xa6,0x3f,
 0x0,0x0,0x0,0x0,0x0,0xc0,0xb2,0x3f,
+0x0,0x0,0x0,0x0,0x0,0x40,0x8c,0x3f,
+0x0,0x0,0x0,0x0,0x0,0x40,0x9c,0x3f,
+0x0,0x0,0x0,0x0,0x0,0xd0,0x88,0x3f,
+0x0,0x0,0x0,0x0,0x0,0xb0,0x76,0x3f,
+0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x3f,
+0x0,0x0,0x0,0x0,0x0,0xa0,0x80,0x3f,
+0x0,0x0,0x0,0x0,0x0,0x40,0xd1,0x3f,
+0x0,0x0,0x0,0x0,0x0,0x40,0xe1,0x3f,
+0x0,0x0,0x0,0x0,0x0,0x40,0x95,0x3f,
+0x0,0x0,0x0,0x0,0x0,0x40,0xc6,0x3f,
+0x0,0x0,0x0,0x0,0x0,0x40,0xac,0x3f,
+0x9a,0x99,0x99,0x99,0x99,0xd9,0x1c,0x40,
+0x0,0x0,0x0,0x0,0x0,0xc0,0xa4,0x3f,
+0x0,0x0,0x0,0x0,0x0,0xc0,0x94,0x3f,
+0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x3f,
+0x0,0x0,0x0,0x0,0x0,0xc0,0x84,0x3f,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x3f,
+0x0,0x0,0x0,0x0,0x0,0xe0,0x8b,0x3f,
+0x0,0x0,0x0,0x0,0x0,0xc0,0x74,0x3f,
+0x0,0x0,0x0,0x0,0x0,0xf0,0x76,0x3f,
+0x0,0x0,0x0,0x0,0x0,0xe0,0x91,0x3f,
+0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x3f,
+0x0,0x0,0x0,0x0,0x0,0xa0,0x99,0x3f,
+0xa,0x0,0x0,0x0,0x0,0xc0,0x3,0x0,
+0x9,0x0,0x0,0x0,0x0,0xc0,0x3,0x0,
+0x8,0x0,0x0,0x0,0x0,0xc0,0x3,0x0,
+0x6,0x0,0x0,0x0,0x0,0xc0,0x3,0x0,
+0x5,0x0,0x0,0x0,0x0,0xc0,0x3,0x0,
 0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x50,0x0,0x0,0x0,0x13,0x0,0x0,0x0,
+0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x38,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0xff,0xff,0xff,0xff,0x9,0x0,0x0,0x0,
+0x2c,0x0,0x10,0x1,0x0,0x0,0x0,0x0,
+0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
+0x2c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
+0xca,0x2e,0x0,0x18,0x7,0x12,0x66,0x18,
+0x8,0x42,0x1,0x7,0x1a,0x8,0x6,0xd4,
+0x16,0x6,0x2,0x0,0x0,0x0,0x0,0x0,
+0x44,0x0,0x0,0x0,0x15,0x0,0x0,0x0,
+0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x38,0x0,0x0,0x0,0x0,0x0,0x1,0x0,
+0xff,0xff,0xff,0xff,0xa,0x0,0x0,0x0,
+0x46,0x0,0x10,0x1,0x0,0x0,0x0,0x0,
+0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x14,0x20,0x7,0x10,
+0x46,0x9c,0x7,0x18,0x8,0x14,0x21,0x9,
+0x2e,0x2,0x9c,0x9,0x80,0x8,0x18,0x6,
+0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x44,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
+0x42,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x38,0x0,0x0,0x0,0x0,0x0,0x1,0x0,
+0xff,0xff,0xff,0xff,0x7,0x0,0x0,0x0,
+0x91,0x0,0x10,0x1,0x0,0x0,0x0,0x0,
+0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x91,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x2e,0x3,0x18,0x6,
+0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x44,0x0,0x0,0x0,0x15,0x0,0x0,0x0,
+0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x38,0x0,0x0,0x0,0x0,0x0,0x1,0x0,
+0xff,0xff,0xff,0xff,0xa,0x0,0x0,0x0,
+0x98,0x0,0x10,0x1,0x0,0x0,0x0,0x0,
+0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x98,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x14,0x21,0x7,0x10,
+0x46,0x9c,0x7,0x18,0x8,0x14,0x22,0x9,
+0x2e,0x4,0x9c,0x9,0x80,0x8,0x18,0x6,
+0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x44,0x0,0x0,0x0,0x15,0x0,0x0,0x0,
+0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x38,0x0,0x0,0x0,0x0,0x0,0x1,0x0,
+0xff,0xff,0xff,0xff,0xa,0x0,0x0,0x0,
+0xe0,0x0,0x10,0x1,0x0,0x0,0x0,0x0,
+0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0xe0,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x14,0x23,0x7,0x10,
+0x46,0x9c,0x7,0x18,0x8,0x14,0x24,0x9,
+0x2e,0x5,0x9c,0x9,0x80,0x8,0x18,0x6,
+0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x5c,0x0,0x0,0x0,0x9,0x0,0x0,0x0,
-0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x38,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
-0x1,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
-0x27,0x0,0x90,0x0,0x0,0x0,0x0,0x0,
+0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
+0x10,0x1,0x90,0x0,0x0,0x0,0x0,0x0,
 0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,
-0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x10,0x1,0x0,0x0,
 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
-0x27,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
-0x5,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,
-0x1,0x0,0x0,0x0,0xca,0x28,0x1,0x18,
+0x10,0x1,0x0,0x0,0x1,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x16,0x1,0x0,0x0,
+0x1,0x0,0x0,0x0,0xca,0x28,0x6,0x18,
 0x6,0xd4,0x16,0x6,0x2,0x0,0x0,0x0,
 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x7c,0x0,0x0,0x0,0x40,0x0,0x0,0x0,
@@ -91,46 +184,86 @@ extern const unsigned char qmlData alignas(16) [] = {
 0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x40,0x0,0x0,0x0,0x0,0x0,0x5,0x0,
 0xff,0xff,0xff,0xff,0xf,0x0,0x0,0x0,
-0x27,0x0,0xa0,0x1,0x0,0x0,0x0,0x0,
+0x10,0x1,0xa0,0x1,0x0,0x0,0x0,0x0,
 0x0,0x0,0x8,0x0,0x0,0x0,0x2,0x0,
-0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,
+0x70,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x11,0x1,0x0,0x0,
 0x1,0x0,0x0,0x0,0xe,0x0,0x0,0x0,
-0x29,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
-0x1d,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,
+0x12,0x1,0x0,0x0,0x4,0x0,0x0,0x0,
+0x1d,0x0,0x0,0x0,0x13,0x1,0x0,0x0,
 0x6,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,
-0x2b,0x0,0x0,0x0,0x8,0x0,0x0,0x0,
-0x3e,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,
-0x8,0x0,0x0,0x0,0x16,0x6,0x3c,0x0,
-0x18,0x8,0x2e,0x1,0x3c,0x2,0x6c,0x8,
-0x50,0x30,0x2e,0x3,0x18,0x9,0x12,0x1e,
-0x18,0xc,0xb4,0x4,0x1,0xc,0x42,0x5,
-0x9,0x2e,0x6,0x18,0x9,0x16,0x6,0x3c,
-0x7,0x18,0xd,0x12,0x22,0x80,0xd,0x18,
-0xe,0x16,0x6,0x3c,0x8,0x80,0xe,0x18,
-0xc,0xac,0x9,0x9,0x1,0xc,0x8,0x42,
-0xa,0x6,0xe,0x2,0x0,0x0,0x0,0x0,
+0x14,0x1,0x0,0x0,0x8,0x0,0x0,0x0,
+0x3e,0x0,0x0,0x0,0x16,0x1,0x0,0x0,
+0x8,0x0,0x0,0x0,0x16,0x6,0x3c,0x6,
+0x18,0x8,0x2e,0x7,0x3c,0x8,0x6c,0x8,
+0x50,0x30,0x2e,0x9,0x18,0x9,0x12,0x5c,
+0x18,0xc,0xb4,0xa,0x1,0xc,0x42,0xb,
+0x9,0x2e,0xc,0x18,0x9,0x16,0x6,0x3c,
+0xd,0x18,0xd,0x12,0x6d,0x80,0xd,0x18,
+0xe,0x16,0x6,0x3c,0xe,0x80,0xe,0x18,
+0xc,0xac,0xf,0x9,0x1,0xc,0x8,0x42,
+0x10,0x6,0xe,0x2,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,
 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-0x68,0x3,0x0,0x0,0x70,0x3,0x0,0x0,
-0x88,0x3,0x0,0x0,0xa0,0x3,0x0,0x0,
-0xb0,0x3,0x0,0x0,0xc8,0x3,0x0,0x0,
-0xe0,0x3,0x0,0x0,0xf0,0x3,0x0,0x0,
-0x10,0x4,0x0,0x0,0x28,0x4,0x0,0x0,
-0x40,0x4,0x0,0x0,0x48,0x4,0x0,0x0,
-0x50,0x4,0x0,0x0,0x60,0x4,0x0,0x0,
-0x78,0x4,0x0,0x0,0x88,0x4,0x0,0x0,
-0x98,0x4,0x0,0x0,0xa8,0x4,0x0,0x0,
-0xc0,0x4,0x0,0x0,0xc8,0x4,0x0,0x0,
-0xd8,0x4,0x0,0x0,0xe0,0x4,0x0,0x0,
-0xf8,0x4,0x0,0x0,0x10,0x5,0x0,0x0,
-0x38,0x5,0x0,0x0,0x48,0x5,0x0,0x0,
-0x60,0x5,0x0,0x0,0x98,0x5,0x0,0x0,
-0xa8,0x5,0x0,0x0,0xb8,0x5,0x0,0x0,
-0xc8,0x5,0x0,0x0,0xd0,0x5,0x0,0x0,
-0xe0,0x5,0x0,0x0,0xf8,0x5,0x0,0x0,
-0x8,0x6,0x0,0x0,0x18,0x6,0x0,0x0,
-0x28,0x6,0x0,0x0,0x40,0x6,0x0,0x0,
+0x90,0x7,0x0,0x0,0x98,0x7,0x0,0x0,
+0xb0,0x7,0x0,0x0,0xc8,0x7,0x0,0x0,
+0xd8,0x7,0x0,0x0,0xf0,0x7,0x0,0x0,
+0x8,0x8,0x0,0x0,0x18,0x8,0x0,0x0,
+0x38,0x8,0x0,0x0,0x50,0x8,0x0,0x0,
+0x68,0x8,0x0,0x0,0x70,0x8,0x0,0x0,
+0x78,0x8,0x0,0x0,0x88,0x8,0x0,0x0,
+0xa0,0x8,0x0,0x0,0xb0,0x8,0x0,0x0,
+0xc0,0x8,0x0,0x0,0xd0,0x8,0x0,0x0,
+0xe8,0x8,0x0,0x0,0xf0,0x8,0x0,0x0,
+0x0,0x9,0x0,0x0,0x8,0x9,0x0,0x0,
+0x20,0x9,0x0,0x0,0x38,0x9,0x0,0x0,
+0x60,0x9,0x0,0x0,0x78,0x9,0x0,0x0,
+0x90,0x9,0x0,0x0,0xa8,0x9,0x0,0x0,
+0xe0,0x9,0x0,0x0,0xf0,0x9,0x0,0x0,
+0x0,0xa,0x0,0x0,0x20,0xa,0x0,0x0,
+0x38,0xa,0x0,0x0,0x50,0xa,0x0,0x0,
+0x68,0xa,0x0,0x0,0x80,0xa,0x0,0x0,
+0x90,0xa,0x0,0x0,0xa0,0xa,0x0,0x0,
+0xb8,0xa,0x0,0x0,0xe8,0xa,0x0,0x0,
+0xf8,0xa,0x0,0x0,0x8,0xb,0x0,0x0,
+0x18,0xb,0x0,0x0,0x28,0xb,0x0,0x0,
+0x40,0xb,0x0,0x0,0x48,0xb,0x0,0x0,
+0x58,0xb,0x0,0x0,0x60,0xb,0x0,0x0,
+0x80,0xb,0x0,0x0,0x90,0xb,0x0,0x0,
+0x98,0xb,0x0,0x0,0xa8,0xb,0x0,0x0,
+0xb0,0xb,0x0,0x0,0xc0,0xb,0x0,0x0,
+0xc8,0xb,0x0,0x0,0xd8,0xb,0x0,0x0,
+0xe0,0xb,0x0,0x0,0xf0,0xb,0x0,0x0,
+0xf8,0xb,0x0,0x0,0x8,0xc,0x0,0x0,
+0x10,0xc,0x0,0x0,0x20,0xc,0x0,0x0,
+0x28,0xc,0x0,0x0,0x40,0xc,0x0,0x0,
+0x58,0xc,0x0,0x0,0x70,0xc,0x0,0x0,
+0x80,0xc,0x0,0x0,0xb0,0xc,0x0,0x0,
+0xc0,0xc,0x0,0x0,0xd0,0xc,0x0,0x0,
+0xd8,0xc,0x0,0x0,0xe8,0xc,0x0,0x0,
+0xf0,0xc,0x0,0x0,0x0,0xd,0x0,0x0,
+0x8,0xd,0x0,0x0,0x18,0xd,0x0,0x0,
+0x20,0xd,0x0,0x0,0x30,0xd,0x0,0x0,
+0x38,0xd,0x0,0x0,0x48,0xd,0x0,0x0,
+0x50,0xd,0x0,0x0,0x60,0xd,0x0,0x0,
+0x68,0xd,0x0,0x0,0x78,0xd,0x0,0x0,
+0x80,0xd,0x0,0x0,0x90,0xd,0x0,0x0,
+0x98,0xd,0x0,0x0,0xa8,0xd,0x0,0x0,
+0xb8,0xd,0x0,0x0,0xc0,0xd,0x0,0x0,
+0xd0,0xd,0x0,0x0,0xd8,0xd,0x0,0x0,
+0xe8,0xd,0x0,0x0,0xf0,0xd,0x0,0x0,
+0x0,0xe,0x0,0x0,0x8,0xe,0x0,0x0,
+0x18,0xe,0x0,0x0,0x28,0xe,0x0,0x0,
+0x30,0xe,0x0,0x0,0x40,0xe,0x0,0x0,
+0x58,0xe,0x0,0x0,0x90,0xe,0x0,0x0,
+0xb0,0xe,0x0,0x0,0xc8,0xe,0x0,0x0,
+0xe0,0xe,0x0,0x0,0xf0,0xe,0x0,0x0,
+0x0,0xf,0x0,0x0,0x10,0xf,0x0,0x0,
+0x28,0xf,0x0,0x0,0x38,0xf,0x0,0x0,
+0x48,0xf,0x0,0x0,0x58,0xf,0x0,0x0,
+0x70,0xf,0x0,0x0,0x0,0x0,0x0,0x0,
 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x7,0x0,0x0,0x0,0x51,0x0,0x74,0x0,
 0x51,0x0,0x75,0x0,0x69,0x0,0x63,0x0,
@@ -189,6 +322,160 @@ extern const unsigned char qmlData alignas(16) [] = {
 0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,
 0x20,0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,
 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9,0x0,0x0,0x0,0x4d,0x0,0x6f,0x0,
+0x75,0x0,0x73,0x0,0x65,0x0,0x41,0x0,
+0x72,0x0,0x65,0x0,0x61,0x0,0x0,0x0,
+0x9,0x0,0x0,0x0,0x6d,0x0,0x6f,0x0,
+0x75,0x0,0x73,0x0,0x65,0x0,0x41,0x0,
+0x72,0x0,0x65,0x0,0x61,0x0,0x0,0x0,
+0x9,0x0,0x0,0x0,0x6f,0x0,0x6e,0x0,
+0x43,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,
+0x6b,0x0,0x65,0x0,0x64,0x0,0x0,0x0,
+0x18,0x0,0x0,0x0,0x65,0x0,0x78,0x0,
+0x70,0x0,0x72,0x0,0x65,0x0,0x73,0x0,
+0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,
+0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,
+0x20,0x0,0x6f,0x0,0x6e,0x0,0x43,0x0,
+0x6c,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,
+0x65,0x0,0x64,0x0,0x0,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x63,0x0,0x61,0x0,
+0x73,0x0,0x65,0x0,0x33,0x0,0x0,0x0,
+0x4,0x0,0x0,0x0,0x74,0x0,0x65,0x0,
+0x73,0x0,0x74,0x0,0x0,0x0,0x0,0x0,
+0xa,0x0,0x0,0x0,0x72,0x0,0x65,0x0,
+0x63,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,
+0x67,0x0,0x6c,0x0,0x65,0x0,0x31,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x7,0x0,0x0,0x0,0x23,0x0,0x61,0x0,
+0x32,0x0,0x36,0x0,0x34,0x0,0x37,0x0,
+0x63,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x6,0x0,0x0,0x0,0x72,0x0,0x61,0x0,
+0x64,0x0,0x69,0x0,0x75,0x0,0x73,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x6,0x0,0x0,0x0,0x62,0x0,0x6f,0x0,
+0x72,0x0,0x64,0x0,0x65,0x0,0x72,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x7,0x0,0x0,0x0,0x23,0x0,0x66,0x0,
+0x66,0x0,0x66,0x0,0x66,0x0,0x66,0x0,
+0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x3,0x0,0x0,0x0,0x52,0x0,0x6f,0x0,
+0x77,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x4,0x0,0x0,0x0,0x72,0x0,0x6f,0x0,
+0x77,0x0,0x31,0x0,0x0,0x0,0x0,0x0,
+0x7,0x0,0x0,0x0,0x73,0x0,0x70,0x0,
+0x61,0x0,0x63,0x0,0x69,0x0,0x6e,0x0,
+0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x14,0x0,0x0,0x0,0x65,0x0,0x78,0x0,
+0x70,0x0,0x72,0x0,0x65,0x0,0x73,0x0,
+0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,
+0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,
+0x20,0x0,0x77,0x0,0x69,0x0,0x64,0x0,
+0x74,0x0,0x68,0x0,0x0,0x0,0x0,0x0,
+0x3,0x0,0x0,0x0,0x4b,0x0,0x65,0x0,
+0x79,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x3,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x73,0x0,0x63,0x0,
+0x61,0x0,0x6c,0x0,0x65,0x0,0x0,0x0,
+0x4,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x31,0x0,0x0,0x0,0x0,0x0,
+0x9,0x0,0x0,0x0,0x6c,0x0,0x61,0x0,
+0x62,0x0,0x65,0x0,0x6c,0x0,0x54,0x0,
+0x65,0x0,0x78,0x0,0x74,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,
+0x4,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x32,0x0,0x0,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x45,0x0,0x0,0x0,
+0xc,0x0,0x0,0x0,0x61,0x0,0x6e,0x0,
+0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,
+0x69,0x0,0x61,0x0,0x73,0x0,0x69,0x0,
+0x6e,0x0,0x67,0x0,0x0,0x0,0x0,0x0,
+0x4,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x33,0x0,0x0,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x52,0x0,0x0,0x0,
+0x4,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x34,0x0,0x0,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x4,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x35,0x0,0x0,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x59,0x0,0x0,0x0,
+0x4,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x36,0x0,0x0,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x55,0x0,0x0,0x0,
+0x4,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x37,0x0,0x0,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x49,0x0,0x0,0x0,
+0x4,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x38,0x0,0x0,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,
+0x4,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x39,0x0,0x0,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x50,0x0,0x0,0x0,
+0x6,0x0,0x0,0x0,0x43,0x0,0x6f,0x0,
+0x6c,0x0,0x75,0x0,0x6d,0x0,0x6e,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x6,0x0,0x0,0x0,0x63,0x0,0x6f,0x0,
+0x6c,0x0,0x75,0x0,0x6d,0x0,0x6e,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x7,0x0,0x0,0x0,0x61,0x0,0x6e,0x0,
+0x63,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,
+0x73,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x4,0x0,0x0,0x0,0x66,0x0,0x69,0x0,
+0x6c,0x0,0x6c,0x0,0x0,0x0,0x0,0x0,
+0x13,0x0,0x0,0x0,0x65,0x0,0x78,0x0,
+0x70,0x0,0x72,0x0,0x65,0x0,0x73,0x0,
+0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,
+0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,
+0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,
+0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x4,0x0,0x0,0x0,0x72,0x0,0x6f,0x0,
+0x77,0x0,0x32,0x0,0x0,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x31,0x0,0x32,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x51,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x31,0x0,0x33,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x53,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x31,0x0,0x34,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x44,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x31,0x0,0x35,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x46,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x31,0x0,0x36,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x47,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x31,0x0,0x37,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x48,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x31,0x0,0x38,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x31,0x0,0x39,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x32,0x0,0x30,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,
+0x4,0x0,0x0,0x0,0x72,0x0,0x6f,0x0,
+0x77,0x0,0x33,0x0,0x0,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x32,0x0,0x33,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x57,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x32,0x0,0x34,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x58,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x32,0x0,0x35,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x43,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x32,0x0,0x36,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x56,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x32,0x0,0x37,0x0,0x0,0x0,
+0x5,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
+0x79,0x0,0x32,0x0,0x38,0x0,0x0,0x0,
+0x1,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,
 0x4,0x0,0x0,0x0,0x4b,0x0,0x65,0x0,
 0x79,0x0,0x73,0x0,0x0,0x0,0x0,0x0,
 0x9,0x0,0x0,0x0,0x6f,0x0,0x6e,0x0,
@@ -201,13 +488,20 @@ extern const unsigned char qmlData alignas(16) [] = {
 0x20,0x0,0x6f,0x0,0x6e,0x0,0x50,0x0,
 0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,
 0x65,0x0,0x64,0x0,0x0,0x0,0x0,0x0,
-0x3,0x0,0x0,0x0,0x6b,0x0,0x65,0x0,
-0x79,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xa,0x0,0x0,0x0,0x5f,0x0,0x74,0x0,
+0x65,0x0,0x78,0x0,0x74,0x0,0x43,0x0,
+0x6f,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x7,0x0,0x0,0x0,0x23,0x0,0x35,0x0,
+0x31,0x0,0x63,0x0,0x33,0x0,0x65,0x0,
+0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x6,0x0,0x0,0x0,0x70,0x0,0x61,0x0,
+0x72,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x2,0x0,0x0,0x0,0x51,0x0,0x74,0x0,
 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x5,0x0,0x0,0x0,0x4b,0x0,0x65,0x0,
 0x79,0x0,0x5f,0x0,0x41,0x0,0x0,0x0,
-0x1,0x0,0x0,0x0,0x43,0x0,0x0,0x0,
 0x4,0x0,0x0,0x0,0x71,0x0,0x73,0x0,
 0x54,0x0,0x72,0x0,0x0,0x0,0x0,0x0,
 0x7,0x0,0x0,0x0,0x63,0x0,0x6f,0x0,
@@ -225,13 +519,30 @@ extern const unsigned char qmlData alignas(16) [] = {
 0x5,0x0,0x0,0x0,0x65,0x0,0x76,0x0,
 0x65,0x0,0x6e,0x0,0x74,0x0,0x0,0x0,
 0x1,0x0,0x0,0x0,0x10,0x0,0x0,0x0,
-0x6,0x0,0x0,0x0,0x24,0x0,0x0,0x0,
+0x28,0x0,0x0,0x0,0x24,0x0,0x0,0x0,
 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
 0x0,0x0,0x0,0x0,0x1,0x0,0x10,0x0,
-0xff,0xff,0x0,0x0,0x3c,0x0,0x0,0x0,
-0xc,0x1,0x0,0x0,0x54,0x2,0x0,0x0,
-0xf4,0x2,0x0,0x0,0x94,0x3,0x0,0x0,
-0x34,0x4,0x0,0x0,0x2,0x0,0x0,0x0,
+0xff,0xff,0x0,0x0,0xc4,0x0,0x0,0x0,
+0x94,0x1,0x0,0x0,0xf4,0x2,0x0,0x0,
+0x94,0x3,0x0,0x0,0x34,0x4,0x0,0x0,
+0xec,0x4,0x0,0x0,0xd4,0x5,0x0,0x0,
+0x44,0x6,0x0,0x0,0xa4,0x7,0x0,0x0,
+0x2c,0x8,0x0,0x0,0xec,0x9,0x0,0x0,
+0x74,0xa,0x0,0x0,0x14,0xb,0x0,0x0,
+0xcc,0xb,0x0,0x0,0x6c,0xc,0x0,0x0,
+0xc,0xd,0x0,0x0,0xac,0xd,0x0,0x0,
+0x4c,0xe,0x0,0x0,0xec,0xe,0x0,0x0,
+0x8c,0xf,0x0,0x0,0x2c,0x10,0x0,0x0,
+0x9c,0x10,0x0,0x0,0xc,0x11,0x0,0x0,
+0xb4,0x12,0x0,0x0,0x54,0x13,0x0,0x0,
+0xf4,0x13,0x0,0x0,0x94,0x14,0x0,0x0,
+0x34,0x15,0x0,0x0,0xd4,0x15,0x0,0x0,
+0x74,0x16,0x0,0x0,0x14,0x17,0x0,0x0,
+0xb4,0x17,0x0,0x0,0x54,0x18,0x0,0x0,
+0xb4,0x19,0x0,0x0,0x54,0x1a,0x0,0x0,
+0xf4,0x1a,0x0,0x0,0x94,0x1b,0x0,0x0,
+0x34,0x1c,0x0,0x0,0xd4,0x1c,0x0,0x0,
+0x74,0x1d,0x0,0x0,0x2,0x0,0x0,0x0,
 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
 0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
 0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
@@ -263,11 +574,11 @@ extern const unsigned char qmlData alignas(16) [] = {
 0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
-0x0,0x0,0xa,0x0,0x54,0x0,0x0,0x0,
-0x0,0x0,0x0,0x0,0x44,0x1,0x0,0x0,
+0x0,0x0,0xb,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x5c,0x1,0x0,0x0,
 0x9,0x0,0x50,0x0,0xa,0x0,0x90,0x0,
-0x44,0x1,0x0,0x0,0x0,0x0,0x0,0x0,
-0x44,0x1,0x0,0x0,0x0,0x0,0x0,0x0,
+0x5c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,
+0x5c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,
 0xe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,
 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x10,0x0,0x90,0x0,0x10,0x0,0x0,0x1,
@@ -295,9 +606,12 @@ extern const unsigned char qmlData alignas(16) [] = {
 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x20,0x0,0x90,0x0,0x20,0x0,0x90,0x0,
-0x18,0x0,0x0,0x0,0x0,0x0,0x9,0x0,
-0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-0x27,0x0,0x90,0x0,0x27,0x0,0xe0,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x35,0x0,0x90,0x0,0x35,0x0,0x90,0x0,
+0x62,0x0,0x0,0x0,0x0,0x0,0x9,0x0,
+0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x10,0x1,0x90,0x0,0x10,0x1,0xe0,0x0,
 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,
 0x10,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
 0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
@@ -344,11 +658,11 @@ extern const unsigned char qmlData alignas(16) [] = {
 0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
-0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
-0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0x0,0x0,0x4,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0xb4,0x0,0x0,0x0,
 0x20,0x0,0x90,0x0,0x21,0x0,0xd0,0x0,
-0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xb4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xb4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x11,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,
 0x24,0x0,0xd0,0x0,0x24,0x0,0x80,0x1,
@@ -358,79 +672,1189 @@ extern const unsigned char qmlData alignas(16) [] = {
 0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
 0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x22,0x0,0xd0,0x0,0x22,0x0,0x0,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x26,0x0,0xd0,0x0,0x26,0x0,0xd0,0x0,
+0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,
+0x19,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x6,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0xe4,0x0,0x0,0x0,
+0x26,0x0,0xd0,0x0,0x27,0x0,0x10,0x1,
+0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x1a,0x0,0x0,0x0,0x0,0x0,0x7,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x2c,0x0,0x10,0x1,0x2c,0x0,0xc0,0x1,
+0x4,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x2b,0x0,0x10,0x1,0x2b,0x0,0x90,0x1,
+0x3,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x2a,0x0,0x10,0x1,0x2a,0x0,0x80,0x1,
+0xb,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x10,0x1,0x29,0x0,0x40,0x1,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x28,0x0,0x10,0x1,0x28,0x0,0x40,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x2e,0x0,0x10,0x1,0x2e,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,
+0x1c,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x1,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,
+0x2e,0x0,0x10,0x1,0x2f,0x0,0x50,0x1,
+0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x11,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,
+0x30,0x0,0x50,0x1,0x30,0x0,0x0,0x2,
+0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,
+0x1e,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0xb,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x5c,0x1,0x0,0x0,
+0x35,0x0,0x90,0x0,0x36,0x0,0xd0,0x0,
+0x5c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,
+0x5c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,
+0x20,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x3c,0x0,0xd0,0x0,0x3c,0x0,0x50,0x1,
+0xc,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,
+0x3b,0x0,0xd0,0x0,0x3b,0x0,0x40,0x1,
+0x4,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x3a,0x0,0xd0,0x0,0x3a,0x0,0x50,0x1,
+0x3,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x39,0x0,0xd0,0x0,0x39,0x0,0x40,0x1,
+0xb,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x38,0x0,0xd0,0x0,0x38,0x0,0x0,0x1,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x37,0x0,0xd0,0x0,0x37,0x0,0x0,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x40,0x0,0xd0,0x0,0x40,0x0,0xd0,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x8f,0x0,0xd0,0x0,0x8f,0x0,0xd0,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x94,0x0,0xd0,0x0,0x94,0x0,0xd0,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xdc,0x0,0xd0,0x0,0xdc,0x0,0xd0,0x0,
+0x21,0x0,0x0,0x0,0x0,0x0,0xa,0x0,
+0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x3d,0x0,0xd0,0x0,0x3d,0x0,0x40,0x1,
 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
 0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
 0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x2,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x84,0x0,0x0,0x0,
+0x3d,0x0,0xd0,0x0,0x0,0x0,0x0,0x0,
+0x84,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x84,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x3,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x3e,0x0,0x40,0x1,0x3e,0x0,0xb0,0x1,
+0xc,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,
+0x3d,0x0,0x40,0x1,0x3d,0x0,0xb0,0x1,
+0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,
+0x24,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0xf,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0xbc,0x1,0x0,0x0,
+0x40,0x0,0xd0,0x0,0x41,0x0,0x10,0x1,
+0xbc,0x1,0x0,0x0,0x0,0x0,0x0,0x0,
+0xbc,0x1,0x0,0x0,0x0,0x0,0x0,0x0,
+0x3,0x0,0x0,0x0,0x0,0x0,0x7,0x0,
+0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x46,0x0,0x10,0x1,0x46,0x0,0x80,0x1,
+0x25,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x45,0x0,0x10,0x1,0x45,0x0,0xa0,0x1,
+0x4,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x44,0x0,0x10,0x1,0x44,0x0,0x90,0x1,
+0xb,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x43,0x0,0x10,0x1,0x43,0x0,0x40,0x1,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x42,0x0,0x10,0x1,0x42,0x0,0x40,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x48,0x0,0x10,0x1,0x48,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x4e,0x0,0x10,0x1,0x4e,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x55,0x0,0x10,0x1,0x55,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x5d,0x0,0x10,0x1,0x5d,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x64,0x0,0x10,0x1,0x64,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x6b,0x0,0x10,0x1,0x6b,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x72,0x0,0x10,0x1,0x72,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x79,0x0,0x10,0x1,0x79,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x80,0x0,0x10,0x1,0x80,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x87,0x0,0x10,0x1,0x87,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x28,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x2,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x84,0x0,0x0,0x0,
+0x48,0x0,0x10,0x1,0x49,0x0,0x50,0x1,
+0x84,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x84,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x4b,0x0,0x50,0x1,0x4b,0x0,0xc0,0x1,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x4a,0x0,0x50,0x1,0x4a,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x2a,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0x4e,0x0,0x10,0x1,0x4f,0x0,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x52,0x0,0x50,0x1,0x52,0x0,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,
+0x51,0x0,0x50,0x1,0x51,0x0,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x50,0x0,0x50,0x1,0x50,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x2d,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x4,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0xb4,0x0,0x0,0x0,
+0x55,0x0,0x10,0x1,0x56,0x0,0x50,0x1,
+0xb4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xb4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x5a,0x0,0x50,0x1,0x5a,0x0,0xc0,0x1,
+0x2f,0x0,0x0,0x0,0x0,0x0,0x1,0x0,
+0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x59,0x0,0x50,0x1,0x59,0x0,0x30,0x2,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,
+0x58,0x0,0x50,0x1,0x58,0x0,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x57,0x0,0x50,0x1,0x57,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x30,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0x5d,0x0,0x10,0x1,0x5e,0x0,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x61,0x0,0x50,0x1,0x61,0x0,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,
+0x60,0x0,0x50,0x1,0x60,0x0,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x5f,0x0,0x50,0x1,0x5f,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x32,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0x64,0x0,0x10,0x1,0x65,0x0,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x68,0x0,0x50,0x1,0x68,0x0,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x33,0x0,0x0,0x0,
+0x67,0x0,0x50,0x1,0x67,0x0,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x66,0x0,0x50,0x1,0x66,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x34,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0x6b,0x0,0x10,0x1,0x6c,0x0,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x6f,0x0,0x50,0x1,0x6f,0x0,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,
+0x6e,0x0,0x50,0x1,0x6e,0x0,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x6d,0x0,0x50,0x1,0x6d,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x36,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0x72,0x0,0x10,0x1,0x73,0x0,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x76,0x0,0x50,0x1,0x76,0x0,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,
+0x75,0x0,0x50,0x1,0x75,0x0,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x74,0x0,0x50,0x1,0x74,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x38,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0x79,0x0,0x10,0x1,0x7a,0x0,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x7d,0x0,0x50,0x1,0x7d,0x0,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,
+0x7c,0x0,0x50,0x1,0x7c,0x0,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x7b,0x0,0x50,0x1,0x7b,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x3a,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0x80,0x0,0x10,0x1,0x81,0x0,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x84,0x0,0x50,0x1,0x84,0x0,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,
+0x83,0x0,0x50,0x1,0x83,0x0,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x82,0x0,0x50,0x1,0x82,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x3c,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0x87,0x0,0x10,0x1,0x88,0x0,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x8b,0x0,0x50,0x1,0x8b,0x0,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,
+0x8a,0x0,0x50,0x1,0x8a,0x0,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x89,0x0,0x50,0x1,0x89,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,
+0x3f,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
 0x0,0x0,0x1,0x0,0x54,0x0,0x0,0x0,
 0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,
-0x27,0x0,0x90,0x0,0x0,0x0,0x0,0x0,
+0x8f,0x0,0xd0,0x0,0x90,0x0,0x10,0x1,
 0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
 0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-0x19,0x0,0x0,0x0,0x0,0x2,0x7,0x0,
+0x40,0x0,0x0,0x0,0x0,0x0,0xa,0x0,
+0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x91,0x0,0x10,0x1,0x91,0x0,0x90,0x1,
 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-0x27,0x0,0xe0,0x0,0x27,0x0,0xa0,0x1,
-0x0,0x0,0x0,0x0
-};
-QT_WARNING_PUSH
-QT_WARNING_DISABLE_MSVC(4573)
-extern const QQmlPrivate::AOTCompiledFunction aotBuiltFunctions[];
-extern const QQmlPrivate::AOTCompiledFunction aotBuiltFunctions[] = {
-{ 0, 1, [](QV4::ExecutableCompilationUnit *unit, QMetaType *argTypes) {
-    struct { QV4::ExecutableCompilationUnit *compilationUnit; } c { unit };
-    const auto *aotContext = &c;
-    Q_UNUSED(aotContext);
-    argTypes[0] = QMetaType();
-    argTypes[1] = []() { static const auto t = QMetaType::fromName("QQuickKeyEvent*"); return t; }();
-}, 
-    [](const QQmlPrivate::AOTCompiledContext *aotContext, void **argv) {
-Q_UNUSED(aotContext)
-Q_UNUSED(argv)
-// expression for onPressed at line 39, column 9
-// generate_CreateCallContext
-{
-{
-}
-{
-}
-{
-}
-// generate_PopContext
-{}
-}
-{
-}
-{
-}
-// generate_Ret
-return;
-}
- },{ 1, 1, [](QV4::ExecutableCompilationUnit *unit, QMetaType *argTypes) {
-    struct { QV4::ExecutableCompilationUnit *compilationUnit; } c { unit };
-    const auto *aotContext = &c;
-    Q_UNUSED(aotContext);
+0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x1,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,
+0x91,0x0,0x10,0x1,0x0,0x0,0x0,0x0,
+0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x41,0x0,0x0,0x0,0x0,0x0,0x7,0x0,
+0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x91,0x0,0x90,0x1,0x91,0x0,0xf0,0x1,
+0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,
+0x43,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0xe,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0xa4,0x1,0x0,0x0,
+0x94,0x0,0xd0,0x0,0x95,0x0,0x10,0x1,
+0xa4,0x1,0x0,0x0,0x0,0x0,0x0,0x0,
+0xa4,0x1,0x0,0x0,0x0,0x0,0x0,0x0,
+0x25,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9a,0x0,0x10,0x1,0x9a,0x0,0xa0,0x1,
+0x4,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x99,0x0,0x10,0x1,0x99,0x0,0x90,0x1,
+0x3,0x0,0x0,0x0,0x0,0x0,0x7,0x0,
+0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x98,0x0,0x10,0x1,0x98,0x0,0x80,0x1,
+0xb,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x97,0x0,0x10,0x1,0x97,0x0,0x40,0x1,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x96,0x0,0x10,0x1,0x96,0x0,0x40,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x10,0x1,0x9c,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xa3,0x0,0x10,0x1,0xa3,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xaa,0x0,0x10,0x1,0xaa,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xb1,0x0,0x10,0x1,0xb1,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xb8,0x0,0x10,0x1,0xb8,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xbf,0x0,0x10,0x1,0xbf,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xc6,0x0,0x10,0x1,0xc6,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xcd,0x0,0x10,0x1,0xcd,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xd4,0x0,0x10,0x1,0xd4,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x44,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0x9c,0x0,0x10,0x1,0x9d,0x0,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xa0,0x0,0x50,0x1,0xa0,0x0,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x45,0x0,0x0,0x0,
+0x9f,0x0,0x50,0x1,0x9f,0x0,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9e,0x0,0x50,0x1,0x9e,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x46,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0xa3,0x0,0x10,0x1,0xa4,0x0,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xa7,0x0,0x50,0x1,0xa7,0x0,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x47,0x0,0x0,0x0,
+0xa6,0x0,0x50,0x1,0xa6,0x0,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xa5,0x0,0x50,0x1,0xa5,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x48,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0xaa,0x0,0x10,0x1,0xab,0x0,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xae,0x0,0x50,0x1,0xae,0x0,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x49,0x0,0x0,0x0,
+0xad,0x0,0x50,0x1,0xad,0x0,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xac,0x0,0x50,0x1,0xac,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x4a,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0xb1,0x0,0x10,0x1,0xb2,0x0,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xb5,0x0,0x50,0x1,0xb5,0x0,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,
+0xb4,0x0,0x50,0x1,0xb4,0x0,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xb3,0x0,0x50,0x1,0xb3,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x4c,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0xb8,0x0,0x10,0x1,0xb9,0x0,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xbc,0x0,0x50,0x1,0xbc,0x0,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,
+0xbb,0x0,0x50,0x1,0xbb,0x0,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xba,0x0,0x50,0x1,0xba,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x4e,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0xbf,0x0,0x10,0x1,0xc0,0x0,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xc3,0x0,0x50,0x1,0xc3,0x0,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,
+0xc2,0x0,0x50,0x1,0xc2,0x0,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xc1,0x0,0x50,0x1,0xc1,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x50,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0xc6,0x0,0x10,0x1,0xc7,0x0,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xca,0x0,0x50,0x1,0xca,0x0,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x51,0x0,0x0,0x0,
+0xc9,0x0,0x50,0x1,0xc9,0x0,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xc8,0x0,0x50,0x1,0xc8,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x52,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0xcd,0x0,0x10,0x1,0xce,0x0,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xd1,0x0,0x50,0x1,0xd1,0x0,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x53,0x0,0x0,0x0,
+0xd0,0x0,0x50,0x1,0xd0,0x0,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xcf,0x0,0x50,0x1,0xcf,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0xd4,0x0,0x10,0x1,0xd5,0x0,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xd8,0x0,0x50,0x1,0xd8,0x0,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x55,0x0,0x0,0x0,
+0xd7,0x0,0x50,0x1,0xd7,0x0,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xd6,0x0,0x50,0x1,0xd6,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,
+0x56,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0xb,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x5c,0x1,0x0,0x0,
+0xdc,0x0,0xd0,0x0,0xdd,0x0,0x10,0x1,
+0x5c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,
+0x5c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,
+0x25,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xe2,0x0,0x10,0x1,0xe2,0x0,0xa0,0x1,
+0x4,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xe1,0x0,0x10,0x1,0xe1,0x0,0x90,0x1,
+0x3,0x0,0x0,0x0,0x0,0x0,0x7,0x0,
+0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xe0,0x0,0x10,0x1,0xe0,0x0,0x80,0x1,
+0xb,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xdf,0x0,0x10,0x1,0xdf,0x0,0x40,0x1,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xde,0x0,0x10,0x1,0xde,0x0,0x40,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xe4,0x0,0x10,0x1,0xe4,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xeb,0x0,0x10,0x1,0xeb,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xf2,0x0,0x10,0x1,0xf2,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xf9,0x0,0x10,0x1,0xf9,0x0,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x0,0x1,0x10,0x1,0x0,0x1,0x10,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,
+0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x7,0x1,0x10,0x1,0x7,0x1,0x10,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x57,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0xe4,0x0,0x10,0x1,0xe5,0x0,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xe8,0x0,0x50,0x1,0xe8,0x0,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x58,0x0,0x0,0x0,
+0xe7,0x0,0x50,0x1,0xe7,0x0,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xe6,0x0,0x50,0x1,0xe6,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x59,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0xeb,0x0,0x10,0x1,0xec,0x0,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xef,0x0,0x50,0x1,0xef,0x0,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,
+0xee,0x0,0x50,0x1,0xee,0x0,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xed,0x0,0x50,0x1,0xed,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x5b,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0xf2,0x0,0x10,0x1,0xf3,0x0,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xf6,0x0,0x50,0x1,0xf6,0x0,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x5c,0x0,0x0,0x0,
+0xf5,0x0,0x50,0x1,0xf5,0x0,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xf4,0x0,0x50,0x1,0xf4,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x5d,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0xf9,0x0,0x10,0x1,0xfa,0x0,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xfd,0x0,0x50,0x1,0xfd,0x0,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,
+0xfc,0x0,0x50,0x1,0xfc,0x0,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xfb,0x0,0x50,0x1,0xfb,0x0,0x80,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x5f,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0x0,0x1,0x10,0x1,0x1,0x1,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x4,0x1,0x50,0x1,0x4,0x1,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,
+0x3,0x1,0x50,0x1,0x3,0x1,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x2,0x1,0x50,0x1,0x2,0x1,0x80,0x1,
+0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
+0x60,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x3,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,
+0x7,0x1,0x10,0x1,0x8,0x1,0x50,0x1,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x29,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0xb,0x1,0x50,0x1,0xb,0x1,0xc0,0x1,
+0x2b,0x0,0x0,0x0,0x0,0x0,0x3,0x0,
+0x0,0x0,0x0,0x0,0x61,0x0,0x0,0x0,
+0xa,0x1,0x50,0x1,0xa,0x1,0x0,0x2,
+0xa,0x0,0x0,0x0,0x0,0x0,0x2,0x0,
+0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x9,0x1,0x50,0x1,0x9,0x1,0x80,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,
+0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x54,0x0,0x0,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x1,0x0,0x54,0x0,0x0,0x0,
+0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,
+0x10,0x1,0x90,0x0,0x0,0x0,0x0,0x0,
+0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x63,0x0,0x0,0x0,0x0,0x2,0x7,0x0,
+0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+0x10,0x1,0xe0,0x0,0x10,0x1,0xa0,0x1,
+0x0,0x0,0x0,0x0
+};
+QT_WARNING_PUSH
+QT_WARNING_DISABLE_MSVC(4573)
+extern const QQmlPrivate::AOTCompiledFunction aotBuiltFunctions[];
+extern const QQmlPrivate::AOTCompiledFunction aotBuiltFunctions[] = {
+{ 0, 1, [](QV4::ExecutableCompilationUnit *unit, QMetaType *argTypes) {
+    struct { QV4::ExecutableCompilationUnit *compilationUnit; } c { unit };
+    const auto *aotContext = &c;
+    Q_UNUSED(aotContext);
+    argTypes[0] = QMetaType();
+    argTypes[1] = []() { static const auto t = QMetaType::fromName("QQuickMouseEvent*"); return t; }();
+}, 
+    [](const QQmlPrivate::AOTCompiledContext *aotContext, void **argv) {
+Q_UNUSED(aotContext)
+Q_UNUSED(argv)
+// expression for onClicked at line 44, column 17
+QVariant r2_1;
+QObject *r2_0;
+QObject *r7_0;
+// generate_CreateCallContext
+{
+{
+}
+// generate_LoadQmlContextPropertyLookup
+#ifndef QT_NO_DEBUG
+aotContext->setInstructionPointer(3);
+#endif
+while (!aotContext->loadContextIdLookup(0, &r2_0)) {
+#ifdef QT_NO_DEBUG
+aotContext->setInstructionPointer(3);
+#endif
+aotContext->initLoadContextIdLookup(0);
+if (aotContext->engine->hasError()) {
+aotContext->setReturnValueUndefined();
+return;
+}
+}
+{
+}
+// generate_StoreReg
+r7_0 = r2_0;
+{
+}
+// generate_LoadRuntimeString
+r2_1 = [&](){ auto arg = QStringLiteral("#51c3e1"); return aotContext->constructValueType([]() { static const auto t = QMetaType::fromName("QColor"); return t; }(), []() { static const auto t = QMetaType::fromName("QQuickColorValueType"); return t; }().metaObject(), 1, &arg); }();
+{
+}
+{
+}
+// generate_SetLookup
+{
+#ifndef QT_NO_DEBUG
+aotContext->setInstructionPointer(12);
+#endif
+while (!aotContext->setObjectLookup(1, r7_0, r2_1.data())) {
+#ifdef QT_NO_DEBUG
+aotContext->setInstructionPointer(12);
+#endif
+aotContext->initSetObjectLookup(1, r7_0, r2_1.metaType());
+if (aotContext->engine->hasError()) {
+aotContext->setReturnValueUndefined();
+return;
+}
+}
+}
+{
+}
+{
+}
+// generate_PopContext
+{}
+}
+{
+}
+{
+}
+// generate_Ret
+return;
+}
+ },{ 1, 0, [](QV4::ExecutableCompilationUnit *unit, QMetaType *argTypes) {
+    struct { QV4::ExecutableCompilationUnit *compilationUnit; } c { unit };
+    const auto *aotContext = &c;
+    Q_UNUSED(aotContext);
+    argTypes[0] = QMetaType::fromType<double>();
+}, 
+    [](const QQmlPrivate::AOTCompiledContext *aotContext, void **argv) {
+Q_UNUSED(aotContext)
+Q_UNUSED(argv)
+// expression for width at line 70, column 17
+double r8_0;
+double r7_0;
+double r2_0;
+double r2_1;
+double r9_0;
+// generate_MoveConst
+r7_0 = double(10);
+{
+}
+// generate_LoadInt
+r2_0 = double(70);
+{
+}
+// generate_Mul
+r2_0 = (r7_0 * r2_0);
+{
+}
+// generate_StoreReg
+r8_0 = r2_0;
+{
+}
+// generate_MoveConst
+r9_0 = double(9);
+{
+}
+// generate_LoadQmlContextPropertyLookup
+#ifndef QT_NO_DEBUG
+aotContext->setInstructionPointer(14);
+#endif
+while (!aotContext->loadScopeObjectPropertyLookup(2, &r2_1)) {
+#ifdef QT_NO_DEBUG
+aotContext->setInstructionPointer(14);
+#endif
+aotContext->initLoadScopeObjectPropertyLookup(2, QMetaType::fromType<double>());
+if (aotContext->engine->hasError()) {
+aotContext->setReturnValueUndefined();
+if (argv[0]) {
+    *static_cast<double *>(argv[0]) = double();
+}
+return;
+}
+}
+{
+}
+// generate_Mul
+r2_0 = (r9_0 * r2_1);
+{
+}
+// generate_Add
+r2_0 = (r8_0 + r2_0);
+{
+}
+{
+}
+// generate_Ret
+if (argv[0]) {
+    *static_cast<double *>(argv[0]) = r2_0;
+}
+return;
+}
+ },{ 2, 0, [](QV4::ExecutableCompilationUnit *unit, QMetaType *argTypes) {
+    struct { QV4::ExecutableCompilationUnit *compilationUnit; } c { unit };
+    const auto *aotContext = &c;
+    Q_UNUSED(aotContext);
+    argTypes[0] = []() { static const auto t = QMetaType::fromName("QQuickItem*"); return t; }();
+}, 
+    [](const QQmlPrivate::AOTCompiledContext *aotContext, void **argv) {
+Q_UNUSED(aotContext)
+Q_UNUSED(argv)
+// expression for fill at line 145, column 17
+QObject *r2_0;
+// generate_LoadQmlContextPropertyLookup
+#ifndef QT_NO_DEBUG
+aotContext->setInstructionPointer(2);
+#endif
+while (!aotContext->loadScopeObjectPropertyLookup(3, &r2_0)) {
+#ifdef QT_NO_DEBUG
+aotContext->setInstructionPointer(2);
+#endif
+aotContext->initLoadScopeObjectPropertyLookup(3, []() { static const auto t = QMetaType::fromName("QQuickItem*"); return t; }());
+if (aotContext->engine->hasError()) {
+aotContext->setReturnValueUndefined();
+if (argv[0]) {
+    *static_cast<QObject * *>(argv[0]) = nullptr;
+}
+return;
+}
+}
+{
+}
+{
+}
+// generate_Ret
+if (argv[0]) {
+    *static_cast<QObject * *>(argv[0]) = r2_0;
+}
+return;
+}
+ },{ 3, 0, [](QV4::ExecutableCompilationUnit *unit, QMetaType *argTypes) {
+    struct { QV4::ExecutableCompilationUnit *compilationUnit; } c { unit };
+    const auto *aotContext = &c;
+    Q_UNUSED(aotContext);
+    argTypes[0] = QMetaType::fromType<double>();
+}, 
+    [](const QQmlPrivate::AOTCompiledContext *aotContext, void **argv) {
+Q_UNUSED(aotContext)
+Q_UNUSED(argv)
+// expression for width at line 152, column 17
+double r8_0;
+double r7_0;
+double r2_0;
+double r9_0;
+double r2_1;
+// generate_MoveConst
+r7_0 = double(9);
+{
+}
+// generate_LoadInt
+r2_0 = double(70);
+{
+}
+// generate_Mul
+r2_0 = (r7_0 * r2_0);
+{
+}
+// generate_StoreReg
+r8_0 = r2_0;
+{
+}
+// generate_MoveConst
+r9_0 = double(8);
+{
+}
+// generate_LoadQmlContextPropertyLookup
+#ifndef QT_NO_DEBUG
+aotContext->setInstructionPointer(14);
+#endif
+while (!aotContext->loadScopeObjectPropertyLookup(4, &r2_1)) {
+#ifdef QT_NO_DEBUG
+aotContext->setInstructionPointer(14);
+#endif
+aotContext->initLoadScopeObjectPropertyLookup(4, QMetaType::fromType<double>());
+if (aotContext->engine->hasError()) {
+aotContext->setReturnValueUndefined();
+if (argv[0]) {
+    *static_cast<double *>(argv[0]) = double();
+}
+return;
+}
+}
+{
+}
+// generate_Mul
+r2_0 = (r9_0 * r2_1);
+{
+}
+// generate_Add
+r2_0 = (r8_0 + r2_0);
+{
+}
+{
+}
+// generate_Ret
+if (argv[0]) {
+    *static_cast<double *>(argv[0]) = r2_0;
+}
+return;
+}
+ },{ 4, 0, [](QV4::ExecutableCompilationUnit *unit, QMetaType *argTypes) {
+    struct { QV4::ExecutableCompilationUnit *compilationUnit; } c { unit };
+    const auto *aotContext = &c;
+    Q_UNUSED(aotContext);
+    argTypes[0] = QMetaType::fromType<double>();
+}, 
+    [](const QQmlPrivate::AOTCompiledContext *aotContext, void **argv) {
+Q_UNUSED(aotContext)
+Q_UNUSED(argv)
+// expression for width at line 224, column 17
+double r8_0;
+double r2_1;
+double r7_0;
+double r2_0;
+double r9_0;
+// generate_MoveConst
+r7_0 = double(6);
+{
+}
+// generate_LoadInt
+r2_0 = double(70);
+{
+}
+// generate_Mul
+r2_0 = (r7_0 * r2_0);
+{
+}
+// generate_StoreReg
+r8_0 = r2_0;
+{
+}
+// generate_MoveConst
+r9_0 = double(5);
+{
+}
+// generate_LoadQmlContextPropertyLookup
+#ifndef QT_NO_DEBUG
+aotContext->setInstructionPointer(14);
+#endif
+while (!aotContext->loadScopeObjectPropertyLookup(5, &r2_1)) {
+#ifdef QT_NO_DEBUG
+aotContext->setInstructionPointer(14);
+#endif
+aotContext->initLoadScopeObjectPropertyLookup(5, QMetaType::fromType<double>());
+if (aotContext->engine->hasError()) {
+aotContext->setReturnValueUndefined();
+if (argv[0]) {
+    *static_cast<double *>(argv[0]) = double();
+}
+return;
+}
+}
+{
+}
+// generate_Mul
+r2_0 = (r9_0 * r2_1);
+{
+}
+// generate_Add
+r2_0 = (r8_0 + r2_0);
+{
+}
+{
+}
+// generate_Ret
+if (argv[0]) {
+    *static_cast<double *>(argv[0]) = r2_0;
+}
+return;
+}
+ },{ 5, 1, [](QV4::ExecutableCompilationUnit *unit, QMetaType *argTypes) {
+    struct { QV4::ExecutableCompilationUnit *compilationUnit; } c { unit };
+    const auto *aotContext = &c;
+    Q_UNUSED(aotContext);
     argTypes[0] = QMetaType();
     argTypes[1] = []() { static const auto t = QMetaType::fromName("QQuickKeyEvent*"); return t; }();
 }, 
     [](const QQmlPrivate::AOTCompiledContext *aotContext, void **argv) {
 Q_UNUSED(aotContext)
 Q_UNUSED(argv)
-//  at line 39, column 26
-int r2_1;
-QObject *r2_4;
+// expression for onPressed at line 272, column 9
+// generate_CreateCallContext
+{
+{
+}
+{
+}
+{
+}
+// generate_PopContext
+{}
+}
+{
+}
+{
+}
+// generate_Ret
+return;
+}
+ },{ 6, 1, [](QV4::ExecutableCompilationUnit *unit, QMetaType *argTypes) {
+    struct { QV4::ExecutableCompilationUnit *compilationUnit; } c { unit };
+    const auto *aotContext = &c;
+    Q_UNUSED(aotContext);
+    argTypes[0] = QMetaType();
+    argTypes[1] = []() { static const auto t = QMetaType::fromName("QQuickKeyEvent*"); return t; }();
+}, 
+    [](const QQmlPrivate::AOTCompiledContext *aotContext, void **argv) {
+Q_UNUSED(aotContext)
+Q_UNUSED(argv)
+//  at line 272, column 26
+QObject *r9_0;
 QString r13_0;
 QObject *r2_0;
 QString r14_0;
+int r8_0;
+QObject *r2_4;
 QString r2_6;
 QString r12_0;
 int r2_2;
-int r8_0;
-QString r2_5;
 QString r2_7;
+QString r2_5;
+int r2_1;
 QObject *r6_0 = (*static_cast<QObject **>(argv[1]));
-QObject *r9_0;
 bool r2_3;
 // generate_LoadReg
 r2_0 = r6_0;
@@ -440,11 +1864,11 @@ r2_0 = r6_0;
 #ifndef QT_NO_DEBUG
 aotContext->setInstructionPointer(4);
 #endif
-while (!aotContext->getObjectLookup(0, r2_0, &r2_1)) {
+while (!aotContext->getObjectLookup(6, r2_0, &r2_1)) {
 #ifdef QT_NO_DEBUG
 aotContext->setInstructionPointer(4);
 #endif
-aotContext->initGetObjectLookup(0, r2_0, QMetaType::fromType<int>());
+aotContext->initGetObjectLookup(6, r2_0, QMetaType::fromType<int>());
 if (aotContext->engine->hasError()) {
 aotContext->setReturnValueUndefined();
 return;
@@ -462,11 +1886,11 @@ r8_0 = r2_1;
 #ifndef QT_NO_DEBUG
 aotContext->setInstructionPointer(10);
 #endif
-while (!aotContext->getEnumLookup(2, &r2_2)) {
+while (!aotContext->getEnumLookup(8, &r2_2)) {
 #ifdef QT_NO_DEBUG
 aotContext->setInstructionPointer(10);
 #endif
-aotContext->initGetEnumLookup(2, []() { static const auto t = QMetaType::fromName("Qt"); return t; }().metaObject(), "Key", "Key_A");
+aotContext->initGetEnumLookup(8, []() { static const auto t = QMetaType::fromName("Qt"); return t; }().metaObject(), "Key", "Key_A");
 if (aotContext->engine->hasError()) {
 aotContext->setReturnValueUndefined();
 return;
@@ -488,11 +1912,11 @@ if (!r2_3) {
 #ifndef QT_NO_DEBUG
 aotContext->setInstructionPointer(16);
 #endif
-while (!aotContext->loadContextIdLookup(3, &r2_4)) {
+while (!aotContext->loadContextIdLookup(9, &r2_4)) {
 #ifdef QT_NO_DEBUG
 aotContext->setInstructionPointer(16);
 #endif
-aotContext->initLoadContextIdLookup(3);
+aotContext->initLoadContextIdLookup(9);
 if (aotContext->engine->hasError()) {
 aotContext->setReturnValueUndefined();
 return;
@@ -522,11 +1946,11 @@ r2_5 = QCoreApplication::translate(aotContext->translationContext().toUtf8().con
 #ifndef QT_NO_DEBUG
 aotContext->setInstructionPointer(29);
 #endif
-while (!aotContext->setObjectLookup(5, r9_0, &r2_5)) {
+while (!aotContext->setObjectLookup(11, r9_0, &r2_5)) {
 #ifdef QT_NO_DEBUG
 aotContext->setInstructionPointer(29);
 #endif
-aotContext->initSetObjectLookup(5, r9_0, QMetaType::fromType<QString>());
+aotContext->initSetObjectLookup(11, r9_0, QMetaType::fromType<QString>());
 if (aotContext->engine->hasError()) {
 aotContext->setReturnValueUndefined();
 return;
@@ -549,11 +1973,11 @@ int retrieved;
 #ifndef QT_NO_DEBUG
 aotContext->setInstructionPointer(37);
 #endif
-while (!aotContext->getObjectLookup(7, r2_0, &retrieved)) {
+while (!aotContext->getObjectLookup(13, r2_0, &retrieved)) {
 #ifdef QT_NO_DEBUG
 aotContext->setInstructionPointer(37);
 #endif
-aotContext->initGetObjectLookup(7, r2_0, QMetaType::fromType<int>());
+aotContext->initGetObjectLookup(13, r2_0, QMetaType::fromType<int>());
 if (aotContext->engine->hasError()) {
 aotContext->setReturnValueUndefined();
 return;
@@ -587,11 +2011,11 @@ r2_0 = r6_0;
 #ifndef QT_NO_DEBUG
 aotContext->setInstructionPointer(49);
 #endif
-while (!aotContext->getObjectLookup(8, r2_0, &r2_7)) {
+while (!aotContext->getObjectLookup(14, r2_0, &r2_7)) {
 #ifdef QT_NO_DEBUG
 aotContext->setInstructionPointer(49);
 #endif
-aotContext->initGetObjectLookup(8, r2_0, QMetaType::fromType<QString>());
+aotContext->initGetObjectLookup(14, r2_0, QMetaType::fromType<QString>());
 if (aotContext->engine->hasError()) {
 aotContext->setReturnValueUndefined();
 return;
@@ -628,11 +2052,11 @@ r2_3 = true;
 #ifndef QT_NO_DEBUG
 aotContext->setInstructionPointer(62);
 #endif
-while (!aotContext->setObjectLookup(10, r6_0, &r2_3)) {
+while (!aotContext->setObjectLookup(16, r6_0, &r2_3)) {
 #ifdef QT_NO_DEBUG
 aotContext->setInstructionPointer(62);
 #endif
-aotContext->initSetObjectLookup(10, r6_0, QMetaType::fromType<bool>());
+aotContext->initSetObjectLookup(16, r6_0, QMetaType::fromType<bool>());
 if (aotContext->engine->hasError()) {
 aotContext->setReturnValueUndefined();
 return;
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats
index 9adb895187e455a7239adfd940047c330a445129..867742466b2d14038c6f795c43c6ed94ca9ba863 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats
@@ -3,21 +3,61 @@
         "moduleFiles": [
             {
                 "entries": [
+                    {
+                        "codegenSuccessfull": true,
+                        "column": 28,
+                        "durationMicroseconds": 564,
+                        "errorMessage": "",
+                        "functionName": "onClicked",
+                        "line": 44
+                    },
+                    {
+                        "codegenSuccessfull": true,
+                        "column": 24,
+                        "durationMicroseconds": 349,
+                        "errorMessage": "",
+                        "functionName": "width",
+                        "line": 70
+                    },
+                    {
+                        "codegenSuccessfull": true,
+                        "column": 31,
+                        "durationMicroseconds": 101,
+                        "errorMessage": "",
+                        "functionName": "fill",
+                        "line": 145
+                    },
+                    {
+                        "codegenSuccessfull": true,
+                        "column": 24,
+                        "durationMicroseconds": 316,
+                        "errorMessage": "",
+                        "functionName": "width",
+                        "line": 152
+                    },
+                    {
+                        "codegenSuccessfull": true,
+                        "column": 24,
+                        "durationMicroseconds": 307,
+                        "errorMessage": "",
+                        "functionName": "width",
+                        "line": 224
+                    },
                     {
                         "codegenSuccessfull": true,
                         "column": 26,
-                        "durationMicroseconds": 7099,
+                        "durationMicroseconds": 1237,
                         "errorMessage": "",
                         "functionName": "onPressed",
-                        "line": 39
+                        "line": 272
                     },
                     {
                         "codegenSuccessfull": true,
                         "column": 26,
-                        "durationMicroseconds": 112,
+                        "durationMicroseconds": 84,
                         "errorMessage": "",
                         "functionName": "onPressed",
-                        "line": 39
+                        "line": 272
                     }
                 ],
                 "filepath": "D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Main.qml"
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qml_loader_file_list.rsp b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qml_loader_file_list.rsp
index 8e764c59b114f7ec64cc2a0af3e4511061fbc47e..28b3472e21934643dda57c7ee959b249e5a87428 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qml_loader_file_list.rsp
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qml_loader_file_list.rsp
@@ -5,3 +5,4 @@ D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_
 /qt/qml/Motus/Main.qml
 /qt/qml/Motus/Case.qml
 /qt/qml/Motus/Bouton.qml
+/qt/qml/Motus/Key.qml
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp
index 0f6378cdf6955304cb82975e3d3702b5d0b01b87..2ef5aca8aab730bd45ab20f4054b042944cd97e4 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp
@@ -26,6 +26,13 @@ namespace _qt_qml_Motus_Bouton_qml {
         reinterpret_cast<const QV4::CompiledData::Unit*>(&qmlData), &aotBuiltFunctions[0], nullptr
     };
 }
+namespace _qt_qml_Motus_Key_qml { 
+    extern const unsigned char qmlData[];
+    extern const QQmlPrivate::AOTCompiledFunction aotBuiltFunctions[];
+    const QQmlPrivate::CachedQmlUnit unit = {
+        reinterpret_cast<const QV4::CompiledData::Unit*>(&qmlData), &aotBuiltFunctions[0], nullptr
+    };
+}
 
 }
 namespace {
@@ -43,6 +50,7 @@ Registry::Registry() {
     resourcePathToCachedUnit.insert(QStringLiteral("/qt/qml/Motus/Main.qml"), &QmlCacheGeneratedCode::_qt_qml_Motus_Main_qml::unit);
     resourcePathToCachedUnit.insert(QStringLiteral("/qt/qml/Motus/Case.qml"), &QmlCacheGeneratedCode::_qt_qml_Motus_Case_qml::unit);
     resourcePathToCachedUnit.insert(QStringLiteral("/qt/qml/Motus/Bouton.qml"), &QmlCacheGeneratedCode::_qt_qml_Motus_Bouton_qml::unit);
+    resourcePathToCachedUnit.insert(QStringLiteral("/qt/qml/Motus/Key.qml"), &QmlCacheGeneratedCode::_qt_qml_Motus_Key_qml::unit);
     QQmlPrivate::RegisterQmlUnitCacheHook registration;
     registration.structVersion = 0;
     registration.lookupCachedQmlUnit = &lookupCachedUnit;
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/module_appMotus.aotstatslist b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/module_appMotus.aotstatslist
index 5c8bc72a67ac8ee77b54377225940b45db7a854f..44d503086741ff277666d6b4d8d613787b1901a9 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/module_appMotus.aotstatslist
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/module_appMotus.aotstatslist
@@ -1,3 +1,4 @@
 D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.aotstats
 D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.aotstats
-D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp.aotstats
\ No newline at end of file
+D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp.aotstats
+D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp.aotstats
\ No newline at end of file
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmllint/appMotus.rsp b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmllint/appMotus.rsp
index cdb1505d6fd86c8c1f8f1fbb9b07cdf1efdc3f98..adeac32a57690ebfceb3f05ac7d011a4f526b940 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmllint/appMotus.rsp
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmllint/appMotus.rsp
@@ -10,3 +10,4 @@ D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_
 D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Main.qml
 D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Case.qml
 D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Bouton.qml
+D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Key.qml
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmllint/appMotus_json.rsp b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmllint/appMotus_json.rsp
index 44e501f5bb553720773854dae43d142fb1a291d0..08aec52f0088bcb5c3742a613afb80c4a4d8d7b5 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmllint/appMotus_json.rsp
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmllint/appMotus_json.rsp
@@ -10,5 +10,6 @@ D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_
 D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Main.qml
 D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Case.qml
 D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Bouton.qml
+D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Key.qml
 --json
 D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_qmllint.json
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp.obj b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp.obj
index 181d81b79e19031cee11cfb6f2729ff0695efd3c..30684b42a87d2c9e159bc29064eb376e7878a98b 100644
Binary files a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp.obj and b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp.obj differ
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp.obj b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp.obj
index 9b93e2b00667b9f3db4d944f7c6afbe0f011da0f..b809beb71d8fc27aa67aea29defa583e34ac0d05 100644
Binary files a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp.obj and b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp.obj differ
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp.obj b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp.obj
index 119c8505e6e73c4c196baffdebe76c54c3912939..ab9b496b6db7d313ae609d3e84b9377230cee892 100644
Binary files a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp.obj and b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp.obj differ
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.obj b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.obj
index 72bcd3ad47baf5205e33fbd9ec4bc2ed70598ffa..0c2abef3158fee32dfce51251b2d7799539a0684 100644
Binary files a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.obj and b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.obj differ
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp.obj b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp.obj
new file mode 100644
index 0000000000000000000000000000000000000000..1d6c2ac9b04bc7f206c494b8f3656595674f96f0
Binary files /dev/null and b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp.obj differ
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.obj b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.obj
index ae0355012ba048956ee719bf127442837c104709..e7a0a7b0f62751641f2f341cbf48c5559a9a5b43 100644
Binary files a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.obj and b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.obj differ
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp.obj b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp.obj
index 03c8d48b8a4af35988b7c075b4320e91874095e0..320ff7bb3ce25adac6f7cfb1c5965f1d44d78d30 100644
Binary files a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp.obj and b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp.obj differ
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus_autogen.dir/AutogenInfo.json b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus_autogen.dir/AutogenInfo.json
index 488ac81602aa05566e78ac87f07588106e5554ae..1c4581afa50de41eed259eec91fa019dbe2f9701 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus_autogen.dir/AutogenInfo.json
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/CMakeFiles/appMotus_autogen.dir/AutogenInfo.json
@@ -867,6 +867,7 @@
 		"D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp",
 		"D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp",
 		"D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp",
+		"D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp",
 		"D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp",
 		"D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp",
 		"D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appmotus_qmltyperegistrations.cpp"
@@ -895,6 +896,7 @@
 		"D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp",
 		"D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp",
 		"D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp",
+		"D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp",
 		"D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp",
 		"D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp",
 		"D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appmotus_qmltyperegistrations.cpp"
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/Case.qml b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/Case.qml
index 6b531453d122e55b532f38c84a361f471b357a99..950811467882a02af55bb017cb726bf802725978 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/Case.qml
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/Case.qml
@@ -3,8 +3,10 @@ import QtQuick
 Item {
     width: 90
     height: 90
+    property alias _textColor: _text.color
     property alias _textText: _text.text
 
+
     Text {
         id: _text
         x: 0
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/Key.qml b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/Key.qml
index 5560aee72760e390f8f001f3163d06bc2ed5d055..13b9f34cf116306234b934b86c16bf52e085b10b 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/Key.qml
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/Key.qml
@@ -1,5 +1,33 @@
 import QtQuick
 
 Item {
+    id: _item
+    width: 70
+    height: 100
+    property alias labelText: label.text
+    focus: true
+    scale: 2
+
+    Rectangle {
+        id: rectangle
+        color: "#7a7a7a"
+        radius: 20
+        anchors.fill: parent
+
+        
+        Text {
+            id: label
+            x: 25
+            y: 42
+            color: "#ffffff"
+            text: qsTr("A")
+            anchors.fill: parent
+            font.pixelSize: 70
+            horizontalAlignment: Text.AlignHCenter
+            verticalAlignment: Text.AlignVCenter
+            font.family: "Tahoma"
+            font.bold: true
+        }
+    }
 
 }
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/Main.qml b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/Main.qml
index 916ba9dd620f197f9cad8d08f0e36bc32bb284ff..d749a09c8ece7f8b4c955d4cdcff31818591dcb4 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/Main.qml
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/Main.qml
@@ -34,14 +34,247 @@ Window {
             x: 76
             y: 47
             _textText: "Générer un mot"
+
+            MouseArea {
+                id: mouseArea
+                x: 0
+                y: 0
+                width: 400
+                height: 200
+                onClicked: case3._textColor="#51c3e1"
+
+                Case {
+                    id: case3
+                    _textText: "test"
+                }
+            }
         }
 
-        Keys.onPressed: (event) => {
-            if (event.key === Qt.Key_A) {
-                case1._textText = qsTr("C");  // Correcte modification
-                console.log(event.key + " /// " + event.text);
-                event.accepted = true;
+        Rectangle {
+            id: rectangle1
+            x: 473
+            y: 638
+            width: 1000
+            height: 350
+            color: "#a2647c"
+            radius: 10
+            border.color: "#ffffff"
+            border.width: 5
+
+            Row {
+                id: row1
+                x: 128
+                y: 19
+                height: 100
+                spacing: 5
+                width: (10 * 70) + (9 * spacing)
+
+                Key {
+                    id: key
+                    x: 0
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key1
+                    x: 70
+                    labelText: "Z"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key2
+                    x: 140
+                    labelText: "E"
+                    antialiasing: true
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key3
+                    x: 210
+                    labelText: "R"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key4
+                    x: 280
+                    labelText: "T"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key5
+                    x: 350
+                    labelText: "Y"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key6
+                    x: 420
+                    labelText: "U"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key7
+                    x: 490
+                    labelText: "I"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key8
+                    x: 560
+                    labelText: "O"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key9
+                    x: 630
+                    labelText: "P"
+                    scale: 0.8
+                }
+            }
+
+            Column {
+                id: column
+                anchors.fill: parent
+            }
+
+            Row {
+                id: row2
+                x: 165
+                y: 125
+                width: (9 * 70) + (8 * spacing)
+                height: 100
+                spacing: 5
+
+                Key {
+                    id: key12
+                    x: 140
+                    labelText: "Q"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key13
+                    x: 210
+                    labelText: "S"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key14
+                    x: 280
+                    labelText: "D"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key15
+                    x: 350
+                    labelText: "F"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key16
+                    x: 420
+                    labelText: "G"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key17
+                    x: 490
+                    labelText: "H"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key18
+                    x: 560
+                    labelText: "J"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key19
+                    x: 630
+                    labelText: "K"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key20
+                    x: 630
+                    labelText: "L"
+                    scale: 0.8
+                }
+            }
+
+            Row {
+                id: row3
+                x: 128
+                y: 231
+                width: (6 * 70) + (5 * spacing)
+                height: 100
+                spacing: 5
+
+                Key {
+                    id: key23
+                    x: 140
+                    labelText: "W"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key24
+                    x: 210
+                    labelText: "X"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key25
+                    x: 280
+                    labelText: "C"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key26
+                    x: 350
+                    labelText: "V"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key27
+                    x: 420
+                    labelText: "B"
+                    scale: 0.8
+                }
+
+                Key {
+                    id: key28
+                    x: 490
+                    labelText: "N"
+                    scale: 0.8
+                }
             }
         }
+
+        Keys.onPressed: (event) => {
+                            if (event.key === Qt.Key_A) {
+                                case1._textText = qsTr("C");  // Correcte modification
+                                console.log(event.key + " /// " + event.text);
+                                event.accepted = true;
+                            }
+                        }
     }
 }
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/qmldir b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/qmldir
index 1c2eaf55f2e847d63f68917ad52d500d470972e5..3cf5ed8b01fd32d2d50f319a5afec5cbc3f23e8c 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/qmldir
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/qmldir
@@ -4,4 +4,5 @@ prefer :/qt/qml/Motus/
 Main 1.0 Main.qml
 Case 1.0 Case.qml
 Bouton 1.0 Bouton.qml
+Key 1.0 Key.qml
 
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Testing/Temporary/LastTest.log b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Testing/Temporary/LastTest.log
index 03b612151dd063c4294952881215cf41feb67d62..e51a72b844aaac0e682db0ac9f03790ac6b89afc 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Testing/Temporary/LastTest.log
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Testing/Temporary/LastTest.log
@@ -1,3 +1,3 @@
-Start testing: Mar 17 11:40 Paris, Madrid
+Start testing: Mar 17 14:41 Paris, Madrid
 ----------------------------------------------------------
-End testing: Mar 17 11:40 Paris, Madrid
+End testing: Mar 17 14:41 Paris, Madrid
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus.exe b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus.exe
index 69eed042b2cba5f2e2bec56ae9b3b8810cb76cd1..99e548a433feced58c39c5632671df83f0fda05d 100644
Binary files a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus.exe and b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus.exe differ
diff --git a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/build.ninja b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/build.ninja
index 70762969e035ba8f7faf5dc4fab5c47c17487898..d6f78e3cc6fd64926546b16f0d1fcdfef821f97e 100644
--- a/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/build.ninja
+++ b/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/build.ninja
@@ -47,7 +47,7 @@ cmake_ninja_workdir = D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Mo
 #############################################
 # Order-only phony target for appMotus
 
-build cmake_object_order_depends_target_appMotus: phony || .qt/rcc/qrc_appMotus_raw_qml_0.cpp .qt/rcc/qrc_qmake_Motus.cpp .rcc/qmlcache/appMotus_Bouton_qml.cpp .rcc/qmlcache/appMotus_Bouton_qml.cpp.aotstats .rcc/qmlcache/appMotus_Case_qml.cpp .rcc/qmlcache/appMotus_Case_qml.cpp.aotstats .rcc/qmlcache/appMotus_Main_qml.cpp .rcc/qmlcache/appMotus_Main_qml.cpp.aotstats .rcc/qmlcache/appMotus_qmlcache_loader.cpp Motus/appMotus.qmltypes appMotus_autogen appMotus_autogen/mocs_compilation.cpp appMotus_autogen/timestamp appMotus_autogen_timestamp_deps appMotus_copy_qml appMotus_copy_res appMotus_qmlimportscan appmotus_qmltyperegistrations.cpp meta_types/appMotus_json_file_list.txt meta_types/appMotus_json_file_list.txt.timestamp meta_types/qt6appmotus_debug_metatypes.json meta_types/qt6appmotus_debug_metatypes.json.gen
+build cmake_object_order_depends_target_appMotus: phony || .qt/rcc/qrc_appMotus_raw_qml_0.cpp .qt/rcc/qrc_qmake_Motus.cpp .rcc/qmlcache/appMotus_Bouton_qml.cpp .rcc/qmlcache/appMotus_Bouton_qml.cpp.aotstats .rcc/qmlcache/appMotus_Case_qml.cpp .rcc/qmlcache/appMotus_Case_qml.cpp.aotstats .rcc/qmlcache/appMotus_Key_qml.cpp .rcc/qmlcache/appMotus_Key_qml.cpp.aotstats .rcc/qmlcache/appMotus_Main_qml.cpp .rcc/qmlcache/appMotus_Main_qml.cpp.aotstats .rcc/qmlcache/appMotus_qmlcache_loader.cpp Motus/appMotus.qmltypes appMotus_autogen appMotus_autogen/mocs_compilation.cpp appMotus_autogen/timestamp appMotus_autogen_timestamp_deps appMotus_copy_qml appMotus_copy_res appMotus_qmlimportscan appmotus_qmltyperegistrations.cpp meta_types/appMotus_json_file_list.txt meta_types/appMotus_json_file_list.txt.timestamp meta_types/qt6appmotus_debug_metatypes.json meta_types/qt6appmotus_debug_metatypes.json.gen
 
 build CMakeFiles/appMotus.dir/appMotus_autogen/mocs_compilation.cpp.obj: CXX_COMPILER__appMotus_unscanned_Debug D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/mocs_compilation.cpp || cmake_object_order_depends_target_appMotus
   DEFINES = -DMINGW_HAS_SECURE_API=1 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NEEDS_QMAIN -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QUICK_LIB -DUNICODE -DWIN32 -DWIN64 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_WIN64
@@ -113,6 +113,14 @@ build CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qml
   OBJECT_DIR = CMakeFiles\appMotus.dir
   OBJECT_FILE_DIR = CMakeFiles\appMotus.dir\build\Desktop_Qt_6_8_2_MinGW_64_bit-Debug\.rcc\qmlcache
 
+build CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp.obj: CXX_COMPILER__appMotus_unscanned_Debug D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp || cmake_object_order_depends_target_appMotus
+  DEFINES = -DMINGW_HAS_SECURE_API=1 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NEEDS_QMAIN -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QUICK_LIB -DUNICODE -DWIN32 -DWIN64 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_WIN64
+  DEP_FILE = CMakeFiles\appMotus.dir\build\Desktop_Qt_6_8_2_MinGW_64_bit-Debug\.rcc\qmlcache\appMotus_Key_qml.cpp.obj.d
+  FLAGS = -DQT_QML_DEBUG -g -fdiagnostics-color=always
+  INCLUDES = -ID:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/appMotus_autogen/include -ID:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus -isystem C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2 -isystem C:/Qt/6.8.2/mingw_64/include/QtQml/6.8.2/QtQml -isystem C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2 -isystem C:/Qt/6.8.2/mingw_64/include/QtCore/6.8.2/QtCore -isystem C:/Qt/6.8.2/mingw_64/include/QtCore -isystem C:/Qt/6.8.2/mingw_64/include -isystem C:/Qt/6.8.2/mingw_64/mkspecs/win32-g++ -isystem C:/Qt/6.8.2/mingw_64/include/QtQml -isystem C:/Qt/6.8.2/mingw_64/include/QtQmlIntegration -isystem C:/Qt/6.8.2/mingw_64/include/QtNetwork -isystem C:/Qt/6.8.2/mingw_64/include/QtQuick -isystem C:/Qt/6.8.2/mingw_64/include/QtGui -isystem C:/Qt/6.8.2/mingw_64/include/QtQmlMeta -isystem C:/Qt/6.8.2/mingw_64/include/QtQmlModels -isystem C:/Qt/6.8.2/mingw_64/include/QtQmlWorkerScript -isystem C:/Qt/6.8.2/mingw_64/include/QtOpenGL
+  OBJECT_DIR = CMakeFiles\appMotus.dir
+  OBJECT_FILE_DIR = CMakeFiles\appMotus.dir\build\Desktop_Qt_6_8_2_MinGW_64_bit-Debug\.rcc\qmlcache
+
 build CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp.obj: CXX_COMPILER__appMotus_unscanned_Debug D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp || cmake_object_order_depends_target_appMotus
   DEFINES = -DMINGW_HAS_SECURE_API=1 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NEEDS_QMAIN -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QUICK_LIB -DUNICODE -DWIN32 -DWIN64 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_WIN64
   DEP_FILE = CMakeFiles\appMotus.dir\build\Desktop_Qt_6_8_2_MinGW_64_bit-Debug\.qt\rcc\qrc_appMotus_raw_qml_0.cpp.obj.d
@@ -129,7 +137,7 @@ build CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/
 #############################################
 # Link the executable appMotus.exe
 
-build appMotus.exe: CXX_EXECUTABLE_LINKER__appMotus_Debug CMakeFiles/appMotus.dir/appMotus_autogen/mocs_compilation.cpp.obj CMakeFiles/appMotus.dir/main.cpp.obj CMakeFiles/appMotus.dir/appmotus_qmltyperegistrations.cpp.obj CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp.obj CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp.obj CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.obj CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.obj CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp.obj CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp.obj | C$:/Qt/6.8.2/mingw_64/lib/libQt6Quick.a C$:/Qt/6.8.2/mingw_64/lib/libQt6QmlMeta.a C$:/Qt/6.8.2/mingw_64/lib/libQt6QmlWorkerScript.a C$:/Qt/6.8.2/mingw_64/lib/libQt6QmlModels.a C$:/Qt/6.8.2/mingw_64/lib/libQt6Qml.a C$:/Qt/6.8.2/mingw_64/lib/libQt6Network.a C$:/Qt/6.8.2/mingw_64/lib/libQt6OpenGL.a C$:/Qt/6.8.2/mingw_64/lib/libQt6Gui.a C$:/Qt/6.8.2/mingw_64/lib/libQt6Core.a C$:/Qt/6.8.2/mingw_64/lib/libQt6EntryPoint.a || appMotus_autogen appMotus_autogen_timestamp_deps appMotus_copy_qml appMotus_copy_res appMotus_qmlimportscan
+build appMotus.exe: CXX_EXECUTABLE_LINKER__appMotus_Debug CMakeFiles/appMotus.dir/appMotus_autogen/mocs_compilation.cpp.obj CMakeFiles/appMotus.dir/main.cpp.obj CMakeFiles/appMotus.dir/appmotus_qmltyperegistrations.cpp.obj CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_qmake_Motus.cpp.obj CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_qmlcache_loader.cpp.obj CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Main_qml.cpp.obj CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Case_qml.cpp.obj CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Bouton_qml.cpp.obj CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp.obj CMakeFiles/appMotus.dir/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp.obj | C$:/Qt/6.8.2/mingw_64/lib/libQt6Quick.a C$:/Qt/6.8.2/mingw_64/lib/libQt6QmlMeta.a C$:/Qt/6.8.2/mingw_64/lib/libQt6QmlWorkerScript.a C$:/Qt/6.8.2/mingw_64/lib/libQt6QmlModels.a C$:/Qt/6.8.2/mingw_64/lib/libQt6Qml.a C$:/Qt/6.8.2/mingw_64/lib/libQt6Network.a C$:/Qt/6.8.2/mingw_64/lib/libQt6OpenGL.a C$:/Qt/6.8.2/mingw_64/lib/libQt6Gui.a C$:/Qt/6.8.2/mingw_64/lib/libQt6Core.a C$:/Qt/6.8.2/mingw_64/lib/libQt6EntryPoint.a || appMotus_autogen appMotus_autogen_timestamp_deps appMotus_copy_qml appMotus_copy_res appMotus_qmlimportscan
   FLAGS = -DQT_QML_DEBUG -g
   LINK_FLAGS = -mwindows
   LINK_LIBRARIES = C:/Qt/6.8.2/mingw_64/lib/libQt6Quick.a  C:/Qt/6.8.2/mingw_64/lib/libQt6QmlMeta.a  C:/Qt/6.8.2/mingw_64/lib/libQt6QmlWorkerScript.a  C:/Qt/6.8.2/mingw_64/lib/libQt6QmlModels.a  C:/Qt/6.8.2/mingw_64/lib/libQt6Qml.a  C:/Qt/6.8.2/mingw_64/lib/libQt6Network.a  -lws2_32  C:/Qt/6.8.2/mingw_64/lib/libQt6OpenGL.a  C:/Qt/6.8.2/mingw_64/lib/libQt6Gui.a  C:/Qt/6.8.2/mingw_64/lib/libQt6Core.a  -lmpr  -luserenv  -lmingw32  C:/Qt/6.8.2/mingw_64/lib/libQt6EntryPoint.a  -lshell32  -ld3d11  -ldxgi  -ldxguid  -ld3d12  -luser32  -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
@@ -204,13 +212,13 @@ build appMotus_copy_res: phony CMakeFiles/appMotus_copy_res .qt/appMotus_res.txt
 #############################################
 # Utility command for module_appMotus_aotstats_target
 
-build module_appMotus_aotstats_target: phony CMakeFiles/module_appMotus_aotstats_target .rcc/qmlcache/module_appMotus.aotstats .rcc/qmlcache/appMotus_Bouton_qml.cpp .rcc/qmlcache/appMotus_Bouton_qml.cpp.aotstats .rcc/qmlcache/appMotus_Case_qml.cpp .rcc/qmlcache/appMotus_Case_qml.cpp.aotstats .rcc/qmlcache/appMotus_Main_qml.cpp .rcc/qmlcache/appMotus_Main_qml.cpp.aotstats appmotus_qmltyperegistrations.cpp Motus/appMotus.qmltypes appMotus_qmltyperegistration
+build module_appMotus_aotstats_target: phony CMakeFiles/module_appMotus_aotstats_target .rcc/qmlcache/module_appMotus.aotstats .rcc/qmlcache/appMotus_Bouton_qml.cpp .rcc/qmlcache/appMotus_Bouton_qml.cpp.aotstats .rcc/qmlcache/appMotus_Case_qml.cpp .rcc/qmlcache/appMotus_Case_qml.cpp.aotstats .rcc/qmlcache/appMotus_Key_qml.cpp .rcc/qmlcache/appMotus_Key_qml.cpp.aotstats .rcc/qmlcache/appMotus_Main_qml.cpp .rcc/qmlcache/appMotus_Main_qml.cpp.aotstats appmotus_qmltyperegistrations.cpp Motus/appMotus.qmltypes appMotus_qmltyperegistration
 
 
 #############################################
 # Utility command for all_aotstats
 
-build all_aotstats: phony CMakeFiles/all_aotstats .rcc/qmlcache/all_aotstats.aotstats .rcc/qmlcache/all_aotstats.txt .rcc/qmlcache/module_appMotus.aotstats .rcc/qmlcache/appMotus_Bouton_qml.cpp .rcc/qmlcache/appMotus_Bouton_qml.cpp.aotstats .rcc/qmlcache/appMotus_Case_qml.cpp .rcc/qmlcache/appMotus_Case_qml.cpp.aotstats .rcc/qmlcache/appMotus_Main_qml.cpp .rcc/qmlcache/appMotus_Main_qml.cpp.aotstats appmotus_qmltyperegistrations.cpp Motus/appMotus.qmltypes module_appMotus_aotstats_target
+build all_aotstats: phony CMakeFiles/all_aotstats .rcc/qmlcache/all_aotstats.aotstats .rcc/qmlcache/all_aotstats.txt .rcc/qmlcache/module_appMotus.aotstats .rcc/qmlcache/appMotus_Bouton_qml.cpp .rcc/qmlcache/appMotus_Bouton_qml.cpp.aotstats .rcc/qmlcache/appMotus_Case_qml.cpp .rcc/qmlcache/appMotus_Case_qml.cpp.aotstats .rcc/qmlcache/appMotus_Key_qml.cpp .rcc/qmlcache/appMotus_Key_qml.cpp.aotstats .rcc/qmlcache/appMotus_Main_qml.cpp .rcc/qmlcache/appMotus_Main_qml.cpp.aotstats appmotus_qmltyperegistrations.cpp Motus/appMotus.qmltypes module_appMotus_aotstats_target
 
 
 #############################################
@@ -360,10 +368,19 @@ build .rcc/qmlcache/appMotus_Bouton_qml.cpp .rcc/qmlcache/appMotus_Bouton_qml.cp
   restat = 1
 
 
+#############################################
+# Custom command for .rcc\qmlcache\appMotus_Key_qml.cpp
+
+build .rcc/qmlcache/appMotus_Key_qml.cpp .rcc/qmlcache/appMotus_Key_qml.cpp.aotstats | ${cmake_ninja_workdir}.rcc/qmlcache/appMotus_Key_qml.cpp ${cmake_ninja_workdir}.rcc/qmlcache/appMotus_Key_qml.cpp.aotstats: CUSTOM_COMMAND C$:/Qt/6.8.2/mingw_64/bin/qmlcachegen.exe D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Key.qml .qt/rcc/qmake_Motus.qrc .qt/rcc/appMotus_raw_qml_0.qrc Motus/appMotus.qmltypes Motus/qmldir
+  COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D D:\Centrale\S8\C++GUI\Projet\Motus\motusetbouchecousue\Motus\build\Desktop_Qt_6_8_2_MinGW_64_bit-Debug && C:\Qt\Tools\CMake_64\bin\cmake.exe -E make_directory D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache && D:\Centrale\S8\C++GUI\Projet\Motus\motusetbouchecousue\Motus\build\Desktop_Qt_6_8_2_MinGW_64_bit-Debug\.qt\bin\qt_setup_tool_path.bat C:/Qt/6.8.2/mingw_64/bin/qmlcachegen.exe --bare --resource-path /qt/qml/Motus/Key.qml -I D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug -I C:/Qt/6.8.2/mingw_64/qml -i D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/Motus/qmldir --resource D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qmake_Motus.qrc --resource D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/appMotus_raw_qml_0.qrc --dump-aot-stats --module-id=Motus(appMotus) -o D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/appMotus_Key_qml.cpp D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Key.qml"
+  DESC = Generating .rcc/qmlcache/appMotus_Key_qml.cpp, .rcc/qmlcache/appMotus_Key_qml.cpp.aotstats
+  restat = 1
+
+
 #############################################
 # Custom command for .qt\rcc\qrc_appMotus_raw_qml_0.cpp
 
-build .qt/rcc/qrc_appMotus_raw_qml_0.cpp | ${cmake_ninja_workdir}.qt/rcc/qrc_appMotus_raw_qml_0.cpp: CUSTOM_COMMAND D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Main.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Case.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Bouton.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Ressources.qrc .qt/rcc/appMotus_raw_qml_0.qrc C$:/Qt/6.8.2/mingw_64/bin/rcc.exe || appMotus_autogen appMotus_autogen_timestamp_deps appMotus_copy_qml appMotus_copy_res appMotus_qmlimportscan
+build .qt/rcc/qrc_appMotus_raw_qml_0.cpp | ${cmake_ninja_workdir}.qt/rcc/qrc_appMotus_raw_qml_0.cpp: CUSTOM_COMMAND D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Main.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Case.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Bouton.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Key.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Ressources.qrc .qt/rcc/appMotus_raw_qml_0.qrc C$:/Qt/6.8.2/mingw_64/bin/rcc.exe || appMotus_autogen appMotus_autogen_timestamp_deps appMotus_copy_qml appMotus_copy_res appMotus_qmlimportscan
   COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D D:\Centrale\S8\C++GUI\Projet\Motus\motusetbouchecousue\Motus\build\Desktop_Qt_6_8_2_MinGW_64_bit-Debug && C:\Qt\6.8.2\mingw_64\bin\rcc.exe --output D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/qrc_appMotus_raw_qml_0.cpp --name appMotus_raw_qml_0 D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/rcc/appMotus_raw_qml_0.qrc --no-zstd"
   DESC = Running rcc for resource appMotus_raw_qml_0
   restat = 1
@@ -398,21 +415,21 @@ build CMakeFiles/appMotus_qmltyperegistration | ${cmake_ninja_workdir}CMakeFiles
 #############################################
 # Custom command for CMakeFiles\appMotus_qmllint
 
-build CMakeFiles/appMotus_qmllint | ${cmake_ninja_workdir}CMakeFiles/appMotus_qmllint: CUSTOM_COMMAND C$:/Qt/6.8.2/mingw_64/bin/qmllint.exe D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Main.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Case.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Bouton.qml .rcc/qmllint/appMotus.rsp || all_qmltyperegistrations appMotus_qmltyperegistration
+build CMakeFiles/appMotus_qmllint | ${cmake_ninja_workdir}CMakeFiles/appMotus_qmllint: CUSTOM_COMMAND C$:/Qt/6.8.2/mingw_64/bin/qmllint.exe D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Main.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Case.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Bouton.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Key.qml .rcc/qmllint/appMotus.rsp || all_qmltyperegistrations appMotus_qmltyperegistration
   COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D D:\Centrale\S8\C++GUI\Projet\Motus\motusetbouchecousue\Motus && D:\Centrale\S8\C++GUI\Projet\Motus\motusetbouchecousue\Motus\build\Desktop_Qt_6_8_2_MinGW_64_bit-Debug\.qt\bin\qt_setup_tool_path.bat C:/Qt/6.8.2/mingw_64/bin/qmllint.exe @D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmllint/appMotus.rsp"
 
 
 #############################################
 # Custom command for CMakeFiles\appMotus_qmllint_json
 
-build CMakeFiles/appMotus_qmllint_json | ${cmake_ninja_workdir}CMakeFiles/appMotus_qmllint_json: CUSTOM_COMMAND C$:/Qt/6.8.2/mingw_64/bin/qmllint.exe D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Main.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Case.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Bouton.qml .rcc/qmllint/appMotus_json.rsp || all_qmltyperegistrations appMotus_qmltyperegistration
+build CMakeFiles/appMotus_qmllint_json | ${cmake_ninja_workdir}CMakeFiles/appMotus_qmllint_json: CUSTOM_COMMAND C$:/Qt/6.8.2/mingw_64/bin/qmllint.exe D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Main.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Case.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Bouton.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Key.qml .rcc/qmllint/appMotus_json.rsp || all_qmltyperegistrations appMotus_qmltyperegistration
   COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D D:\Centrale\S8\C++GUI\Projet\Motus\motusetbouchecousue\Motus && D:\Centrale\S8\C++GUI\Projet\Motus\motusetbouchecousue\Motus\build\Desktop_Qt_6_8_2_MinGW_64_bit-Debug\.qt\bin\qt_setup_tool_path.bat C:/Qt/6.8.2/mingw_64/bin/qmllint.exe @D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmllint/appMotus_json.rsp"
 
 
 #############################################
 # Custom command for CMakeFiles\appMotus_qmllint_module
 
-build CMakeFiles/appMotus_qmllint_module | ${cmake_ninja_workdir}CMakeFiles/appMotus_qmllint_module: CUSTOM_COMMAND C$:/Qt/6.8.2/mingw_64/bin/qmllint.exe D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Main.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Case.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Bouton.qml .rcc/qmllint/appMotus_module.rsp || all_qmltyperegistrations appMotus_qmltyperegistration
+build CMakeFiles/appMotus_qmllint_module | ${cmake_ninja_workdir}CMakeFiles/appMotus_qmllint_module: CUSTOM_COMMAND C$:/Qt/6.8.2/mingw_64/bin/qmllint.exe D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Main.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Case.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Bouton.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Key.qml .rcc/qmllint/appMotus_module.rsp || all_qmltyperegistrations appMotus_qmltyperegistration
   COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D D:\Centrale\S8\C++GUI\Projet\Motus\motusetbouchecousue\Motus && D:\Centrale\S8\C++GUI\Projet\Motus\motusetbouchecousue\Motus\build\Desktop_Qt_6_8_2_MinGW_64_bit-Debug\.qt\bin\qt_setup_tool_path.bat C:/Qt/6.8.2/mingw_64/bin/qmllint.exe @D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmllint/appMotus_module.rsp"
 
 
@@ -425,7 +442,7 @@ build CMakeFiles/appMotus_copy_qml | ${cmake_ninja_workdir}CMakeFiles/appMotus_c
 #############################################
 # Custom command for .qt\appMotus_qml.txt
 
-build .qt/appMotus_qml.txt | ${cmake_ninja_workdir}.qt/appMotus_qml.txt: CUSTOM_COMMAND C$:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlCopyFiles.cmake D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Main.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Case.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Bouton.qml
+build .qt/appMotus_qml.txt | ${cmake_ninja_workdir}.qt/appMotus_qml.txt: CUSTOM_COMMAND C$:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlCopyFiles.cmake D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Main.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Case.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Bouton.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Key.qml
   COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D D:\Centrale\S8\C++GUI\Projet\Motus\motusetbouchecousue\Motus\build\Desktop_Qt_6_8_2_MinGW_64_bit-Debug && C:\Qt\Tools\CMake_64\bin\cmake.exe -DFILES_INFO_PATH=D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/appMotus_qml.cmake -P C:/Qt/6.8.2/mingw_64/lib/cmake/Qt6Qml/Qt6QmlCopyFiles.cmake"
   DESC = Copying appMotus qml sources into build dir
   restat = 1
@@ -455,7 +472,7 @@ build CMakeFiles/module_appMotus_aotstats_target | ${cmake_ninja_workdir}CMakeFi
 #############################################
 # Custom command for .rcc\qmlcache\module_appMotus.aotstats
 
-build .rcc/qmlcache/module_appMotus.aotstats | ${cmake_ninja_workdir}.rcc/qmlcache/module_appMotus.aotstats: CUSTOM_COMMAND .rcc/qmlcache/appMotus_Main_qml.cpp.aotstats .rcc/qmlcache/appMotus_Case_qml.cpp.aotstats .rcc/qmlcache/appMotus_Bouton_qml.cpp.aotstats .rcc/qmlcache/module_appMotus.aotstatslist || appMotus_qmltyperegistration
+build .rcc/qmlcache/module_appMotus.aotstats | ${cmake_ninja_workdir}.rcc/qmlcache/module_appMotus.aotstats: CUSTOM_COMMAND .rcc/qmlcache/appMotus_Main_qml.cpp.aotstats .rcc/qmlcache/appMotus_Case_qml.cpp.aotstats .rcc/qmlcache/appMotus_Bouton_qml.cpp.aotstats .rcc/qmlcache/appMotus_Key_qml.cpp.aotstats .rcc/qmlcache/module_appMotus.aotstatslist || appMotus_qmltyperegistration
   COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D D:\Centrale\S8\C++GUI\Projet\Motus\motusetbouchecousue\Motus\build\Desktop_Qt_6_8_2_MinGW_64_bit-Debug && D:\Centrale\S8\C++GUI\Projet\Motus\motusetbouchecousue\Motus\build\Desktop_Qt_6_8_2_MinGW_64_bit-Debug\.qt\bin\qt_setup_tool_path.bat C:/Qt/6.8.2/mingw_64/bin/qmlaotstats.exe aggregate D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/module_appMotus.aotstatslist D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.rcc/qmlcache/module_appMotus.aotstats"
   DESC = Generating .rcc/qmlcache/module_appMotus.aotstats
   restat = 1
@@ -486,7 +503,7 @@ build CMakeFiles/appMotus_qmlimportscan | ${cmake_ninja_workdir}CMakeFiles/appMo
 #############################################
 # Custom command for .qt\qml_imports\appMotus_build.cmake
 
-build .qt/qml_imports/appMotus_build.cmake | ${cmake_ninja_workdir}.qt/qml_imports/appMotus_build.cmake: CUSTOM_COMMAND C$:/Qt/6.8.2/mingw_64/bin/qmlimportscanner.exe .qt/rcc/qmake_Motus.qrc .qt/rcc/appMotus_raw_qml_0.qrc D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Main.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Case.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Bouton.qml
+build .qt/qml_imports/appMotus_build.cmake | ${cmake_ninja_workdir}.qt/qml_imports/appMotus_build.cmake: CUSTOM_COMMAND C$:/Qt/6.8.2/mingw_64/bin/qmlimportscanner.exe .qt/rcc/qmake_Motus.qrc .qt/rcc/appMotus_raw_qml_0.qrc D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Main.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Case.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Bouton.qml D$:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/Key.qml
   COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D D:\Centrale\S8\C++GUI\Projet\Motus\motusetbouchecousue\Motus && D:\Centrale\S8\C++GUI\Projet\Motus\motusetbouchecousue\Motus\build\Desktop_Qt_6_8_2_MinGW_64_bit-Debug\.qt\bin\qt_setup_tool_path.bat C:/Qt/6.8.2/mingw_64/bin/qmlimportscanner.exe @D:/Centrale/S8/C++GUI/Projet/Motus/motusetbouchecousue/Motus/build/Desktop_Qt_6_8_2_MinGW_64_bit-Debug/.qt/qml_imports/appMotus_build.rsp"
   DESC = Running qmlimportscanner for appMotus
   restat = 1