feat: restore changes func

This commit is contained in:
semenov
2024-10-04 10:23:53 +03:00
parent 7481b35485
commit 7e3c20425a
25 changed files with 890 additions and 712 deletions

View File

@@ -1,11 +1,15 @@
#include "screenchecker.h" #include "screenchecker.h"
#include <QLabel> #include <QLabel>
#include <QBitmap>
#include <QToolButton>
#include <QPainter>
ScreenChecker::ScreenChecker(DataParser *dataParser, QHBoxLayout *layout, QObject *parent) : ScreenChecker::ScreenChecker(QWidget *mainWidget,DataParser *dataParser, QHBoxLayout *layout, QObject *parent) :
QObject(parent) QObject(parent)
{ {
screenCount = 0; screenCount = 0;
this->mainWidget = mainWidget;
this->layout = layout; this->layout = layout;
this->dataParser = dataParser; this->dataParser = dataParser;
} }
@@ -14,6 +18,20 @@ void ScreenChecker::check()
{ {
screens = QGuiApplication::screens(); screens = QGuiApplication::screens();
QPixmap checkedPixmap(":resource/Icons/checked.png");
checkedPixmap = checkedPixmap.scaled(20,20);
QPainter painter;
QColor color(51,153,0,255);
painter.begin(&checkedPixmap);
painter.setCompositionMode(QPainter::CompositionMode_SourceIn);
painter.fillRect(checkedPixmap.rect(),color);
painter.end();
QIcon checkedIcon;
checkedIcon.addPixmap(checkedPixmap,QIcon::Disabled,QIcon::On);
qint8 sizeVertical = 90; qint8 sizeVertical = 90;
quint16 sizeHorizontal = 150; quint16 sizeHorizontal = 150;
@@ -31,7 +49,10 @@ void ScreenChecker::check()
QString sizeText = QString::number(display->size().width()) + "x" + QString::number(display->size().height()); QString sizeText = QString::number(display->size().width()) + "x" + QString::number(display->size().height());
sizeText.append("\n"); sizeText.append("\n");
sizeText.append(QString::number(display->refreshRate()) + "Hz"); sizeText.append(QString::number(display->refreshRate()) + "Hz");
QPushButton *button = new QPushButton(sizeText);
QToolButton *button = new QToolButton();
button->setText(sizeText);
button->setToolButtonStyle(Qt::ToolButtonTextUnderIcon);
button->setObjectName("displayView"); button->setObjectName("displayView");
buttons.append(button); buttons.append(button);
@@ -41,9 +62,19 @@ void ScreenChecker::check()
float ratio = width / height; float ratio = width / height;
QSize *sizeResult; QSize *sizeResult;
if(height > width){ QPushButton *checkedLabel = new QPushButton;
checkedLabel->setParent(button);
checkedLabel->setIcon(checkedIcon);
checkedLabel->setObjectName("checkedLabelButton");
checkedLabel->setGeometry(3,3,30,30);
if(height > width)
{
sizeResult = new QSize(sizeVertical,sizeVertical / ratio); sizeResult = new QSize(sizeVertical,sizeVertical / ratio);
}else{ }
else
{
sizeResult = new QSize(sizeHorizontal,sizeHorizontal/ ratio); sizeResult = new QSize(sizeHorizontal,sizeHorizontal/ ratio);
} }
@@ -51,18 +82,16 @@ void ScreenChecker::check()
button->setMaximumSize(*sizeResult); button->setMaximumSize(*sizeResult);
button->setCheckable(true); button->setCheckable(true);
connect(button,&QPushButton::clicked,this,&ScreenChecker::updateDisplayData);
if(i == 0){ if(i == 0)
{
button->setChecked(true); button->setChecked(true);
button->setFlat(true);
QPalette palette= button->palette();
button->setEnabled(false); button->setEnabled(false);
palette.setColor(QPalette::Background,QColor(Qt::blue));
palette.setColor(QPalette::ButtonText,QColor(Qt::black));
button->setPalette(palette);
} }
labels.append(checkedLabel);
connect(button,&QToolButton::clicked,this,&ScreenChecker::updateDisplayData);
} }
updateDisplayData(); updateDisplayData();
@@ -74,8 +103,15 @@ void ScreenChecker::updateDisplayData()
for (int i = 0; i <buttons.count();i++) for (int i = 0; i <buttons.count();i++)
{ {
if(buttons[i]->isChecked()){ QToolButton *button = buttons[i];
if(button->isChecked())
{
displays->append(i); displays->append(i);
labels[i]->show();
}
else
{
labels[i]->hide();
} }
} }

View File

@@ -9,25 +9,29 @@
#include <QDebug> #include <QDebug>
#include <QPushButton> #include <QPushButton>
#include <QHBoxLayout> #include <QHBoxLayout>
#include <QToolButton>
#include <QLabel>
class ScreenChecker : public QObject class ScreenChecker : public QObject
{ {
Q_OBJECT Q_OBJECT
public: public:
explicit ScreenChecker(DataParser *dataParser, QHBoxLayout *layout,QObject *parent = nullptr); explicit ScreenChecker(QWidget *widget,DataParser *dataParser, QHBoxLayout *layout,QObject *parent = nullptr);
~ScreenChecker(); ~ScreenChecker();
void check(); void check();
QString getScreenCount() const; QString getScreenCount() const;
private: private:
QWidget *mainWidget;
DataParser *dataParser; DataParser *dataParser;
QWidget *widget; QWidget *widget;
QHBoxLayout *layout; QHBoxLayout *layout;
qint64 screenCount; qint64 screenCount;
QList<QScreen *> screens; QList<QScreen *> screens;
QList<QPushButton *> buttons; QList<QToolButton *> buttons;
QList<QPushButton *> labels;
void updateDisplayData(); void updateDisplayData();
}; };

View File

@@ -182,7 +182,8 @@ debug/qrc_resources.cpp: resources.qrc \
resource/Icons/monitor-display.png \ resource/Icons/monitor-display.png \
resource/Icons/setting.png \ resource/Icons/setting.png \
resource/Icons/plane.png \ resource/Icons/plane.png \
resource/Icons/crossInCircle.png resource/Icons/crossInCircle.png \
resource/Icons/checked.png
D:\QT\5.14.2\mingw73_64\bin\rcc.exe -name resources resources.qrc -o debug\qrc_resources.cpp D:\QT\5.14.2\mingw73_64\bin\rcc.exe -name resources resources.qrc -o debug\qrc_resources.cpp
compiler_moc_predefs_make_all: debug/moc_predefs.h compiler_moc_predefs_make_all: debug/moc_predefs.h
@@ -427,6 +428,11 @@ debug/moc_updatecontroller.cpp: Core/updatecontroller.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/UpdateController.h \ Core/UpdateController.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamReader \ D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamReader \
D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamAttribute \ D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamAttribute \
@@ -448,9 +454,6 @@ debug/moc_updatecontroller.cpp: Core/updatecontroller.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
mywinheader.h \ mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
Core/externalexecuter.h \ Core/externalexecuter.h \
@@ -787,6 +790,11 @@ debug/moc_recognizesystem.cpp: Core/recognizesystem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/sendsystem.h \ Core/sendsystem.h \
Core/hashcomparer.h \ Core/hashcomparer.h \
updatenotifywidget.h \ updatenotifywidget.h \
@@ -794,9 +802,6 @@ debug/moc_recognizesystem.cpp: Core/recognizesystem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
mywinheader.h \ mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
debug/moc_predefs.h \ debug/moc_predefs.h \
@@ -937,6 +942,11 @@ debug/moc_screenchecker.cpp: Core/screenchecker.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
debug/moc_predefs.h \ debug/moc_predefs.h \
D:/QT/5.14.2/mingw73_64/bin/moc.exe D:/QT/5.14.2/mingw73_64/bin/moc.exe
D:\QT\5.14.2\mingw73_64\bin\moc.exe $(DEFINES) --include E:/Projects/QT/GUIProj/RRJClient/RRJClient/debug/moc_predefs.h -ID:/QT/5.14.2/mingw73_64/mkspecs/win32-g++ -IE:/Projects/QT/GUIProj/RRJClient/RRJClient -ID:/QT/5.14.2/mingw73_64/include -ID:/QT/5.14.2/mingw73_64/include/QtWidgets -ID:/QT/5.14.2/mingw73_64/include/QtGui -ID:/QT/5.14.2/mingw73_64/include/QtANGLE -ID:/QT/5.14.2/mingw73_64/include/QtNetwork -ID:/QT/5.14.2/mingw73_64/include/QtCore -ID:/QT/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++ -ID:/QT/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++/i686-w64-mingw32 -ID:/QT/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++/backward -ID:/QT/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include -ID:/QT/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include-fixed -ID:/QT/Tools/mingw730_32/i686-w64-mingw32/include Core\screenchecker.h -o debug\moc_screenchecker.cpp D:\QT\5.14.2\mingw73_64\bin\moc.exe $(DEFINES) --include E:/Projects/QT/GUIProj/RRJClient/RRJClient/debug/moc_predefs.h -ID:/QT/5.14.2/mingw73_64/mkspecs/win32-g++ -IE:/Projects/QT/GUIProj/RRJClient/RRJClient -ID:/QT/5.14.2/mingw73_64/include -ID:/QT/5.14.2/mingw73_64/include/QtWidgets -ID:/QT/5.14.2/mingw73_64/include/QtGui -ID:/QT/5.14.2/mingw73_64/include/QtANGLE -ID:/QT/5.14.2/mingw73_64/include/QtNetwork -ID:/QT/5.14.2/mingw73_64/include/QtCore -ID:/QT/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++ -ID:/QT/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++/i686-w64-mingw32 -ID:/QT/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++/backward -ID:/QT/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include -ID:/QT/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include-fixed -ID:/QT/Tools/mingw730_32/i686-w64-mingw32/include Core\screenchecker.h -o debug\moc_screenchecker.cpp
@@ -1115,6 +1125,11 @@ debug/moc_tcpclient.cpp: Core/tcpclient.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/sendsystem.h \ Core/sendsystem.h \
Core/hashcomparer.h \ Core/hashcomparer.h \
updatenotifywidget.h \ updatenotifywidget.h \
@@ -1122,9 +1137,6 @@ debug/moc_tcpclient.cpp: Core/tcpclient.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
mywinheader.h \ mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
debug/moc_predefs.h \ debug/moc_predefs.h \
@@ -1306,12 +1318,14 @@ debug/moc_hashcomparer.cpp: Core/hashcomparer.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
Core/sendsystem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
Core/hashcomparer.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/sendsystem.h \
Core/hashcomparer.h \
mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QDialog \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QDialog \
@@ -1477,6 +1491,11 @@ debug/moc_mainwindow.cpp: mainwindow.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/UpdateController.h \ Core/UpdateController.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamReader \ D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamReader \
D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamAttribute \ D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamAttribute \
@@ -1498,9 +1517,6 @@ debug/moc_mainwindow.cpp: mainwindow.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
mywinheader.h \ mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
Core/externalexecuter.h \ Core/externalexecuter.h \
@@ -1800,6 +1816,11 @@ debug/moc_updatenotifywidget.cpp: updatenotifywidget.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/sendsystem.h \ Core/sendsystem.h \
Core/hashcomparer.h \ Core/hashcomparer.h \
updatenotifywidget.h \ updatenotifywidget.h \
@@ -1807,9 +1828,6 @@ debug/moc_updatenotifywidget.cpp: updatenotifywidget.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
mywinheader.h \ mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
debug/moc_predefs.h \ debug/moc_predefs.h \
@@ -2197,6 +2215,11 @@ debug/updatecontroller.o: Core/updatecontroller.cpp Core/UpdateController.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/sendsystem.h \ Core/sendsystem.h \
Core/hashcomparer.h \ Core/hashcomparer.h \
Core/tools.h \ Core/tools.h \
@@ -2207,9 +2230,6 @@ debug/updatecontroller.o: Core/updatecontroller.cpp Core/UpdateController.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
mywinheader.h \ mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
Core/externalexecuter.h \ Core/externalexecuter.h \
@@ -2572,6 +2592,11 @@ debug/recognizesystem.o: Core/recognizesystem.cpp Core/recognizesystem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/sendsystem.h \ Core/sendsystem.h \
Core/hashcomparer.h \ Core/hashcomparer.h \
updatenotifywidget.h \ updatenotifywidget.h \
@@ -2579,9 +2604,6 @@ debug/recognizesystem.o: Core/recognizesystem.cpp Core/recognizesystem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
mywinheader.h \ mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\recognizesystem.o Core\recognizesystem.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\recognizesystem.o Core\recognizesystem.cpp
@@ -2720,9 +2742,17 @@ debug/screenchecker.o: Core/screenchecker.cpp Core/screenchecker.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/QBitmap \
D:/QT/5.14.2/mingw73_64/include/QtGui/qbitmap.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/QPainter \
D:/QT/5.14.2/mingw73_64/include/QtGui/qpainter.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qtextoption.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qpen.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\screenchecker.o Core\screenchecker.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\screenchecker.o Core\screenchecker.cpp
debug/tcpclient.o: Core/tcpclient.cpp Core/tcpclient.h \ debug/tcpclient.o: Core/tcpclient.cpp Core/tcpclient.h \
@@ -2880,6 +2910,11 @@ debug/tcpclient.o: Core/tcpclient.cpp Core/tcpclient.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/UpdateController.h \ Core/UpdateController.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamReader \ D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamReader \
D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamAttribute \ D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamAttribute \
@@ -2901,9 +2936,6 @@ debug/tcpclient.o: Core/tcpclient.cpp Core/tcpclient.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
mywinheader.h \ mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
Core/externalexecuter.h \ Core/externalexecuter.h \
@@ -3162,11 +3194,13 @@ debug/hashcomparer.o: Core/hashcomparer.cpp Core/hashcomparer.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
Core/sendsystem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
mywinheader.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/sendsystem.h \
mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QDialog \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QDialog \
@@ -3347,6 +3381,11 @@ debug/main.o: main.cpp mainwindow.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/sendsystem.h \ Core/sendsystem.h \
Core/hashcomparer.h \ Core/hashcomparer.h \
updatenotifywidget.h \ updatenotifywidget.h \
@@ -3354,9 +3393,6 @@ debug/main.o: main.cpp mainwindow.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
mywinheader.h \ mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QApplication \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QApplication \
@@ -3539,6 +3575,11 @@ debug/mainwindow.o: mainwindow.cpp mainwindow.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/sendsystem.h \ Core/sendsystem.h \
Core/hashcomparer.h \ Core/hashcomparer.h \
updatenotifywidget.h \ updatenotifywidget.h \
@@ -3546,41 +3587,9 @@ debug/mainwindow.o: mainwindow.cpp mainwindow.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
mywinheader.h \ mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
ui_mainwindow.h \ ui_mainwindow.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QVariant \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QApplication \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qapplication.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdesktopwidget.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QCheckBox \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qcheckbox.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QComboBox \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qcombobox.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractitemdelegate.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qstyleoption.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractspinbox.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qvalidator.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qregularexpression.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qslider.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractslider.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qstyle.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtabbar.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qrubberband.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qabstractitemmodel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QFrame \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLineEdit \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlineedit.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qtextcursor.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qtextformat.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qpen.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qtextoption.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QProgressBar \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qprogressbar.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QVBoxLayout \
D:/QT/5.14.2/mingw73_64/include/QtGui/QFontDatabase \ D:/QT/5.14.2/mingw73_64/include/QtGui/QFontDatabase \
D:/QT/5.14.2/mingw73_64/include/QtGui/qfontdatabase.h \ D:/QT/5.14.2/mingw73_64/include/QtGui/qfontdatabase.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QMessageBox \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QMessageBox \
@@ -3597,6 +3606,8 @@ debug/mainwindow.o: mainwindow.cpp mainwindow.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/QPaintEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QPaintEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QPainter \ D:/QT/5.14.2/mingw73_64/include/QtGui/QPainter \
D:/QT/5.14.2/mingw73_64/include/QtGui/qpainter.h \ D:/QT/5.14.2/mingw73_64/include/QtGui/qpainter.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qtextoption.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qpen.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QTimer \ D:/QT/5.14.2/mingw73_64/include/QtCore/QTimer \
D:/QT/5.14.2/mingw73_64/include/QtCore/qtimer.h \ D:/QT/5.14.2/mingw73_64/include/QtCore/qtimer.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qbasictimer.h D:/QT/5.14.2/mingw73_64/include/QtCore/qbasictimer.h
@@ -3889,40 +3900,20 @@ debug/updatenotifywidget.o: updatenotifywidget.cpp updatenotifywidget.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
Core/sendsystem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
Core/hashcomparer.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/sendsystem.h \
Core/hashcomparer.h \
mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QDialog \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QDialog \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
ui_updatenotifywidget.h \ ui_updatenotifywidget.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QVariant \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QApplication \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qapplication.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdesktopwidget.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QListWidget \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlistwidget.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlistview.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractitemview.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractscrollarea.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qabstractitemmodel.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qitemselectionmodel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractitemdelegate.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qstyleoption.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractspinbox.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qvalidator.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qregularexpression.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qslider.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractslider.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qstyle.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtabbar.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qrubberband.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QVBoxLayout \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QMessageBox \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QMessageBox \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qmessagebox.h D:/QT/5.14.2/mingw73_64/include/QtWidgets/qmessagebox.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\updatenotifywidget.o updatenotifywidget.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\updatenotifywidget.o updatenotifywidget.cpp

View File

@@ -182,7 +182,8 @@ release/qrc_resources.cpp: resources.qrc \
resource/Icons/monitor-display.png \ resource/Icons/monitor-display.png \
resource/Icons/setting.png \ resource/Icons/setting.png \
resource/Icons/plane.png \ resource/Icons/plane.png \
resource/Icons/crossInCircle.png resource/Icons/crossInCircle.png \
resource/Icons/checked.png
D:\QT\5.14.2\mingw73_64\bin\rcc.exe -name resources resources.qrc -o release\qrc_resources.cpp D:\QT\5.14.2\mingw73_64\bin\rcc.exe -name resources resources.qrc -o release\qrc_resources.cpp
compiler_moc_predefs_make_all: release/moc_predefs.h compiler_moc_predefs_make_all: release/moc_predefs.h
@@ -427,6 +428,11 @@ release/moc_updatecontroller.cpp: Core/updatecontroller.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/UpdateController.h \ Core/UpdateController.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamReader \ D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamReader \
D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamAttribute \ D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamAttribute \
@@ -448,9 +454,6 @@ release/moc_updatecontroller.cpp: Core/updatecontroller.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
mywinheader.h \ mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
Core/externalexecuter.h \ Core/externalexecuter.h \
@@ -787,6 +790,11 @@ release/moc_recognizesystem.cpp: Core/recognizesystem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/sendsystem.h \ Core/sendsystem.h \
Core/hashcomparer.h \ Core/hashcomparer.h \
updatenotifywidget.h \ updatenotifywidget.h \
@@ -794,9 +802,6 @@ release/moc_recognizesystem.cpp: Core/recognizesystem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
mywinheader.h \ mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
release/moc_predefs.h \ release/moc_predefs.h \
@@ -937,6 +942,11 @@ release/moc_screenchecker.cpp: Core/screenchecker.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
release/moc_predefs.h \ release/moc_predefs.h \
D:/QT/5.14.2/mingw73_64/bin/moc.exe D:/QT/5.14.2/mingw73_64/bin/moc.exe
D:\QT\5.14.2\mingw73_64\bin\moc.exe $(DEFINES) --include E:/Projects/QT/GUIProj/RRJClient/RRJClient/release/moc_predefs.h -ID:/QT/5.14.2/mingw73_64/mkspecs/win32-g++ -IE:/Projects/QT/GUIProj/RRJClient/RRJClient -ID:/QT/5.14.2/mingw73_64/include -ID:/QT/5.14.2/mingw73_64/include/QtWidgets -ID:/QT/5.14.2/mingw73_64/include/QtGui -ID:/QT/5.14.2/mingw73_64/include/QtANGLE -ID:/QT/5.14.2/mingw73_64/include/QtNetwork -ID:/QT/5.14.2/mingw73_64/include/QtCore -ID:/QT/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++ -ID:/QT/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++/i686-w64-mingw32 -ID:/QT/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++/backward -ID:/QT/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include -ID:/QT/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include-fixed -ID:/QT/Tools/mingw730_32/i686-w64-mingw32/include Core\screenchecker.h -o release\moc_screenchecker.cpp D:\QT\5.14.2\mingw73_64\bin\moc.exe $(DEFINES) --include E:/Projects/QT/GUIProj/RRJClient/RRJClient/release/moc_predefs.h -ID:/QT/5.14.2/mingw73_64/mkspecs/win32-g++ -IE:/Projects/QT/GUIProj/RRJClient/RRJClient -ID:/QT/5.14.2/mingw73_64/include -ID:/QT/5.14.2/mingw73_64/include/QtWidgets -ID:/QT/5.14.2/mingw73_64/include/QtGui -ID:/QT/5.14.2/mingw73_64/include/QtANGLE -ID:/QT/5.14.2/mingw73_64/include/QtNetwork -ID:/QT/5.14.2/mingw73_64/include/QtCore -ID:/QT/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++ -ID:/QT/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++/i686-w64-mingw32 -ID:/QT/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include/c++/backward -ID:/QT/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include -ID:/QT/Tools/mingw730_32/lib/gcc/i686-w64-mingw32/7.3.0/include-fixed -ID:/QT/Tools/mingw730_32/i686-w64-mingw32/include Core\screenchecker.h -o release\moc_screenchecker.cpp
@@ -1115,6 +1125,11 @@ release/moc_tcpclient.cpp: Core/tcpclient.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/sendsystem.h \ Core/sendsystem.h \
Core/hashcomparer.h \ Core/hashcomparer.h \
updatenotifywidget.h \ updatenotifywidget.h \
@@ -1122,9 +1137,6 @@ release/moc_tcpclient.cpp: Core/tcpclient.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
mywinheader.h \ mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
release/moc_predefs.h \ release/moc_predefs.h \
@@ -1306,12 +1318,14 @@ release/moc_hashcomparer.cpp: Core/hashcomparer.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
Core/sendsystem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
Core/hashcomparer.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/sendsystem.h \
Core/hashcomparer.h \
mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QDialog \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QDialog \
@@ -1477,6 +1491,11 @@ release/moc_mainwindow.cpp: mainwindow.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/UpdateController.h \ Core/UpdateController.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamReader \ D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamReader \
D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamAttribute \ D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamAttribute \
@@ -1498,9 +1517,6 @@ release/moc_mainwindow.cpp: mainwindow.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
mywinheader.h \ mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
Core/externalexecuter.h \ Core/externalexecuter.h \
@@ -1800,6 +1816,11 @@ release/moc_updatenotifywidget.cpp: updatenotifywidget.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/sendsystem.h \ Core/sendsystem.h \
Core/hashcomparer.h \ Core/hashcomparer.h \
updatenotifywidget.h \ updatenotifywidget.h \
@@ -1807,9 +1828,6 @@ release/moc_updatenotifywidget.cpp: updatenotifywidget.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
mywinheader.h \ mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
release/moc_predefs.h \ release/moc_predefs.h \
@@ -2197,6 +2215,11 @@ release/updatecontroller.o: Core/updatecontroller.cpp Core/UpdateController.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/sendsystem.h \ Core/sendsystem.h \
Core/hashcomparer.h \ Core/hashcomparer.h \
Core/tools.h \ Core/tools.h \
@@ -2207,9 +2230,6 @@ release/updatecontroller.o: Core/updatecontroller.cpp Core/UpdateController.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
mywinheader.h \ mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
Core/externalexecuter.h \ Core/externalexecuter.h \
@@ -2572,6 +2592,11 @@ release/recognizesystem.o: Core/recognizesystem.cpp Core/recognizesystem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/sendsystem.h \ Core/sendsystem.h \
Core/hashcomparer.h \ Core/hashcomparer.h \
updatenotifywidget.h \ updatenotifywidget.h \
@@ -2579,9 +2604,6 @@ release/recognizesystem.o: Core/recognizesystem.cpp Core/recognizesystem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
mywinheader.h \ mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\recognizesystem.o Core\recognizesystem.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\recognizesystem.o Core\recognizesystem.cpp
@@ -2720,9 +2742,17 @@ release/screenchecker.o: Core/screenchecker.cpp Core/screenchecker.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/QBitmap \
D:/QT/5.14.2/mingw73_64/include/QtGui/qbitmap.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/QPainter \
D:/QT/5.14.2/mingw73_64/include/QtGui/qpainter.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qtextoption.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qpen.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\screenchecker.o Core\screenchecker.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\screenchecker.o Core\screenchecker.cpp
release/tcpclient.o: Core/tcpclient.cpp Core/tcpclient.h \ release/tcpclient.o: Core/tcpclient.cpp Core/tcpclient.h \
@@ -2880,6 +2910,11 @@ release/tcpclient.o: Core/tcpclient.cpp Core/tcpclient.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/UpdateController.h \ Core/UpdateController.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamReader \ D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamReader \
D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamAttribute \ D:/QT/5.14.2/mingw73_64/include/QtCore/QXmlStreamAttribute \
@@ -2901,9 +2936,6 @@ release/tcpclient.o: Core/tcpclient.cpp Core/tcpclient.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
mywinheader.h \ mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
Core/externalexecuter.h \ Core/externalexecuter.h \
@@ -3162,11 +3194,13 @@ release/hashcomparer.o: Core/hashcomparer.cpp Core/hashcomparer.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
Core/sendsystem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
mywinheader.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/sendsystem.h \
mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QDialog \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QDialog \
@@ -3347,6 +3381,11 @@ release/main.o: main.cpp mainwindow.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/sendsystem.h \ Core/sendsystem.h \
Core/hashcomparer.h \ Core/hashcomparer.h \
updatenotifywidget.h \ updatenotifywidget.h \
@@ -3354,9 +3393,6 @@ release/main.o: main.cpp mainwindow.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
mywinheader.h \ mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QApplication \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QApplication \
@@ -3539,6 +3575,11 @@ release/mainwindow.o: mainwindow.cpp mainwindow.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/sendsystem.h \ Core/sendsystem.h \
Core/hashcomparer.h \ Core/hashcomparer.h \
updatenotifywidget.h \ updatenotifywidget.h \
@@ -3546,41 +3587,9 @@ release/mainwindow.o: mainwindow.cpp mainwindow.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
mywinheader.h \ mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
ui_mainwindow.h \ ui_mainwindow.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QVariant \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QApplication \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qapplication.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdesktopwidget.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QCheckBox \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qcheckbox.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QComboBox \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qcombobox.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractitemdelegate.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qstyleoption.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractspinbox.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qvalidator.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qregularexpression.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qslider.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractslider.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qstyle.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtabbar.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qrubberband.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qabstractitemmodel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QFrame \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLineEdit \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlineedit.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qtextcursor.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qtextformat.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qpen.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qtextoption.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QProgressBar \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qprogressbar.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QVBoxLayout \
D:/QT/5.14.2/mingw73_64/include/QtGui/QFontDatabase \ D:/QT/5.14.2/mingw73_64/include/QtGui/QFontDatabase \
D:/QT/5.14.2/mingw73_64/include/QtGui/qfontdatabase.h \ D:/QT/5.14.2/mingw73_64/include/QtGui/qfontdatabase.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QMessageBox \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QMessageBox \
@@ -3597,6 +3606,8 @@ release/mainwindow.o: mainwindow.cpp mainwindow.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/QPaintEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QPaintEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QPainter \ D:/QT/5.14.2/mingw73_64/include/QtGui/QPainter \
D:/QT/5.14.2/mingw73_64/include/QtGui/qpainter.h \ D:/QT/5.14.2/mingw73_64/include/QtGui/qpainter.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qtextoption.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qpen.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QTimer \ D:/QT/5.14.2/mingw73_64/include/QtCore/QTimer \
D:/QT/5.14.2/mingw73_64/include/QtCore/qtimer.h \ D:/QT/5.14.2/mingw73_64/include/QtCore/qtimer.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qbasictimer.h D:/QT/5.14.2/mingw73_64/include/QtCore/qbasictimer.h
@@ -3889,40 +3900,20 @@ release/updatenotifywidget.o: updatenotifywidget.cpp updatenotifywidget.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayout.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlayoutitem.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qgridlayout.h \
Core/sendsystem.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QToolButton \
Core/hashcomparer.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtoolbutton.h \
mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QLabel \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlabel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qframe.h \
Core/sendsystem.h \
Core/hashcomparer.h \
mywinheader.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \ D:/QT/5.14.2/mingw73_64/include/QtCore/QEvent \
D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \ D:/QT/5.14.2/mingw73_64/include/QtGui/QMouseEvent \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QDialog \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QDialog \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdialog.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QWidget \
ui_updatenotifywidget.h \ ui_updatenotifywidget.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/QVariant \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QApplication \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qapplication.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qdesktopwidget.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QListWidget \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlistwidget.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qlistview.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractitemview.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractscrollarea.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qabstractitemmodel.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qitemselectionmodel.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractitemdelegate.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qstyleoption.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractspinbox.h \
D:/QT/5.14.2/mingw73_64/include/QtGui/qvalidator.h \
D:/QT/5.14.2/mingw73_64/include/QtCore/qregularexpression.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qslider.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qabstractslider.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qstyle.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qtabbar.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qrubberband.h \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QVBoxLayout \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/QMessageBox \ D:/QT/5.14.2/mingw73_64/include/QtWidgets/QMessageBox \
D:/QT/5.14.2/mingw73_64/include/QtWidgets/qmessagebox.h D:/QT/5.14.2/mingw73_64/include/QtWidgets/qmessagebox.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\updatenotifywidget.o updatenotifywidget.cpp $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\updatenotifywidget.o updatenotifywidget.cpp

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject> <!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 4.11.1, 2024-10-02T18:05:03. --> <!-- Written by QtCreator 4.11.1, 2024-10-04T09:04:14. -->
<qtcreator> <qtcreator>
<data> <data>
<variable>EnvironmentId</variable> <variable>EnvironmentId</variable>

View File

@@ -1,2 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<AuthData Login="O1" Password="1111" InstructorName="Администратор" ClientName="Иванов И.И." AccessType="trainee"/> <AuthData Login="I1" Password="1111" InstructorName="Горинин Г.Г" ClientName="Горинин Г.Г" AccessType="instructor"/>

View File

@@ -24,11 +24,176 @@
<FileData Path="/Application/RRJLoader/RRJ_Data/Plugins/x86_64" Hash="FOLDER"/> <FileData Path="/Application/RRJLoader/RRJ_Data/Plugins/x86_64" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Resources" Hash="FOLDER"/> <FileData Path="/Application/RRJLoader/RRJ_Data/Resources" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets" Hash="FOLDER"/> <FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Objects" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RRJ-95NEW-100" Hash="FOLDER"/> <FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RRJ-95NEW-100" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RUS" Hash="FOLDER"/> <FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RUS" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds" Hash="FOLDER"/> <FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI" Hash="FOLDER"/> <FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/D3D12/D3D12Core.dll" Hash="7fc05c9a8366d19302dfd13d09d3ebac"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/EmbedRuntime/mono-2.0-bdwgc.dll" Hash="1ce1473bec6862c3445a5697d28c3b7d"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/EmbedRuntime/MonoPosixHelper.dll" Hash="2734ad3f554d1b95d7b04766260175e5"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/2.0/Browsers/Compat.browser" Hash="0d831c1264b5b32a39fa347de368fe48"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/2.0/DefaultWsdlHelpGenerator.aspx" Hash="f7be9f1841ff92f9d4040aed832e0c79"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/2.0/machine.config" Hash="5b791b8493c4e9a55d8c5ee522ce1cef"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/2.0/settings.map" Hash="22c818a23169e12bd3c8587b6394c731"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/2.0/web.config" Hash="dc6dd6d8d1fc74e76c84b0b38dc6b1e3"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.0/Browsers/Compat.browser" Hash="0d831c1264b5b32a39fa347de368fe48"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.0/DefaultWsdlHelpGenerator.aspx" Hash="f7be9f1841ff92f9d4040aed832e0c79"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.0/machine.config" Hash="32bf879734966ef6659d914a217691e0"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.0/settings.map" Hash="ba17ade8a8e3ee221377534c8136f617"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.0/web.config" Hash="d081581e16b06480a5aaef8cdfb305ab"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.5/Browsers/Compat.browser" Hash="0d831c1264b5b32a39fa347de368fe48"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.5/DefaultWsdlHelpGenerator.aspx" Hash="f7be9f1841ff92f9d4040aed832e0c79"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.5/machine.config" Hash="25ff1ec49e3ac9285bd943cf036bd813"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.5/settings.map" Hash="ba17ade8a8e3ee221377534c8136f617"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.5/web.config" Hash="5075af18fe1d2b5f9555d5cc68029814"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/browscap.ini" Hash="378be809df7d15aac75a175693e25fbb"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/config" Hash="67611b783439b35abfe05a97413bba46"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/mconfig/config.xml" Hash="f34b330f20dce1bdcce9058fca287099"/>
<FileData Path="/Application/RRJLoader/RRJ.exe" Hash="d8d1ae60ce447c51879c27f15dde7195"/>
<FileData Path="/Application/RRJLoader/RRJ_BurstDebugInformation_DoNotShip/Data/Plugins/x86_64/lib_burst_generated.txt" Hash="28a5d827e5b26c4e8af32f3022116f54"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/app.info" Hash="40abc32f793ac28bdd0bfa15c090595d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/boot.config" Hash="d2efbaf133b8c9a5d752a0c8fcfc1ef9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/globalgamemanagers" Hash="9e04e3c9575add79ccecb56d2909b916"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/globalgamemanagers.assets" Hash="4487c33f4272a4900326138859f8daa1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/globalgamemanagers.assets.resS" Hash="cc481c35e79b509dcd950c6adf2346ce"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/level0" Hash="65b76c3483f64609f9be534f2cf161c7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Assembly-CSharp.dll" Hash="2b075722e64700cbdba7d1bb766e96c8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/IngameDebugConsole.Runtime.dll" Hash="db7bfb1bd97dfba03252aa79e5dc4b53"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Mono.Security.dll" Hash="dbd7e99a9ac5352fd4febaa5a7660e09"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/mscorlib.dll" Hash="9c0f93ea22eb12021728a1effe48ccad"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/netstandard.dll" Hash="c61967ebe7f07f6a5a1b3f91842bbc3c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.ComponentModel.Composition.dll" Hash="9a5463df5469541750cca835743414c1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Configuration.dll" Hash="ea06fc126f0f0e6a9d44e089469b7653"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Core.dll" Hash="5df5fd16437d20f41e58f8db73b42b47"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Data.DataSetExtensions.dll" Hash="48ff393c9b420ade92a47c8cded8df57"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Data.dll" Hash="83260b81a7f2c359842ae712cf8403a5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.dll" Hash="97151f7e52d13119d4b7fc147c01dcd7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Drawing.dll" Hash="e9a4ee8d28124309d5068758ae9cf29a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.EnterpriseServices.dll" Hash="ce5f01bef57e504e6bcba5136f6cac3f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.IO.Compression.dll" Hash="968bf6f5309660610233bf75b21584c1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.IO.Compression.FileSystem.dll" Hash="941b52daf342862624349b9cec0cb4a9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Net.Http.dll" Hash="dab4d77c5675bd94394baa2c45e4a311"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Numerics.dll" Hash="73cd840f06347a172cdc8764564c6361"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Runtime.dll" Hash="77d74adcdea84d53a1fbe89e79737c1e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Runtime.Serialization.dll" Hash="4ef33c922491087198e413279a709791"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Security.dll" Hash="c3030222a71dad399344f8067dd36299"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.ServiceModel.Internals.dll" Hash="0b563b4cf046e3e484669ce10ce3bfa1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Transactions.dll" Hash="6191fb6d054e9f0910f42730230d7e5b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Xml.dll" Hash="6fed4a1385091135fcc224bda4f83222"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Xml.Linq.dll" Hash="f59d549bdb4b3310647d344446958c3d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.Burst.dll" Hash="3d93246db4e4fa4e519fa15ff5ee3ff4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.Burst.Unsafe.dll" Hash="129351e9879a83262ea92a4a45aacc46"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.Collections.dll" Hash="9896d66646d20face9591a222cf2ccdf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.Collections.LowLevel.ILSupport.dll" Hash="a28c546a9e048223b6899d2856ef6c11"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.Mathematics.dll" Hash="88db1f1b78092627dd59ba7098212fb9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.Rendering.LightTransport.Runtime.dll" Hash="e47312870d4e8ef8f50dfa0504db5ab3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.RenderPipelines.Core.Runtime.dll" Hash="b7f1b29575e39edb80529f80dbe96b51"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.RenderPipelines.Core.Runtime.Shared.dll" Hash="ebbeac963fbf7bb908ab0aa5d698c350"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.RenderPipelines.Core.ShaderLibrary.dll" Hash="b5f27626025df2464cc3216bfb349ff6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.RenderPipelines.HighDefinition.Config.Runtime.dll" Hash="4232e384bb18cf0b470748f16a451077"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.RenderPipelines.HighDefinition.Runtime.dll" Hash="8b2775ed44dd1b71ea4d8dc9c33df5a9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll" Hash="bb8e7c89045af4b8e7886720e5dc2474"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.TextMeshPro.dll" Hash="a944c0a16abff15b71bf7c220de5bcbd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.Timeline.dll" Hash="9d32cd828350ca76224a61f9cf98211c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.VisualEffectGraph.Runtime.dll" Hash="ddd586575079cc22739a5e5e49d18a77"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.VisualScripting.Antlr3.Runtime.dll" Hash="62a6ef88ac683a13104417515323896b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.VisualScripting.Core.dll" Hash="de557512eb1a4da119ef4b7cdf0de9ea"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.VisualScripting.Flow.dll" Hash="6078b460cb8803b87f89410f2fdef9f2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.VisualScripting.State.dll" Hash="0a778b955b1a2df7397f338386070323"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.AccessibilityModule.dll" Hash="bf51e59da996c816b7d3944d9d235ca3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.AIModule.dll" Hash="245cfae2b9eaee92e87eae662d3b8ca5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.AndroidJNIModule.dll" Hash="19aba924468d523bd6ab0af1977ce553"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.AnimationModule.dll" Hash="5301e420d7216e0376b2ae6771836a08"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ARModule.dll" Hash="5007e1920fd5f556be659d873b07f1a4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.AssetBundleModule.dll" Hash="5c3168c646fb035e811a09fd4de30759"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.AudioModule.dll" Hash="12b91b4940b3418061837bc12e7d7050"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ClothModule.dll" Hash="6ca3c4a421c921526e07950998a89ee9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ClusterInputModule.dll" Hash="9ed9069d73075969a156f89851e58d4c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ClusterRendererModule.dll" Hash="525752cc5b0c1d39c49ec4ac50a4101b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.CommandStateObserverModule.dll" Hash="55957ff738edeb5fb2723f625112d4d3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ContentLoadModule.dll" Hash="eedc3dcf14a3ce65072b84335b54b758"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.CoreModule.dll" Hash="7352cddb3575dbbcca53a8fa9568fe6f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.CrashReportingModule.dll" Hash="ea3c9f6c8098cf864e3353697a32ff65"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.DirectorModule.dll" Hash="87d7f67b284b7e5748bb8cc4c645662c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.dll" Hash="8ffa9dfdffe9c31b96856f5be0f839e4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.DSPGraphModule.dll" Hash="347a60da7e315fbfeca71360aa69169b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.GameCenterModule.dll" Hash="ceb426370ca4ccd14de6d2bf86b143c6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.GIModule.dll" Hash="2918d57cd975b218d0d5a94a0e6c386a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.GraphToolsFoundationModule.dll" Hash="b2c7eea97fa9ee185d6be4dbccbaad68"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.GridModule.dll" Hash="3cb34eb625d4fabbbefed7563619f854"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.HierarchyCoreModule.dll" Hash="4f1dfca0153c6cda61b749cf04b864d4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.HotReloadModule.dll" Hash="f1c6fd8ef2ec0c3a607b148bcd87038d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ImageConversionModule.dll" Hash="102bfdba9d7a2b1f876c7dd9ff0fd440"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.IMGUIModule.dll" Hash="c9fc2dcdf69f5c081ee1d809715624f5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.InputForUIModule.dll" Hash="2c6253ae2586b692d55140e38fc3e242"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.InputLegacyModule.dll" Hash="a9a370555a93c547284b2e8a27945bc5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.InputModule.dll" Hash="cf38dc062b4d1218628488ee5cbbdd5d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.JSONSerializeModule.dll" Hash="0b294a1c0dca9e8180f122ba7ac942dc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.LocalizationModule.dll" Hash="ecc911c3f4fb74ef6fe9d756e3d18408"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.MarshallingModule.dll" Hash="4be2900caf53c5a77e14d40d26804016"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.MultiplayerModule.dll" Hash="3821d1940fef8c2fd2bc09f8cdc50b7b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.NVIDIAModule.dll" Hash="0dde1799779f99200903622ecf279b4b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ParticleSystemModule.dll" Hash="fb86ca13989f7357917cb8fad2bc9571"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.PerformanceReportingModule.dll" Hash="76ea7a15db5d193ffd90ac126ecdf573"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.Physics2DModule.dll" Hash="c2e6a62916ad3207cdc8daf42e033d37"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.PhysicsModule.dll" Hash="b3d8e6427893f8ed1c6717e8bc8480eb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ProfilerModule.dll" Hash="f1f4d1ee69bff46452fba519b3a0c90b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.PropertiesModule.dll" Hash="dff0bf609e5e116146f3139297a8cf55"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" Hash="b3c3f7cf1d76fbf5cb72d06b48fadce8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ScreenCaptureModule.dll" Hash="512a77e433577d2aea66bbf774b26e68"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.SharedInternalsModule.dll" Hash="b5dfed05ba23999348fb41a3946a8c60"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.SpriteMaskModule.dll" Hash="d35600c344dda3162201ee876109dfa2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.SpriteShapeModule.dll" Hash="c1da3125886675c29f911186ba57c77f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.StreamingModule.dll" Hash="3c1a919df199410b6d97d3233c2ae8af"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.SubstanceModule.dll" Hash="5654a4342f349a828d1e42100bd5b069"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.SubsystemsModule.dll" Hash="bd7ad5e02272b6cffc6ac3c9f64a5d00"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.TerrainModule.dll" Hash="3f4b1cca251fc0e4ac8ee5855c21c829"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.TerrainPhysicsModule.dll" Hash="2d87f1c8ac3b32158d0c8751989c97f7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.TextCoreFontEngineModule.dll" Hash="f02c97fc1dc7cee24efb7a161761cad7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.TextCoreTextEngineModule.dll" Hash="211586ac1307e75b04944ae69602d439"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.TextRenderingModule.dll" Hash="7c4b7a99c671f612956c8d9a8b059d3d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.TilemapModule.dll" Hash="680c311a782c27b84939de1109387abf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.TLSModule.dll" Hash="f5e69a25d7e5711f9d96c6d72ebef3a6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UI.dll" Hash="c5ff0bd048336c6e10704e5bf0151e05"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UIElementsModule.dll" Hash="edb209860d38406902f38078afb09dc4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UIModule.dll" Hash="6dc8c0bd62247ae98f3ab47b58dbe79b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UmbraModule.dll" Hash="9e9645956824b3d24d0a5c721ebedfcc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityAnalyticsCommonModule.dll" Hash="35cc2a3004f37694740edc9394bc05bf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityAnalyticsModule.dll" Hash="07396be9516ddff18c7f49ba9ed9d5c2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityConnectModule.dll" Hash="c2b0504f4621a92e91d5ed5e79017295"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityCurlModule.dll" Hash="92203292162a4a4ea627f41e2032855d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityTestProtocolModule.dll" Hash="f7995ec8be70852443cefdf2b9ec8a4e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityWebRequestAssetBundleModule.dll" Hash="57d96c793a720456cc5ebc45d0b6f4e1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityWebRequestAudioModule.dll" Hash="8490f076ba120cb60dab94932adff771"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityWebRequestModule.dll" Hash="f033891c341f917838a1ae9caa9c73e8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityWebRequestTextureModule.dll" Hash="fe6a04ff44a2f53a27331ca4834211e3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityWebRequestWWWModule.dll" Hash="3e9d46adb7d36d390783d7917dd043b8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.VehiclesModule.dll" Hash="74065cdf5a92f299a5197a7cf2505725"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.VFXModule.dll" Hash="ae89bc0a52ba6cfeea7261e330bc972b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.VideoModule.dll" Hash="c00f0cfb424ad22ecf90a1f5d6f5bd2b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.VirtualTexturingModule.dll" Hash="a68ac0d470b2de4b492e6c0d9b88e9de"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.VRModule.dll" Hash="1943a6b4296e967056f48f34e7cc10b3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.WindModule.dll" Hash="4cb40be94a81fac1bb759d28e6dcd381"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.XRModule.dll" Hash="635e638a237f3b28a661c6cf4a18046a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Plugins/x86_64/lib_burst_generated.dll" Hash="57c1f876ac85e909504eb6fb9ce2ab8c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Plugins/x86_64/pdfrenderer.dll" Hash="bb9613277346c4b3bf0ea29a44c903e9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Resources/unity default resources" Hash="510aeddf6e1cb415533ad2b13937f0bd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Resources/unity_builtin_extra" Hash="4ec578ed51d7dd617c9245fc406c1fc2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/resources.assets" Hash="aa1503fcf0cca3c176162ed3d985eca3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/resources.assets.resS" Hash="415d6f432a82d14f862a7fc1897ab50e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/RuntimeInitializeOnLoads.json" Hash="6208c41654630850756b3fca5a5e6905"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/ScriptingAssemblies.json" Hash="bc1156dee1f08ecf1afb66a3cbd653a9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/sharedassets0.assets" Hash="1007009da1bc4721385a45b38f143ea3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/sharedassets0.assets.resS" Hash="897317a657f377346d8932827dc78da0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RRJ-95NEW-100/docs.xml" Hash="fcad1626c1ef3851931bf68a1aa054c6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RUS/024.31.00a.xml" Hash="e730fbd64cd77dd163732cfaf2bd0e75"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/ir_begin.wav" Hash="2e0057ee08c7b6fa07d28863a40d1cbf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/ir_end.wav" Hash="e83345df81f1e577bb53766875efc31d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/Menu Command.wav" Hash="822b4c37ce07436e2192785f3274386f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/Minimize.wav" Hash="8fb59dad02c94ebc63590b14f4d1de2e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/Navigation Start.wav" Hash="b82aa79f496456ffc5b952b484af25f5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/Proximity Connection.wav" Hash="00882d550b9389c6183ee3da0b668b2d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/Proximity Notification.wav" Hash="e15f0210410a574af39b07840ccbe4cc"/>
<FileData Path="/Application/RRJLoader/UnityCrashHandler64.exe" Hash="ea440810e323f7b7ca54727cd23d068e"/>
<FileData Path="/Application/RRJLoader/UnityPlayer.dll" Hash="0486f8cc69625acdb24a62855754b228"/>
</FileDataList> </FileDataList>

View File

@@ -1,309 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<FileDataList> <FileDataList>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets" Hash="FOLDER"/> <FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Objects" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RRJ-95NEW-100" Hash="FOLDER"/> <FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RRJ-95NEW-100" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RUS" Hash="FOLDER"/> <FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RUS" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds" Hash="FOLDER"/> <FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI" Hash="FOLDER"/> <FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Objects/Objects.xml" Hash="aabe39e7bfd68141113570873f6aca33"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01020107-001.xml" Hash="f53cc08aa46381f60a7b8ff57f6d31ca"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01020107-002.xml" Hash="190fe91cc016aafae86f2f160bb1a131"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01020107-003.xml" Hash="5eaaf84f81329ff8a9cc966e68918adc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030110-001.xml" Hash="fb5f3186ec3f4a145c17bc58566d880a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030114-001.xml" Hash="90c4ceea9299d53bf31bc9aedba83b04"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030114-002.xml" Hash="498319b3266c7364b62f7cef359ffb26"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030115-001.xml" Hash="82fb3530a5666c8e5df9498544bac4ac"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030115-002.xml" Hash="3310a8b1209c56cc64f4b30f805106e3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030115-003.xml" Hash="9204b1cd53c3a9eb0aa66f7e2a4eec63"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030115-004.xml" Hash="3f37bd25bcdb42352555955ec7dbab4c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030115-005.xml" Hash="57bb582364d0e094f53d2c988bcb4659"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030116-001.xml" Hash="06e1055c49f5837812be247e63f0351e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030116-002.xml" Hash="03de8a71e2438cd0c5430bd6684a660e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030117-001.xml" Hash="d7b6bbff1ff02cb66595076525f5c4d3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030117-002.xml" Hash="57f060458ef5214e7c8f7c0b0317910f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030118-001.xml" Hash="4aaeb5a1c8884002cf6b00eb643690ea"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030118-002.xml" Hash="8f7fa80af46cdce8f65445240c2e0231"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030118-003.xml" Hash="faead220dc29534abf3fc3da182d6026"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030118-004.xml" Hash="1c95bb6b0ef34edc114dae99d9fb7bee"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030119-001.xml" Hash="043a2ada929db5bf0b78ad6535cef55d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030206-001.xml" Hash="9ed1e943b71afe03d204a8f13df723a2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030206-002.xml" Hash="aacf22ee3573cb3d83055d74059d828f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030206-003.xml" Hash="010fd114d90077442b9cce411d360f74"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030206-004.xml" Hash="61796c6f991d4442c3c6b95f2bd23140"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030210-001.xml" Hash="6d4f04af742b49329c7a08ec6d210044"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030314-001.xml" Hash="0550ac2ac7f495cf72273247e83ae14c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030314-002.xml" Hash="9ba06c3494b73e3e54779e6d88620a69"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030314-003.xml" Hash="03addfb5f1d3f0cd5e980e17e8d873d1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030314-004.xml" Hash="576edeeef1287d8b7959010b7fcfb496"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030314-005.xml" Hash="79126169290896b366b7da7e9c97f09d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030314-006.xml" Hash="f99d6a604458329574fa7580f463703d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030314-007.xml" Hash="3be235e5122752ea71f978d4e7f7e37c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030314-008.xml" Hash="6e1c509aa53c7558d0e9ce7e1b4f400d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030314-009.xml" Hash="310311be61609f379cdf551d146af357"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030525-001.xml" Hash="d6598128ca78a69e3a1fe40b3d4f57bb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030525-002.xml" Hash="3ca8e55e3e0b97e00860d681e90a977b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030528-001.xml" Hash="a6f68f6ef9c11de6a6a82f7983b4f3ed"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030528-002.xml" Hash="9d07c9081a7b5d5f5b507062d051d60e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030528-003.xml" Hash="6bb3bca3721b6f99b1066f0687e0a913"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030528-005.xml" Hash="b00767e6298324256fee266e3ba5bfa4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030528-006.xml" Hash="c7e24692444e86724528bee797c0a818"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/01030528-007.xml" Hash="d181905287ea841d48060933e31e7bad"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030102-001.xml" Hash="c0cdaea833e46d5b14f9c1a8b8ce7009"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030102-002.xml" Hash="d50e2de284ae5791f8a212b8f7527b2f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030104-002.xml" Hash="fafbfe660f86df0f0c1df5ab68e8a3c2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030104-004.xml" Hash="535beaf086b28a6d175341a6ea9baf2e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030107-001.xml" Hash="80f926bace1a76d8e301119cbb943597"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030107-002.xml" Hash="969e0f2fc1bd8277c1d32b574c5841b6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030107-003.xml" Hash="40522dbec38c24c415a73b99071f52b1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030109-001.xml" Hash="87fc3fbfecdfaaf718d14050551fa79a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030109-002.xml" Hash="d09805b59ae9a0ca0e2fe19a825f897e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030112-001.xml" Hash="8bad68432d847f7ad1e8b562b74fbb06"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030113-001.xml" Hash="d2d84a28bff46098e4e8bb9de65aa6f3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030205-001.xml" Hash="980b8a690cd528f4df754bb6737aa44f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030208-001.xml" Hash="f4c1e3678634b15b77dcb68cebb3b4db"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030209-001.xml" Hash="2687f99bdce09dddbfccaf75d559e07b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030210-001.xml" Hash="7ff61f96fc677eba795bb9383eca9861"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030212-001.xml" Hash="a00e1d47eb5ddbf50cd5befe2eae5221"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030212-002.xml" Hash="33a8ceb86d62de7178199db58878d792"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030213-001.xml" Hash="344bf4a6c3695d553ed312f18fb387d0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030214-001.xml" Hash="5698f59834618d3dfb14bd9ce04bdd94"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030214-002.xml" Hash="edeb912c5a03956da128f10a87d0698d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030214-003.xml" Hash="586020ee33a7135f2117fd906aa6b9e3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030214-005.xml" Hash="604e58142b14c75e323aadef938a2122"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030216-001.xml" Hash="7644682823bfb4c23573d6c43f0cecc0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030217-001.xml" Hash="014fc387216e11266f44c424928a1a0c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030301-001.xml" Hash="c684ac10fa56420829f106ee5b4bd5cc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030402-001.xml" Hash="1174a9a17ef1f7bb4a7680b20bf5cf4a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030402-002.xml" Hash="3116314970f82b22c51bdf9c14a43a68"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030402-003.xml" Hash="76bb00d12bde2ee73714553b734e2333"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030403-001.xml" Hash="0a93ef567fd63b4454f7238552cf29b5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030403-002.xml" Hash="2d71a14974a19e9799dd1ff272b97e89"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030404-001.xml" Hash="ba34064073e493cd1f993be7683a5203"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030404-002.xml" Hash="a2dd1523c4c26cbedfa1518e5591dcb1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030404-003.xml" Hash="d2eab180f8d9bfd488b11a6ebaebed80"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030404-004.xml" Hash="c85ed5bcaf61578fbbf188e0d4baf60a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030405-001.xml" Hash="ed6a8b0a231683965114ba46c783ba79"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030405-002.xml" Hash="d38abba03c7f0d31002c034fbff957cb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030406-001.xml" Hash="74fdd2b3ab642a3ae3aafe008b928626"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030407-001.xml" Hash="37aeb13b41f9987050ef5b41acae352e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030407-002.xml" Hash="a9f14a985015fefc8e5f789c3986d198"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030408-001.xml" Hash="e19a0864e1ef5d2ee36368a9b8602ff1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030408-002.xml" Hash="bb31802d3e3b7df60c365dfbf84d5f93"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030409-001.xml" Hash="6f0a7a5159a7567e5978423d7c17a61d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030409-002.xml" Hash="1b80647ccc5fe635f752738f990e3a07"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030410-001.xml" Hash="961bb507771701edf7cc62a2d42db5f0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030411-001.xml" Hash="9037edeaf2e190769816b8294832ce13"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030411-002.xml" Hash="4553b77d405d507f3db93f9b5e6940ab"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030412-001.xml" Hash="64322a93b82f357f91d1607ed8581b71"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030412-002.xml" Hash="bc807a805520533ea1d8327018d6fe25"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030412-003.xml" Hash="ac6fe5a0bdb777691a62506c1d69ad38"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030413-001.xml" Hash="a0c382e6e0de788eef46ba0c0f157ed5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030413-002.xml" Hash="178bf6c0b1d2588ded9d2c5288acbf1d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030413-003.xml" Hash="d8453db797048ef2542af790bc260d6a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030413-004.xml" Hash="69b5d0040e0243a8377797c77e7cc77d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030413-005.xml" Hash="e380b31dace62eb6c623acc31c4c8043"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030413-006.xml" Hash="a0f7bc4437b08c63f26e955733b970b4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030414-001.xml" Hash="0f72277e7c206cf22ac88e98b23a1f34"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030414-002.xml" Hash="a898933983a2bdab3ec04f886ac7d084"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030415-001.xml" Hash="0d48778b742d12bda9f64d13c7b94a2b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030417-001.xml" Hash="ec8ff8212c846c9a93db2f7168473364"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030417-002.xml" Hash="3697589442473788a1757a25fede6fd6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030418-001.xml" Hash="a83c32ccbcca9381c9c983f49618dbe3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030418-002.xml" Hash="b512bf27c6d2609ad7a4ac3744c5a30c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030419-001.xml" Hash="bdf9f492ee02cc3de8c2cd48e7d9602e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030419-002.xml" Hash="caced693dd113954f3d500e64f474349"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030420-001.xml" Hash="323845baaa2e23c53afb55bc34a53ea8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030421-001.xml" Hash="5980964a89cb720e8c641ece306d9f0c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030421-002.xml" Hash="023096f474f4699683fbfe45e1dfa404"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030422-001.xml" Hash="8039d05a8bf6b81c829f54df0747abbb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030422-002.xml" Hash="5273cd4389171a307a8b1ca66ef2e084"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030424-001.xml" Hash="69354e1251d946d2199f48722df00eb2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030424-002.xml" Hash="40a51f5bac0cd8ff2d6e7ddd9ee30060"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030424-003.xml" Hash="ac0a7d3c415a8b045b841085a74d8933"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030425-001.xml" Hash="357095a14172f6e26ab50d7c82024dbc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030430-001.xml" Hash="dd5d9abebbc353c6c2ffc1898cb03270"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030430-002.xml" Hash="a02c277c04e3acfa30843ab665ee036b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030431-001.xml" Hash="11f8ee5e67efcef8d4efd243eb0445b1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030431-002.xml" Hash="51b9dbd0a93c35fcb94fbdab80dd5bca"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030432-001.xml" Hash="3f635289f4ea22292c733f9869986e1a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030432-002.xml" Hash="a42fb303174687b50e9b5e4689d4cfee"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030433-001.xml" Hash="c6dce58b079dd93d9022b5f877fcdf5a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030433-002.xml" Hash="e303c6eeb1886904869d1150162f3d31"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030435-001.xml" Hash="a6b10fd12629607e7e02f7d460759db3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02030435-002.xml" Hash="5bc98418e8294b8c16ee6fac49819788"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02040201-001.xml" Hash="199adca520aa0f68ceeeb5043c2d094e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02040202-001.xml" Hash="2b69ca8a9eb4d759f7324b5c9721f930"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02040203-001.xml" Hash="48667f426c3f031d081c168adf4539e7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02040204-001.xml" Hash="96eb2ab9c2876612a18adee48c487905"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02040205-001.xml" Hash="b28d2ab7fb54ac19a3e322a4e1e0500c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/02040206-001.xml" Hash="8d440ee946e3145d9aea5c7b8ab6c463"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010402-001.xml" Hash="0fbe9f5266dd3e19f527a583cebe4867"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010403-001.xml" Hash="52a9df1fd0949e8646ae878840d49b44"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010406-003.xml" Hash="cf49c65596e30b9c1f102b75de318451"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010407-001.xml" Hash="458efc9d02a6a14ef91f43136db9fd0f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010408-001.xml" Hash="0cc5d106a1d9acd3cda511cba1ae30ca"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010409-001.xml" Hash="3d092d9cd461a025651be8f5dd72daed"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010411-001.xml" Hash="7a1f028eb7a560e3a49b2e5811916eaf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010412-001.xml" Hash="763e28eaaaebc90d1218e9b60ff77656"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010412-002.xml" Hash="85778d87e8b3c54e233b712297ca2679"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010412-003.xml" Hash="1efac0922b9c6d836161e7516d76af26"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010502-002.xml" Hash="1b63271d3aa1a1980cf7bfbb0167dd26"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010502-003.xml" Hash="5b093a07cf5cc3506ab345049eabe9b3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010502-004.xml" Hash="693dc341d282f8dd6d3920eaca740c1d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010502-005.xml" Hash="6aa5094ddfd0c94cb0cbd1692a7ec12e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010502-006.xml" Hash="669d10c90254788a798e22c7cff55d40"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010502-007.xml" Hash="eab17e7156a8c49d0e701d06af717ccf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010502-008.xml" Hash="a014be337449df54bbdcc40603356aac"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010502-009.xml" Hash="ee8ae3302eac9d8a59bba62e19f16914"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010502-010.xml" Hash="fe906c4a36beb80462265cb74a4d918a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010502-011.xml" Hash="f67832eaf439ba46e125bc8ef7c47099"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010502-012.xml" Hash="835d9bb5620738a5acd4390fade6f6dd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010502-013.xml" Hash="f1ffcd2dcf043c26ff50fea253f06729"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010503-002.xml" Hash="99897eeebe331afb4b7101b9ff72310d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010503-003.xml" Hash="dfa14f8f4a812f8e9629489c4f5d88cc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010503-004.xml" Hash="afc50c230dad957347f821fd65247f8d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010503-005.xml" Hash="a3cf81b9985956def144a04305f01b2c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03010503-007.xml" Hash="5ac134c898690aa406e3ede0f59b8c38"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03040103-001.xml" Hash="0a8d3a8ac1e1b0f3b81fabe4d9b4d6cf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03050103-001.xml" Hash="aa5d75eaf1e17ca05a47eb280d0bd4c9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03050104-001.xml" Hash="aad49b39830c4854d514d24158891de6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03050202-001.xml" Hash="735d327116ef1ce5913363b49a7a192f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03060102-001.xml" Hash="38bc366deba35eb905dbb88b4b8bc762"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03070311-001.xml" Hash="7271bfe3e8cf3c8a658391e801ef29ed"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03070311-002.xml" Hash="115d41d6370c2f0cf491f471f63c666b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03070311-003.xml" Hash="9b6e9b87562100ef8adba358d60a0eb6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03070314-001.xml" Hash="7286ca3746a9b97d767395d7dd825858"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03090201-001.xml" Hash="35a7c9aab8091bf4fbf0b019e3f79635"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03090201-002.xml" Hash="a79c9e800a2b41780916c585e8b9a160"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03090201-003.xml" Hash="223f94f6b80e98e503eaf285f7878cc5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03150203-002.xml" Hash="62e9d93ced24f110fa006824f1a3cd65"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03180113-001.xml" Hash="ac177fb92679bb63dfa8d56a58d40a04"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03180113-002.xml" Hash="295dcf45c1f9728167c23a30d6744143"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/03180113-003.xml" Hash="aaba605cb98fa51b4669b81d39912845"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020104-001.xml" Hash="f063538ece8a4b4115eeb19238cb75fa"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020104-002.xml" Hash="461c7527435832a650e86603ebd6d9d1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020702-001.xml" Hash="ee703820d305c0323c9d4e377cbb4866"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020703-001.xml" Hash="e045d9f3022ce73f955b210283bd568a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020703-003.xml" Hash="dd743988bd7aace8e6f9a1bd5d9af555"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020705-001.xml" Hash="33bb032deb37b44b95f3486e2ce8e466"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020705-002.xml" Hash="3dcfaeef2cb44ad9688b7250191a5860"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020705-005.xml" Hash="b78a83d0c2d0b9b2416559e513bf0062"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020705-006.xml" Hash="1e3c3d340a5a7861f1fdae4add2be3ed"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020706-001.xml" Hash="7271324afb56664ddf9c17aa31978444"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020708-001.xml" Hash="8efc92bf1d60b244c2c90b4d93b7fd67"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020708-002.xml" Hash="a2f5686dde2e51681c9d5e34e126b6f0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020708-003.xml" Hash="3d7112f5f8598a58292bce1f3956b347"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020708-004.xml" Hash="9b67448dbaeb99136d2144431f0d825d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020708-005.xml" Hash="6f48b534e4eb2025a45cf7f61d327df7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020708-006.xml" Hash="42f7e5e1ddee4ece8e408f6c85c73c6f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020709-001.xml" Hash="86ce7ab3bb47d949df8de497b0239df2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020710-001.xml" Hash="14e22fab05476777ec38c81e9c889fd2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020710-003.xml" Hash="4632f17e43bf0825fb7f22a1523c8579"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020711-001.xml" Hash="95a8f76dc958b15e26cb85984a90c7a5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020712-001.xml" Hash="ccb13b723a1f08f890e9c8688b11e67c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020712-002.xml" Hash="fe736de26cfb7633a9822e50b6ecc15e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020712-003.xml" Hash="146acf8985930096be933d85bc22ca3f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020715-001.xml" Hash="f52aeccf150d7191e85c814aa5d70961"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020717-001.xml" Hash="8620be77ea969fea388a1a90249cddb5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020717-002.xml" Hash="f8ad7d1b4be0d3fc8428d160faa4d9ed"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04020718-001.xml" Hash="917b7ed29c30d4596e1edd88d3363d9d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021102-001.xml" Hash="78a873aaa243cfc9d331bab5269c6c90"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021103-001.xml" Hash="72ee7a1c2d4282f9acd85d684ab3d82f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021103-002.xml" Hash="7253cbde804350fd148ef928d014d632"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021103-004.xml" Hash="8223e3d4feb0badcb557d610abea2247"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021104-001.xml" Hash="fbbec4eced50b41e0cb4c430a3f6df1c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021104-002.xml" Hash="6d800baba9d77bd89dc5711136458fd7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021104-003.xml" Hash="40cf1a9e6cd6bbe1c85fd1fb4c1b6f7b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021104-004.xml" Hash="a351af8d47d7e5e0b8de09ad1d400425"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021104-005.xml" Hash="5b418827b3304ee5559eb0689c048cd1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021104-006.xml" Hash="63673cc0e3423d9867e9b856079f2a1b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021104-007.xml" Hash="1607696d83cc34d96cc666ff96b43543"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021105-001.xml" Hash="b541d385405e50ebeba352dc6b6c9e49"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021105-002.xml" Hash="75d5ccdfd046b56ae243d1a3a6d3a4ce"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021105-003.xml" Hash="d2046fb7f9b956943077bea8d1201344"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021105-004.xml" Hash="aa4642ffb2f2d75017c57ba758a7251d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021105-005.xml" Hash="ab572135f763dcb95bee0434fee90879"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021105-006.xml" Hash="4b110c9251e8a3050f47edf72d0df1c9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021106-001.xml" Hash="02021bae22f73aed5e9a94519a19bb16"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021106-002.xml" Hash="f5f87da4a7f4cfe3340b6ba42d51207e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021106-003.xml" Hash="c3426e6b5b501a735477a90a5f4ba2ea"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021106-004.xml" Hash="1cc4f4bdb7e73437c4a6f647c9b0c4f5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021106-005.xml" Hash="a540cbfb831a73a2baa48cc5a8b2849d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021106-006.xml" Hash="ad8f73a4a39e310e3c26d3757ed2bb0b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021108-001.xml" Hash="799d3f5e53fca36f7132784afe1039bf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021111-001.xml" Hash="5256f837a9292938c05169dd58367cd8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021402-001.xml" Hash="914ac47e6def831863e4238b06f6182f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04021402-002.xml" Hash="c104ebaad37da88afc413a4f2566490f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04030102-001.xml" Hash="f51b531095274f7d26e4fd586adca466"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04030402-002.xml" Hash="e607be8089927bdec540e32a4e93820a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04030402-003.xml" Hash="e1c270e17e9ab08bbad823d994c32527"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04030504-001.xml" Hash="38857fa45c086c6c4a747796138b4940"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04030504-002.xml" Hash="2d27c14254469c12633986449cff9612"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04030702-003.xml" Hash="4b0c0467dbb294b376345eb6114bfc6c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04030802-003.xml" Hash="ee6a4ec11329d847a6ab9448df7a48a8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04030902-003.xml" Hash="c973847af41397d612afceeb662d048c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04031003-001.xml" Hash="0db98b30fc6d84f11c6d91f220671880"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04031105-001.xml" Hash="3f722f7621ece4fecafbec12d339e60e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04031204-001.xml" Hash="51c16453cee8c4d0baefa3e38a8e5e08"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04031205-001.xml" Hash="2d5a529c3c1d6b6040d422de83672cd6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04031305-001.xml" Hash="ac177fb92679bb63dfa8d56a58d40a04"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04031305-002.xml" Hash="295dcf45c1f9728167c23a30d6744143"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04031305-003.xml" Hash="489675dfc84b195305bf6b0cb295ef2c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04031402-001.xml" Hash="a5937287bf15db2e6bb5253b423b6a51"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04040103-001.xml" Hash="d7f7b537a320560788224e314c64713c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04040103-002.xml" Hash="52d27835bc22545e77263545259792e9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04040103-003.xml" Hash="59a6a7e582c45e899074c43f74761e21"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04050104-001.xml" Hash="d13cf774885e0cd38f323525f824fe7c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04050104-002.xml" Hash="8a77a96acb6a1bdec5d484588013518d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04050104-003.xml" Hash="bf5050959a388f5b4969160e2ecb175c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04050204-002.xml" Hash="38101e6825585cc7ba0c8a197ca37f20"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04050204-005.xml" Hash="619f74f21b9716e41e98a5695eb26f52"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/04050307-004.xml" Hash="c740951b5b2414265afdedb07cac0d44"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/06020102-001.xml" Hash="b553d3358d0a4a2ccefd3a2cb062cdd5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/06020102-002.xml" Hash="a789bc89b20022030c54acd9d68bd4df"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/06020102-003.xml" Hash="5fc63bc0d6f6181740116e71447dcfbd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/06020103-001.xml" Hash="6a242f0558a7fe7a529c755f78ff2271"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/06020103-002.xml" Hash="062c8d0c07c5596df5c663830d4a09c3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/06020104-001.xml" Hash="2cdb6524be4e0eb5aaf1f9681a36d499"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/06020105-002.xml" Hash="a1e0f3d7ae2b8e83a87c3246667e45d5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/06030101-001.xml" Hash="48bebcc72d74c06998e0a35aec90c401"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/06030102-001.xml" Hash="a126d55b1b78b6521d42c2c461a2c205"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/06040101-001.xml" Hash="aa70dfd88b437bf0f4eeb980fba124ce"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/06040103-001.xml" Hash="c091a7067322c76c5eea877578f7f5d5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/06050102-001.xml" Hash="06ceafc2a69069433875457939066a91"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/06060109-001.xml" Hash="1f876e34a6f702f90c321de07b4272f0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/06080102-001.xml" Hash="f822fd3f3ac8d6bf79dbf8143c3bbe58"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/06080102-002.xml" Hash="8b3d7646f713606b1d9d186314520a26"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/06090103-001.xml" Hash="c46b026b15b60a39fcfc77237c147f63"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/07031801-001.xml" Hash="c73f915d85592e79abb15a70660b7745"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/07080202-001.xml" Hash="d7f467d3cf46d6f4c6c2257c7f783416"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/07080204-001.xml" Hash="0ab95dc7ca02a7c438c17fbbfa58beba"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/07080204-002.xml" Hash="e1d1df22ca0516e14fb33ae1780962fc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/07080302-001.xml" Hash="4bb2328c120f9074d2153a46fcab3c43"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/07080401-001.xml" Hash="b4170596f788791cdc9ab0abefb9ff00"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/07080401-002.xml" Hash="0c650a58842f834b9318d62262738457"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/07080502-001.xml" Hash="d8ec8a38d47e15b79da07da4edee7473"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/08040314-001.xml" Hash="e2ca1af2a7b51f3e654ca8d20c93b8a7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/11050201-001.xml" Hash="961e900ec31e2bdf15405bd7d691db0f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/12020303-001.xml" Hash="e2ca1af2a7b51f3e654ca8d20c93b8a7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/12021004-002.xml" Hash="dc525f5be49a400943b0fc5d1e9e8e04"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/12021004-003.xml" Hash="603cfcb7739c056a57225e61e8caa050"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/12021005-001.xml" Hash="6f48b534e4eb2025a45cf7f61d327df7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/12021006-001.xml" Hash="14e22fab05476777ec38c81e9c889fd2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/12021010-001.xml" Hash="d30a5701171aa3172c8307052c75150a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/12021011-001.xml" Hash="3dcfaeef2cb44ad9688b7250191a5860"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/12021011-004.xml" Hash="b78a83d0c2d0b9b2416559e513bf0062"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/12021011-005.xml" Hash="1e3c3d340a5a7861f1fdae4add2be3ed"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/12021014-001.xml" Hash="86ce7ab3bb47d949df8de497b0239df2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/12021018-001.xml" Hash="917b7ed29c30d4596e1edd88d3363d9d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/13051401-002.xml" Hash="fda84b4936f0eed551b58e89f79d34d9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/13051403-001.xml" Hash="5b6e1f19c9778ae237816bc9b3501b04"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/13051405-001.xml" Hash="bc5899f4dedc7e940270a8b96f0100bd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/13051717-001.xml" Hash="eef6e9a3eaadac3fa39efd64feb0d619"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/DataExtension/Scenario/13051717-002.xml" Hash="615736ceef667747473a6152557c6c6b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RRJ-95NEW-100/docs.xml" Hash="fcad1626c1ef3851931bf68a1aa054c6"/> <FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RRJ-95NEW-100/docs.xml" Hash="fcad1626c1ef3851931bf68a1aa054c6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RUS/024.31.00a.xml" Hash="e730fbd64cd77dd163732cfaf2bd0e75"/> <FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RUS/024.31.00a.xml" Hash="e730fbd64cd77dd163732cfaf2bd0e75"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/ir_begin.wav" Hash="2e0057ee08c7b6fa07d28863a40d1cbf"/> <FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/ir_begin.wav" Hash="2e0057ee08c7b6fa07d28863a40d1cbf"/>

View File

@@ -1,2 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ClientAutorization Login="O1" Password="1111"/> <ClientNotify Code="GETSERVERDATALIST"/>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -8,48 +8,49 @@
static const unsigned char qt_resource_data[] = { static const unsigned char qt_resource_data[] = {
// E:/Projects/QT/GUIProj/RRJClient/RRJClient/style.css // E:/Projects/QT/GUIProj/RRJClient/RRJClient/style.css
0x0,0x0,0x2,0x7e, 0x0,0x0,0x2,0x87,
0x0, 0x0,
0x0,0xa,0xa7,0x78,0x9c,0xd5,0x56,0x5b,0x6f,0xda,0x30,0x18,0x7d,0x47,0xe2,0x3f, 0x0,0xb,0xa,0x78,0x9c,0xd5,0x56,0x4d,0x6f,0xe2,0x30,0x10,0xbd,0x23,0xf1,0x1f,
0x58,0xe5,0x5,0x24,0x52,0x92,0x0,0x2d,0x32,0x6f,0x74,0xd3,0x2e,0x2a,0xd3,0x50, 0xac,0x72,0xa1,0x12,0x94,0x24,0x40,0x8b,0xd2,0x1b,0xdd,0xd5,0x7e,0xa8,0xac,0x16,
0xa7,0xf5,0xd9,0x89,0x4d,0xf2,0x9,0x63,0x23,0xdb,0x11,0xa0,0x69,0xff,0x7d,0x6, 0xb5,0xda,0x9e,0x9d,0xd8,0x24,0x23,0x8c,0x1d,0xd9,0x8e,0x28,0x5a,0xed,0x7f,0xaf,
0x42,0x9a,0x84,0x40,0x43,0xc5,0xcb,0x88,0x44,0xa2,0xc4,0x3e,0xe7,0xf8,0xbb,0x1c, 0x49,0x42,0x36,0x4,0x43,0x43,0x97,0xcb,0x12,0x9,0x22,0x62,0xbf,0xf7,0xc6,0x33,
0xbb,0xd9,0x98,0x4d,0x9,0x88,0x57,0x10,0x54,0xae,0x9b,0x8d,0x3f,0xcd,0x6,0xb2, 0xf3,0x26,0xed,0xd6,0x7c,0x86,0x81,0xbf,0x0,0x27,0x62,0xdd,0x6e,0xfd,0x6e,0xb7,
0xbf,0x80,0x84,0x8b,0x48,0xc9,0x44,0x50,0x7,0x96,0x24,0x62,0x18,0x25,0x8a,0xb7, 0x90,0xf9,0x4,0x38,0x5c,0x46,0x52,0xa4,0x9c,0xf4,0x61,0x85,0x23,0xea,0xa3,0x54,
0x71,0x4f,0x31,0x2d,0x13,0x15,0xb2,0xde,0xcb,0xcb,0x77,0xc7,0x73,0xdd,0x4f,0x44, 0xb2,0xae,0x3f,0x90,0x54,0x89,0x54,0x86,0x74,0xf0,0xf4,0xf4,0xbd,0xef,0x3a,0xce,
0x2d,0xee,0x57,0x22,0xea,0x8c,0x4f,0xe6,0xad,0xa4,0x6,0x3,0x52,0x60,0x14,0x32, 0x27,0x2c,0x97,0x37,0x9,0x8f,0xae,0xef,0xf,0xf6,0x25,0x42,0x81,0x6,0xc1,0x7d,
0x61,0x98,0xb2,0x23,0xfe,0x36,0x1b,0xcd,0xc6,0xec,0x49,0x2e,0x3,0x39,0x91,0x9b, 0x14,0x52,0xae,0xa9,0x34,0x2b,0xfe,0xb4,0x5b,0xed,0xd6,0xfc,0x41,0xac,0x2,0x31,
0x2a,0xb2,0x50,0x72,0xa9,0x30,0x52,0x51,0xd0,0xf6,0xdd,0x7e,0xd7,0xf7,0x47,0x5d, 0x15,0xaf,0x36,0xb2,0x50,0x30,0x21,0x7d,0x24,0xa3,0xa0,0xeb,0x39,0xc3,0x9e,0xe7,
0x7f,0x38,0xcc,0xd0,0xa5,0xa2,0x4c,0x39,0xda,0x6c,0xb9,0x55,0x24,0x13,0xa3,0x99, 0x4d,0x7a,0xde,0x78,0x5c,0xa2,0xb,0x49,0xa8,0xec,0x2b,0xbd,0x61,0x46,0x91,0x48,
0x29,0x7e,0x52,0x84,0x42,0xa2,0x31,0xea,0xaf,0x36,0xe9,0x87,0xb9,0x14,0xc6,0x99, 0xb5,0xa2,0x7a,0xff,0x91,0xc4,0x4,0x52,0xe5,0xa3,0x61,0xf2,0x5a,0x3c,0x58,0x8,
0x93,0x25,0xf0,0x2d,0x46,0x77,0x4f,0x84,0x43,0xa0,0xe0,0x2e,0xf7,0x11,0x23,0xef, 0xae,0xfb,0xb,0xbc,0x2,0xb6,0xf1,0xd1,0xd5,0x3,0x66,0x10,0x48,0xb8,0xaa,0x3c,
0x21,0x1b,0x9d,0xe3,0x1f,0xc,0xbb,0xa3,0x41,0xd7,0xeb,0xbb,0x9d,0xa3,0xf2,0xbd, 0xf4,0x91,0x7b,0x5b,0xae,0xae,0xf0,0x8f,0xc6,0xbd,0xc9,0xa8,0xe7,0xe,0x9d,0xeb,
0xfa,0x9f,0x89,0x8e,0x27,0x89,0x31,0x52,0xfc,0x77,0xfa,0x73,0xda,0x31,0x5,0x4d, 0x52,0xf9,0xcf,0x54,0xc5,0xd3,0x54,0x6b,0xc1,0xff,0x67,0xed,0x3e,0x1,0x85,0x3,
0x2,0xce,0xe8,0x85,0x45,0x70,0x88,0x62,0xf3,0x45,0x91,0x6d,0x11,0x3b,0xb2,0x6f, 0x46,0xc9,0x89,0x20,0x18,0x44,0xb1,0xfe,0x22,0xf1,0x66,0x1f,0x3b,0x32,0xff,0xec,
0x8e,0x80,0x53,0xa6,0xb5,0xad,0x8e,0xcb,0xc9,0x5c,0xc7,0x60,0xd8,0xf8,0x74,0xa, 0x0,0x67,0x54,0x29,0x53,0x19,0xa7,0x13,0xb9,0x8e,0x41,0xd3,0xfb,0xc3,0x2d,0x68,
0x9a,0x3d,0x93,0x80,0xf1,0x6c,0x66,0x8d,0x95,0xfa,0x6e,0x79,0xa5,0x1,0xb7,0x7c, 0xfe,0x88,0x3,0xca,0xca,0x9d,0xd,0x22,0xf5,0x9c,0x7a,0xa4,0x1,0x33,0x7c,0x56,
0x95,0xe0,0x55,0x89,0x2a,0x6,0xd9,0xcf,0xc0,0x56,0x84,0x52,0x10,0x11,0x46,0xee, 0x70,0x5b,0xa2,0xf6,0xf,0xd9,0x2b,0xc1,0x12,0x4c,0x8,0xf0,0xc8,0x47,0xce,0x8d,
0xbd,0xcf,0x96,0xd9,0x7f,0xff,0xf8,0x9c,0xe,0x5b,0x82,0x70,0xd6,0x40,0x4d,0x8c, 0x47,0x57,0xe5,0xf7,0x70,0x77,0x5f,0x2c,0x5b,0x1,0xef,0xaf,0x81,0xe8,0xd8,0x47,
0xd1,0xe3,0x41,0xc9,0x81,0xf6,0x19,0x4,0xfb,0x4c,0xc1,0x94,0x89,0x6a,0x27,0x3a, 0x77,0xb9,0x92,0x9c,0xf6,0x11,0x38,0xfd,0x4c,0x40,0xd7,0x89,0x1a,0x27,0xba,0x48,
0x4d,0x8f,0x92,0x91,0x6d,0x30,0x3d,0x21,0xaa,0x84,0xb4,0xd7,0x8a,0xb4,0xe4,0x40, 0x8f,0x14,0x91,0x69,0x2e,0x35,0xc5,0xb2,0x86,0x94,0x69,0x45,0x4a,0x30,0x20,0x87,
0x4f,0x73,0x5b,0x81,0xea,0xf9,0xe7,0xe2,0x54,0xb7,0xa4,0x86,0x96,0x2f,0x90,0x9c, 0xb9,0xb5,0xa0,0x8e,0x8f,0x1d,0x53,0xd3,0x8a,0x32,0x0,0x6,0x93,0x91,0xe2,0x5f,
0xa6,0x6f,0xd,0xdb,0x18,0xc7,0xe,0x8c,0x4e,0xda,0xb9,0xa8,0x1b,0xe3,0x30,0x4e, 0x4d,0x5f,0x75,0xdf,0x2c,0x8c,0xe,0x3a,0x79,0x5f,0xb6,0xef,0x87,0x71,0xca,0x97,
0xc4,0xe2,0x5c,0xc4,0xbd,0xb7,0xfc,0xd5,0x6a,0x9a,0xd4,0x30,0x62,0x16,0x2e,0xf2, 0xc7,0xe,0xfc,0xaf,0xac,0x46,0x2d,0x53,0x58,0x45,0x4c,0xc3,0x65,0xb5,0xc2,0xaa,
0x35,0x96,0x5f,0x40,0xdd,0x96,0x28,0x56,0xe1,0x2b,0xd0,0x88,0x99,0x16,0x84,0x52, 0xfa,0x9b,0x36,0xc4,0x7e,0xd,0xbe,0x0,0x89,0xa8,0xee,0x40,0x28,0x78,0x7e,0x5b,
0x1c,0x1e,0xcb,0x8a,0xab,0x5d,0xef,0x9b,0x1d,0xaf,0x7b,0x2b,0x4e,0x4,0xdb,0xbb, 0x17,0x6c,0xf7,0xbb,0x6f,0x66,0xbd,0x1a,0x24,0xc,0x73,0x9a,0xf9,0x1d,0x72,0x8a,
0x1e,0x72,0xd3,0x4b,0x1b,0xc5,0x4c,0x18,0x1f,0xef,0xc7,0xb2,0x3a,0x67,0x81,0x37, 0x4b,0x69,0x49,0x75,0x18,0xef,0x7e,0x77,0x45,0x75,0xcc,0xfc,0x2e,0x50,0xf6,0xd6,
0x28,0xfc,0xca,0xf5,0xc4,0x8c,0x58,0xf1,0xe5,0x15,0x95,0x23,0x7d,0x23,0x77,0x2a, 0x78,0x62,0x8a,0x8d,0xf8,0x7a,0x44,0xf5,0x93,0xbe,0x90,0x37,0xed,0x31,0xa7,0x9,
0x30,0x27,0x2b,0x4a,0xc,0x7b,0x8f,0x79,0x97,0x63,0x92,0xe7,0xfe,0x18,0xbf,0xe7, 0xc1,0x9a,0xbe,0xc7,0xbc,0xcd,0x31,0xae,0x72,0x7f,0x8c,0xdf,0x75,0xe,0x4,0xa0,
0x9e,0x8,0x40,0x1f,0x57,0xe0,0x96,0xbb,0xe8,0x16,0xa,0x6e,0x62,0x6e,0xd5,0x36, 0x8f,0x2b,0x70,0xea,0x3d,0x74,0x9,0x5,0x17,0xb1,0x36,0xbb,0x89,0xcf,0x36,0x66,
0x3e,0xdd,0xda,0xcd,0xfa,0xeb,0x3e,0xd3,0x69,0xc2,0xaf,0xa6,0xf2,0x46,0x35,0x77, 0x4c,0x7f,0xcd,0x32,0x5d,0x24,0xfc,0x6c,0x2a,0x77,0xd2,0x70,0x5e,0x64,0xc8,0x1d,
0x8c,0x3d,0x72,0xcb,0xd6,0x7b,0x94,0xd8,0x7e,0xf8,0x5,0x86,0xb3,0x7a,0x3c,0x95, 0x53,0xef,0x51,0x6a,0xfa,0xe1,0x19,0x34,0xa3,0xcd,0x78,0xac,0x55,0x9a,0xa3,0xfd,
0x55,0x7a,0x40,0xfb,0x21,0xd,0xcc,0x21,0x24,0xbb,0xce,0xb8,0x42,0x79,0xa5,0xe1, 0x10,0x1a,0x16,0x10,0xe2,0x6d,0x67,0x9c,0xa1,0xdc,0x6a,0xf7,0x39,0x22,0x3f,0x89,
0x1f,0x10,0xc5,0x45,0xc4,0x2c,0xb2,0xe5,0x4d,0xb0,0x65,0x37,0x41,0xdb,0xcb,0xdb, 0x58,0x9e,0x6c,0xbe,0xe5,0x59,0x8,0x96,0x4f,0x85,0x8e,0x19,0x81,0xa6,0x97,0x37,
0xdf,0xc0,0xd6,0x27,0x86,0x3b,0xb8,0xca,0x70,0x87,0x17,0x7c,0xad,0x18,0x83,0x6a, 0xbf,0x80,0xae,0xf,0xec,0x76,0xf4,0x4f,0x76,0x6b,0xdf,0xf3,0xce,0x60,0xb4,0x2b,
0x7a,0x6b,0x9b,0xd6,0xe3,0x2e,0x6e,0xc7,0x3b,0x19,0xde,0xd0,0xeb,0x7a,0x8f,0xf, 0x33,0x86,0x6a,0xec,0xef,0xe4,0x9c,0xde,0xb2,0xb9,0x63,0xb7,0xe7,0xde,0xdd,0x9a,
0xb6,0x66,0xbd,0xdc,0xa9,0xe4,0x1c,0x66,0x8d,0x3d,0xbe,0x2,0xf4,0x2d,0xd6,0xef, 0x72,0x76,0xcb,0xf4,0x1d,0xc7,0x6c,0x30,0xfc,0x2d,0xa0,0x27,0xe2,0xcb,0x18,0x2b,
0x9e,0x22,0x5a,0x1c,0xc4,0xa2,0xce,0x61,0x88,0xb4,0xdd,0xee,0xfe,0xea,0x8c,0x6b, 0x13,0xb7,0x53,0xa8,0xce,0xd2,0xd1,0xe4,0x6d,0x9,0x77,0x9d,0x5e,0x76,0xd9,0x5e,
0x67,0x3a,0xe0,0xc9,0x2e,0x6a,0x29,0xeb,0x3f,0xe9,0xd0,0x12,0xb6, 0x56,0x3a,0xc,0xf8,0xf2,0x6c,0x94,0x86,0x25,0x15,0xb0,0x94,0xee,0x22,0x68,0xb7,
0xde,0x0,0xbc,0xd,0x30,0x70,
// E:/Projects/QT/GUIProj/RRJClient/RRJClient/resource/SSJ-100.png // E:/Projects/QT/GUIProj/RRJClient/RRJClient/resource/SSJ-100.png
0x0,0xc,0x7c,0xaa, 0x0,0xc,0x7c,0xaa,
0x89, 0x89,
@@ -131650,6 +131651,235 @@ static const unsigned char qt_resource_data[] = {
0xff,0x4d,0x3a,0x2d,0xb,0xfb,0xab,0xee,0x96,0xfb,0x6e,0xf9,0x45,0x9f,0x36,0x42, 0xff,0x4d,0x3a,0x2d,0xb,0xfb,0xab,0xee,0x96,0xfb,0x6e,0xf9,0x45,0x9f,0x36,0x42,
0xed,0xfe,0xf7,0xff,0xf,0x5e,0xff,0x72,0x68,0x2e,0x5e,0xec,0x76,0x0,0x0,0x0, 0xed,0xfe,0xf7,0xff,0xf,0x5e,0xff,0x72,0x68,0x2e,0x5e,0xec,0x76,0x0,0x0,0x0,
0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, 0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// E:/Projects/QT/GUIProj/RRJClient/RRJClient/resource/Icons/checked.png
0x0,0x0,0xe,0x13,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x80,0x0,0x0,0x0,0x80,0x8,0x6,0x0,0x0,0x0,0xc3,0x3e,0x61,0xcb,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x3,0xb0,0x0,0x0,0x3,0xb0,
0x1,0x27,0xc4,0xf,0xad,0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66,
0x74,0x77,0x61,0x72,0x65,0x0,0x77,0x77,0x77,0x2e,0x69,0x6e,0x6b,0x73,0x63,0x61,
0x70,0x65,0x2e,0x6f,0x72,0x67,0x9b,0xee,0x3c,0x1a,0x0,0x0,0xd,0xa0,0x49,0x44,
0x41,0x54,0x78,0x9c,0xed,0x9d,0x7b,0x70,0x54,0xf7,0x75,0xc7,0x3f,0xe7,0xee,0x22,
0x29,0x2a,0x2,0xdb,0x4,0x87,0x12,0x17,0x43,0x43,0x62,0xc7,0x38,0x71,0xa5,0x15,
0xc6,0x35,0xae,0x3,0x86,0x18,0xe3,0x64,0x82,0x71,0x1b,0xe2,0xbc,0x1c,0xc7,0x46,
0x48,0x84,0x8e,0x9b,0xc7,0xb8,0xc9,0xd4,0x99,0x46,0x78,0xda,0xc6,0x33,0x76,0x32,
0x53,0x1a,0x7,0x56,0x80,0x3b,0x71,0xda,0xc4,0xe0,0x8c,0x1f,0x35,0x5,0x8c,0x8d,
0xcd,0x38,0xf1,0x18,0x21,0x2d,0x6a,0x20,0xc4,0x6d,0xfd,0x0,0xea,0xd6,0x8,0x9b,
0x87,0x90,0x5f,0x12,0x92,0xee,0xe9,0x1f,0xbb,0x12,0xab,0xd5,0xae,0x76,0xef,0xee,
0xef,0x3e,0xa4,0xbd,0x9f,0x19,0xd,0xc3,0x7d,0xfc,0xce,0x81,0xf3,0xd5,0xf9,0xfd,
0xee,0xbd,0xbf,0xdf,0xef,0x8,0xe3,0xd,0x45,0xe6,0xae,0x67,0xd6,0x40,0x94,0xcb,
0xc4,0x66,0x16,0x16,0x33,0x81,0x19,0xaa,0x4c,0x15,0x98,0x42,0xf2,0xa7,0xa,0xa8,
0x0,0xfe,0x20,0x75,0xd7,0xbb,0xc0,0x59,0xa0,0x7,0x38,0xa9,0x70,0x52,0xe0,0x4d,
0x84,0xd7,0xb1,0x39,0x82,0xf0,0x9a,0x35,0xc0,0x4b,0x6d,0xab,0x39,0x8c,0xa0,0x7e,
0xfc,0xb3,0xdc,0x42,0xfc,0x76,0xa0,0x54,0xae,0x58,0xcf,0x87,0x23,0x11,0xe6,0x8b,
0xcd,0xd5,0x22,0x5c,0xa9,0x70,0x39,0x50,0xe3,0x92,0xb9,0xb7,0x15,0xe,0x8a,0xd2,
0x86,0xf0,0x82,0x1d,0xe5,0x85,0x8e,0x3b,0x78,0xc3,0x25,0x5b,0x9e,0x30,0xe6,0x4,
0x30,0x7b,0x1d,0x95,0x93,0xaa,0x58,0x20,0x36,0x4b,0x11,0x96,0x2,0x1f,0xf3,0xd9,
0xa5,0xff,0x12,0xd8,0x61,0xb,0x3b,0xbb,0x7b,0xd8,0xf3,0xca,0x9d,0xf4,0xfa,0xec,
0x8f,0x23,0xc6,0x84,0x0,0x62,0x71,0x26,0x0,0xd7,0x23,0xac,0x40,0x59,0x6,0x4c,
0xf6,0xdb,0xa7,0x1c,0x9c,0x41,0x78,0x42,0x6c,0xb6,0xa8,0xf0,0x74,0xa2,0x91,0x3e,
0xbf,0x1d,0xca,0x47,0xa0,0x5,0x50,0xb7,0x89,0xd9,0xd6,0x0,0x5f,0x51,0xb8,0x1d,
0xf8,0x23,0xbf,0xfd,0x71,0x48,0x27,0xc2,0xcf,0xd4,0x62,0xd3,0xfe,0x95,0xbc,0xe2,
0xb7,0x33,0xb9,0x8,0xa4,0x0,0x62,0x71,0xae,0x41,0xf9,0x2e,0xc2,0x67,0x8,0xa8,
0x8f,0xe,0x50,0x85,0xdd,0x28,0xeb,0xf6,0x37,0xb2,0x2d,0x68,0x83,0xc8,0xe0,0xfc,
0xe7,0x2a,0x52,0x1f,0xe7,0x73,0x2a,0xfc,0x0,0xa8,0xf5,0xdb,0x1d,0x97,0x48,0x88,
0x70,0x4f,0x7b,0x3,0x4f,0x6,0x45,0x8,0x81,0x10,0x40,0x5d,0xb,0x4b,0x2c,0xe5,
0xef,0x14,0xea,0xfd,0xf6,0xc5,0xb,0x14,0xda,0x4,0xbe,0x9f,0x68,0x64,0x97,0xdf,
0xbe,0xf8,0x2a,0x80,0x2b,0x5b,0xf8,0xd8,0x80,0xcd,0x8f,0x10,0x3e,0xeb,0xa7,0x1f,
0x7e,0xa1,0xf0,0x4c,0x44,0xf8,0x66,0xdb,0x2a,0xe,0xf9,0xe5,0x83,0x2f,0x2,0x88,
0xc5,0xa9,0x46,0x59,0x8b,0xf0,0x57,0xc0,0x4,0x3f,0x7c,0x8,0x10,0x7d,0x8,0x3f,
0xae,0x78,0x87,0xb5,0x2f,0x7e,0x9b,0xf7,0xbd,0x36,0xee,0xb9,0x0,0x6a,0x37,0xb0,
0xc8,0x12,0xe2,0xc0,0x47,0xbc,0xb6,0x1d,0x70,0x5e,0x1,0x56,0x25,0x1a,0x79,0xce,
0x4b,0xa3,0x9e,0x9,0x60,0xc1,0x3f,0x53,0xf5,0x76,0x1f,0xcd,0x28,0x77,0x1,0x96,
0x57,0x76,0xc7,0x18,0x2a,0xb0,0x51,0xe1,0x5b,0x89,0x46,0xde,0xf3,0xc2,0xa0,0x27,
0x2,0xa8,0x5f,0xcf,0xe5,0x6a,0xf1,0x4b,0x92,0xaf,0x69,0x43,0xf2,0x73,0xc0,0x56,
0xbe,0xd8,0xd1,0xc4,0xef,0xdd,0x36,0xe4,0xfa,0x6f,0x62,0x7d,0xb,0xb7,0xa8,0xc5,
0x5e,0xc2,0xe0,0x3b,0xe1,0x93,0x96,0xd0,0x5a,0xb7,0x81,0x2f,0xb8,0x6d,0xc8,0xbd,
0xc,0xd0,0x8c,0x15,0x9b,0xce,0x7d,0x28,0xdf,0x76,0xcd,0x46,0x39,0xa0,0xdc,0x9f,
0xe8,0xe4,0xbb,0x34,0x63,0xbb,0xd1,0xbc,0x2b,0x2,0x98,0xb3,0x95,0x8a,0xf,0x9c,
0xe6,0x21,0xc5,0x7d,0x5,0x97,0x5,0xca,0x63,0x35,0x95,0x7c,0x69,0xcf,0xd7,0xe9,
0x31,0xdd,0xb4,0x71,0x1,0xcc,0x79,0x80,0x89,0x55,0x11,0x7e,0x85,0xb0,0xc4,0x74,
0xdb,0x65,0xce,0x73,0xd1,0x5e,0x6e,0x6a,0xbd,0x93,0x6e,0x93,0x8d,0x1a,0x15,0xc0,
0x95,0x3f,0x61,0xca,0x40,0x94,0x6d,0x8,0x57,0x99,0x6c,0x37,0x64,0x88,0x44,0x9f,
0xcd,0x8d,0x7,0x56,0xf3,0xa6,0xa9,0x6,0x8d,0x9,0xa0,0x76,0x13,0x17,0x5b,0x3,
0x3c,0xd,0x7c,0xd4,0x54,0x9b,0x21,0x59,0x79,0xd9,0x8e,0xf0,0xe9,0x8e,0x95,0x1c,
0x35,0xd1,0x98,0x11,0x1,0xd4,0x3e,0xc8,0x54,0xab,0x8f,0x5f,0x3,0x97,0x98,0x68,
0x2f,0x24,0x2f,0xaf,0x46,0x2d,0xe6,0xb7,0x36,0x70,0xbc,0xd4,0x86,0x4a,0x7e,0xc,
0x9c,0xbf,0x99,0x1a,0xab,0x8f,0x1d,0x84,0xc1,0xf7,0x92,0x8f,0xf4,0xdb,0xec,0x8a,
0xc5,0x4b,0x9f,0x18,0x53,0x92,0x0,0xe6,0x6c,0xa5,0xa2,0xa7,0x9f,0x5f,0x1,0xb1,
0x52,0x1d,0x9,0x71,0xcc,0x27,0x81,0xc7,0x66,0xaf,0xa3,0xb2,0x94,0x46,0x8a,0x17,
0x40,0x33,0x56,0xd5,0x29,0x7e,0xe,0x5c,0x5f,0x8a,0x3,0x21,0x25,0xb1,0x70,0x72,
0x25,0xf,0x7f,0x7e,0x2b,0x91,0x62,0x1b,0x28,0x5a,0x0,0xb1,0xe9,0xdc,0x87,0xb0,
0xa2,0xd8,0xfb,0x43,0x8c,0x71,0xd3,0x6b,0x5d,0xfc,0x7d,0xb1,0x37,0x17,0x35,0x8,
0xac,0xdf,0xc0,0x17,0x55,0xf8,0x45,0xb1,0x46,0x43,0x8c,0xa3,0xa2,0x2c,0x6f,0x6f,
0xe2,0x9,0xa7,0x37,0x3a,0x16,0x40,0xea,0xc3,0xce,0x5e,0xce,0x2d,0xaa,0x8,0x9,
0x6,0x27,0xad,0x7e,0x6a,0xdb,0xd6,0xf0,0xba,0x93,0x9b,0x1c,0x75,0x1,0xb3,0xd7,
0x51,0xa9,0x16,0xff,0x4a,0x18,0xfc,0x20,0x32,0xc5,0x8e,0xf2,0x48,0x6a,0xa,0x7d,
0xc1,0x38,0x12,0xc0,0xe4,0x2a,0xee,0x23,0x39,0xfa,0xc,0x9,0x26,0xf3,0x80,0x7b,
0x9c,0xdc,0x50,0x70,0x17,0x90,0x9a,0xc9,0xf3,0xb4,0x93,0x7b,0x42,0x7c,0x41,0x6d,
0x65,0x41,0x47,0x13,0xcf,0x17,0x72,0x71,0x41,0xc1,0x8c,0xc5,0xa9,0x6,0x7e,0xb,
0xcc,0x2e,0xc5,0xb3,0x10,0xcf,0x38,0x4,0xd4,0x16,0xb2,0x32,0xa9,0xb0,0x2e,0x40,
0x59,0x4b,0x18,0xfc,0xb1,0xc4,0x9c,0xd4,0x84,0xdb,0xbc,0xe4,0xcd,0x0,0xb1,0x38,
0x97,0x2,0x7,0x8,0x67,0xef,0x8e,0x35,0xde,0xb3,0x23,0x5c,0x96,0xef,0xa3,0x51,
0xde,0xc,0xa0,0xf0,0x63,0xc2,0xe0,0x9b,0xc6,0x6,0x5e,0x5,0x12,0xc0,0x11,0x70,
0x65,0x95,0x50,0xb5,0x65,0x73,0x7f,0xbe,0x8b,0x46,0xcd,0x0,0x75,0x2d,0x2c,0x11,
0x65,0xa7,0x39,0x9f,0xca,0x9e,0xe3,0x8,0x3f,0xb4,0xa3,0xfc,0xa2,0xe3,0x76,0xde,
0x1a,0x3c,0x58,0xbb,0x99,0xe9,0xd2,0xcf,0x6d,0x2,0x77,0x1,0xe7,0x99,0x34,0xa8,
0x16,0x8b,0xf6,0x37,0xf0,0x6c,0xae,0xf3,0xb9,0x5,0xa0,0x48,0x7d,0xb,0xfb,0xca,
0x65,0xb9,0x96,0xeb,0x8,0x7b,0x22,0x67,0xf9,0x8b,0x7d,0x7f,0xc9,0xc9,0x5c,0x97,
0xc4,0xe2,0xcc,0x0,0x1e,0xc7,0xe0,0xda,0x48,0x81,0xe7,0xdb,0x1b,0xf9,0xd4,0x28,
0xe7,0xb3,0x53,0xbf,0x81,0x65,0x2a,0x3c,0x6e,0xca,0x91,0x72,0x46,0x61,0x47,0x77,
0x2f,0xcb,0xb,0xd9,0x3c,0x22,0x16,0xe7,0x83,0x40,0x2b,0xf0,0xc7,0xc6,0xec,0x5b,
0x5c,0xbb,0xbf,0x81,0x5f,0x67,0x3b,0x97,0x73,0xc,0xa0,0xc2,0xdf,0x9a,0x72,0xa0,
0x9c,0x71,0x12,0x7c,0x80,0x44,0x23,0x27,0x44,0x69,0x32,0xe9,0x83,0xc,0x70,0x77,
0xce,0x73,0xd9,0xe,0xd6,0x6d,0xe4,0x3a,0xb1,0xd9,0x6d,0xd2,0x89,0x72,0xc4,0x69,
0xf0,0xd3,0x89,0xc5,0x69,0xc7,0xe0,0x3c,0xb,0x5b,0x99,0xdb,0xd1,0x44,0x7b,0xe6,
0xf1,0xac,0x19,0x40,0x94,0xef,0x98,0x32,0x5c,0xae,0x94,0x12,0xfc,0x14,0xdb,0x4d,
0xfa,0x63,0x49,0xf6,0x2c,0x30,0x42,0x0,0x75,0x9b,0x98,0x8d,0xb2,0xd4,0xa4,0xf1,
0x72,0xc3,0x40,0xf0,0x21,0xf9,0x98,0x68,0x92,0x65,0xb1,0xf8,0xc8,0x5,0xb9,0x23,
0x4,0x20,0x36,0x2b,0x9,0xdf,0xf7,0x17,0x8f,0xf2,0xd4,0xa4,0xa,0x6e,0x2e,0x75,
0xb7,0x30,0x91,0xe2,0x67,0xf9,0xe4,0x6e,0x92,0xdb,0x33,0xf,0xe,0x13,0x40,0x2c,
0xce,0x4,0x94,0xdb,0xc,0x1b,0x2e,0x1b,0x14,0x76,0x9c,0x39,0xcb,0x32,0x13,0x2b,
0x78,0x6c,0x35,0xf7,0x14,0x30,0x88,0xc2,0xd7,0x17,0x34,0x13,0x4d,0x3f,0x96,0x99,
0x1,0xae,0x7,0x3e,0x64,0xda,0x70,0x39,0x60,0x28,0xed,0xf,0x21,0x70,0xa3,0x89,
0x76,0x32,0xf8,0xc3,0xee,0x69,0x2c,0x4e,0x3f,0x30,0x5c,0x0,0xe1,0x1c,0xbf,0xa2,
0x30,0x1d,0xfc,0xba,0x16,0x96,0xe0,0xd2,0x46,0x59,0x56,0x46,0x8c,0x87,0xfa,0xfa,
0xd9,0xeb,0xa8,0x9c,0x5c,0xc9,0x71,0x82,0xbb,0x9,0x63,0x20,0x31,0x1d,0xfc,0xd4,
0x8b,0xa0,0x4,0x30,0xc3,0x44,0x7b,0x59,0x38,0xdd,0x73,0x3e,0xd3,0xe,0xad,0xe0,
0x2c,0xa4,0x65,0x80,0x49,0x15,0x2c,0x24,0xc,0xbe,0x23,0x5c,0xa,0xfe,0x33,0xb8,
0x17,0x7c,0x80,0xf3,0x3f,0x70,0xea,0xdc,0xab,0xe1,0x21,0x1,0x88,0x84,0x8f,0x7e,
0x8e,0x30,0x34,0xda,0x1f,0xa4,0xf6,0x41,0xa6,0x2,0xbb,0x81,0x2b,0x4c,0xb4,0x37,
0x1a,0x9a,0xb6,0x72,0x3b,0x7d,0xc,0x70,0x83,0xdb,0x86,0xc7,0xd,0xca,0x53,0x35,
0x95,0xdc,0x64,0x6a,0xbd,0x7e,0x6a,0x6d,0xe5,0x33,0x78,0x37,0xdf,0x72,0xe8,0x97,
0x5d,0x20,0xb9,0xe5,0x7a,0xd4,0xe2,0x7f,0x3d,0x32,0x3e,0xb6,0x19,0xfb,0xc1,0x1f,
0x64,0x7a,0xa2,0x91,0x63,0x16,0x40,0x44,0xb8,0xc6,0x63,0xe3,0x63,0x93,0xf1,0x13,
0x7c,0x44,0xb8,0x1a,0x52,0x5d,0xc0,0xe0,0x5f,0x42,0x46,0x61,0x1c,0x5,0x1f,0xc0,
0x56,0xe6,0x3,0xc9,0xb7,0x42,0x2,0x73,0x3,0xb1,0x73,0x71,0x40,0x51,0xd8,0xd1,
0x7d,0x96,0xe5,0x89,0x26,0x83,0xa3,0x7d,0x1f,0x83,0xf,0xc9,0x98,0x3,0x58,0x28,
0xa2,0xe1,0x16,0x6e,0xb9,0x71,0x6f,0xb4,0xef,0xf7,0x2,0x9b,0x4f,0xa0,0x88,0xd4,
0x6d,0x62,0xb6,0xc,0xf0,0xb2,0xcf,0xce,0x4,0x93,0x71,0x96,0xf6,0x33,0xb1,0x23,
0xcc,0x8c,0x62,0x73,0xa9,0xdf,0x8e,0x4,0x12,0x61,0xfb,0x99,0x5e,0x6e,0x1e,0x4f,
0x69,0x3f,0x93,0x88,0xcd,0x65,0x96,0xb8,0xf0,0xd5,0x69,0xcc,0xa3,0x3c,0x55,0x33,
0x81,0x3f,0x1f,0x87,0x69,0x7f,0x18,0xaa,0xcc,0xb4,0x10,0x2e,0xf6,0xdb,0x91,0x20,
0x21,0xb0,0x73,0x3c,0xa7,0xfd,0x74,0x4,0x66,0x45,0x71,0xf7,0xbd,0xf3,0xd8,0x42,
0xd8,0xde,0xd5,0xc3,0xcd,0xed,0x8d,0xe3,0x37,0xed,0xa7,0xa3,0xca,0xc5,0x96,0x28,
0x17,0xfa,0xed,0x48,0x10,0x10,0xd8,0x59,0xe,0x69,0x7f,0x18,0xc2,0x54,0x4b,0x93,
0xa5,0x54,0xcb,0x1a,0x81,0x9d,0x13,0x2b,0x58,0x5e,0xe,0x69,0x3f,0x83,0x29,0x51,
0xe0,0x2,0xbf,0xbd,0xf0,0x95,0x32,0x4b,0xfb,0x19,0x4c,0xb1,0x80,0x6a,0xbf,0xbd,
0xf0,0x8b,0xb2,0x4c,0xfb,0xc3,0xa9,0xb6,0x48,0x56,0xd1,0x2e,0x3b,0xca,0x38,0xed,
0xa7,0x53,0x59,0x96,0x2,0x8,0x83,0x3f,0x44,0x65,0x34,0xff,0x35,0xc6,0x39,0xa6,
0xb0,0x43,0xe0,0x8,0x8a,0xa6,0xde,0x43,0xdc,0x0,0x5c,0xe4,0x89,0xf5,0xf2,0xee,
0xf3,0x47,0x10,0x5,0x7a,0xf1,0x66,0x1c,0x70,0x4a,0x84,0xbb,0x66,0x9d,0xc7,0xcf,
0x1e,0x59,0xc1,0xc0,0xb0,0x33,0xcd,0x58,0xf5,0xd3,0xf8,0x8a,0xa,0xf7,0x3,0x53,
0x5d,0xf3,0x40,0xd8,0x7e,0xa6,0xc7,0xdc,0x87,0x9d,0xd4,0x1c,0xbe,0xb1,0xd4,0xe7,
0x67,0xd2,0x2b,0xb1,0x38,0xa7,0x31,0xbc,0x29,0x41,0x16,0x8e,0x6a,0x84,0xc5,0xf9,
0xaa,0x68,0xa7,0x6a,0xe,0xec,0x0,0x3e,0x6e,0xdc,0x83,0x30,0xf8,0xd9,0x38,0x6d,
0x81,0xeb,0xf5,0xe9,0x7a,0x6d,0x65,0x59,0x21,0x25,0xd4,0x3b,0x56,0x72,0x34,0x6a,
0xb1,0x10,0x78,0xc9,0xa8,0x7,0x61,0xf0,0x73,0xf1,0xae,0x5,0x9c,0x72,0xd9,0x48,
0xbc,0xa3,0x89,0xdf,0x16,0x7a,0x71,0x6b,0x3,0xc7,0x8d,0x8a,0x20,0xc,0xfe,0x68,
0x9c,0xb2,0x10,0x4e,0xb8,0x69,0x41,0x6c,0x36,0x3a,0xbd,0xa7,0xb5,0x81,0xe3,0x7d,
0x36,0xb,0x80,0xdf,0x95,0x64,0x3b,0x7c,0xce,0x1f,0x15,0x81,0xb7,0x2c,0x70,0x55,
0x0,0x5d,0xed,0xab,0x8b,0xb,0xe2,0x81,0xd5,0xbc,0x69,0xf5,0xf3,0x69,0x8a,0xcd,
0x4,0xc2,0xf6,0xae,0x5e,0x73,0x5f,0xf5,0x62,0x71,0x3e,0x38,0x46,0x1f,0xf5,0x72,
0xa2,0xca,0x49,0xb,0xf8,0x1f,0x17,0x6d,0x94,0x54,0xdd,0xaa,0x6d,0xd,0x9d,0x56,
0x3f,0xd7,0xe1,0x54,0x4,0x61,0xda,0x2f,0x8,0x11,0x8e,0x5a,0xd8,0x1c,0x71,0xd1,
0x46,0xc9,0x4b,0xcd,0xda,0xd6,0xd0,0x99,0xea,0xe,0xe,0x15,0x72,0x7d,0x98,0xf6,
0xb,0x47,0xe1,0xb0,0xa5,0x16,0x87,0x5d,0xb4,0x71,0xe1,0x15,0xeb,0xf9,0x70,0xa9,
0x8d,0xa4,0xba,0x83,0xc5,0xe4,0xcb,0x4,0x61,0xda,0x77,0x84,0x2a,0x87,0xad,0x48,
0xbf,0xab,0x15,0xaa,0x25,0x6a,0x71,0x8b,0x89,0x86,0xf2,0x76,0x7,0x61,0xda,0x77,
0x8c,0x8,0xbf,0x17,0x14,0x89,0xb5,0x70,0x6,0xa8,0x71,0xc9,0xce,0x5b,0x15,0x11,
0x2e,0x7d,0x71,0xa5,0x99,0xc7,0xcd,0xb9,0xf,0x30,0xcd,0x8e,0xf2,0x2c,0xe9,0x2f,
0x8b,0xc2,0xe0,0x17,0x43,0x57,0x62,0x15,0x17,0x58,0x8,0xaa,0x70,0xd0,0x45,0x43,
0x53,0xfb,0x6,0xd8,0x3a,0x67,0xab,0x99,0x8f,0x4e,0x23,0x32,0x41,0x18,0xfc,0x62,
0xf9,0x1d,0x82,0x26,0x97,0x86,0x29,0x6d,0x6e,0x5a,0x52,0x58,0x54,0x79,0x9a,0x47,
0x4c,0x8b,0x40,0xe1,0x27,0x61,0xf0,0x8b,0x44,0xd8,0x97,0xfc,0x3,0x88,0xc5,0xf9,
0x3c,0xb0,0xd5,0x6d,0x9b,0xa6,0x37,0x54,0x30,0xc9,0x18,0xfe,0xa4,0x5b,0x14,0x2a,
0xdc,0xbc,0x7f,0x15,0x8f,0x59,0x0,0x76,0x94,0x17,0xbc,0x30,0x2a,0xb0,0x74,0x52,
0x65,0xe9,0xd5,0x2e,0x4d,0x53,0x6e,0xc1,0x7,0x88,0xf4,0xf1,0x22,0xa4,0x56,0x7,
0x77,0xdc,0xc1,0x1b,0xc0,0x7f,0x7b,0x61,0x38,0x68,0x22,0x28,0xc7,0xe0,0x3,0x87,
0xda,0xd6,0xd0,0x9,0xe9,0x3b,0x84,0x28,0x3b,0xbc,0xb2,0x1e,0x14,0x11,0x94,0x69,
0xf0,0x87,0xc5,0x7a,0x48,0x0,0x6a,0x79,0x27,0x0,0xf0,0x5f,0x4,0x65,0x1b,0x7c,
0xc0,0xe6,0x5c,0x11,0x90,0x21,0x1,0x74,0xf7,0xb0,0x7,0x38,0xe3,0xa5,0x23,0x7e,
0x89,0xa0,0x9c,0x83,0xf,0x74,0x9d,0xbd,0xe0,0x5c,0xed,0x80,0x21,0x1,0xbc,0x72,
0x27,0xbd,0x88,0xf3,0xda,0xb3,0xa5,0xe2,0xb5,0x8,0xca,0x3c,0xf8,0x28,0x3c,0x3a,
0xb8,0x47,0x20,0x64,0xec,0x14,0x2a,0x36,0x5b,0xbc,0x77,0xc9,0x3b,0x11,0x94,0x7b,
0xf0,0x1,0x84,0xe1,0x31,0x1e,0x26,0x80,0x89,0x9d,0xec,0x2,0xde,0xf0,0xd4,0xa3,
0x14,0x6e,0x8b,0x20,0xc,0x3e,0x0,0x9d,0xc0,0x73,0xe9,0x7,0x86,0x9,0x60,0x4f,
0x33,0xfd,0xc0,0x43,0x5e,0x7a,0x94,0x8e,0x5b,0x22,0x8,0x83,0x9f,0x44,0x61,0x73,
0x66,0x35,0xd1,0x11,0xf5,0x2,0x34,0xc2,0x66,0xdc,0xa9,0x63,0x57,0x10,0x2,0x4b,
0x27,0x57,0xb1,0xc5,0xd4,0x6b,0xe3,0xf1,0xfe,0x49,0xd7,0x1,0x1a,0x19,0xe0,0xc1,
0xcc,0x83,0x23,0x4,0x90,0x9a,0xbd,0x6b,0xb4,0x5c,0x89,0x63,0x94,0x65,0x55,0x5d,
0xa5,0x67,0x82,0xf1,0x3c,0x99,0xc3,0x29,0x2,0xdb,0xda,0xbe,0xc1,0x6b,0x99,0xc7,
0x73,0x55,0xd,0xfb,0x91,0xcb,0xfe,0xe4,0x47,0xb9,0x71,0x72,0x15,0x8f,0x16,0x2b,
0x82,0x30,0xed,0xf,0xc7,0xb6,0xb8,0x2f,0xdb,0xf1,0x9c,0xa5,0x61,0x4c,0x57,0xad,
0x2a,0x1a,0xe1,0x89,0x9e,0xf3,0x58,0x91,0xfe,0xe8,0x92,0x8f,0xb2,0xfa,0xaa,0x57,
0x18,0xad,0x89,0x46,0xae,0xca,0x76,0x22,0x67,0xdd,0x40,0x11,0xee,0x71,0xcf,0x1f,
0x7,0x38,0xec,0xe,0xc2,0xb4,0x3f,0x12,0xd1,0xdc,0xb1,0x1c,0xb5,0x38,0x54,0x2c,
0xce,0x5e,0x60,0x9e,0x71,0x8f,0x8a,0xa1,0x80,0x89,0x1f,0x61,0xda,0x1f,0x89,0x42,
0xdb,0xfe,0x55,0xcc,0x43,0xb2,0xf,0xec,0xf3,0x55,0xf,0xf,0x4e,0xf5,0xd0,0xe4,
0x98,0x20,0xe7,0xd3,0x41,0x38,0xda,0xcf,0x81,0xc5,0xf7,0x72,0x5,0x3f,0x79,0x7a,
0x14,0x12,0x8d,0xec,0x2,0xfe,0xdd,0xb8,0x53,0xc5,0x92,0xa3,0x3b,0x8,0xd3,0x7e,
0x76,0x4,0xb6,0x8c,0x56,0x39,0x1c,0xf2,0x67,0x0,0x34,0xc2,0x37,0x21,0x40,0x33,
0x78,0x32,0x9e,0xe,0xc2,0xb4,0x9f,0x93,0xb7,0xfb,0xec,0xfc,0x15,0x60,0xf3,0x16,
0x27,0x3c,0xf6,0x6f,0x9c,0x9a,0xfe,0x39,0x26,0x42,0xa0,0x6a,0xa,0x7c,0xb4,0x6a,
0x2,0x9f,0x98,0x76,0x13,0xcf,0x5b,0xfd,0xec,0x22,0xc,0xfe,0x48,0x94,0xbf,0xe9,
0x58,0xcd,0xae,0x7c,0x97,0xe5,0xcd,0x0,0x0,0x15,0xef,0xb0,0x16,0xf2,0x2f,0xef,
0xf6,0x14,0x65,0x99,0xd5,0xcf,0xcb,0x84,0xc1,0xcf,0xc6,0xc1,0x9a,0x4e,0xd6,0x15,
0x72,0x61,0xc1,0x25,0x62,0x63,0x71,0x16,0x92,0xec,0x67,0xc3,0xb2,0xb2,0xc1,0xc6,
0x56,0x8b,0x5,0xfb,0x1b,0xce,0x7d,0xf3,0x1f,0x8d,0x82,0x32,0x0,0x40,0xa2,0x91,
0xe7,0x4,0xfe,0xb1,0x78,0xbf,0x42,0xbc,0x40,0xe0,0xde,0x42,0x83,0xf,0xe,0x4,
0x0,0xd0,0xd5,0xcb,0xf7,0xa0,0xf0,0xcd,0x1e,0x42,0x3c,0x46,0xd9,0xab,0xd0,0xec,
0xe4,0x16,0xc7,0xe9,0x7c,0x6e,0xb,0x73,0x6c,0x65,0x2f,0x30,0xd1,0xe9,0xbd,0x21,
0xae,0x72,0x22,0x6a,0x51,0xdb,0xda,0xe0,0xac,0xfa,0x9b,0xa3,0xc,0x0,0xd0,0xb6,
0x8a,0x43,0x2a,0xdc,0x8a,0x8f,0x9f,0x8c,0x43,0x46,0xa0,0x22,0xdc,0xe1,0x34,0xf8,
0x50,0xc0,0x63,0x60,0x36,0x8e,0x3d,0xc9,0x7f,0x4e,0xff,0x2c,0x13,0x9,0xab,0x8d,
0x5,0x3,0xe5,0xde,0x44,0x23,0x3f,0x2d,0xe6,0x56,0xc7,0x19,0x60,0x90,0x44,0x23,
0x7f,0x8d,0xf8,0x37,0x7b,0x28,0x24,0x89,0xc2,0xc3,0x89,0x4e,0xbe,0x5f,0xec,0xfd,
0x45,0xb,0x0,0x41,0x51,0x56,0xa2,0x3c,0x55,0x74,0x1b,0x21,0xa5,0xa1,0x3c,0xdb,
0xdd,0xcb,0x6d,0x34,0x63,0x17,0xdb,0x44,0xc9,0xcf,0xf4,0xb1,0x38,0xd5,0x2,0xcf,
0x28,0xfc,0x69,0xa9,0x6d,0x85,0x14,0x8e,0x40,0xfb,0xfb,0xfd,0x2c,0x3c,0xb4,0x86,
0x77,0x4a,0x6c,0xa7,0x74,0x52,0x13,0x30,0x7e,0x3,0x5c,0x62,0xa2,0xbd,0x90,0xbc,
0xbc,0x1a,0xb5,0x98,0xdf,0xda,0xc0,0xf1,0x52,0x1b,0x2a,0xbe,0xb,0x48,0x23,0xd1,
0xc8,0x9,0x3b,0xc2,0x12,0x8,0xeb,0xf,0x7a,0xc0,0xcb,0x76,0x84,0x45,0x26,0x82,
0xf,0x86,0x4,0x0,0xc9,0x6d,0x5e,0x2b,0x22,0x5c,0x45,0xf2,0x1d,0x41,0x88,0xb,
0x8,0xb4,0xf7,0xd9,0x5c,0xd3,0xb1,0x92,0xa3,0xa6,0xda,0x34,0x26,0x0,0x80,0x17,
0x57,0x72,0xaa,0xaf,0x9a,0xc5,0x92,0xb6,0xf8,0x30,0xc4,0x10,0xca,0xb3,0x91,0x5e,
0x16,0x1d,0x58,0x5d,0xda,0xde,0x8b,0x99,0x18,0x15,0x0,0xc0,0x81,0x5b,0x79,0xf7,
0xfd,0xf3,0x59,0xa6,0xf0,0xb0,0xe9,0xb6,0xcb,0x15,0x81,0x47,0x6b,0x2a,0xf9,0x4c,
0xeb,0x9d,0x74,0x9b,0x6e,0xbb,0xa8,0x17,0x41,0xf9,0x78,0xeb,0x11,0x6,0x8e,0xd5,
0xf3,0xd8,0xf4,0x49,0x54,0x1,0xf3,0x9,0xbf,0x20,0x16,0x8b,0xa2,0xdc,0x9b,0xe8,
0x64,0xf5,0x91,0x6f,0xd,0x5f,0xd1,0x63,0xa,0xd7,0x3,0x33,0xb7,0x85,0xc5,0xb6,
0xf2,0x2f,0xc0,0x87,0xdc,0xb6,0x35,0xce,0x38,0x21,0xca,0xd7,0xda,0x9b,0xdc,0x5d,
0xa4,0xe3,0xc9,0x6f,0xe6,0xbc,0x8d,0x5c,0xd4,0x6f,0xf3,0x4b,0x82,0x35,0xab,0x28,
0xb8,0x8,0xfb,0x6,0x6,0xf8,0xc2,0x7f,0xac,0x76,0x75,0x1b,0x5f,0xc0,0xa5,0x2e,
0x20,0x93,0xff,0x7b,0x92,0xee,0x4b,0xea,0xf9,0x79,0x5f,0xd,0xa,0x5c,0x4b,0xd8,
0x25,0xe4,0x42,0x81,0x7f,0x2,0x6e,0xe9,0x68,0x72,0xbd,0x8e,0x3,0xe0,0x43,0x20,
0x6a,0x37,0x70,0xad,0x25,0xfc,0x14,0x98,0xe3,0xb5,0xed,0x80,0x73,0x50,0x2d,0xd6,
0x38,0x99,0xcc,0x61,0x2,0x4f,0x32,0x40,0x3a,0x9d,0xdb,0x38,0x7a,0x49,0x3d,0x2d,
0x67,0x27,0x71,0x8a,0xe4,0x0,0x31,0x10,0xbb,0x85,0xf9,0xc8,0x7b,0x2,0xff,0xd0,
0x73,0x3e,0x5f,0x3d,0x70,0xab,0xab,0x1b,0x77,0x67,0xc5,0xd7,0x54,0x5c,0xbb,0x99,
0xe9,0xd2,0xcf,0xbd,0x2,0x5f,0xf5,0xd3,0xf,0xdf,0x50,0xb6,0x21,0xac,0x49,0x34,
0xba,0x5a,0xb3,0x61,0x54,0x2,0xd1,0x17,0xd7,0x6d,0xe4,0x3a,0xcb,0xe6,0x7,0x9a,
0x1c,0x1f,0x8c,0x7f,0x94,0xbd,0x1a,0xe1,0xee,0x7c,0x8b,0x36,0xbc,0x20,0x10,0x2,
0x18,0xa4,0x6e,0x23,0x7f,0x26,0x3,0xdc,0x8d,0xb0,0xc4,0x6f,0x5f,0x5c,0x41,0xd8,
0x27,0x36,0x6b,0xdd,0x7e,0xb4,0x73,0x42,0xa0,0x4,0x30,0x48,0xed,0x6,0xae,0x10,
0xe1,0x3b,0x2,0x5f,0xc2,0x87,0x71,0x8a,0x61,0x54,0x61,0x37,0xca,0xba,0xfd,0x4d,
0x3c,0xe9,0xb7,0x33,0x99,0x4,0x52,0x0,0x83,0xcc,0xdb,0xc8,0x45,0xfd,0x3,0x7c,
0x19,0xe1,0x1b,0xc0,0xc,0xbf,0xfd,0x71,0xc8,0x31,0x84,0x87,0x50,0x36,0x26,0x1a,
0x79,0xd5,0x6f,0x67,0x72,0x11,0x68,0x1,0xc,0xb2,0xa0,0x99,0x68,0xf7,0x34,0x16,
0x5b,0xc2,0xa,0x85,0xe5,0xb8,0x5f,0xe9,0xb4,0x58,0x4e,0xb,0x3c,0x6e,0xb,0x5b,
0x26,0xbd,0xc1,0xee,0xd4,0xa6,0x5b,0x81,0x66,0x4c,0x8,0x20,0x9d,0x39,0x5b,0xa9,
0xa8,0xee,0xe2,0x5a,0x5b,0xb9,0x1,0x58,0xa,0x5c,0xe6,0xb3,0x4b,0x87,0x80,0x9d,
0x96,0xb0,0xf3,0xbd,0xf3,0x78,0xde,0xc9,0x4e,0x26,0x41,0x60,0xcc,0x9,0x20,0x93,
0xb9,0xf,0x30,0x6d,0x20,0xc2,0xd5,0x8,0xd7,0x88,0x70,0x25,0xca,0xe5,0x18,0xa8,
0x56,0x96,0x83,0x33,0xc0,0x41,0x85,0x36,0x94,0xdf,0x4c,0x88,0xf0,0x82,0xa9,0x89,
0x19,0x7e,0x31,0xe6,0x5,0x90,0x8d,0x3f,0x59,0xcf,0xcc,0x68,0x84,0x8f,0x2b,0xcc,
0x12,0x65,0x26,0x30,0x43,0xe1,0x42,0x60,0x4a,0xea,0xa7,0x9a,0x64,0xe5,0xf4,0xc1,
0x3a,0x49,0x6f,0x3,0xfd,0x24,0xeb,0x28,0x9f,0x4,0x4e,0x2a,0x1c,0xb7,0xe0,0x75,
0x85,0xc3,0xaa,0x1c,0xd6,0x28,0x2f,0x99,0x9c,0x88,0x11,0x14,0xfe,0x1f,0x1d,0xab,
0xcb,0xc5,0xe5,0x0,0x4f,0x2e,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,
0x60,0x82,
}; };
@@ -131739,6 +131969,11 @@ static const unsigned char qt_resource_name[] = {
0x0,0x63, 0x0,0x63,
0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x49,0x0,0x6e,0x0,0x43,0x0,0x69,0x0,0x72,0x0,0x63,0x0,0x6c,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67, 0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x49,0x0,0x6e,0x0,0x43,0x0,0x69,0x0,0x72,0x0,0x63,0x0,0x6c,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// checked.png
0x0,0xb,
0x1,0x64,0x80,0x7,
0x0,0x63,
0x0,0x68,0x0,0x65,0x0,0x63,0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
}; };
@@ -131748,51 +131983,54 @@ static const unsigned char qt_resource_struct[] = {
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/style.css // :/style.css
0x0,0x0,0x0,0x16,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x16,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
0x0,0x0,0x1,0x92,0x51,0x4d,0x53,0xeb, 0x0,0x0,0x1,0x92,0x52,0xc9,0xf,0xc1,
// :/resource // :/resource
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3, 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/resource/Fonts // :/resource/Fonts
0x0,0x0,0x0,0x7e,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xe, 0x0,0x0,0x0,0x7e,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xf,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/resource/Icons // :/resource/Icons
0x0,0x0,0x0,0x6e,0x0,0x2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7, 0x0,0x0,0x0,0x6e,0x0,0x2,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x7,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/resource/SSJ-100Dark.png // :/resource/SSJ-100Dark.png
0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xc,0x7f,0x30, 0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xc,0x7f,0x39,
0x0,0x0,0x1,0x92,0x4d,0x8e,0xd2,0xb0, 0x0,0x0,0x1,0x92,0x4d,0x8e,0xd2,0xb0,
// :/resource/SSJ-100.png // :/resource/SSJ-100.png
0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x2,0x82, 0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x2,0x8b,
0x0,0x0,0x1,0x92,0x4d,0x0,0xce,0xbb, 0x0,0x0,0x1,0x92,0x4d,0x0,0xce,0xbb,
// :/resource/Icons/setting.png // :/resource/Icons/setting.png
0x0,0x0,0x1,0xb0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1f,0xc3,0xaf, 0x0,0x0,0x1,0xb0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1f,0xc3,0xb8,
0x0,0x0,0x1,0x92,0x47,0x9,0xdd,0xaa, 0x0,0x0,0x1,0x92,0x47,0x9,0xdd,0xaa,
// :/resource/Icons/checked.png
0x0,0x0,0x2,0xc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x20,0x21,0x25,
0x0,0x0,0x1,0x92,0x51,0xaa,0xfa,0x67,
// :/resource/Icons/settingWhite.png // :/resource/Icons/settingWhite.png
0x0,0x0,0x1,0x5e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1f,0x77,0xa8, 0x0,0x0,0x1,0x5e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1f,0x77,0xb1,
0x0,0x0,0x1,0x92,0x47,0xc,0xaf,0x4c, 0x0,0x0,0x1,0x92,0x47,0xc,0xaf,0x4c,
// :/resource/Icons/plane.png // :/resource/Icons/plane.png
0x0,0x0,0x1,0xcc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1f,0xee,0xc1, 0x0,0x0,0x1,0xcc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1f,0xee,0xca,
0x0,0x0,0x1,0x91,0xb3,0xf,0xc0,0x1f, 0x0,0x0,0x1,0x91,0xb3,0xf,0xc0,0x1f,
// :/resource/Icons/crossInCircle.png // :/resource/Icons/crossInCircle.png
0x0,0x0,0x1,0xe4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1f,0xf3,0xe, 0x0,0x0,0x1,0xe4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1f,0xf3,0x17,
0x0,0x0,0x1,0x92,0x4c,0x9f,0x4d,0xc4, 0x0,0x0,0x1,0x92,0x4c,0x9f,0x4d,0xc4,
// :/resource/Icons/whiteCross.png // :/resource/Icons/whiteCross.png
0x0,0x0,0x1,0x3c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1f,0x61,0x33, 0x0,0x0,0x1,0x3c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1f,0x61,0x3c,
0x0,0x0,0x1,0x92,0x4c,0x9e,0xfa,0x44, 0x0,0x0,0x1,0x92,0x4c,0x9e,0xfa,0x44,
// :/resource/Icons/monitor-display.png // :/resource/Icons/monitor-display.png
0x0,0x0,0x1,0x84,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1f,0xbd,0xe0, 0x0,0x0,0x1,0x84,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1f,0xbd,0xe9,
0x0,0x0,0x1,0x92,0x42,0xfe,0x89,0x26, 0x0,0x0,0x1,0x92,0x42,0xfe,0x89,0x26,
// :/resource/Icons/762.gif // :/resource/Icons/762.gif
0x0,0x0,0x1,0x28,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1f,0x3a,0xbd, 0x0,0x0,0x1,0x28,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1f,0x3a,0xc6,
0x0,0x0,0x1,0x92,0x4d,0xb,0xea,0x71, 0x0,0x0,0x1,0x92,0x4d,0xb,0xea,0x71,
// :/resource/Fonts/HelveticaNeue-Medium.ttf // :/resource/Fonts/HelveticaNeue-Medium.ttf
0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x16,0xf1,0x8d, 0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x16,0xf1,0x96,
0x0,0x0,0x1,0x92,0x42,0xb4,0xbd,0xcd, 0x0,0x0,0x1,0x92,0x42,0xb4,0xbd,0xcd,
// :/resource/Fonts/LiberationSans-Regular.ttf // :/resource/Fonts/LiberationSans-Regular.ttf
0x0,0x0,0x0,0xee,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x19,0xe2,0xc1, 0x0,0x0,0x0,0xee,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x19,0xe2,0xca,
0x0,0x0,0x1,0x92,0x42,0x25,0xa7,0xdc, 0x0,0x0,0x1,0x92,0x42,0x25,0xa7,0xdc,
// :/resource/Fonts/Kanit Cyrillic.ttf // :/resource/Fonts/Kanit Cyrillic.ttf
0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x19,0x5b,0x1, 0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x19,0x5b,0xa,
0x0,0x0,0x1,0x92,0x42,0x14,0x94,0xcc, 0x0,0x0,0x1,0x92,0x42,0x14,0x94,0xcc,
}; };

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -15,6 +15,7 @@ MainWindow::MainWindow(QWidget *parent)
, ui(new Ui::MainWindow) , ui(new Ui::MainWindow)
{ {
ui->setupUi(this); ui->setupUi(this);
isRecovery = false;
setWindowFlag(Qt::FramelessWindowHint); setWindowFlag(Qt::FramelessWindowHint);
painting(); painting();
initialize(); initialize();
@@ -80,7 +81,7 @@ void MainWindow::createObjects()
recognizeSystem = new RecognizeSystem; recognizeSystem = new RecognizeSystem;
recognizeSystem->moveToThread(connectionThread); recognizeSystem->moveToThread(connectionThread);
screenChecker = new ScreenChecker(dataParser,ui->displayLayout); screenChecker = new ScreenChecker(this,dataParser,ui->displayLayout);
externalExecuter = new ExternalExecuter; externalExecuter = new ExternalExecuter;
hashComparer = new HashComparer(dataParser); hashComparer = new HashComparer(dataParser);
@@ -154,12 +155,19 @@ void MainWindow::setNeedUpdate(bool flag,quint64 size, quint64 fileCount)
fileCountForUpdate = fileCount; fileCountForUpdate = fileCount;
QString availableSizeText; QString availableSizeText;
if (flag){ if (flag && isRecovery)
{
ui->inlineTextDebug->setText("Восстановление версии...");
}
else if(flag)
{
QString result = tr("Доступно обновление: ") + Tools::convertFileSize(size); QString result = tr("Доступно обновление: ") + Tools::convertFileSize(size);
result += tr("Количество файлов: ") + QString::number(fileCount); result += tr("Количество файлов: ") + QString::number(fileCount);
ui->inlineTextDebug->setText(result); ui->inlineTextDebug->setText(result);
ui->updateButton->show(); ui->updateButton->show();
ui->autostartCheckBox->show(); ui->autostartCheckBox->show();
stopLoadingMovie();
} }
else else
{ {
@@ -167,10 +175,10 @@ void MainWindow::setNeedUpdate(bool flag,quint64 size, quint64 fileCount)
autoStart(); autoStart();
ui->loadingProgressBar->hide(); ui->loadingProgressBar->hide();
ui->startButton->show(); ui->startButton->show();
ui->offlineStartButton->setEnabled(true);
stopLoadingMovie();
} }
stopLoadingMovie();
ui->updateButton->setEnabled(flag); ui->updateButton->setEnabled(flag);
ui->startButton->setEnabled(!flag); ui->startButton->setEnabled(!flag);
} }
@@ -367,6 +375,7 @@ void MainWindow::on_loginButton_clicked()
void MainWindow::on_updateButton_clicked() void MainWindow::on_updateButton_clicked()
{ {
emit sigSendCommand("update"); emit sigSendCommand("update");
ui->updateButton->hide(); ui->updateButton->hide();
ui->loadingProgressBar->setValue(0); ui->loadingProgressBar->setValue(0);
ui->loadingProgressBar->show(); ui->loadingProgressBar->show();
@@ -433,11 +442,28 @@ void MainWindow::on_loadToServerButton_clicked()
void MainWindow::on_undoChangesButton_clicked() void MainWindow::on_undoChangesButton_clicked()
{ {
isRecovery = true;
emit sigSendCommand("check");
ui->loadingProgressBar->show(); ui->loadingProgressBar->show();
ui->offlineStartButton->hide(); ui->offlineStartButton->setEnabled(false);
ui->updateButtonGroup_2->hide(); ui->updateButtonGroup_2->hide();
ui->updateWidget->hide(); ui->updateWidget->hide();
startLoadingAnim();
//delay
QTime dieTime= QTime::currentTime().addSecs(10);
while (QTime::currentTime() < dieTime)
QCoreApplication::processEvents(QEventLoop::AllEvents, 100);
startLoadingAnim();
ui->updateButton->hide();
on_updateButton_clicked(); on_updateButton_clicked();
isRecovery = false;
stopLoadingMovie();
} }
void MainWindow::on_startWithCurrentChangesButton_clicked() void MainWindow::on_startWithCurrentChangesButton_clicked()
@@ -488,9 +514,11 @@ void MainWindow::showCompleteDialogBox(bool flag)
{ {
ui->inlineTextDebug->setText(tr("Загрузка завершена")); ui->inlineTextDebug->setText(tr("Загрузка завершена"));
startLoadingAnim(); startLoadingAnim();
QTime dieTime= QTime::currentTime().addSecs(10); QTime dieTime= QTime::currentTime().addSecs(10);
while (QTime::currentTime() < dieTime) while (QTime::currentTime() < dieTime)
QCoreApplication::processEvents(QEventLoop::AllEvents, 100); QCoreApplication::processEvents(QEventLoop::AllEvents, 100);
stopLoadingMovie(); stopLoadingMovie();
checkUpdate(); checkUpdate();
} }
@@ -551,7 +579,6 @@ void MainWindow::painting()
movieLabel->setSizePolicy(QSizePolicy::Minimum,QSizePolicy::Minimum); movieLabel->setSizePolicy(QSizePolicy::Minimum,QSizePolicy::Minimum);
movieLabel->setMovie(movie); movieLabel->setMovie(movie);
startLoadingAnim(); startLoadingAnim();
} }
void MainWindow::startLoadingAnim() void MainWindow::startLoadingAnim()

View File

@@ -92,6 +92,7 @@ private:
int fileCountForUpdate; int fileCountForUpdate;
int filesLoaded; int filesLoaded;
bool isRecovery;
void painting(); void painting();
void initialize(); void initialize();

View File

@@ -44,25 +44,17 @@
<height>600</height> <height>600</height>
</size> </size>
</property> </property>
<widget class="QWidget" name="layoutWidget"> <widget class="QWidget" name="downLayout" native="true">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>10</x> <x>0</x>
<y>550</y> <y>540</y>
<width>551</width> <width>550</width>
<height>39</height> <height>50</height>
</rect> </rect>
</property> </property>
<layout class="QHBoxLayout" name="downlayout">
<item>
<layout class="QHBoxLayout" name="horizontalLayout_5">
<property name="spacing">
<number>0</number>
</property>
<item>
<widget class="QProgressBar" name="loadingProgressBar">
<property name="sizePolicy"> <property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Fixed"> <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch> <horstretch>0</horstretch>
<verstretch>0</verstretch> <verstretch>0</verstretch>
</sizepolicy> </sizepolicy>
@@ -70,13 +62,37 @@
<property name="minimumSize"> <property name="minimumSize">
<size> <size>
<width>0</width> <width>0</width>
<height>30</height> <height>40</height>
</size> </size>
</property> </property>
<property name="maximumSize"> <property name="maximumSize">
<size> <size>
<width>16777215</width> <width>16777215</width>
<height>40</height> <height>60</height>
</size>
</property>
<layout class="QHBoxLayout" name="downlayout">
<property name="spacing">
<number>1</number>
</property>
<item>
<widget class="QProgressBar" name="loadingProgressBar">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>35</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>35</height>
</size> </size>
</property> </property>
<property name="value"> <property name="value">
@@ -90,7 +106,7 @@
<bool>true</bool> <bool>true</bool>
</property> </property>
<property name="sizePolicy"> <property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred"> <sizepolicy hsizetype="Preferred" vsizetype="Minimum">
<horstretch>0</horstretch> <horstretch>0</horstretch>
<verstretch>0</verstretch> <verstretch>0</verstretch>
</sizepolicy> </sizepolicy>
@@ -98,13 +114,13 @@
<property name="minimumSize"> <property name="minimumSize">
<size> <size>
<width>100</width> <width>100</width>
<height>30</height> <height>35</height>
</size> </size>
</property> </property>
<property name="maximumSize"> <property name="maximumSize">
<size> <size>
<width>1000</width> <width>2000</width>
<height>35</height> <height>40</height>
</size> </size>
</property> </property>
<property name="font"> <property name="font">
@@ -127,7 +143,7 @@
<bool>true</bool> <bool>true</bool>
</property> </property>
<property name="sizePolicy"> <property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Fixed"> <sizepolicy hsizetype="Preferred" vsizetype="Minimum">
<horstretch>0</horstretch> <horstretch>0</horstretch>
<verstretch>0</verstretch> <verstretch>0</verstretch>
</sizepolicy> </sizepolicy>
@@ -135,13 +151,13 @@
<property name="minimumSize"> <property name="minimumSize">
<size> <size>
<width>100</width> <width>100</width>
<height>30</height> <height>35</height>
</size> </size>
</property> </property>
<property name="maximumSize"> <property name="maximumSize">
<size> <size>
<width>1000</width> <width>2000</width>
<height>35</height> <height>40</height>
</size> </size>
</property> </property>
<property name="text"> <property name="text">
@@ -150,8 +166,6 @@
</widget> </widget>
</item> </item>
</layout> </layout>
</item>
</layout>
</widget> </widget>
<widget class="QFrame" name="mainFrame"> <widget class="QFrame" name="mainFrame">
<property name="enabled"> <property name="enabled">
@@ -162,7 +176,7 @@
<x>10</x> <x>10</x>
<y>44</y> <y>44</y>
<width>781</width> <width>781</width>
<height>201</height> <height>211</height>
</rect> </rect>
</property> </property>
<property name="frameShape"> <property name="frameShape">
@@ -225,7 +239,7 @@
<property name="maximumSize"> <property name="maximumSize">
<size> <size>
<width>16777215</width> <width>16777215</width>
<height>30</height> <height>20</height>
</size> </size>
</property> </property>
<property name="font"> <property name="font">
@@ -278,6 +292,9 @@
</layout> </layout>
</widget> </widget>
<widget class="QPushButton" name="settingsButton"> <widget class="QPushButton" name="settingsButton">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>730</x> <x>730</x>
@@ -581,6 +598,9 @@
</property> </property>
<item> <item>
<widget class="QLabel" name="offlineNotifyLabel"> <widget class="QLabel" name="offlineNotifyLabel">
<property name="enabled">
<bool>true</bool>
</property>
<property name="sizePolicy"> <property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred"> <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch> <horstretch>0</horstretch>
@@ -784,7 +804,7 @@
</property> </property>
<layout class="QVBoxLayout" name="verticalLayout_5"> <layout class="QVBoxLayout" name="verticalLayout_5">
<property name="spacing"> <property name="spacing">
<number>10</number> <number>8</number>
</property> </property>
<property name="leftMargin"> <property name="leftMargin">
<number>1</number> <number>1</number>
@@ -879,7 +899,7 @@
<item> <item>
<widget class="QLabel" name="updateActionListLabel"> <widget class="QLabel" name="updateActionListLabel">
<property name="text"> <property name="text">
<string>TextLabel</string> <string/>
</property> </property>
<property name="alignment"> <property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set> <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
@@ -1038,7 +1058,7 @@
</property> </property>
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>600</x> <x>570</x>
<y>552</y> <y>552</y>
<width>190</width> <width>190</width>
<height>35</height> <height>35</height>
@@ -1073,7 +1093,7 @@
</property> </property>
</widget> </widget>
<zorder>mainFrame</zorder> <zorder>mainFrame</zorder>
<zorder>layoutWidget</zorder> <zorder>downLayout</zorder>
<zorder>horizontalWidget</zorder> <zorder>horizontalWidget</zorder>
<zorder>notificationLabel</zorder> <zorder>notificationLabel</zorder>
<zorder>debugWidget</zorder> <zorder>debugWidget</zorder>

BIN
resource/Icons/checked.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -14,5 +14,6 @@
<file>resource/SSJ-100.png</file> <file>resource/SSJ-100.png</file>
<file>resource/Icons/762.gif</file> <file>resource/Icons/762.gif</file>
<file>resource/SSJ-100Dark.png</file> <file>resource/SSJ-100Dark.png</file>
<file>resource/Icons/checked.png</file>
</qresource> </qresource>
</RCC> </RCC>

View File

@@ -15,8 +15,6 @@ QComboBox
color: rgb(45,84,130); color: rgb(45,84,130);
} }
QPushButton QPushButton
{ {
background-color: rgb(203,228,255); background-color: rgb(203,228,255);
@@ -61,7 +59,7 @@ QLineEdit
QProgressBar QProgressBar
{ {
border: 2px solid rgb(45,84,130); border: 2px solid rgb(45,84,130);
border-radius: 12px; border-radius: 5px;
color: black; color: black;
font-family: "Calibri"; font-family: "Calibri";
font: 15px bold; font: 15px bold;
@@ -71,7 +69,7 @@ QProgressBar
QProgressBar::chunk QProgressBar::chunk
{ {
border-radius: 10px; border-radius: 5px;
background-color: rgb(203,228,255); background-color: rgb(203,228,255);
} }
@@ -147,23 +145,29 @@ QLabel#notificationLabel
font: 20px; font: 20px;
} }
QPushButton#displayView QToolButton#displayView
{ {
border: 4px solid rgb(45,84,130); border: 4px solid rgb(45,84,130);
border-radius: 5px; border-radius: 5px;
color:rgb(45,84,130);
background-color: white; background-color: white;
} }
QPushButton#displayView:checked QToolButton#displayView:checked
{ {
background-color: rgb(151,176,201); background-color: rgb(151,176,201);
} }
QPushButton#displayView:disabled QToolButton#displayView:disabled
{ {
background-color: rgb(151,176,201); background-color: rgb(151,176,201);
color:rgb(45,84,130); color:rgb(45,84,130);
}
QPushButton#checkedLabelButton
{
background-color: rgba(0,0,0,0);
} }
QPushButton#linkButton QPushButton#linkButton

View File

@@ -30,9 +30,8 @@ class Ui_MainWindow
{ {
public: public:
QWidget *centralwidget; QWidget *centralwidget;
QWidget *layoutWidget; QWidget *downLayout;
QHBoxLayout *downlayout; QHBoxLayout *downlayout;
QHBoxLayout *horizontalLayout_5;
QProgressBar *loadingProgressBar; QProgressBar *loadingProgressBar;
QPushButton *updateButton; QPushButton *updateButton;
QPushButton *startButton; QPushButton *startButton;
@@ -106,68 +105,66 @@ public:
centralwidget->setObjectName(QString::fromUtf8("centralwidget")); centralwidget->setObjectName(QString::fromUtf8("centralwidget"));
centralwidget->setMinimumSize(QSize(800, 600)); centralwidget->setMinimumSize(QSize(800, 600));
centralwidget->setMaximumSize(QSize(800, 600)); centralwidget->setMaximumSize(QSize(800, 600));
layoutWidget = new QWidget(centralwidget); downLayout = new QWidget(centralwidget);
layoutWidget->setObjectName(QString::fromUtf8("layoutWidget")); downLayout->setObjectName(QString::fromUtf8("downLayout"));
layoutWidget->setGeometry(QRect(10, 550, 551, 39)); downLayout->setGeometry(QRect(0, 540, 550, 50));
downlayout = new QHBoxLayout(layoutWidget); sizePolicy.setHeightForWidth(downLayout->sizePolicy().hasHeightForWidth());
downLayout->setSizePolicy(sizePolicy);
downLayout->setMinimumSize(QSize(0, 40));
downLayout->setMaximumSize(QSize(16777215, 60));
downlayout = new QHBoxLayout(downLayout);
downlayout->setSpacing(1);
downlayout->setObjectName(QString::fromUtf8("downlayout")); downlayout->setObjectName(QString::fromUtf8("downlayout"));
downlayout->setContentsMargins(0, 0, 0, 0); loadingProgressBar = new QProgressBar(downLayout);
horizontalLayout_5 = new QHBoxLayout();
horizontalLayout_5->setSpacing(0);
horizontalLayout_5->setObjectName(QString::fromUtf8("horizontalLayout_5"));
loadingProgressBar = new QProgressBar(layoutWidget);
loadingProgressBar->setObjectName(QString::fromUtf8("loadingProgressBar")); loadingProgressBar->setObjectName(QString::fromUtf8("loadingProgressBar"));
QSizePolicy sizePolicy1(QSizePolicy::Preferred, QSizePolicy::Fixed); QSizePolicy sizePolicy1(QSizePolicy::Preferred, QSizePolicy::Minimum);
sizePolicy1.setHorizontalStretch(0); sizePolicy1.setHorizontalStretch(0);
sizePolicy1.setVerticalStretch(0); sizePolicy1.setVerticalStretch(0);
sizePolicy1.setHeightForWidth(loadingProgressBar->sizePolicy().hasHeightForWidth()); sizePolicy1.setHeightForWidth(loadingProgressBar->sizePolicy().hasHeightForWidth());
loadingProgressBar->setSizePolicy(sizePolicy1); loadingProgressBar->setSizePolicy(sizePolicy1);
loadingProgressBar->setMinimumSize(QSize(0, 30)); loadingProgressBar->setMinimumSize(QSize(0, 35));
loadingProgressBar->setMaximumSize(QSize(16777215, 40)); loadingProgressBar->setMaximumSize(QSize(16777215, 35));
loadingProgressBar->setValue(10); loadingProgressBar->setValue(10);
horizontalLayout_5->addWidget(loadingProgressBar); downlayout->addWidget(loadingProgressBar);
updateButton = new QPushButton(layoutWidget); updateButton = new QPushButton(downLayout);
updateButton->setObjectName(QString::fromUtf8("updateButton")); updateButton->setObjectName(QString::fromUtf8("updateButton"));
updateButton->setEnabled(true); updateButton->setEnabled(true);
QSizePolicy sizePolicy2(QSizePolicy::Preferred, QSizePolicy::Preferred); sizePolicy1.setHeightForWidth(updateButton->sizePolicy().hasHeightForWidth());
sizePolicy2.setHorizontalStretch(0); updateButton->setSizePolicy(sizePolicy1);
sizePolicy2.setVerticalStretch(0); updateButton->setMinimumSize(QSize(100, 35));
sizePolicy2.setHeightForWidth(updateButton->sizePolicy().hasHeightForWidth()); updateButton->setMaximumSize(QSize(2000, 40));
updateButton->setSizePolicy(sizePolicy2);
updateButton->setMinimumSize(QSize(100, 30));
updateButton->setMaximumSize(QSize(1000, 35));
QFont font; QFont font;
font.setFamily(QString::fromUtf8("Calibri")); font.setFamily(QString::fromUtf8("Calibri"));
font.setPointSize(8); font.setPointSize(8);
updateButton->setFont(font); updateButton->setFont(font);
updateButton->setFlat(false); updateButton->setFlat(false);
horizontalLayout_5->addWidget(updateButton); downlayout->addWidget(updateButton);
startButton = new QPushButton(layoutWidget); startButton = new QPushButton(downLayout);
startButton->setObjectName(QString::fromUtf8("startButton")); startButton->setObjectName(QString::fromUtf8("startButton"));
startButton->setEnabled(true); startButton->setEnabled(true);
sizePolicy1.setHeightForWidth(startButton->sizePolicy().hasHeightForWidth()); sizePolicy1.setHeightForWidth(startButton->sizePolicy().hasHeightForWidth());
startButton->setSizePolicy(sizePolicy1); startButton->setSizePolicy(sizePolicy1);
startButton->setMinimumSize(QSize(100, 30)); startButton->setMinimumSize(QSize(100, 35));
startButton->setMaximumSize(QSize(1000, 35)); startButton->setMaximumSize(QSize(2000, 40));
horizontalLayout_5->addWidget(startButton); downlayout->addWidget(startButton);
downlayout->addLayout(horizontalLayout_5);
mainFrame = new QFrame(centralwidget); mainFrame = new QFrame(centralwidget);
mainFrame->setObjectName(QString::fromUtf8("mainFrame")); mainFrame->setObjectName(QString::fromUtf8("mainFrame"));
mainFrame->setEnabled(true); mainFrame->setEnabled(true);
mainFrame->setGeometry(QRect(10, 44, 781, 201)); mainFrame->setGeometry(QRect(10, 44, 781, 211));
mainFrame->setFrameShape(QFrame::StyledPanel); mainFrame->setFrameShape(QFrame::StyledPanel);
mainFrame->setFrameShadow(QFrame::Raised); mainFrame->setFrameShadow(QFrame::Raised);
displayGroupWidget = new QWidget(mainFrame); displayGroupWidget = new QWidget(mainFrame);
displayGroupWidget->setObjectName(QString::fromUtf8("displayGroupWidget")); displayGroupWidget->setObjectName(QString::fromUtf8("displayGroupWidget"));
displayGroupWidget->setGeometry(QRect(0, 10, 781, 200)); displayGroupWidget->setGeometry(QRect(0, 10, 781, 200));
QSizePolicy sizePolicy2(QSizePolicy::Preferred, QSizePolicy::Preferred);
sizePolicy2.setHorizontalStretch(0);
sizePolicy2.setVerticalStretch(0);
sizePolicy2.setHeightForWidth(displayGroupWidget->sizePolicy().hasHeightForWidth()); sizePolicy2.setHeightForWidth(displayGroupWidget->sizePolicy().hasHeightForWidth());
displayGroupWidget->setSizePolicy(sizePolicy2); displayGroupWidget->setSizePolicy(sizePolicy2);
displayGroupWidget->setMinimumSize(QSize(300, 200)); displayGroupWidget->setMinimumSize(QSize(300, 200));
@@ -183,7 +180,7 @@ public:
sizePolicy3.setVerticalStretch(0); sizePolicy3.setVerticalStretch(0);
sizePolicy3.setHeightForWidth(displayChoiceTitle->sizePolicy().hasHeightForWidth()); sizePolicy3.setHeightForWidth(displayChoiceTitle->sizePolicy().hasHeightForWidth());
displayChoiceTitle->setSizePolicy(sizePolicy3); displayChoiceTitle->setSizePolicy(sizePolicy3);
displayChoiceTitle->setMaximumSize(QSize(16777215, 30)); displayChoiceTitle->setMaximumSize(QSize(16777215, 20));
QFont font1; QFont font1;
font1.setPointSize(10); font1.setPointSize(10);
displayChoiceTitle->setFont(font1); displayChoiceTitle->setFont(font1);
@@ -211,6 +208,7 @@ public:
settingsButton = new QPushButton(mainFrame); settingsButton = new QPushButton(mainFrame);
settingsButton->setObjectName(QString::fromUtf8("settingsButton")); settingsButton->setObjectName(QString::fromUtf8("settingsButton"));
settingsButton->setEnabled(true);
settingsButton->setGeometry(QRect(730, 0, 51, 40)); settingsButton->setGeometry(QRect(730, 0, 51, 40));
settingsButton->setMinimumSize(QSize(0, 40)); settingsButton->setMinimumSize(QSize(0, 40));
settingsButton->setIconSize(QSize(30, 30)); settingsButton->setIconSize(QSize(30, 30));
@@ -332,6 +330,7 @@ public:
verticalLayout_3->setContentsMargins(0, 0, 0, -1); verticalLayout_3->setContentsMargins(0, 0, 0, -1);
offlineNotifyLabel = new QLabel(offlineWidget); offlineNotifyLabel = new QLabel(offlineWidget);
offlineNotifyLabel->setObjectName(QString::fromUtf8("offlineNotifyLabel")); offlineNotifyLabel->setObjectName(QString::fromUtf8("offlineNotifyLabel"));
offlineNotifyLabel->setEnabled(true);
sizePolicy2.setHeightForWidth(offlineNotifyLabel->sizePolicy().hasHeightForWidth()); sizePolicy2.setHeightForWidth(offlineNotifyLabel->sizePolicy().hasHeightForWidth());
offlineNotifyLabel->setSizePolicy(sizePolicy2); offlineNotifyLabel->setSizePolicy(sizePolicy2);
offlineNotifyLabel->setMinimumSize(QSize(0, 50)); offlineNotifyLabel->setMinimumSize(QSize(0, 50));
@@ -415,7 +414,7 @@ public:
debugWidget->setObjectName(QString::fromUtf8("debugWidget")); debugWidget->setObjectName(QString::fromUtf8("debugWidget"));
debugWidget->setGeometry(QRect(10, 500, 561, 51)); debugWidget->setGeometry(QRect(10, 500, 561, 51));
verticalLayout_5 = new QVBoxLayout(debugWidget); verticalLayout_5 = new QVBoxLayout(debugWidget);
verticalLayout_5->setSpacing(10); verticalLayout_5->setSpacing(8);
verticalLayout_5->setObjectName(QString::fromUtf8("verticalLayout_5")); verticalLayout_5->setObjectName(QString::fromUtf8("verticalLayout_5"));
verticalLayout_5->setContentsMargins(1, 1, 1, 1); verticalLayout_5->setContentsMargins(1, 1, 1, 1);
autostartCheckBox = new QCheckBox(debugWidget); autostartCheckBox = new QCheckBox(debugWidget);
@@ -514,7 +513,7 @@ public:
offlineStartButton = new QPushButton(centralwidget); offlineStartButton = new QPushButton(centralwidget);
offlineStartButton->setObjectName(QString::fromUtf8("offlineStartButton")); offlineStartButton->setObjectName(QString::fromUtf8("offlineStartButton"));
offlineStartButton->setEnabled(true); offlineStartButton->setEnabled(true);
offlineStartButton->setGeometry(QRect(600, 552, 190, 35)); offlineStartButton->setGeometry(QRect(570, 552, 190, 35));
sizePolicy5.setHeightForWidth(offlineStartButton->sizePolicy().hasHeightForWidth()); sizePolicy5.setHeightForWidth(offlineStartButton->sizePolicy().hasHeightForWidth());
offlineStartButton->setSizePolicy(sizePolicy5); offlineStartButton->setSizePolicy(sizePolicy5);
offlineStartButton->setMinimumSize(QSize(150, 35)); offlineStartButton->setMinimumSize(QSize(150, 35));
@@ -523,7 +522,7 @@ public:
offlineStartButton->setChecked(false); offlineStartButton->setChecked(false);
MainWindow->setCentralWidget(centralwidget); MainWindow->setCentralWidget(centralwidget);
mainFrame->raise(); mainFrame->raise();
layoutWidget->raise(); downLayout->raise();
horizontalWidget->raise(); horizontalWidget->raise();
notificationLabel->raise(); notificationLabel->raise();
debugWidget->raise(); debugWidget->raise();
@@ -563,7 +562,7 @@ public:
autostartCheckBox->setText(QCoreApplication::translate("MainWindow", "\320\220\320\262\321\202\320\276\320\267\320\260\320\277\321\203\321\201\320\272", nullptr)); autostartCheckBox->setText(QCoreApplication::translate("MainWindow", "\320\220\320\262\321\202\320\276\320\267\320\260\320\277\321\203\321\201\320\272", nullptr));
inlineTextDebug->setText(QString()); inlineTextDebug->setText(QString());
updateListGuideLabel->setText(QCoreApplication::translate("MainWindow", "\320\225\321\201\321\202\321\214 \320\270\320\267\320\274\320\265\320\275\320\265\320\275\320\270\321\217 \320\262 \320\273\320\276\320\272\320\260\320\273\321\214\320\275\321\213\321\205 \321\204\320\260\320\271\320\273\320\260\321\205", nullptr)); updateListGuideLabel->setText(QCoreApplication::translate("MainWindow", "\320\225\321\201\321\202\321\214 \320\270\320\267\320\274\320\265\320\275\320\265\320\275\320\270\321\217 \320\262 \320\273\320\276\320\272\320\260\320\273\321\214\320\275\321\213\321\205 \321\204\320\260\320\271\320\273\320\260\321\205", nullptr));
updateActionListLabel->setText(QCoreApplication::translate("MainWindow", "TextLabel", nullptr)); updateActionListLabel->setText(QString());
loadToServerButton->setText(QCoreApplication::translate("MainWindow", "\320\222\321\213\320\263\321\200\321\203\320\267\320\270\321\202\321\214 \320\270\320\267\320\274\320\265\320\275\320\265\320\275\320\270\321\217", nullptr)); loadToServerButton->setText(QCoreApplication::translate("MainWindow", "\320\222\321\213\320\263\321\200\321\203\320\267\320\270\321\202\321\214 \320\270\320\267\320\274\320\265\320\275\320\265\320\275\320\270\321\217", nullptr));
undoChangesButton->setText(QCoreApplication::translate("MainWindow", "\320\236\321\202\320\274\320\265\320\275\320\270\321\202\321\214 \320\270\320\267\320\274\320\265\320\275\320\265\320\275\320\270\321\217", nullptr)); undoChangesButton->setText(QCoreApplication::translate("MainWindow", "\320\236\321\202\320\274\320\265\320\275\320\270\321\202\321\214 \320\270\320\267\320\274\320\265\320\275\320\265\320\275\320\270\321\217", nullptr));
startWithCurrentChangesButton->setText(QCoreApplication::translate("MainWindow", "\320\227\320\260\320\277\321\203\321\201\321\202\320\270\321\202\321\214 \320\261\320\265\320\267 \320\276\321\202\320\277\321\200\320\260\320\262\320\272\320\270", nullptr)); startWithCurrentChangesButton->setText(QCoreApplication::translate("MainWindow", "\320\227\320\260\320\277\321\203\321\201\321\202\320\270\321\202\321\214 \320\261\320\265\320\267 \320\276\321\202\320\277\321\200\320\260\320\262\320\272\320\270", nullptr));