fead: load without animation

This commit is contained in:
semenov
2024-09-19 11:11:20 +03:00
parent f2163b97b5
commit a1a103ae1e
65 changed files with 5618 additions and 865 deletions

View File

@@ -1,19 +1,37 @@
#include "UpdateController.h"
UpdateController::UpdateController(DataParser *parser, QObject *parent) :
#include <QDialogButtonBox>
UpdateController::UpdateController(DataParser *parser,SendSystem *sendSystem, QObject *parent) :
QObject(parent)
{
this->dataParser = parser;
this->sendSystem = sendSystem;
localPath = QDir::currentPath() + applicationFolderName;
}
void UpdateController::calculateCommonHash()
{
fileDataList.clear();
calculateHash(localPath);
dataParser->createFileDataList(fileDataList,hashFilename);
qDebug() << "UpdateController threadID " << QThread::currentThreadId();
qDebug() << " OR " << thread();
}
void UpdateController::calculateHash()
void UpdateController::calculateStreamingHash()
{
fileDataList.clear();
calculateHash(QDir::currentPath() + streamingAssetsPath);
dataParser->createFileDataList(fileDataList,streamingHashFilename);
}
void UpdateController::calculateHash(QString path)
{
qDebug() << "Try calculate";
QDirIterator iterator(localPath,QDirIterator::Subdirectories);
QDirIterator iterator(path,QDirIterator::Subdirectories);
fileDataList.clear();
QList<FileData> *files = new QList<FileData>;
QList<FileData> * folders = new QList<FileData>;
@@ -22,7 +40,7 @@ void UpdateController::calculateHash()
QDir().mkdir(applicationFolderName);
}
QDir dir(localPath);
QDir dir(path);
QString hashString;
while (iterator.hasNext())
@@ -50,6 +68,9 @@ void UpdateController::calculateHash()
hash.addData(buffer,bytesRead);
readSize = qMin(fileSize,bufferSize);
}
file.close();
hashString = QString(hash.result().toHex());
currentFile.path = Tools::createLocalPath(fileInfo.absoluteFilePath());
currentFile.hash = hashString;
@@ -70,13 +91,42 @@ void UpdateController::calculateHash()
fileDataList.append(*folders);
fileDataList.append(*files);
dataParser->createXML(fileDataList);
delete folders;
delete files;
}
void UpdateController::updateFilesOnServer(QList<FileData> *fileSendList){
QListIterator<FileData> serverIterator(*fileSendList);
try {
while(serverIterator.hasNext())
{
FileData data = serverIterator.next();
if (data.hash == "FOLDER")
{
sendSystem->sendFolderBlock(data.path);
}
else
{
sendSystem->sendFileBlock(data.path);
}
}
calculateCommonHash();
sendSystem->sendFinish();
emit sigUpdateComplete(true);
}
catch (...)
{
emit sigUpdateComplete(false);
}
}
UpdateController::~UpdateController()

View File

@@ -17,20 +17,31 @@
#include <QList>
#include <QObject>
class SendSystem;
class UpdateController : public QObject
{
Q_OBJECT
public:
explicit UpdateController(DataParser *parser,QObject *parent = 0);
void calculateHash();
explicit UpdateController(DataParser *parser,SendSystem *sendSystem,QObject *parent = 0);
void calculateCommonHash();
void calculateStreamingHash();
~UpdateController();
void updateFilesOnServer(QList<FileData> *fileSendList);
signals:
void sigUpdateComplete(bool flag);
private:
DataParser *dataParser;
SendSystem *sendSystem;
QString localPath;
QList<FileData> fileDataList;
void calculateHash(QString path);
};

View File

@@ -20,10 +20,10 @@ QByteArray DataParser::slotGetXmlAnswer(QString answerCode)
}
}
void DataParser::createXML(QList<FileData> fileDataList)
void DataParser::createFileDataList(QList<FileData> fileDataList,QString filename)
{
QFile file(hashFilename);
QFile file(filename);
file.open(QIODevice::WriteOnly);
QXmlStreamWriter xmlWriter(&file);
@@ -188,6 +188,7 @@ ServerSettings *DataParser::getServerSettings()
xmlReader.readNext();
}
file.close();
return settings;
}
@@ -213,6 +214,44 @@ void DataParser::saveClientSettrings(QString language, bool isAutoStart)
file.close();
}
QList<FileData>* DataParser::xmlFileDataParse(QByteArray array, QString filter = "")
{
QXmlStreamReader xmlReader(array);
QList<FileData> *datas = new QList<FileData>;
xmlReader.readNext(); // Переходим к первому элементу в файле
//Крутимся в цикле до тех пор, пока не достигнем конца документа
while(!xmlReader.atEnd())
{
//Проверяем, является ли элемент началом тега
if(xmlReader.isStartElement())
{
if(xmlReader.name() == "FileData")
{
FileData data;
foreach(const QXmlStreamAttribute &attr,xmlReader.attributes())
{
QString name = attr.name().toString();
QString value = attr.value().toString();
if(name == "Path")
data.path = value;
else if(name == "Hash")
data.hash = value;
}
if(data.path.contains(filter))
datas->append(data);
}
}
xmlReader.readNext();
}
return datas;
}
QByteArray DataParser::xmlAnswer(QList<SXmlAnswerTag> listTag, QString elemUp1, QString elemUp2)
{

View File

@@ -19,13 +19,14 @@ public:
ServerSettings* getServerSettings();
void createServerSettings(QString server,QString port);
void saveClientSettrings(QString language,bool isAutoStart);
void createXML(QList<FileData> fileDataList);
void createFileDataList(QList<FileData> fileDataList,QString filename);
void createAuthMessage(ClientAutorization *auth);
void createAuthData(ServerAuthorization *serverAuth);
void addRunData(QList<int> displays);
QByteArray xmlAnswer_notify(QString code);
QByteArray xmlAnswer(QList<SXmlAnswerTag> listTag, QString elemUp1 = "", QString elemUp2 = "");
QList<FileData>* xmlFileDataParse(QByteArray array,QString filter);
public slots:
QByteArray slotGetXmlAnswer(QString);

71
Core/hashcomparer.cpp Normal file
View File

@@ -0,0 +1,71 @@
#include "hashcomparer.h"
#include <QCoreApplication>
#include <updatenotifywidget.h>
HashComparer::HashComparer(DataParser *dataParser,QObject *parent)
{
this->dataParser = dataParser;
this->updateWidget = updateWidget;
}
void HashComparer::CompareDeltas()
{
QList<FileData> *serverStreamingHash = new QList<FileData>;
QList<FileData> *localStreamingHash = new QList<FileData>;
QFile file(serverHash);
file.open(QIODevice::ReadOnly | QIODevice::Text);
serverStreamingHash = dataParser->xmlFileDataParse(file.readAll(),"StreamingAssets");
file.close();
QFile file2(streamingHashFilename);
file2.open(QIODevice::ReadOnly | QIODevice::Text);
localStreamingHash = dataParser->xmlFileDataParse(file2.readAll(),"StreamingAssets");
file2.close();
QMutableListIterator<FileData> iterator(*localStreamingHash);
for (auto &item:*localStreamingHash)
{
if(serverStreamingHash->contains(item))
{
serverStreamingHash->removeOne(item);
localStreamingHash->removeOne(item);
}
}
filesForUpdate = localStreamingHash;
showDeltas();
}
void HashComparer::showDeltas()
{
if (filesForUpdate->length() <= 0)
{
emit sigCallCheck();
return;
}
for (auto &item:*filesForUpdate)
{
updateWidget->addToList(item);
}
updateWidget->setUpdateList(filesForUpdate);
updateWidget->show();
updateWidget->activateWindow();
}
void HashComparer::setWidget(UpdateNotifyWidget* updateWidget)
{
this->updateWidget = updateWidget;
}
HashComparer::~HashComparer()
{
}

31
Core/hashcomparer.h Normal file
View File

@@ -0,0 +1,31 @@
#ifndef HASHCOMPARER_H
#define HASHCOMPARER_H
#include "FileData.h"
#include "dataparser.h"
#include "tools.h"
#include <QObject>
#include <QFile>
#include <updatenotifywidget.h>
class UpdateNotifyWidget;
class HashComparer :public QObject
{
Q_OBJECT
public:
explicit HashComparer(DataParser *dataParser,QObject *parent = nullptr);
void CompareDeltas();
~HashComparer();
void showDeltas();
void setWidget(UpdateNotifyWidget *updateWidget);
signals:
void sigCallCheck();
private:
UpdateNotifyWidget* updateWidget;
QList<FileData> *filesForUpdate;
DataParser *dataParser;
};
#endif // HASHCOMPARER_H

View File

@@ -1,5 +1,7 @@
#include "Core/recognizesystem.h"
#include <updatenotifywidget.h>
RecognizeSystem::RecognizeSystem(QObject *parent):
QObject(parent)
{
@@ -17,15 +19,18 @@ RecognizeSystem::~RecognizeSystem()
}
void RecognizeSystem::initialize(UpdateController *updateController,DataParser *dataParser)
void RecognizeSystem::initialize(UpdateController *updateController,DataParser *dataParser,MainWindow *mainWindow)
{
this->updateController = updateController;
this->dataParser = dataParser;
this->mainWindow = mainWindow;
connect(this,&RecognizeSystem::sigSaveLoginData,dataParser,&DataParser::createAuthData);
}
void RecognizeSystem::recognize(QTcpSocket *socket)
{
qDebug() << "RecognizeThreadId " << QThread::currentThreadId();
QDataStream stream(socket);
stream.setVersion(QDataStream::Qt_DefaultCompiledVersion);
@@ -159,6 +164,7 @@ void RecognizeSystem::recognize(QTcpSocket *socket)
file.close();
emit sigSendDebugLog(Tools::getTime() + "File loaded");
emit
//ОЧИСТКА ПОСЛЕ ПЕРЕДАЧИ
@@ -204,7 +210,7 @@ void RecognizeSystem::recognize(QTcpSocket *socket)
}
if(packetType ==PacketType::TYPE_FINISH){ //для повторного создания хэша после загрузки
updateController->calculateHash();
updateController->calculateCommonHash();
emit sigLoadComplete();
packetType = PacketType::TYPE_NONE;
}
@@ -273,6 +279,11 @@ void RecognizeSystem::xmlParser(QByteArray array)
{
emit sigServerBlocked();
}
if(value == "HASHSENDCOMPLETE")
{
emit sigStartCompare();
}
}
}
}
@@ -300,6 +311,7 @@ void RecognizeSystem::xmlParser(QByteArray array)
if (name == "AccessType"){
serverAuth->AccessType = value;
checkAccessType(value);
}
}
@@ -308,5 +320,13 @@ void RecognizeSystem::xmlParser(QByteArray array)
xmlReader.readNext();
}
}
void RecognizeSystem::checkAccessType(QString type)
{
if(type == "instructor")
{
updateController->calculateStreamingHash();
mainWindow->callUpdateList();
}
}

View File

@@ -9,6 +9,7 @@
#include <Core\UpdateController.h>
class UpdateController;
class MainWindow;
class RecognizeSystem : public QObject
{
@@ -18,7 +19,7 @@ class RecognizeSystem : public QObject
public:
explicit RecognizeSystem(QObject *parent = 0);
~RecognizeSystem();
void initialize(UpdateController* updateController,DataParser *dataParser);
void initialize(UpdateController* updateController,DataParser *dataParser,MainWindow *mainWindow);
void recognize(QTcpSocket *socket);
signals:
@@ -30,8 +31,10 @@ signals:
void sigServerBlocked();
void sigSaveLoginData(ServerAuthorization *serverAuth);
void sigSocketWaitForReadyRead(int waitTime);
void sigStartCompare();
private:
MainWindow *mainWindow;
UpdateController *updateController;
DataParser *dataParser;
PacketType packetType;
@@ -45,6 +48,7 @@ private:
void xmlParser(QByteArray array);
void checkAccessType(QString type);
};
#endif // RECOGNIZESYSTEM_H

131
Core/sendsystem.cpp Normal file
View File

@@ -0,0 +1,131 @@
#include "sendsystem.h"
#include "tools.h"
#include <QFile>
#include <QFileInfo>
#include <QThread>
SendSystem::SendSystem(QObject* parent)
{
}
void SendSystem::setSocket(QTcpSocket *socket)
{
this->socket = socket;
}
void SendSystem::sendDisable()
{
QDataStream stream(socket);
stream.setVersion(QDataStream::Qt_DefaultCompiledVersion);
QByteArray data;
data = emit sigGetXmlAnswer("DISABLE");
stream << PacketType::TYPE_XMLANSWER;
stream << data;
socket->waitForBytesWritten();
}
void SendSystem::sendClientAutorization()
{
QDataStream stream(socket);
stream.setVersion(QDataStream::Qt_DefaultCompiledVersion);
QFile file(tempName);
file.open(QIODevice::ReadOnly);
QByteArray array = file.readAll();
stream << PacketType::TYPE_XMLANSWER;
stream << array;
socket->waitForBytesWritten();
file.close();
}
void SendSystem::sendFileBlock(QString path)
{
QDataStream stream(socket);
stream.setVersion(QDataStream::Qt_DefaultCompiledVersion);
QString fullPath = Tools::createFullPath(path);
quint64 fileSize = 0;
int countSend = 0;
QFile file(fullPath); //Открываем файл для чтения
QFileInfo fileInfo(file);
fileSize = fileInfo.size();
stream << PacketType::TYPE_FILE; //Отправляем тип блока
stream << path << fileSize;
socket->waitForBytesWritten();
if(file.open(QFile::ReadOnly)){
while(!file.atEnd()){
QByteArray data = file.read(1025*250);
stream << data;
socket->waitForBytesWritten();
countSend++;
}
qDebug() << Tools::getTime() << "count end Final: " << countSend;
}
file.close();
//qDebug() << "Transaction after send file: " << socket->isTransactionStarted();
countSend = 0;
socket->waitForBytesWritten();
}
void SendSystem::sendFolderBlock(QString path)
{
QDataStream stream(socket);
stream.setVersion(QDataStream::Qt_DefaultCompiledVersion);
stream << PacketType::TYPE_FOLDER;
stream << path;
socket->waitForReadyRead(100);
}
void SendSystem::sendQTConnect()
{
QString value = QString::number(PacketType::TYPE_QT);
socket->write(value.toUtf8());
socket->waitForBytesWritten();
}
void SendSystem::sendXMLAnswer(QByteArray array)
{
QDataStream stream(socket);
stream.setVersion(QDataStream::Qt_DefaultCompiledVersion);
stream << PacketType::TYPE_XMLANSWER;
stream << array;
socket->waitForBytesWritten();
}
void SendSystem::sendFinish()
{
socket->waitForReadyRead();
QDataStream stream(socket);
stream.setVersion(QDataStream::Qt_DefaultCompiledVersion);
stream << PacketType::TYPE_FINISH;
socket->waitForReadyRead(100);
}
SendSystem::~SendSystem()
{
}

30
Core/sendsystem.h Normal file
View File

@@ -0,0 +1,30 @@
#ifndef SENDSYSTEM_H
#define SENDSYSTEM_H
#include <QObject>
#include <QTcpSocket>
#include <QDataStream>
class SendSystem :public QObject
{
Q_OBJECT
public:
explicit SendSystem(QObject* parent = nullptr);
void setSocket(QTcpSocket *socket);
void sendClientAutorization();
void sendDisable();
void sendFileBlock(QString path);
void sendFolderBlock(QString path);
void sendQTConnect();
void sendXMLAnswer(QByteArray array);
~SendSystem();
void sendFinish();
signals:
QByteArray sigGetXmlAnswer(QString);
private:
QTcpSocket *socket;
};
#endif // SENDSYSTEM_H

View File

@@ -7,95 +7,40 @@
TCPClient::TCPClient(QObject *parent) :
QObject(parent)
{
//socket = NULL;
socket = new QTcpSocket();
socket->setParent(this);
socket->moveToThread(this->thread());
}
void TCPClient::initialize(RecognizeSystem *recognize,ExternalExecuter *externalExecuter)
void TCPClient::initialize(RecognizeSystem *recognize,ExternalExecuter *externalExecuter,SendSystem *sendSystem)
{
this->recognizeSystem = recognize;
this->externalExecuter = externalExecuter;
this->sendSystem = sendSystem;
emit sigSendDebugLog(Tools::getTime() + " Client started");
}
void TCPClient::setConnect(ServerSettings *serverSettings)
void TCPClient::setConnect(ServerSettings *serverSettings,QThread *th)
{
socket = new QTcpSocket();
qDebug() << "TCPCLient thread: " << thread();
if (socket != NULL && socket->state() == QTcpSocket::ConnectedState)
{
emit sigSendDebugLog("already connected");
return;
}
socket->connectToHost(serverSettings->Address,serverSettings->Port.toShort());
connect(socket,&QTcpSocket::readyRead,this,&TCPClient::slotReadyRead,Qt::DirectConnection);
connect(socket,&QTcpSocket::disconnected,this,&TCPClient::setDisconnect);
connect(socket,&QTcpSocket::connected,this,&TCPClient::slotConnectNotify);
connect(this,&TCPClient::sigRecognize,recognizeSystem,&RecognizeSystem::recognize,Qt::DirectConnection);
socket->connectToHost(serverSettings->Address,serverSettings->Port.toShort());
connect(this,&TCPClient::sigRecognize,recognizeSystem,&RecognizeSystem::recognize,Qt::DirectConnection);
connect(this,&TCPClient::sigSetSocket,sendSystem,&SendSystem::setSocket);
emit sigSetSocket(socket);
emit sigSendDebugLog("Try connect...");
}
void TCPClient::sendClientAutorization()
{
QDataStream stream(socket);
stream.setVersion(QDataStream::Qt_DefaultCompiledVersion);
if(socket->state() != QTcpSocket::ConnectedState){
emit sigConnectionState(false);
return;
}
QFile file(tempName);
file.open(QIODevice::ReadOnly);
QByteArray array = file.readAll();
stream << PacketType::TYPE_XMLANSWER;
stream << array;
socket->waitForBytesWritten();
}
void TCPClient::sendFile()
{
QDataStream stream(socket);
stream.setVersion(QDataStream::Qt_DefaultCompiledVersion);
quint64 fileSize = 0;
int countSend = 0;
QFile file(hashFilename); //Открываем файл для чтения
stream << PacketType::TYPE_FILE; //Отправляем тип блока
QFileInfo fileInfo(file);
fileSize = fileInfo.size();
stream << fileSize;
if(file.open(QFile::ReadOnly | QFile::Text)){
while(!file.atEnd()){
QByteArray data = file.readAll();//file.read(1025*250);
stream << data;
countSend++;
}
qDebug() << Tools::getTime() << "count end Final: " << countSend;
}
file.close();
qDebug() << "Transaction after send file: " << socket->isTransactionStarted();
countSend = 0;
}
void TCPClient::sendQTConnect()
{
QString value = QString::number(PacketType::TYPE_QT);
socket->write(value.toUtf8());
socket->waitForBytesWritten();
}
void TCPClient::setDisconnect()
{
@@ -104,20 +49,8 @@ void TCPClient::setDisconnect()
emit sigSendDebugLog("Server disabled");
}
void TCPClient::sendDisable()
{
QDataStream stream(socket);
stream.setVersion(QDataStream::Qt_DefaultCompiledVersion);
QByteArray data;
data = emit sigGetXmlAnswer("DISABLE");
stream << PacketType::TYPE_XMLANSWER;
stream << data;
socket->waitForBytesWritten();
}
void TCPClient::waitRead(int time)
void TCPClient:: waitRead(int time)
{
socket->waitForReadyRead(time);
}
@@ -127,32 +60,32 @@ QTcpSocket *TCPClient::getSocket()
return socket;
}
void TCPClient::slotMessageEntered(QString message)
void TCPClient::slotSendCommand(QString command)
{
QDataStream stream(socket);
QByteArray data;
stream.setVersion(QDataStream::Qt_DefaultCompiledVersion);
if(!message.isEmpty() && socket->state() == QTcpSocket::ConnectedState){
if(!command.isEmpty() && socket->state() == QTcpSocket::ConnectedState){
if(message == "check")
if(command == "check")
{
stream << PacketType::TYPE_COMMAND;
stream << message;
stream << command;
socket->waitForBytesWritten();
sendFile();
sendSystem->sendFileBlock("/" + hashFilename);
emit sigSendDebugLog(Tools::getTime() + " Local checkFile sended");
socket->waitForReadyRead(1000);
}
else if(message == "update"){
else if(command == "update"){
emit sigSendDebugLog("Update started");
stream << PacketType::TYPE_COMMAND;
stream << message;
stream << command;
socket->waitForBytesWritten();
}
else if(message == "run"){
else if(command == "run"){
externalExecuter->callApp();
}
}else{
@@ -172,7 +105,7 @@ void TCPClient::slotConnectNotify()
{
emit sigSendDebugLog("Connect complete");
emit sigConnectionState(true);
sendQTConnect();
sendSystem->sendQTConnect();
}
}
@@ -183,10 +116,6 @@ void TCPClient::slotReadyRead()
return;
}
// qDebug() << "Transaction before recognize: " << socket->isTransactionStarted();
// if(socket->isTransactionStarted()) return;
emit sigRecognize(socket);
}

View File

@@ -15,6 +15,7 @@
class UpdateController;
class RecognizeSystem;
class SendSystem;
class TCPClient : public QObject
{
@@ -23,12 +24,9 @@ class TCPClient : public QObject
public:
explicit TCPClient(QObject *parent = 0);
void initialize(RecognizeSystem *recognize,ExternalExecuter *externalExecuter);
void setConnect(ServerSettings *serverSettings);
void sendClientAutorization();
void sendQTConnect();
void initialize(RecognizeSystem *recognize,ExternalExecuter *externalExecuter,SendSystem *sendSystem);
void setConnect(ServerSettings *serverSettings,QThread *thread);
void sendDisable();
void waitRead(int time);
QTcpSocket* getSocket();
~TCPClient();
@@ -36,23 +34,23 @@ public:
signals:
void sigSendDebugLog(QString message);
void sigRecognize(QTcpSocket *socket);
void sigConnectionState(bool flag);
void sigServerDisconnect();
QByteArray sigGetXmlAnswer(QString);
void sigConnectionState(bool flag);
void sigSetSocket(QTcpSocket *socket);
public slots:
void slotMessageEntered(QString message);
void slotSendCommand(QString message);
void slotConnectNotify();
private slots:
void slotReadyRead();
private:
SendSystem *sendSystem;
QTcpSocket *socket;
RecognizeSystem *recognizeSystem;
ExternalExecuter * externalExecuter;
void sendFile();
void setDisconnect();
};

View File

@@ -10,11 +10,14 @@
static QString applicationEXEName = "RRJ.exe";
static QString applicationFolderName = "/Application";
static QString staticDataFolderName = "StaticData";
static QString hashFilename = staticDataFolderName + "/hash.xml";
static QString streamingAssetsPath = "/Application/RRJLoader/RRJ_Data/StreamingAssets";
static QString hashFilename = staticDataFolderName + "/clientHash.xml";
static QString settingsName = staticDataFolderName + "/settings.xml";
static QString tempName = staticDataFolderName + "/temp.xml";
static QString authTempName = staticDataFolderName + "/authData.xml";
static QString displayTemp = staticDataFolderName + "/displayData.xml";
static QString streamingHashFilename = staticDataFolderName + "/streamingHash.xml";
static QString serverHash = staticDataFolderName + "/serverHash.xml";
enum PacketType{
TYPE_NONE = 0,

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -17,6 +17,7 @@ DEFINES += QT_DEPRECATED_WARNINGS
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
Core/sendsystem.cpp \
Core\updatecontroller.cpp \
Core\externalexecuter.cpp\
Core\dataparser.cpp\
@@ -24,10 +25,13 @@ SOURCES += \
Core\screenchecker.cpp\
Core\tcpclient.cpp\
Core\tools.cpp\
Core\hashcomparer.cpp \
main.cpp \
mainwindow.cpp
mainwindow.cpp \
updatenotifywidget.cpp
HEADERS += \
Core\sendsystem.h \
Core\updatecontroller.h \
Core\externalexecuter.h\
Core\dataparser.h\
@@ -36,11 +40,14 @@ HEADERS += \
Core\screenchecker.h\
Core\tcpclient.h\
Core\tools.h\
Core\hashcomparer.h \
Datas.h \
mainwindow.h
mainwindow.h \
updatenotifywidget.h
FORMS += \
mainwindow.ui
mainwindow.ui \
updatenotifywidget.ui
TRANSLATIONS = QtLanguage_ru.ts\
QtLanguage_eng.ts

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 4.11.1, 2024-09-11T17:25:10. -->
<!-- Written by QtCreator 4.11.1, 2024-09-19T11:10:16. -->
<qtcreator>
<data>
<variable>EnvironmentId</variable>
@@ -67,7 +67,7 @@
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Desktop Qt 5.14.2 MinGW 64-bit</value>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Desktop Qt 5.14.2 MinGW 64-bit</value>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">qt.qt5.5142.win64_mingw73_kit</value>
<value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">1</value>
<value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
<value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
<value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
@@ -299,7 +299,7 @@
<value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
<value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
<value type="QString" key="RunConfiguration.WorkingDirectory"></value>
<value type="QString" key="RunConfiguration.WorkingDirectory.default">E:/Projects/QT/GUIProj/RRJClient/Deploy</value>
<value type="QString" key="RunConfiguration.WorkingDirectory.default">E:/Projects/QT/GUIProj/RRJClient/RRJClient</value>
</valuemap>
<value type="int" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
</valuemap>

View File

@@ -1,2 +1,2 @@
<?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"/>

821
StaticData/clientHash.xml Normal file
View File

@@ -0,0 +1,821 @@
<?xml version="1.0" encoding="UTF-8"?>
<FileDataList>
<FileData Path="/Application" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/D3D12" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/EmbedRuntime" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/2.0" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/2.0/Browsers" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.0" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.0/Browsers" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.5" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.5/Browsers" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/mconfig" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_BurstDebugInformation_DoNotShip" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_BurstDebugInformation_DoNotShip/Data" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_BurstDebugInformation_DoNotShip/Data/Plugins" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_BurstDebugInformation_DoNotShip/Data/Plugins/x86_64" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Plugins" 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/StreamingAssets" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/Build" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/result" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Objects" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData" 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/Sounds" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Temp" 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="e312a1ed0ce9f479b15c7f0611bdbb37"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/globalgamemanagers" Hash="ccf2f112c62aab2351eb9b5c6f330b9e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/globalgamemanagers.assets" Hash="7b6f114312deaa62f5a4b23649368b45"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/globalgamemanagers.assets.resS" Hash="cc481c35e79b509dcd950c6adf2346ce"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/level0" Hash="d5345419929a97f8d09683013406598b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Assembly-CSharp.dll" Hash="55033482071f7e01b1ebfc5f754cc279"/>
<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="b96a186df5c03cc5667cabe74d54bc7d"/>
<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="92ce18bfb39496d9601f59fe561fcc89"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/sharedassets0.assets.resS" Hash="897317a657f377346d8932827dc78da0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/file0.txt" Hash="c2e9ea3f89cca3ad0dd1cb447eacbe28"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/file1.txt" Hash="279acb00c072c959002402efb519f7ca"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/file2.txt" Hash="06c9fde6c4937cb49cf6f31aca2112cd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/file3.txt" Hash="17dafbf14bc1a6fbc6c3c8e3ec997f26"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/file4.txt" Hash="cbc576e0021007726cea90a8e7ba5e1d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01020107-001.html" Hash="bdf56b7b9c3997178caf43a4a28e6492"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01020107-002.html" Hash="060241fca96dcd7c3fe625ea44535d9d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01020107-003.html" Hash="d2f056b1cbcfed9601116f92d99e3baa"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030110-001.html" Hash="49263a0d017e7dcff2bd872188453c3a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030114-001.html" Hash="3b99bb5dbc08ebdefc3c8597b2f531aa"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030114-002.html" Hash="23144ca504634919240989f5961eae29"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030115-001.html" Hash="5265ee997039166506c749ec02e1d749"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030115-002.html" Hash="a7b5bd92fc666872fb9512a715c2ab58"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030115-003.html" Hash="a0b0e65ca508080f19aa299f9d8b5f9d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030115-004.html" Hash="fe523b508b9f3c0893030e147f679af4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030115-005.html" Hash="37d4f82e8bb92bf34a5c144f0dbb8c4c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030116-001.html" Hash="041f7e8df3ef05780d645a66dbf5d870"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030116-002.html" Hash="a838f1e88ff4220b763cf1db38394f31"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030117-001.html" Hash="9f9c70bb4b96a504409f86a8ccf77d4a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030117-002.html" Hash="bee0ad779dedf6e23371a7e0b93c38ad"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030118-001.html" Hash="b627901640b89e362180340f5b5c27d7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030118-002.html" Hash="25cd0857ad67481d7c05d1d4f5ee19cb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030118-003.html" Hash="43450037fe795afe8e2e0dbbef1ad5e1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030118-004.html" Hash="4514803a210b8a4938d3321e4544ea2e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030119-001.html" Hash="9269195d1e6442ad151f0e3e7d51e9ae"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030206-001.html" Hash="70ae170eab1101d115c1fdc6bd6e54ff"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030206-002.html" Hash="8baecea910121775598744fa4d094c12"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030206-003.html" Hash="6b579110339f50b49f1047e386186744"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030206-004.html" Hash="4e545e443e21989c9053e72f5d847592"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030210-001.html" Hash="6f51435fffedd0f8633364f323c7c2a0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030314-001.html" Hash="46ff0901f276f3afc7dcd2db21a0ffd8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030314-002.html" Hash="9fb974cef66d8cd983ffe82e2e1de762"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030314-003.html" Hash="94a71d28d1edf7397288cb9e08099ba9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030314-004.html" Hash="7acbb00230829053fe17a900eb5c5a90"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030314-005.html" Hash="c6fd9d15c7d4eb6e3ab12c39d8c5ff7a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030314-006.html" Hash="8214e41fd739f357c921705cee0a2fb2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030314-007.html" Hash="3166bdfb093cbc514bf89b32c7689cde"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030314-008.html" Hash="18c269de0b69a9f06be5d21bf11a68e3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030314-009.html" Hash="a60e62d78b0b51929feb4baa17424814"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030525-001.html" Hash="fdbb8c3bb4434037489d4fa757a682de"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030525-002.html" Hash="bac23cde98907dacbcdad52b428ca5d1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030528-001.html" Hash="fb29614ded1c28a35a28299879f21b07"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030528-002.html" Hash="75d371d0b5dd0974bafe57f5854a6adb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030528-003.html" Hash="1202338c8b0753a7f8b90f716ef7afd4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030528-005.html" Hash="d0e672bb0c0c3b029c820355458015f5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030528-006.html" Hash="1d563c14fc5acea6190b1503305e73df"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030528-007.html" Hash="656b6a7a4567a03a72257e92bb6665c3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030102-001.html" Hash="c6bd0047850c41a129d3985551e2e9ab"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030102-002.html" Hash="32d800958d89a5930245580f802dd454"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030104-002.html" Hash="03698ea2ad9c6454bb1489d9ed681b1a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030104-004.html" Hash="d3c22fa9f89ed22bb46bb8fcaf56cdc0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030107-001.html" Hash="f34c6bba24898e22b2af6f4428c28073"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030107-002.html" Hash="e989891c042c4810dcdf10be33727f87"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030107-003.html" Hash="fe8ff3a1a7d90d29a1faf96c5f9f5644"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030109-001.html" Hash="24a9eb718e9e509a1e812e5ff83e9ed1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030109-002.html" Hash="99e5799b3a02b8ada4bc6600feee20be"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030112-001.html" Hash="3a6ac244a8909345f346ab7f29bfb299"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030113-001.html" Hash="efee6d12b823669707cb2ce1940a81ec"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030205-001.html" Hash="a174f0e9cf0edebc782970928c3e4ed0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030208-001.html" Hash="35faa0939b6c973da8be24bcd954dd03"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030209-001.html" Hash="bdb46aefe3dfd0dd9dbf8e467899799e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030210-001.html" Hash="0d32b8ca28c34e1512b76d4fedd58a95"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030212-001.html" Hash="0b889701e4463993bb8c741d34e86f74"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030212-002.html" Hash="fd022e5859a23f631ec8858fe42fe73e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030213-001.html" Hash="5d33b4be12b5d55cbb18767ff16af315"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030214-001.html" Hash="b23c0452e174064ccecf1f5d767af45c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030214-002.html" Hash="f50c1da7292125738e4fd394bc8de800"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030214-003.html" Hash="94090b8eff7e5588fad9437f21ac856e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030214-005.html" Hash="9d364b4ced910f7724ac0cbc5f61a7da"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030216-001.html" Hash="5ec61a21de901ed7a5c9ecff7325bd30"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030217-001.html" Hash="81623be069702b472b97e565296f1918"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030301-001.html" Hash="843ee2f58b7473448f53cf574b61c200"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030402-001.html" Hash="46eb8533caf16cbbc6e557459cf58400"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030402-002.html" Hash="b79090b70072ece98078941a1abe9248"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030402-003.html" Hash="726b864beab494b5395db1db8e50feb2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030403-001.html" Hash="d3ac901ec28b13335346b2290065e6db"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030403-002.html" Hash="7dfd2daf2da806fd38da16d578b97201"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030404-001.html" Hash="7cb3b8f799fee830e2feca23c4cdce45"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030404-002.html" Hash="98cfe2eb59b9631080333209cb85425a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030404-003.html" Hash="34b81bba30311cc2b657eb58b54ae8cf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030404-004.html" Hash="deb490dac058143c51d60f7594389dcb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030405-001.html" Hash="f0e6816fb5b8280e3cc3ef9f23eb89c1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030405-002.html" Hash="bd1ca4bbdc2eb9f71db3fb7e84177b74"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030406-001.html" Hash="f56e61ccb2c2a4c226ba4debe58c12fa"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030407-001.html" Hash="60c4818b0c1348e860132fcbea179529"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030407-002.html" Hash="f31a510e889ca9a39fe44a4d54625096"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030408-001.html" Hash="9e3e6b014cb6b82f20c2d3a68b03bfd5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030408-002.html" Hash="25b672b3611f1041a0fd2be75be4636a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030409-001.html" Hash="998baaeaebde17d205856ff92fc62de5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030409-002.html" Hash="351866400316b49e357f654778983957"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030410-001.html" Hash="97a56394b6064bb2cd3a547c323ee098"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030411-001.html" Hash="4c3f61db99595f37f47c5994d92aabfb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030411-002.html" Hash="6168a120844594233a09c003b2a44bd7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030412-001.html" Hash="fbdffc3d6464306c1d4835b0a6467421"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030412-002.html" Hash="dc22655cf5c13bbd1e0903d8eb77edfd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030412-003.html" Hash="3f3428d71a818997e6e40a2f96274d41"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030413-001.html" Hash="2dec6ea005ec3ea2f242b99639a66f50"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030413-002.html" Hash="7e5c00106b4b0a80b7d65abf06642903"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030413-003.html" Hash="924887e139c2785b3b48033eeefb1d9f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030413-004.html" Hash="60c0149257ed1553bd618ac0b43e4e98"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030413-005.html" Hash="faa6c88b7053a0f6e5bf20606922a370"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030413-006.html" Hash="e86badc9b66d46a05b57d7cff636c297"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030414-001.html" Hash="ec829e477df355f716c5f7c859fcd211"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030414-002.html" Hash="398a87835b389e86be0e4873f5eb25fd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030415-001.html" Hash="18478a0dbb158a0694c8182fbe1a3b42"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030417-001.html" Hash="a6d7543e291857dcd627700cfacf3c4b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030417-002.html" Hash="a886e4a59abdbc375dd0cbd3eaf8c402"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030418-001.html" Hash="47cef8fd8bf90b92cfbdc4331172bce6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030418-002.html" Hash="5c3745c6bbe02400a1ac52d0903afedb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030419-001.html" Hash="8309679904327790a6e35c2d34a4187b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030419-002.html" Hash="ee11bef2d9f6ecf8175841e521a0eda6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030420-001.html" Hash="3b091705bf4e41bc9c0df671758f43ce"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030421-001.html" Hash="51d640b9eb205b5c831efa50659596ee"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030421-002.html" Hash="a3b0026b10dc7d82715df0c1fa2f6618"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030422-001.html" Hash="aa52987cfa20a03820ec65f6eabfe687"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030422-002.html" Hash="b7849f28e353c9256db4e2b167217045"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030424-001.html" Hash="8c684f4eaa01840b5e0bb9124fdf6ac9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030424-002.html" Hash="2aa9cc34e3ea6925c9012d182f75c310"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030424-003.html" Hash="f75485d1985b6a726d2b6862856100c1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030425-001.html" Hash="e96fffc0371d6a2da0957b4fbc634deb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030430-001.html" Hash="f4015d28310f47afd289430c09adfaf7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030430-002.html" Hash="b974a0f8ee64b39103d361e33d04e27b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030431-001.html" Hash="6b15f6cb2c6852014fbe2f26322a0c19"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030431-002.html" Hash="4d50255dc022b28279be354b4e113b2c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030432-001.html" Hash="13ac155e1076c67f760e824ebdfbde3d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030432-002.html" Hash="7d2d306065fa6d7a489001f6cf76480a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030433-001.html" Hash="2e1f361d6d2e16d050c670c7fcc59a36"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030433-002.html" Hash="e66b5f49d5c11d189e3421c37430ac5d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030435-001.html" Hash="517865608350ea5558b199896ea3dabd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030435-002.html" Hash="b64da8e089884ea748b466ef403adbe6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02040201-001.html" Hash="81c6d2b6199c76839bb5cbba4dbc13c3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02040202-001.html" Hash="884154e4138e506abe5e661e53782830"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02040203-001.html" Hash="f73fd0011fb7c0d43eef37150d7051dd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02040204-001.html" Hash="920048c6e92bb5852297aea243666070"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02040205-001.html" Hash="ef1450d069c971d6057713091a2ce87c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02040206-001.html" Hash="0dff6e65356ee0ffdf7ec62b27a0072f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010402-001.html" Hash="07fde0ddb8a908f8bdb2785811c7e0ab"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010403-001.html" Hash="43682ca8cd79fbef84e8e3aec5cfbb52"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010406-003.html" Hash="41b673da33d99dc1168e4e9932d65c88"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010407-001.html" Hash="788b99ce815eef6e5c57efcf04e3b83f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010408-001.html" Hash="7f37e051cebc6afce4053ab05798f805"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010409-001.html" Hash="b7e505aba3acca71adb851181656ab08"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010411-001.html" Hash="54e1ab3a0451e4b370641f74ad8a6426"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010412-001.html" Hash="2a995fe3014a7cfba48221bafa263445"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010412-002.html" Hash="6f82b2c30217c14f49e7857374bda550"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010412-003.html" Hash="b633468b5c071e402756e0672af7176d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-002.html" Hash="1c5e2c4bf0eab51c0ff5b5c5da3edf1f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-003.html" Hash="f7488b7a2ea26aeedeb432e68ae63952"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-004.html" Hash="0d539029397de2c44cc191598fd07725"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-005.html" Hash="c19c6f9fc96b3fb62842ca786b7168a9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-006.html" Hash="080d669cb738dfe68e1e6a473e7de8d4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-007.html" Hash="9dd8d802af0fb8bc61644a6abcc91275"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-008.html" Hash="116559baadcb72cdc3cb87af3b6c3ea9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-009.html" Hash="44dbb6d6828c4b9dcd878472852bdb0a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-010.html" Hash="ceacb1e174d30a8224e9503f36e249b7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-011.html" Hash="b6d8ee5914fdf00b36c3f14177d9c301"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-012.html" Hash="af9dfb82643f314b163edbc3cdc7137d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-013.html" Hash="f3b4d29b5314ab047ced9aa9a5a0e80c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010503-002.html" Hash="58b1e27332bad9ff15b0a42cd03b2365"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010503-003.html" Hash="d755d626a3db19abd7ecbcdefb4f4335"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010503-004.html" Hash="f02cd91f987cb99d6c74e7468429f251"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010503-005.html" Hash="c34d554ee685035d8e8886485f7a4838"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010503-007.html" Hash="1dd73b55cf0a098dde9204208ac3aef8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03040103-001.html" Hash="1f37852ae3e10273a0cf89531df85291"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03050103-001.html" Hash="8cc9287358facf130c95a01dbd1f942e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03050104-001.html" Hash="95599f07fd3ae58ff6e1544ec9151922"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03050202-001.html" Hash="26dcd369b0d54f0a70e940c15879c9b9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03060102-001.html" Hash="c1f0c64f206eaf3bc964d55afbf231f3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03070311-001.html" Hash="94ca03f64ca6915760838235b6a1040a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03070311-002.html" Hash="4e087228bafea7cb5072147326ac77c2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03070311-003.html" Hash="3f3d2219ac34eadfdaac129e35763c4f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03070314-001.html" Hash="2f421f2cd4332faeafa912ee63c9de86"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03090201-001.html" Hash="8e8b71c04fa42d92523f1d2ee4398667"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03090201-002.html" Hash="a4e787dd646ba6ad60a0a23ebdff157c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03090201-003.html" Hash="107a1b985afcdef102d8941da6b5a53d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03150203-002.html" Hash="53d0cf77ec4e885e9b5b44681e829259"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03180113-001.html" Hash="e25876c6d670a4dccab84a9906cc443c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03180113-002.html" Hash="5c4b2a1f56059ffe0da3932bcaed9471"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03180113-003.html" Hash="96699e7e7f49d8686402752c0d30dcba"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020104-001.html" Hash="aeeba9b7e7a7cc55e7728ca9201962b0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020104-002.html" Hash="26fd876d90ab7fa027729b4c71da0499"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020702-001.html" Hash="b4e60924942d6677831d45d3f15388df"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020703-001.html" Hash="ba5dedf68a27c83ce03c68f2e543f999"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020703-003.html" Hash="aa665457ef4c07b699bd65acb029c884"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020705-001.html" Hash="bd61bf5f89dfdf05944f257319ccb212"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020705-002.html" Hash="365d5f1e90a81a7408cd135bb00b9761"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020705-005.html" Hash="2d2b80f02ab7470e7a14e30d684e4001"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020705-006.html" Hash="e1b4435178235b860ded7f2be9e7bcca"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020706-001.html" Hash="0b303ae5462e56e1262a8d79fcb7fb9d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020708-001.html" Hash="3589196f8c51882955af365926c74b4e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020708-002.html" Hash="519cdb6facf2f797e39a3b9c1c88debb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020708-003.html" Hash="e18de6a8ba3a5ee8ab6eab53a0f3806c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020708-004.html" Hash="d0a545446c65a7ff76b10f3a17acbe30"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020708-005.html" Hash="19d11b9ce3da97edcdfeef80b0d29715"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020708-006.html" Hash="17b09e41d0499edc125dc4215dc173c9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020709-001.html" Hash="f961f8aa144dc32e925d28b64dd3af13"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020710-001.html" Hash="4d4035c17d6edad02edbfd570f852ce0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020710-003.html" Hash="2a94748a3a87bc420c242d0e35af97c5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020711-001.html" Hash="95beba8a333a20ee473998d193f00a40"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020712-001.html" Hash="2878c937effa41d917e8572d74fb5e80"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020712-002.html" Hash="5a0fa3e7091326069b154a5281b908e6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020712-003.html" Hash="5c9636e0c83053628765e794207dd0ae"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020715-001.html" Hash="879cb56f728f20c374a0af8046beef2b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020717-001.html" Hash="51e41666b4cfbfca2ed9e3da7cf60a10"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020717-002.html" Hash="e8bcc6f674320bce4676f7bd26f0e466"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020718-001.html" Hash="a8e78b5a49deb359db300f1c53e907f7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021102-001.html" Hash="1ac01988b531f9e0a5a29a6851e5c70b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021103-001.html" Hash="a8fb41e8d7908b4e32bd73d52b3f4c40"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021103-002.html" Hash="1d0eb59cecdc597caed7d931390a862e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021103-004.html" Hash="2e7942a32f3add60ecfb6f06fb2abdad"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021104-001.html" Hash="b2beea346efdf0dc94a89ebe83f43717"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021104-002.html" Hash="336559dcae9b32007e552e8ee859e768"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021104-003.html" Hash="c678760998d923945922c21c931fb80c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021104-004.html" Hash="62645eed00a94da24b788524380a2999"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021104-005.html" Hash="15002cfcc57368a3a0fb6c9b9e1a3795"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021104-006.html" Hash="2046175bb3c75093ef3c2cd4495497ac"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021104-007.html" Hash="dc8e17dace37fc35e0b884753d8e7fa6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021105-001.html" Hash="7f160b5f38b3f24a8cb8b15c849e6205"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021105-002.html" Hash="e1a77c7250bda46e67cb42914b0968b1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021105-003.html" Hash="c3133e9e7a3548fcb4e5881de84184e4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021105-004.html" Hash="d803ca63caad312cc908e484938879ab"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021105-005.html" Hash="ac7974ff92f8adbf24ded1784bb92b0f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021105-006.html" Hash="a66040072cbaae9086584c730855d336"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021106-001.html" Hash="b1a943268406a324dc5cdea0e67f671a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021106-002.html" Hash="d8771b281e69f5892704ec2aaef49933"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021106-003.html" Hash="71f6fa2b4cb7515588e2a8c0e52fc1f9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021106-004.html" Hash="fc9191d039ce7b3bcc8a742c61610335"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021106-005.html" Hash="eba7e036807145853a014fa260d0fb3c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021106-006.html" Hash="0e530ec815eebed47b1ae0721a97d2d7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021108-001.html" Hash="05b8e9f06c3cb54730a1b6ea81ffa92d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021111-001.html" Hash="633a67564e293ddbf3cd2baa0139f47d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021402-001.html" Hash="72d17a40b3011bbd664094bc5de8a4b7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021402-002.html" Hash="b59a53c9737d1ef01e10763653df5028"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04030102-001.html" Hash="d631ec1c28917e7b7679fa832e446cbb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04030402-002.html" Hash="ec0d141623bc7eeb184ad5101d4b223b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04030402-003.html" Hash="79c4e3e9ec124cca785051394f2375a1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04030504-001.html" Hash="d616cc780646bae207ac64e6b614e38e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04030504-002.html" Hash="009aaa6131b19c53f6c937779d5200a1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04030702-003.html" Hash="3bc2a076953ebf436822bf9d26e1ed3a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04030802-003.html" Hash="1ab539d5e1f73bb1b01642425604190c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04030902-003.html" Hash="4e00e6bb16022c6a3cf9e696ccb28509"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04031003-001.html" Hash="d1e502781e1d122a190836f5c448128a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04031105-001.html" Hash="ba0a3da6f9d955b7d1989175cff58859"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04031204-001.html" Hash="e6367df4153f271f0cee1d9a8d749f81"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04031205-001.html" Hash="df02d28fbaa00ee8560171b843ce7c25"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04031305-001.html" Hash="c73c4e1a30c0cb1af278accbdc31bbe9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04031305-002.html" Hash="5ce779b3dd7efb14a1ce493ca8b3221f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04031305-003.html" Hash="08ba6e4fba820ebf88a2ace13017bf66"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04031402-001.html" Hash="aa048102e9e8bf7d4680bb031e013928"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04040103-001.html" Hash="465c93db42390742002be8697366e737"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04040103-002.html" Hash="10922f42b4bbedaec66b038ecec8a571"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04040103-003.html" Hash="ca259639f0ebdf933568dcb076b28b49"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04050104-001.html" Hash="edc8c0769ea53aa902c1354d53728006"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04050104-002.html" Hash="ee632fe376583247943e77c45ec31809"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04050104-003.html" Hash="6768e152b2eb2ff21459042b8b56f7d6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04050204-002.html" Hash="09b98cebb251a5a7eb94d4dd2eec43d6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04050204-005.html" Hash="94e7090950fccf53780f816c1838a6bc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04050307-004.html" Hash="19b40eed58804a871e70864a81c340b0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06020102-001.html" Hash="40ce9d57d9c63839e2ab490a5da7da19"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06020102-002.html" Hash="ca331dcedcb1d29a0c14670e0be98a99"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06020102-003.html" Hash="bd72d9367f265d32620e2d7960a04ce3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06020103-001.html" Hash="1b3705a40f8932070104b928e8629f26"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06020103-002.html" Hash="59227956ac57f7259a5f120b4c285607"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06020104-001.html" Hash="1548bb5b0aeb8d34410c2584397ebc3c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06020105-002.html" Hash="91ecc2f31ccc7c27aa55f24458eb6b5b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06030101-001.html" Hash="ec805f68a2ee501594ac9e43e50ca2c2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06030102-001.html" Hash="33d1292afcb5b035fc2e91506f466fdd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06040101-001.html" Hash="b9b454508a4b29e818ab493fa2cc9241"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06040103-001.html" Hash="de9229e230c2e06f6dc09bae27f7e387"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06050102-001.html" Hash="ad40c3fe8c0225f02e2978783e77ee59"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06060109-001.html" Hash="5c162e0a17d9224b573f480e54f66454"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06080102-001.html" Hash="793bfa910ea882d8227318e87248a407"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06080102-002.html" Hash="111b44a6ff87689d55a1b37e47f1c8fa"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06090103-001.html" Hash="c992ed51eb3178fc9fc478744bb53385"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/07031801-001.html" Hash="1c22c3ee69db2285fe142b2b1ac151c3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/07080202-001.html" Hash="cf34939a3942149e04a85611cc1a3001"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/07080204-001.html" Hash="3ccaff4e0ad00c2f14a8150471c2e3cd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/07080204-002.html" Hash="a00147fbb1d3ba4c83875f3f2baf9fb4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/07080302-001.html" Hash="b6c3a18b42d35ce1d8d91dfe69d2cf0f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/07080401-001.html" Hash="938ba47a8a8a6859b2fa502764a64063"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/07080401-002.html" Hash="e7e60ffc9ad35bd0d30627638ddf60b3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/07080502-001.html" Hash="d541fc9bac3d7b4064567f11065fab2a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/08040314-001.html" Hash="fd98e9160cdb115a22fe65027bf3e57c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/11050201-001.html" Hash="913a9d36872fcee8cee2371cc992aaf5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/12020303-001.html" Hash="b214f15e90999d74d949d21f2952add0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/12021004-002.html" Hash="5fbc0e3a5f8bf2da9269c5635f5c09b8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/12021004-003.html" Hash="9ed4bea3a3b2cfb006b2d546d381db7b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/12021005-001.html" Hash="087cded96561a80ab4e683386249fc6e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/12021006-001.html" Hash="bad9f21149d4d2bd5b0f8b9118385830"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/12021010-001.html" Hash="6dcfeb2576b4eceb801410495ff3abf0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/12021011-001.html" Hash="adf4b1fe1beafbeb93fb5893c33c0cdc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/12021011-004.html" Hash="1b64e0c2529ae476b3776bbb5ea4653b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/12021011-005.html" Hash="ae51d365e1d3e2c5f4796602f03ac8cb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/12021014-001.html" Hash="a2a36e5bce8ad4179c2c23fac76043c5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/12021018-001.html" Hash="9210346d75705aaa0aff79b559daf518"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/13051401-002.html" Hash="e6f3c703762b3035c71be643a0776a49"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/13051403-001.html" Hash="7eaa1ded3ea01aa836684490f2229f5a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/13051405-001.html" Hash="e4d14ce0b5cf6ff46d15c1554437f131"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/13051717-001.html" Hash="38efd55f456f34ad1050caf27754365a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/13051717-002.html" Hash="d2183ba43cc99a71d6ebba0be73b4ae8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/Build/models.data" Hash="b10f13180798ae4014f7c65d9eb27e89"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/Build/models.framework.js" Hash="e4d5a83dd8d78101d7bc94a50848c9ec"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/Build/models.jpg" Hash="d777076b38b1f08b8978f84cc46792aa"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/Build/models.loader.js" Hash="be5c8a837410560f3ca8989808c21df4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/Build/models.wasm" Hash="a6f060395e34d644020925c4679ec27c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/index.html" Hash="a213c318ab2fbdcfc783dbe2ba1f28eb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Objects/Objects.xml" Hash="aabe39e7bfd68141113570873f6aca33"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01020107-001.xml" Hash="f53cc08aa46381f60a7b8ff57f6d31ca"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01020107-002.xml" Hash="190fe91cc016aafae86f2f160bb1a131"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01020107-003.xml" Hash="5eaaf84f81329ff8a9cc966e68918adc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030110-001.xml" Hash="fb5f3186ec3f4a145c17bc58566d880a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030114-001.xml" Hash="90c4ceea9299d53bf31bc9aedba83b04"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030114-002.xml" Hash="498319b3266c7364b62f7cef359ffb26"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030115-001.xml" Hash="82fb3530a5666c8e5df9498544bac4ac"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030115-002.xml" Hash="3310a8b1209c56cc64f4b30f805106e3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030115-003.xml" Hash="9204b1cd53c3a9eb0aa66f7e2a4eec63"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030115-004.xml" Hash="3f37bd25bcdb42352555955ec7dbab4c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030115-005.xml" Hash="57bb582364d0e094f53d2c988bcb4659"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030116-001.xml" Hash="06e1055c49f5837812be247e63f0351e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030116-002.xml" Hash="03de8a71e2438cd0c5430bd6684a660e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030117-001.xml" Hash="d7b6bbff1ff02cb66595076525f5c4d3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030117-002.xml" Hash="57f060458ef5214e7c8f7c0b0317910f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030118-001.xml" Hash="4aaeb5a1c8884002cf6b00eb643690ea"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030118-002.xml" Hash="8f7fa80af46cdce8f65445240c2e0231"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030118-003.xml" Hash="faead220dc29534abf3fc3da182d6026"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030118-004.xml" Hash="1c95bb6b0ef34edc114dae99d9fb7bee"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030119-001.xml" Hash="043a2ada929db5bf0b78ad6535cef55d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030206-001.xml" Hash="9ed1e943b71afe03d204a8f13df723a2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030206-002.xml" Hash="aacf22ee3573cb3d83055d74059d828f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030206-003.xml" Hash="010fd114d90077442b9cce411d360f74"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030206-004.xml" Hash="61796c6f991d4442c3c6b95f2bd23140"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030210-001.xml" Hash="6d4f04af742b49329c7a08ec6d210044"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030314-001.xml" Hash="0550ac2ac7f495cf72273247e83ae14c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030314-002.xml" Hash="9ba06c3494b73e3e54779e6d88620a69"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030314-003.xml" Hash="03addfb5f1d3f0cd5e980e17e8d873d1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030314-004.xml" Hash="576edeeef1287d8b7959010b7fcfb496"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030314-005.xml" Hash="79126169290896b366b7da7e9c97f09d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030314-006.xml" Hash="f99d6a604458329574fa7580f463703d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030314-007.xml" Hash="3be235e5122752ea71f978d4e7f7e37c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030314-008.xml" Hash="6e1c509aa53c7558d0e9ce7e1b4f400d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030314-009.xml" Hash="310311be61609f379cdf551d146af357"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030525-001.xml" Hash="d6598128ca78a69e3a1fe40b3d4f57bb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030525-002.xml" Hash="3ca8e55e3e0b97e00860d681e90a977b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030528-001.xml" Hash="a6f68f6ef9c11de6a6a82f7983b4f3ed"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030528-002.xml" Hash="9d07c9081a7b5d5f5b507062d051d60e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030528-003.xml" Hash="6bb3bca3721b6f99b1066f0687e0a913"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030528-005.xml" Hash="b00767e6298324256fee266e3ba5bfa4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030528-006.xml" Hash="c7e24692444e86724528bee797c0a818"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030528-007.xml" Hash="d181905287ea841d48060933e31e7bad"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030102-001.xml" Hash="c0cdaea833e46d5b14f9c1a8b8ce7009"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030102-002.xml" Hash="d50e2de284ae5791f8a212b8f7527b2f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030104-002.xml" Hash="fafbfe660f86df0f0c1df5ab68e8a3c2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030104-004.xml" Hash="535beaf086b28a6d175341a6ea9baf2e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030107-001.xml" Hash="80f926bace1a76d8e301119cbb943597"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030107-002.xml" Hash="969e0f2fc1bd8277c1d32b574c5841b6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030107-003.xml" Hash="40522dbec38c24c415a73b99071f52b1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030109-001.xml" Hash="87fc3fbfecdfaaf718d14050551fa79a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030109-002.xml" Hash="d09805b59ae9a0ca0e2fe19a825f897e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030112-001.xml" Hash="8bad68432d847f7ad1e8b562b74fbb06"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030113-001.xml" Hash="d2d84a28bff46098e4e8bb9de65aa6f3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030205-001.xml" Hash="980b8a690cd528f4df754bb6737aa44f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030208-001.xml" Hash="f4c1e3678634b15b77dcb68cebb3b4db"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030209-001.xml" Hash="2687f99bdce09dddbfccaf75d559e07b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030210-001.xml" Hash="7ff61f96fc677eba795bb9383eca9861"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030212-001.xml" Hash="a00e1d47eb5ddbf50cd5befe2eae5221"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030212-002.xml" Hash="33a8ceb86d62de7178199db58878d792"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030213-001.xml" Hash="344bf4a6c3695d553ed312f18fb387d0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030214-001.xml" Hash="5698f59834618d3dfb14bd9ce04bdd94"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030214-002.xml" Hash="edeb912c5a03956da128f10a87d0698d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030214-003.xml" Hash="586020ee33a7135f2117fd906aa6b9e3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030214-005.xml" Hash="604e58142b14c75e323aadef938a2122"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030216-001.xml" Hash="7644682823bfb4c23573d6c43f0cecc0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030217-001.xml" Hash="014fc387216e11266f44c424928a1a0c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030301-001.xml" Hash="c684ac10fa56420829f106ee5b4bd5cc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030402-001.xml" Hash="1174a9a17ef1f7bb4a7680b20bf5cf4a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030402-002.xml" Hash="3116314970f82b22c51bdf9c14a43a68"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030402-003.xml" Hash="76bb00d12bde2ee73714553b734e2333"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030403-001.xml" Hash="0a93ef567fd63b4454f7238552cf29b5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030403-002.xml" Hash="2d71a14974a19e9799dd1ff272b97e89"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030404-001.xml" Hash="ba34064073e493cd1f993be7683a5203"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030404-002.xml" Hash="a2dd1523c4c26cbedfa1518e5591dcb1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030404-003.xml" Hash="d2eab180f8d9bfd488b11a6ebaebed80"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030404-004.xml" Hash="c85ed5bcaf61578fbbf188e0d4baf60a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030405-001.xml" Hash="ed6a8b0a231683965114ba46c783ba79"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030405-002.xml" Hash="d38abba03c7f0d31002c034fbff957cb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030406-001.xml" Hash="74fdd2b3ab642a3ae3aafe008b928626"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030407-001.xml" Hash="37aeb13b41f9987050ef5b41acae352e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030407-002.xml" Hash="a9f14a985015fefc8e5f789c3986d198"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030408-001.xml" Hash="e19a0864e1ef5d2ee36368a9b8602ff1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030408-002.xml" Hash="bb31802d3e3b7df60c365dfbf84d5f93"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030409-001.xml" Hash="6f0a7a5159a7567e5978423d7c17a61d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030409-002.xml" Hash="1b80647ccc5fe635f752738f990e3a07"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030410-001.xml" Hash="961bb507771701edf7cc62a2d42db5f0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030411-001.xml" Hash="9037edeaf2e190769816b8294832ce13"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030411-002.xml" Hash="4553b77d405d507f3db93f9b5e6940ab"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030412-001.xml" Hash="64322a93b82f357f91d1607ed8581b71"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030412-002.xml" Hash="bc807a805520533ea1d8327018d6fe25"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030412-003.xml" Hash="ac6fe5a0bdb777691a62506c1d69ad38"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030413-001.xml" Hash="a0c382e6e0de788eef46ba0c0f157ed5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030413-002.xml" Hash="178bf6c0b1d2588ded9d2c5288acbf1d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030413-003.xml" Hash="d8453db797048ef2542af790bc260d6a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030413-004.xml" Hash="69b5d0040e0243a8377797c77e7cc77d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030413-005.xml" Hash="e380b31dace62eb6c623acc31c4c8043"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030413-006.xml" Hash="a0f7bc4437b08c63f26e955733b970b4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030414-001.xml" Hash="0f72277e7c206cf22ac88e98b23a1f34"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030414-002.xml" Hash="a898933983a2bdab3ec04f886ac7d084"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030415-001.xml" Hash="0d48778b742d12bda9f64d13c7b94a2b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030417-001.xml" Hash="ec8ff8212c846c9a93db2f7168473364"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030417-002.xml" Hash="3697589442473788a1757a25fede6fd6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030418-001.xml" Hash="a83c32ccbcca9381c9c983f49618dbe3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030418-002.xml" Hash="b512bf27c6d2609ad7a4ac3744c5a30c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030419-001.xml" Hash="bdf9f492ee02cc3de8c2cd48e7d9602e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030419-002.xml" Hash="caced693dd113954f3d500e64f474349"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030420-001.xml" Hash="323845baaa2e23c53afb55bc34a53ea8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030421-001.xml" Hash="5980964a89cb720e8c641ece306d9f0c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030421-002.xml" Hash="023096f474f4699683fbfe45e1dfa404"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030422-001.xml" Hash="8039d05a8bf6b81c829f54df0747abbb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030422-002.xml" Hash="5273cd4389171a307a8b1ca66ef2e084"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030424-001.xml" Hash="69354e1251d946d2199f48722df00eb2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030424-002.xml" Hash="40a51f5bac0cd8ff2d6e7ddd9ee30060"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030424-003.xml" Hash="ac0a7d3c415a8b045b841085a74d8933"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030425-001.xml" Hash="357095a14172f6e26ab50d7c82024dbc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030430-001.xml" Hash="dd5d9abebbc353c6c2ffc1898cb03270"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030430-002.xml" Hash="a02c277c04e3acfa30843ab665ee036b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030431-001.xml" Hash="11f8ee5e67efcef8d4efd243eb0445b1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030431-002.xml" Hash="51b9dbd0a93c35fcb94fbdab80dd5bca"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030432-001.xml" Hash="3f635289f4ea22292c733f9869986e1a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030432-002.xml" Hash="a42fb303174687b50e9b5e4689d4cfee"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030433-001.xml" Hash="c6dce58b079dd93d9022b5f877fcdf5a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030433-002.xml" Hash="e303c6eeb1886904869d1150162f3d31"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030435-001.xml" Hash="a6b10fd12629607e7e02f7d460759db3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030435-002.xml" Hash="5bc98418e8294b8c16ee6fac49819788"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02040201-001.xml" Hash="199adca520aa0f68ceeeb5043c2d094e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02040202-001.xml" Hash="2b69ca8a9eb4d759f7324b5c9721f930"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02040203-001.xml" Hash="48667f426c3f031d081c168adf4539e7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02040204-001.xml" Hash="96eb2ab9c2876612a18adee48c487905"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02040205-001.xml" Hash="b28d2ab7fb54ac19a3e322a4e1e0500c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02040206-001.xml" Hash="8d440ee946e3145d9aea5c7b8ab6c463"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010402-001.xml" Hash="0fbe9f5266dd3e19f527a583cebe4867"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010403-001.xml" Hash="52a9df1fd0949e8646ae878840d49b44"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010406-003.xml" Hash="cf49c65596e30b9c1f102b75de318451"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010407-001.xml" Hash="458efc9d02a6a14ef91f43136db9fd0f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010408-001.xml" Hash="0cc5d106a1d9acd3cda511cba1ae30ca"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010409-001.xml" Hash="3d092d9cd461a025651be8f5dd72daed"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010411-001.xml" Hash="7a1f028eb7a560e3a49b2e5811916eaf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010412-001.xml" Hash="763e28eaaaebc90d1218e9b60ff77656"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010412-002.xml" Hash="85778d87e8b3c54e233b712297ca2679"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010412-003.xml" Hash="1efac0922b9c6d836161e7516d76af26"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-002.xml" Hash="1b63271d3aa1a1980cf7bfbb0167dd26"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-003.xml" Hash="5b093a07cf5cc3506ab345049eabe9b3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-004.xml" Hash="693dc341d282f8dd6d3920eaca740c1d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-005.xml" Hash="6aa5094ddfd0c94cb0cbd1692a7ec12e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-006.xml" Hash="669d10c90254788a798e22c7cff55d40"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-007.xml" Hash="eab17e7156a8c49d0e701d06af717ccf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-008.xml" Hash="a014be337449df54bbdcc40603356aac"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-009.xml" Hash="ee8ae3302eac9d8a59bba62e19f16914"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-010.xml" Hash="fe906c4a36beb80462265cb74a4d918a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-011.xml" Hash="f67832eaf439ba46e125bc8ef7c47099"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-012.xml" Hash="835d9bb5620738a5acd4390fade6f6dd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-013.xml" Hash="f1ffcd2dcf043c26ff50fea253f06729"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010503-002.xml" Hash="99897eeebe331afb4b7101b9ff72310d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010503-003.xml" Hash="dfa14f8f4a812f8e9629489c4f5d88cc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010503-004.xml" Hash="afc50c230dad957347f821fd65247f8d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010503-005.xml" Hash="a3cf81b9985956def144a04305f01b2c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010503-007.xml" Hash="5ac134c898690aa406e3ede0f59b8c38"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03040103-001.xml" Hash="0a8d3a8ac1e1b0f3b81fabe4d9b4d6cf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03050103-001.xml" Hash="aa5d75eaf1e17ca05a47eb280d0bd4c9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03050104-001.xml" Hash="aad49b39830c4854d514d24158891de6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03050202-001.xml" Hash="735d327116ef1ce5913363b49a7a192f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03060102-001.xml" Hash="38bc366deba35eb905dbb88b4b8bc762"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03070311-001.xml" Hash="7271bfe3e8cf3c8a658391e801ef29ed"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03070311-002.xml" Hash="115d41d6370c2f0cf491f471f63c666b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03070311-003.xml" Hash="9b6e9b87562100ef8adba358d60a0eb6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03070314-001.xml" Hash="7286ca3746a9b97d767395d7dd825858"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03090201-001.xml" Hash="35a7c9aab8091bf4fbf0b019e3f79635"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03090201-002.xml" Hash="a79c9e800a2b41780916c585e8b9a160"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03090201-003.xml" Hash="223f94f6b80e98e503eaf285f7878cc5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03150203-002.xml" Hash="62e9d93ced24f110fa006824f1a3cd65"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03180113-001.xml" Hash="ac177fb92679bb63dfa8d56a58d40a04"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03180113-002.xml" Hash="295dcf45c1f9728167c23a30d6744143"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03180113-003.xml" Hash="aaba605cb98fa51b4669b81d39912845"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020104-001.xml" Hash="f063538ece8a4b4115eeb19238cb75fa"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020104-002.xml" Hash="461c7527435832a650e86603ebd6d9d1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020702-001.xml" Hash="ee703820d305c0323c9d4e377cbb4866"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020703-001.xml" Hash="e045d9f3022ce73f955b210283bd568a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020703-003.xml" Hash="dd743988bd7aace8e6f9a1bd5d9af555"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020705-001.xml" Hash="33bb032deb37b44b95f3486e2ce8e466"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020705-002.xml" Hash="3dcfaeef2cb44ad9688b7250191a5860"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020705-005.xml" Hash="b78a83d0c2d0b9b2416559e513bf0062"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020705-006.xml" Hash="1e3c3d340a5a7861f1fdae4add2be3ed"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020706-001.xml" Hash="7271324afb56664ddf9c17aa31978444"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020708-001.xml" Hash="8efc92bf1d60b244c2c90b4d93b7fd67"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020708-002.xml" Hash="a2f5686dde2e51681c9d5e34e126b6f0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020708-003.xml" Hash="3d7112f5f8598a58292bce1f3956b347"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020708-004.xml" Hash="9b67448dbaeb99136d2144431f0d825d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020708-005.xml" Hash="6f48b534e4eb2025a45cf7f61d327df7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020708-006.xml" Hash="42f7e5e1ddee4ece8e408f6c85c73c6f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020709-001.xml" Hash="86ce7ab3bb47d949df8de497b0239df2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020710-001.xml" Hash="14e22fab05476777ec38c81e9c889fd2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020710-003.xml" Hash="4632f17e43bf0825fb7f22a1523c8579"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020711-001.xml" Hash="95a8f76dc958b15e26cb85984a90c7a5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020712-001.xml" Hash="ccb13b723a1f08f890e9c8688b11e67c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020712-002.xml" Hash="fe736de26cfb7633a9822e50b6ecc15e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020712-003.xml" Hash="146acf8985930096be933d85bc22ca3f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020715-001.xml" Hash="f52aeccf150d7191e85c814aa5d70961"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020717-001.xml" Hash="8620be77ea969fea388a1a90249cddb5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020717-002.xml" Hash="f8ad7d1b4be0d3fc8428d160faa4d9ed"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020718-001.xml" Hash="917b7ed29c30d4596e1edd88d3363d9d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021102-001.xml" Hash="78a873aaa243cfc9d331bab5269c6c90"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021103-001.xml" Hash="72ee7a1c2d4282f9acd85d684ab3d82f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021103-002.xml" Hash="7253cbde804350fd148ef928d014d632"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021103-004.xml" Hash="8223e3d4feb0badcb557d610abea2247"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021104-001.xml" Hash="fbbec4eced50b41e0cb4c430a3f6df1c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021104-002.xml" Hash="6d800baba9d77bd89dc5711136458fd7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021104-003.xml" Hash="40cf1a9e6cd6bbe1c85fd1fb4c1b6f7b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021104-004.xml" Hash="a351af8d47d7e5e0b8de09ad1d400425"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021104-005.xml" Hash="5b418827b3304ee5559eb0689c048cd1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021104-006.xml" Hash="63673cc0e3423d9867e9b856079f2a1b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021104-007.xml" Hash="1607696d83cc34d96cc666ff96b43543"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021105-001.xml" Hash="b541d385405e50ebeba352dc6b6c9e49"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021105-002.xml" Hash="75d5ccdfd046b56ae243d1a3a6d3a4ce"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021105-003.xml" Hash="d2046fb7f9b956943077bea8d1201344"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021105-004.xml" Hash="aa4642ffb2f2d75017c57ba758a7251d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021105-005.xml" Hash="ab572135f763dcb95bee0434fee90879"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021105-006.xml" Hash="4b110c9251e8a3050f47edf72d0df1c9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021106-001.xml" Hash="02021bae22f73aed5e9a94519a19bb16"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021106-002.xml" Hash="f5f87da4a7f4cfe3340b6ba42d51207e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021106-003.xml" Hash="c3426e6b5b501a735477a90a5f4ba2ea"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021106-004.xml" Hash="1cc4f4bdb7e73437c4a6f647c9b0c4f5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021106-005.xml" Hash="a540cbfb831a73a2baa48cc5a8b2849d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021106-006.xml" Hash="ad8f73a4a39e310e3c26d3757ed2bb0b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021108-001.xml" Hash="799d3f5e53fca36f7132784afe1039bf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021111-001.xml" Hash="5256f837a9292938c05169dd58367cd8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021402-001.xml" Hash="914ac47e6def831863e4238b06f6182f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021402-002.xml" Hash="c104ebaad37da88afc413a4f2566490f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04030102-001.xml" Hash="f51b531095274f7d26e4fd586adca466"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04030402-002.xml" Hash="e607be8089927bdec540e32a4e93820a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04030402-003.xml" Hash="e1c270e17e9ab08bbad823d994c32527"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04030504-001.xml" Hash="38857fa45c086c6c4a747796138b4940"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04030504-002.xml" Hash="2d27c14254469c12633986449cff9612"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04030702-003.xml" Hash="4b0c0467dbb294b376345eb6114bfc6c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04030802-003.xml" Hash="ee6a4ec11329d847a6ab9448df7a48a8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04030902-003.xml" Hash="c973847af41397d612afceeb662d048c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04031003-001.xml" Hash="0db98b30fc6d84f11c6d91f220671880"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04031105-001.xml" Hash="3f722f7621ece4fecafbec12d339e60e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04031204-001.xml" Hash="51c16453cee8c4d0baefa3e38a8e5e08"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04031205-001.xml" Hash="2d5a529c3c1d6b6040d422de83672cd6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04031305-001.xml" Hash="ac177fb92679bb63dfa8d56a58d40a04"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04031305-002.xml" Hash="295dcf45c1f9728167c23a30d6744143"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04031305-003.xml" Hash="489675dfc84b195305bf6b0cb295ef2c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04031402-001.xml" Hash="a5937287bf15db2e6bb5253b423b6a51"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04040103-001.xml" Hash="d7f7b537a320560788224e314c64713c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04040103-002.xml" Hash="52d27835bc22545e77263545259792e9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04040103-003.xml" Hash="59a6a7e582c45e899074c43f74761e21"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04050104-001.xml" Hash="d13cf774885e0cd38f323525f824fe7c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04050104-002.xml" Hash="8a77a96acb6a1bdec5d484588013518d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04050104-003.xml" Hash="bf5050959a388f5b4969160e2ecb175c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04050204-002.xml" Hash="38101e6825585cc7ba0c8a197ca37f20"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04050204-005.xml" Hash="619f74f21b9716e41e98a5695eb26f52"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04050307-004.xml" Hash="c740951b5b2414265afdedb07cac0d44"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06020102-001.xml" Hash="b553d3358d0a4a2ccefd3a2cb062cdd5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06020102-002.xml" Hash="a789bc89b20022030c54acd9d68bd4df"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06020102-003.xml" Hash="5fc63bc0d6f6181740116e71447dcfbd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06020103-001.xml" Hash="6a242f0558a7fe7a529c755f78ff2271"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06020103-002.xml" Hash="062c8d0c07c5596df5c663830d4a09c3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06020104-001.xml" Hash="2cdb6524be4e0eb5aaf1f9681a36d499"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06020105-002.xml" Hash="a1e0f3d7ae2b8e83a87c3246667e45d5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06030101-001.xml" Hash="48bebcc72d74c06998e0a35aec90c401"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06030102-001.xml" Hash="a126d55b1b78b6521d42c2c461a2c205"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06040101-001.xml" Hash="aa70dfd88b437bf0f4eeb980fba124ce"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06040103-001.xml" Hash="c091a7067322c76c5eea877578f7f5d5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06050102-001.xml" Hash="06ceafc2a69069433875457939066a91"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06060109-001.xml" Hash="1f876e34a6f702f90c321de07b4272f0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06080102-001.xml" Hash="f822fd3f3ac8d6bf79dbf8143c3bbe58"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06080102-002.xml" Hash="8b3d7646f713606b1d9d186314520a26"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06090103-001.xml" Hash="c46b026b15b60a39fcfc77237c147f63"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/07031801-001.xml" Hash="c73f915d85592e79abb15a70660b7745"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/07080202-001.xml" Hash="d7f467d3cf46d6f4c6c2257c7f783416"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/07080204-001.xml" Hash="0ab95dc7ca02a7c438c17fbbfa58beba"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/07080204-002.xml" Hash="e1d1df22ca0516e14fb33ae1780962fc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/07080302-001.xml" Hash="4bb2328c120f9074d2153a46fcab3c43"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/07080401-001.xml" Hash="b4170596f788791cdc9ab0abefb9ff00"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/07080401-002.xml" Hash="0c650a58842f834b9318d62262738457"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/07080502-001.xml" Hash="d8ec8a38d47e15b79da07da4edee7473"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/08040314-001.xml" Hash="e2ca1af2a7b51f3e654ca8d20c93b8a7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/11050201-001.xml" Hash="961e900ec31e2bdf15405bd7d691db0f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/12020303-001.xml" Hash="e2ca1af2a7b51f3e654ca8d20c93b8a7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/12021004-002.xml" Hash="dc525f5be49a400943b0fc5d1e9e8e04"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/12021004-003.xml" Hash="603cfcb7739c056a57225e61e8caa050"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/12021005-001.xml" Hash="6f48b534e4eb2025a45cf7f61d327df7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/12021006-001.xml" Hash="14e22fab05476777ec38c81e9c889fd2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/12021010-001.xml" Hash="d30a5701171aa3172c8307052c75150a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/12021011-001.xml" Hash="3dcfaeef2cb44ad9688b7250191a5860"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/12021011-004.xml" Hash="b78a83d0c2d0b9b2416559e513bf0062"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/12021011-005.xml" Hash="1e3c3d340a5a7861f1fdae4add2be3ed"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/12021014-001.xml" Hash="86ce7ab3bb47d949df8de497b0239df2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/12021018-001.xml" Hash="917b7ed29c30d4596e1edd88d3363d9d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/13051401-002.xml" Hash="fda84b4936f0eed551b58e89f79d34d9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/13051403-001.xml" Hash="5b6e1f19c9778ae237816bc9b3501b04"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/13051405-001.xml" Hash="bc5899f4dedc7e940270a8b96f0100bd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/13051717-001.xml" Hash="eef6e9a3eaadac3fa39efd64feb0d619"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/13051717-002.xml" Hash="615736ceef667747473a6152557c6c6b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData/favicon.ico" Hash="57b5a31d2566cf227c47819eb3e5acfa"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData/fullscreen-button.png" Hash="489a5a9723567d8368c9810cde3dc098"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData/logo.png" Hash="c09db2e9923582f923e3af20178c45d0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData/progress-bar-empty-dark.png" Hash="781ae0583f8c2398925ecedfa04b62df"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData/progress-bar-empty-light.png" Hash="2789c25428af99e60c6733254b52d7a3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData/progress-bar-full-dark.png" Hash="99949a10dbeffcdf39821336aa11b3e0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData/progress-bar-full-light.png" Hash="fcda192672329e164ed4ccad922590fa"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData/style.css" Hash="bc9b71bad45bcbbeffc6d1e20cfba58d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData/unity-logo-dark.png" Hash="59fa0334e801c9d8fe14af70400ee200"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData/unity-logo-light.png" Hash="3c8bc23981828d69f857a5feafc1b699"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData/webgl-logo.png" Hash="ddd95c65824da6c6223f48b961a583e4"/>
<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/RRJ_Data/Temp/UserData.xml" Hash="18352e1f88c92ef90c42bfe2b1ee0395"/>
<FileData Path="/Application/RRJLoader/UnityCrashHandler64.exe" Hash="ea440810e323f7b7ca54727cd23d068e"/>
<FileData Path="/Application/RRJLoader/UnityPlayer.dll" Hash="0486f8cc69625acdb24a62855754b228"/>
</FileDataList>

View File

@@ -28,7 +28,6 @@
<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/UI" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Temp" 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"/>
@@ -53,10 +52,12 @@
<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="e312a1ed0ce9f479b15c7f0611bdbb37"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/globalgamemanagers" Hash="ccf2f112c62aab2351eb9b5c6f330b9e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/globalgamemanagers.assets" Hash="7b6f114312deaa62f5a4b23649368b45"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/globalgamemanagers.assets.resS" Hash="cc481c35e79b509dcd950c6adf2346ce"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/level0" Hash="d5345419929a97f8d09683013406598b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Assembly-CSharp.dll" Hash="55033482071f7e01b1ebfc5f754cc279"/>
<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"/>
@@ -195,7 +196,6 @@
<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/RRJ_Data/Temp/UserData.xml" Hash="44634b9000d5dc9a18ca3b1e58965aa6"/>
<FileData Path="/Application/RRJLoader/UnityCrashHandler64.exe" Hash="ea440810e323f7b7ca54727cd23d068e"/>
<FileData Path="/Application/RRJLoader/UnityPlayer.dll" Hash="0486f8cc69625acdb24a62855754b228"/>
</FileDataList>

View File

@@ -0,0 +1,637 @@
<?xml version="1.0" encoding="UTF-8"?>
<FileDataList>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/Build" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/result" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Objects" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData" 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/Sounds" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/file0.txt" Hash="c2e9ea3f89cca3ad0dd1cb447eacbe28"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/file1.txt" Hash="279acb00c072c959002402efb519f7ca"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/file2.txt" Hash="06c9fde6c4937cb49cf6f31aca2112cd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/file3.txt" Hash="17dafbf14bc1a6fbc6c3c8e3ec997f26"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/file4.txt" Hash="cbc576e0021007726cea90a8e7ba5e1d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01020107-001.html" Hash="bdf56b7b9c3997178caf43a4a28e6492"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01020107-002.html" Hash="060241fca96dcd7c3fe625ea44535d9d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01020107-003.html" Hash="d2f056b1cbcfed9601116f92d99e3baa"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030110-001.html" Hash="49263a0d017e7dcff2bd872188453c3a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030114-001.html" Hash="3b99bb5dbc08ebdefc3c8597b2f531aa"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030114-002.html" Hash="23144ca504634919240989f5961eae29"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030115-001.html" Hash="5265ee997039166506c749ec02e1d749"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030115-002.html" Hash="a7b5bd92fc666872fb9512a715c2ab58"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030115-003.html" Hash="a0b0e65ca508080f19aa299f9d8b5f9d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030115-004.html" Hash="fe523b508b9f3c0893030e147f679af4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030115-005.html" Hash="37d4f82e8bb92bf34a5c144f0dbb8c4c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030116-001.html" Hash="041f7e8df3ef05780d645a66dbf5d870"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030116-002.html" Hash="a838f1e88ff4220b763cf1db38394f31"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030117-001.html" Hash="9f9c70bb4b96a504409f86a8ccf77d4a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030117-002.html" Hash="bee0ad779dedf6e23371a7e0b93c38ad"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030118-001.html" Hash="b627901640b89e362180340f5b5c27d7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030118-002.html" Hash="25cd0857ad67481d7c05d1d4f5ee19cb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030118-003.html" Hash="43450037fe795afe8e2e0dbbef1ad5e1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030118-004.html" Hash="4514803a210b8a4938d3321e4544ea2e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030119-001.html" Hash="9269195d1e6442ad151f0e3e7d51e9ae"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030206-001.html" Hash="70ae170eab1101d115c1fdc6bd6e54ff"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030206-002.html" Hash="8baecea910121775598744fa4d094c12"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030206-003.html" Hash="6b579110339f50b49f1047e386186744"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030206-004.html" Hash="4e545e443e21989c9053e72f5d847592"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030210-001.html" Hash="6f51435fffedd0f8633364f323c7c2a0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030314-001.html" Hash="46ff0901f276f3afc7dcd2db21a0ffd8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030314-002.html" Hash="9fb974cef66d8cd983ffe82e2e1de762"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030314-003.html" Hash="94a71d28d1edf7397288cb9e08099ba9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030314-004.html" Hash="7acbb00230829053fe17a900eb5c5a90"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030314-005.html" Hash="c6fd9d15c7d4eb6e3ab12c39d8c5ff7a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030314-006.html" Hash="8214e41fd739f357c921705cee0a2fb2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030314-007.html" Hash="3166bdfb093cbc514bf89b32c7689cde"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030314-008.html" Hash="18c269de0b69a9f06be5d21bf11a68e3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030314-009.html" Hash="a60e62d78b0b51929feb4baa17424814"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030525-001.html" Hash="fdbb8c3bb4434037489d4fa757a682de"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030525-002.html" Hash="bac23cde98907dacbcdad52b428ca5d1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030528-001.html" Hash="fb29614ded1c28a35a28299879f21b07"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030528-002.html" Hash="75d371d0b5dd0974bafe57f5854a6adb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030528-003.html" Hash="1202338c8b0753a7f8b90f716ef7afd4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030528-005.html" Hash="d0e672bb0c0c3b029c820355458015f5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030528-006.html" Hash="1d563c14fc5acea6190b1503305e73df"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/01030528-007.html" Hash="656b6a7a4567a03a72257e92bb6665c3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030102-001.html" Hash="c6bd0047850c41a129d3985551e2e9ab"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030102-002.html" Hash="32d800958d89a5930245580f802dd454"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030104-002.html" Hash="03698ea2ad9c6454bb1489d9ed681b1a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030104-004.html" Hash="d3c22fa9f89ed22bb46bb8fcaf56cdc0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030107-001.html" Hash="f34c6bba24898e22b2af6f4428c28073"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030107-002.html" Hash="e989891c042c4810dcdf10be33727f87"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030107-003.html" Hash="fe8ff3a1a7d90d29a1faf96c5f9f5644"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030109-001.html" Hash="24a9eb718e9e509a1e812e5ff83e9ed1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030109-002.html" Hash="99e5799b3a02b8ada4bc6600feee20be"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030112-001.html" Hash="3a6ac244a8909345f346ab7f29bfb299"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030113-001.html" Hash="efee6d12b823669707cb2ce1940a81ec"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030205-001.html" Hash="a174f0e9cf0edebc782970928c3e4ed0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030208-001.html" Hash="35faa0939b6c973da8be24bcd954dd03"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030209-001.html" Hash="bdb46aefe3dfd0dd9dbf8e467899799e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030210-001.html" Hash="0d32b8ca28c34e1512b76d4fedd58a95"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030212-001.html" Hash="0b889701e4463993bb8c741d34e86f74"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030212-002.html" Hash="fd022e5859a23f631ec8858fe42fe73e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030213-001.html" Hash="5d33b4be12b5d55cbb18767ff16af315"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030214-001.html" Hash="b23c0452e174064ccecf1f5d767af45c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030214-002.html" Hash="f50c1da7292125738e4fd394bc8de800"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030214-003.html" Hash="94090b8eff7e5588fad9437f21ac856e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030214-005.html" Hash="9d364b4ced910f7724ac0cbc5f61a7da"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030216-001.html" Hash="5ec61a21de901ed7a5c9ecff7325bd30"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030217-001.html" Hash="81623be069702b472b97e565296f1918"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030301-001.html" Hash="843ee2f58b7473448f53cf574b61c200"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030402-001.html" Hash="46eb8533caf16cbbc6e557459cf58400"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030402-002.html" Hash="b79090b70072ece98078941a1abe9248"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030402-003.html" Hash="726b864beab494b5395db1db8e50feb2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030403-001.html" Hash="d3ac901ec28b13335346b2290065e6db"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030403-002.html" Hash="7dfd2daf2da806fd38da16d578b97201"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030404-001.html" Hash="7cb3b8f799fee830e2feca23c4cdce45"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030404-002.html" Hash="98cfe2eb59b9631080333209cb85425a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030404-003.html" Hash="34b81bba30311cc2b657eb58b54ae8cf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030404-004.html" Hash="deb490dac058143c51d60f7594389dcb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030405-001.html" Hash="f0e6816fb5b8280e3cc3ef9f23eb89c1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030405-002.html" Hash="bd1ca4bbdc2eb9f71db3fb7e84177b74"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030406-001.html" Hash="f56e61ccb2c2a4c226ba4debe58c12fa"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030407-001.html" Hash="60c4818b0c1348e860132fcbea179529"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030407-002.html" Hash="f31a510e889ca9a39fe44a4d54625096"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030408-001.html" Hash="9e3e6b014cb6b82f20c2d3a68b03bfd5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030408-002.html" Hash="25b672b3611f1041a0fd2be75be4636a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030409-001.html" Hash="998baaeaebde17d205856ff92fc62de5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030409-002.html" Hash="351866400316b49e357f654778983957"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030410-001.html" Hash="97a56394b6064bb2cd3a547c323ee098"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030411-001.html" Hash="4c3f61db99595f37f47c5994d92aabfb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030411-002.html" Hash="6168a120844594233a09c003b2a44bd7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030412-001.html" Hash="fbdffc3d6464306c1d4835b0a6467421"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030412-002.html" Hash="dc22655cf5c13bbd1e0903d8eb77edfd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030412-003.html" Hash="3f3428d71a818997e6e40a2f96274d41"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030413-001.html" Hash="2dec6ea005ec3ea2f242b99639a66f50"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030413-002.html" Hash="7e5c00106b4b0a80b7d65abf06642903"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030413-003.html" Hash="924887e139c2785b3b48033eeefb1d9f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030413-004.html" Hash="60c0149257ed1553bd618ac0b43e4e98"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030413-005.html" Hash="faa6c88b7053a0f6e5bf20606922a370"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030413-006.html" Hash="e86badc9b66d46a05b57d7cff636c297"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030414-001.html" Hash="ec829e477df355f716c5f7c859fcd211"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030414-002.html" Hash="398a87835b389e86be0e4873f5eb25fd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030415-001.html" Hash="18478a0dbb158a0694c8182fbe1a3b42"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030417-001.html" Hash="a6d7543e291857dcd627700cfacf3c4b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030417-002.html" Hash="a886e4a59abdbc375dd0cbd3eaf8c402"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030418-001.html" Hash="47cef8fd8bf90b92cfbdc4331172bce6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030418-002.html" Hash="5c3745c6bbe02400a1ac52d0903afedb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030419-001.html" Hash="8309679904327790a6e35c2d34a4187b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030419-002.html" Hash="ee11bef2d9f6ecf8175841e521a0eda6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030420-001.html" Hash="3b091705bf4e41bc9c0df671758f43ce"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030421-001.html" Hash="51d640b9eb205b5c831efa50659596ee"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030421-002.html" Hash="a3b0026b10dc7d82715df0c1fa2f6618"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030422-001.html" Hash="aa52987cfa20a03820ec65f6eabfe687"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030422-002.html" Hash="b7849f28e353c9256db4e2b167217045"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030424-001.html" Hash="8c684f4eaa01840b5e0bb9124fdf6ac9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030424-002.html" Hash="2aa9cc34e3ea6925c9012d182f75c310"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030424-003.html" Hash="f75485d1985b6a726d2b6862856100c1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030425-001.html" Hash="e96fffc0371d6a2da0957b4fbc634deb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030430-001.html" Hash="f4015d28310f47afd289430c09adfaf7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030430-002.html" Hash="b974a0f8ee64b39103d361e33d04e27b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030431-001.html" Hash="6b15f6cb2c6852014fbe2f26322a0c19"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030431-002.html" Hash="4d50255dc022b28279be354b4e113b2c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030432-001.html" Hash="13ac155e1076c67f760e824ebdfbde3d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030432-002.html" Hash="7d2d306065fa6d7a489001f6cf76480a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030433-001.html" Hash="2e1f361d6d2e16d050c670c7fcc59a36"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030433-002.html" Hash="e66b5f49d5c11d189e3421c37430ac5d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030435-001.html" Hash="517865608350ea5558b199896ea3dabd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02030435-002.html" Hash="b64da8e089884ea748b466ef403adbe6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02040201-001.html" Hash="81c6d2b6199c76839bb5cbba4dbc13c3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02040202-001.html" Hash="884154e4138e506abe5e661e53782830"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02040203-001.html" Hash="f73fd0011fb7c0d43eef37150d7051dd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02040204-001.html" Hash="920048c6e92bb5852297aea243666070"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02040205-001.html" Hash="ef1450d069c971d6057713091a2ce87c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/02040206-001.html" Hash="0dff6e65356ee0ffdf7ec62b27a0072f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010402-001.html" Hash="07fde0ddb8a908f8bdb2785811c7e0ab"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010403-001.html" Hash="43682ca8cd79fbef84e8e3aec5cfbb52"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010406-003.html" Hash="41b673da33d99dc1168e4e9932d65c88"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010407-001.html" Hash="788b99ce815eef6e5c57efcf04e3b83f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010408-001.html" Hash="7f37e051cebc6afce4053ab05798f805"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010409-001.html" Hash="b7e505aba3acca71adb851181656ab08"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010411-001.html" Hash="54e1ab3a0451e4b370641f74ad8a6426"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010412-001.html" Hash="2a995fe3014a7cfba48221bafa263445"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010412-002.html" Hash="6f82b2c30217c14f49e7857374bda550"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010412-003.html" Hash="b633468b5c071e402756e0672af7176d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-002.html" Hash="1c5e2c4bf0eab51c0ff5b5c5da3edf1f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-003.html" Hash="f7488b7a2ea26aeedeb432e68ae63952"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-004.html" Hash="0d539029397de2c44cc191598fd07725"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-005.html" Hash="c19c6f9fc96b3fb62842ca786b7168a9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-006.html" Hash="080d669cb738dfe68e1e6a473e7de8d4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-007.html" Hash="9dd8d802af0fb8bc61644a6abcc91275"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-008.html" Hash="116559baadcb72cdc3cb87af3b6c3ea9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-009.html" Hash="44dbb6d6828c4b9dcd878472852bdb0a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-010.html" Hash="ceacb1e174d30a8224e9503f36e249b7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-011.html" Hash="b6d8ee5914fdf00b36c3f14177d9c301"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-012.html" Hash="af9dfb82643f314b163edbc3cdc7137d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010502-013.html" Hash="f3b4d29b5314ab047ced9aa9a5a0e80c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010503-002.html" Hash="58b1e27332bad9ff15b0a42cd03b2365"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010503-003.html" Hash="d755d626a3db19abd7ecbcdefb4f4335"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010503-004.html" Hash="f02cd91f987cb99d6c74e7468429f251"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010503-005.html" Hash="c34d554ee685035d8e8886485f7a4838"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03010503-007.html" Hash="1dd73b55cf0a098dde9204208ac3aef8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03040103-001.html" Hash="1f37852ae3e10273a0cf89531df85291"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03050103-001.html" Hash="8cc9287358facf130c95a01dbd1f942e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03050104-001.html" Hash="95599f07fd3ae58ff6e1544ec9151922"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03050202-001.html" Hash="26dcd369b0d54f0a70e940c15879c9b9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03060102-001.html" Hash="c1f0c64f206eaf3bc964d55afbf231f3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03070311-001.html" Hash="94ca03f64ca6915760838235b6a1040a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03070311-002.html" Hash="4e087228bafea7cb5072147326ac77c2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03070311-003.html" Hash="3f3d2219ac34eadfdaac129e35763c4f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03070314-001.html" Hash="2f421f2cd4332faeafa912ee63c9de86"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03090201-001.html" Hash="8e8b71c04fa42d92523f1d2ee4398667"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03090201-002.html" Hash="a4e787dd646ba6ad60a0a23ebdff157c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03090201-003.html" Hash="107a1b985afcdef102d8941da6b5a53d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03150203-002.html" Hash="53d0cf77ec4e885e9b5b44681e829259"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03180113-001.html" Hash="e25876c6d670a4dccab84a9906cc443c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03180113-002.html" Hash="5c4b2a1f56059ffe0da3932bcaed9471"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/03180113-003.html" Hash="96699e7e7f49d8686402752c0d30dcba"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020104-001.html" Hash="aeeba9b7e7a7cc55e7728ca9201962b0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020104-002.html" Hash="26fd876d90ab7fa027729b4c71da0499"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020702-001.html" Hash="b4e60924942d6677831d45d3f15388df"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020703-001.html" Hash="ba5dedf68a27c83ce03c68f2e543f999"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020703-003.html" Hash="aa665457ef4c07b699bd65acb029c884"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020705-001.html" Hash="bd61bf5f89dfdf05944f257319ccb212"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020705-002.html" Hash="365d5f1e90a81a7408cd135bb00b9761"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020705-005.html" Hash="2d2b80f02ab7470e7a14e30d684e4001"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020705-006.html" Hash="e1b4435178235b860ded7f2be9e7bcca"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020706-001.html" Hash="0b303ae5462e56e1262a8d79fcb7fb9d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020708-001.html" Hash="3589196f8c51882955af365926c74b4e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020708-002.html" Hash="519cdb6facf2f797e39a3b9c1c88debb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020708-003.html" Hash="e18de6a8ba3a5ee8ab6eab53a0f3806c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020708-004.html" Hash="d0a545446c65a7ff76b10f3a17acbe30"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020708-005.html" Hash="19d11b9ce3da97edcdfeef80b0d29715"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020708-006.html" Hash="17b09e41d0499edc125dc4215dc173c9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020709-001.html" Hash="f961f8aa144dc32e925d28b64dd3af13"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020710-001.html" Hash="4d4035c17d6edad02edbfd570f852ce0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020710-003.html" Hash="2a94748a3a87bc420c242d0e35af97c5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020711-001.html" Hash="95beba8a333a20ee473998d193f00a40"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020712-001.html" Hash="2878c937effa41d917e8572d74fb5e80"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020712-002.html" Hash="5a0fa3e7091326069b154a5281b908e6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020712-003.html" Hash="5c9636e0c83053628765e794207dd0ae"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020715-001.html" Hash="879cb56f728f20c374a0af8046beef2b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020717-001.html" Hash="51e41666b4cfbfca2ed9e3da7cf60a10"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020717-002.html" Hash="e8bcc6f674320bce4676f7bd26f0e466"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04020718-001.html" Hash="a8e78b5a49deb359db300f1c53e907f7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021102-001.html" Hash="1ac01988b531f9e0a5a29a6851e5c70b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021103-001.html" Hash="a8fb41e8d7908b4e32bd73d52b3f4c40"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021103-002.html" Hash="1d0eb59cecdc597caed7d931390a862e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021103-004.html" Hash="2e7942a32f3add60ecfb6f06fb2abdad"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021104-001.html" Hash="b2beea346efdf0dc94a89ebe83f43717"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021104-002.html" Hash="336559dcae9b32007e552e8ee859e768"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021104-003.html" Hash="c678760998d923945922c21c931fb80c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021104-004.html" Hash="62645eed00a94da24b788524380a2999"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021104-005.html" Hash="15002cfcc57368a3a0fb6c9b9e1a3795"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021104-006.html" Hash="2046175bb3c75093ef3c2cd4495497ac"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021104-007.html" Hash="dc8e17dace37fc35e0b884753d8e7fa6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021105-001.html" Hash="7f160b5f38b3f24a8cb8b15c849e6205"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021105-002.html" Hash="e1a77c7250bda46e67cb42914b0968b1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021105-003.html" Hash="c3133e9e7a3548fcb4e5881de84184e4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021105-004.html" Hash="d803ca63caad312cc908e484938879ab"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021105-005.html" Hash="ac7974ff92f8adbf24ded1784bb92b0f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021105-006.html" Hash="a66040072cbaae9086584c730855d336"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021106-001.html" Hash="b1a943268406a324dc5cdea0e67f671a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021106-002.html" Hash="d8771b281e69f5892704ec2aaef49933"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021106-003.html" Hash="71f6fa2b4cb7515588e2a8c0e52fc1f9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021106-004.html" Hash="fc9191d039ce7b3bcc8a742c61610335"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021106-005.html" Hash="eba7e036807145853a014fa260d0fb3c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021106-006.html" Hash="0e530ec815eebed47b1ae0721a97d2d7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021108-001.html" Hash="05b8e9f06c3cb54730a1b6ea81ffa92d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021111-001.html" Hash="633a67564e293ddbf3cd2baa0139f47d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021402-001.html" Hash="72d17a40b3011bbd664094bc5de8a4b7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04021402-002.html" Hash="b59a53c9737d1ef01e10763653df5028"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04030102-001.html" Hash="d631ec1c28917e7b7679fa832e446cbb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04030402-002.html" Hash="ec0d141623bc7eeb184ad5101d4b223b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04030402-003.html" Hash="79c4e3e9ec124cca785051394f2375a1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04030504-001.html" Hash="d616cc780646bae207ac64e6b614e38e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04030504-002.html" Hash="009aaa6131b19c53f6c937779d5200a1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04030702-003.html" Hash="3bc2a076953ebf436822bf9d26e1ed3a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04030802-003.html" Hash="1ab539d5e1f73bb1b01642425604190c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04030902-003.html" Hash="4e00e6bb16022c6a3cf9e696ccb28509"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04031003-001.html" Hash="d1e502781e1d122a190836f5c448128a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04031105-001.html" Hash="ba0a3da6f9d955b7d1989175cff58859"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04031204-001.html" Hash="e6367df4153f271f0cee1d9a8d749f81"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04031205-001.html" Hash="df02d28fbaa00ee8560171b843ce7c25"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04031305-001.html" Hash="c73c4e1a30c0cb1af278accbdc31bbe9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04031305-002.html" Hash="5ce779b3dd7efb14a1ce493ca8b3221f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04031305-003.html" Hash="08ba6e4fba820ebf88a2ace13017bf66"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04031402-001.html" Hash="aa048102e9e8bf7d4680bb031e013928"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04040103-001.html" Hash="465c93db42390742002be8697366e737"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04040103-002.html" Hash="10922f42b4bbedaec66b038ecec8a571"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04040103-003.html" Hash="ca259639f0ebdf933568dcb076b28b49"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04050104-001.html" Hash="edc8c0769ea53aa902c1354d53728006"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04050104-002.html" Hash="ee632fe376583247943e77c45ec31809"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04050104-003.html" Hash="6768e152b2eb2ff21459042b8b56f7d6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04050204-002.html" Hash="09b98cebb251a5a7eb94d4dd2eec43d6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04050204-005.html" Hash="94e7090950fccf53780f816c1838a6bc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/04050307-004.html" Hash="19b40eed58804a871e70864a81c340b0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06020102-001.html" Hash="40ce9d57d9c63839e2ab490a5da7da19"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06020102-002.html" Hash="ca331dcedcb1d29a0c14670e0be98a99"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06020102-003.html" Hash="bd72d9367f265d32620e2d7960a04ce3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06020103-001.html" Hash="1b3705a40f8932070104b928e8629f26"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06020103-002.html" Hash="59227956ac57f7259a5f120b4c285607"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06020104-001.html" Hash="1548bb5b0aeb8d34410c2584397ebc3c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06020105-002.html" Hash="91ecc2f31ccc7c27aa55f24458eb6b5b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06030101-001.html" Hash="ec805f68a2ee501594ac9e43e50ca2c2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06030102-001.html" Hash="33d1292afcb5b035fc2e91506f466fdd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06040101-001.html" Hash="b9b454508a4b29e818ab493fa2cc9241"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06040103-001.html" Hash="de9229e230c2e06f6dc09bae27f7e387"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06050102-001.html" Hash="ad40c3fe8c0225f02e2978783e77ee59"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06060109-001.html" Hash="5c162e0a17d9224b573f480e54f66454"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06080102-001.html" Hash="793bfa910ea882d8227318e87248a407"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06080102-002.html" Hash="111b44a6ff87689d55a1b37e47f1c8fa"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/06090103-001.html" Hash="c992ed51eb3178fc9fc478744bb53385"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/07031801-001.html" Hash="1c22c3ee69db2285fe142b2b1ac151c3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/07080202-001.html" Hash="cf34939a3942149e04a85611cc1a3001"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/07080204-001.html" Hash="3ccaff4e0ad00c2f14a8150471c2e3cd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/07080204-002.html" Hash="a00147fbb1d3ba4c83875f3f2baf9fb4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/07080302-001.html" Hash="b6c3a18b42d35ce1d8d91dfe69d2cf0f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/07080401-001.html" Hash="938ba47a8a8a6859b2fa502764a64063"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/07080401-002.html" Hash="e7e60ffc9ad35bd0d30627638ddf60b3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/07080502-001.html" Hash="d541fc9bac3d7b4064567f11065fab2a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/08040314-001.html" Hash="fd98e9160cdb115a22fe65027bf3e57c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/11050201-001.html" Hash="913a9d36872fcee8cee2371cc992aaf5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/12020303-001.html" Hash="b214f15e90999d74d949d21f2952add0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/12021004-002.html" Hash="5fbc0e3a5f8bf2da9269c5635f5c09b8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/12021004-003.html" Hash="9ed4bea3a3b2cfb006b2d546d381db7b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/12021005-001.html" Hash="087cded96561a80ab4e683386249fc6e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/12021006-001.html" Hash="bad9f21149d4d2bd5b0f8b9118385830"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/12021010-001.html" Hash="6dcfeb2576b4eceb801410495ff3abf0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/12021011-001.html" Hash="adf4b1fe1beafbeb93fb5893c33c0cdc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/12021011-004.html" Hash="1b64e0c2529ae476b3776bbb5ea4653b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/12021011-005.html" Hash="ae51d365e1d3e2c5f4796602f03ac8cb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/12021014-001.html" Hash="a2a36e5bce8ad4179c2c23fac76043c5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/12021018-001.html" Hash="9210346d75705aaa0aff79b559daf518"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/13051401-002.html" Hash="e6f3c703762b3035c71be643a0776a49"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/13051403-001.html" Hash="7eaa1ded3ea01aa836684490f2229f5a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/13051405-001.html" Hash="e4d14ce0b5cf6ff46d15c1554437f131"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/13051717-001.html" Hash="38efd55f456f34ad1050caf27754365a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/13051717-002.html" Hash="d2183ba43cc99a71d6ebba0be73b4ae8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/Build/models.data" Hash="b10f13180798ae4014f7c65d9eb27e89"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/Build/models.framework.js" Hash="e4d5a83dd8d78101d7bc94a50848c9ec"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/Build/models.jpg" Hash="d777076b38b1f08b8978f84cc46792aa"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/Build/models.loader.js" Hash="be5c8a837410560f3ca8989808c21df4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/Build/models.wasm" Hash="a6f060395e34d644020925c4679ec27c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/index.html" Hash="a213c318ab2fbdcfc783dbe2ba1f28eb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Objects/Objects.xml" Hash="aabe39e7bfd68141113570873f6aca33"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01020107-001.xml" Hash="f53cc08aa46381f60a7b8ff57f6d31ca"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01020107-002.xml" Hash="190fe91cc016aafae86f2f160bb1a131"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01020107-003.xml" Hash="5eaaf84f81329ff8a9cc966e68918adc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030110-001.xml" Hash="fb5f3186ec3f4a145c17bc58566d880a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030114-001.xml" Hash="90c4ceea9299d53bf31bc9aedba83b04"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030114-002.xml" Hash="498319b3266c7364b62f7cef359ffb26"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030115-001.xml" Hash="82fb3530a5666c8e5df9498544bac4ac"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030115-002.xml" Hash="3310a8b1209c56cc64f4b30f805106e3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030115-003.xml" Hash="9204b1cd53c3a9eb0aa66f7e2a4eec63"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030115-004.xml" Hash="3f37bd25bcdb42352555955ec7dbab4c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030115-005.xml" Hash="57bb582364d0e094f53d2c988bcb4659"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030116-001.xml" Hash="06e1055c49f5837812be247e63f0351e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030116-002.xml" Hash="03de8a71e2438cd0c5430bd6684a660e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030117-001.xml" Hash="d7b6bbff1ff02cb66595076525f5c4d3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030117-002.xml" Hash="57f060458ef5214e7c8f7c0b0317910f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030118-001.xml" Hash="4aaeb5a1c8884002cf6b00eb643690ea"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030118-002.xml" Hash="8f7fa80af46cdce8f65445240c2e0231"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030118-003.xml" Hash="faead220dc29534abf3fc3da182d6026"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030118-004.xml" Hash="1c95bb6b0ef34edc114dae99d9fb7bee"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030119-001.xml" Hash="043a2ada929db5bf0b78ad6535cef55d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030206-001.xml" Hash="9ed1e943b71afe03d204a8f13df723a2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030206-002.xml" Hash="aacf22ee3573cb3d83055d74059d828f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030206-003.xml" Hash="010fd114d90077442b9cce411d360f74"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030206-004.xml" Hash="61796c6f991d4442c3c6b95f2bd23140"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030210-001.xml" Hash="6d4f04af742b49329c7a08ec6d210044"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030314-001.xml" Hash="0550ac2ac7f495cf72273247e83ae14c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030314-002.xml" Hash="9ba06c3494b73e3e54779e6d88620a69"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030314-003.xml" Hash="03addfb5f1d3f0cd5e980e17e8d873d1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030314-004.xml" Hash="576edeeef1287d8b7959010b7fcfb496"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030314-005.xml" Hash="79126169290896b366b7da7e9c97f09d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030314-006.xml" Hash="f99d6a604458329574fa7580f463703d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030314-007.xml" Hash="3be235e5122752ea71f978d4e7f7e37c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030314-008.xml" Hash="6e1c509aa53c7558d0e9ce7e1b4f400d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030314-009.xml" Hash="310311be61609f379cdf551d146af357"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030525-001.xml" Hash="d6598128ca78a69e3a1fe40b3d4f57bb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030525-002.xml" Hash="3ca8e55e3e0b97e00860d681e90a977b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030528-001.xml" Hash="a6f68f6ef9c11de6a6a82f7983b4f3ed"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030528-002.xml" Hash="9d07c9081a7b5d5f5b507062d051d60e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030528-003.xml" Hash="6bb3bca3721b6f99b1066f0687e0a913"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030528-005.xml" Hash="b00767e6298324256fee266e3ba5bfa4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030528-006.xml" Hash="c7e24692444e86724528bee797c0a818"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/01030528-007.xml" Hash="d181905287ea841d48060933e31e7bad"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030102-001.xml" Hash="c0cdaea833e46d5b14f9c1a8b8ce7009"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030102-002.xml" Hash="d50e2de284ae5791f8a212b8f7527b2f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030104-002.xml" Hash="fafbfe660f86df0f0c1df5ab68e8a3c2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030104-004.xml" Hash="535beaf086b28a6d175341a6ea9baf2e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030107-001.xml" Hash="80f926bace1a76d8e301119cbb943597"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030107-002.xml" Hash="969e0f2fc1bd8277c1d32b574c5841b6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030107-003.xml" Hash="40522dbec38c24c415a73b99071f52b1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030109-001.xml" Hash="87fc3fbfecdfaaf718d14050551fa79a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030109-002.xml" Hash="d09805b59ae9a0ca0e2fe19a825f897e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030112-001.xml" Hash="8bad68432d847f7ad1e8b562b74fbb06"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030113-001.xml" Hash="d2d84a28bff46098e4e8bb9de65aa6f3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030205-001.xml" Hash="980b8a690cd528f4df754bb6737aa44f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030208-001.xml" Hash="f4c1e3678634b15b77dcb68cebb3b4db"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030209-001.xml" Hash="2687f99bdce09dddbfccaf75d559e07b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030210-001.xml" Hash="7ff61f96fc677eba795bb9383eca9861"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030212-001.xml" Hash="a00e1d47eb5ddbf50cd5befe2eae5221"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030212-002.xml" Hash="33a8ceb86d62de7178199db58878d792"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030213-001.xml" Hash="344bf4a6c3695d553ed312f18fb387d0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030214-001.xml" Hash="5698f59834618d3dfb14bd9ce04bdd94"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030214-002.xml" Hash="edeb912c5a03956da128f10a87d0698d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030214-003.xml" Hash="586020ee33a7135f2117fd906aa6b9e3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030214-005.xml" Hash="604e58142b14c75e323aadef938a2122"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030216-001.xml" Hash="7644682823bfb4c23573d6c43f0cecc0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030217-001.xml" Hash="014fc387216e11266f44c424928a1a0c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030301-001.xml" Hash="c684ac10fa56420829f106ee5b4bd5cc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030402-001.xml" Hash="1174a9a17ef1f7bb4a7680b20bf5cf4a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030402-002.xml" Hash="3116314970f82b22c51bdf9c14a43a68"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030402-003.xml" Hash="76bb00d12bde2ee73714553b734e2333"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030403-001.xml" Hash="0a93ef567fd63b4454f7238552cf29b5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030403-002.xml" Hash="2d71a14974a19e9799dd1ff272b97e89"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030404-001.xml" Hash="ba34064073e493cd1f993be7683a5203"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030404-002.xml" Hash="a2dd1523c4c26cbedfa1518e5591dcb1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030404-003.xml" Hash="d2eab180f8d9bfd488b11a6ebaebed80"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030404-004.xml" Hash="c85ed5bcaf61578fbbf188e0d4baf60a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030405-001.xml" Hash="ed6a8b0a231683965114ba46c783ba79"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030405-002.xml" Hash="d38abba03c7f0d31002c034fbff957cb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030406-001.xml" Hash="74fdd2b3ab642a3ae3aafe008b928626"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030407-001.xml" Hash="37aeb13b41f9987050ef5b41acae352e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030407-002.xml" Hash="a9f14a985015fefc8e5f789c3986d198"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030408-001.xml" Hash="e19a0864e1ef5d2ee36368a9b8602ff1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030408-002.xml" Hash="bb31802d3e3b7df60c365dfbf84d5f93"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030409-001.xml" Hash="6f0a7a5159a7567e5978423d7c17a61d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030409-002.xml" Hash="1b80647ccc5fe635f752738f990e3a07"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030410-001.xml" Hash="961bb507771701edf7cc62a2d42db5f0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030411-001.xml" Hash="9037edeaf2e190769816b8294832ce13"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030411-002.xml" Hash="4553b77d405d507f3db93f9b5e6940ab"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030412-001.xml" Hash="64322a93b82f357f91d1607ed8581b71"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030412-002.xml" Hash="bc807a805520533ea1d8327018d6fe25"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030412-003.xml" Hash="ac6fe5a0bdb777691a62506c1d69ad38"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030413-001.xml" Hash="a0c382e6e0de788eef46ba0c0f157ed5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030413-002.xml" Hash="178bf6c0b1d2588ded9d2c5288acbf1d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030413-003.xml" Hash="d8453db797048ef2542af790bc260d6a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030413-004.xml" Hash="69b5d0040e0243a8377797c77e7cc77d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030413-005.xml" Hash="e380b31dace62eb6c623acc31c4c8043"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030413-006.xml" Hash="a0f7bc4437b08c63f26e955733b970b4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030414-001.xml" Hash="0f72277e7c206cf22ac88e98b23a1f34"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030414-002.xml" Hash="a898933983a2bdab3ec04f886ac7d084"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030415-001.xml" Hash="0d48778b742d12bda9f64d13c7b94a2b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030417-001.xml" Hash="ec8ff8212c846c9a93db2f7168473364"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030417-002.xml" Hash="3697589442473788a1757a25fede6fd6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030418-001.xml" Hash="a83c32ccbcca9381c9c983f49618dbe3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030418-002.xml" Hash="b512bf27c6d2609ad7a4ac3744c5a30c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030419-001.xml" Hash="bdf9f492ee02cc3de8c2cd48e7d9602e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030419-002.xml" Hash="caced693dd113954f3d500e64f474349"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030420-001.xml" Hash="323845baaa2e23c53afb55bc34a53ea8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030421-001.xml" Hash="5980964a89cb720e8c641ece306d9f0c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030421-002.xml" Hash="023096f474f4699683fbfe45e1dfa404"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030422-001.xml" Hash="8039d05a8bf6b81c829f54df0747abbb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030422-002.xml" Hash="5273cd4389171a307a8b1ca66ef2e084"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030424-001.xml" Hash="69354e1251d946d2199f48722df00eb2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030424-002.xml" Hash="40a51f5bac0cd8ff2d6e7ddd9ee30060"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030424-003.xml" Hash="ac0a7d3c415a8b045b841085a74d8933"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030425-001.xml" Hash="357095a14172f6e26ab50d7c82024dbc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030430-001.xml" Hash="dd5d9abebbc353c6c2ffc1898cb03270"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030430-002.xml" Hash="a02c277c04e3acfa30843ab665ee036b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030431-001.xml" Hash="11f8ee5e67efcef8d4efd243eb0445b1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030431-002.xml" Hash="51b9dbd0a93c35fcb94fbdab80dd5bca"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030432-001.xml" Hash="3f635289f4ea22292c733f9869986e1a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030432-002.xml" Hash="a42fb303174687b50e9b5e4689d4cfee"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030433-001.xml" Hash="c6dce58b079dd93d9022b5f877fcdf5a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030433-002.xml" Hash="e303c6eeb1886904869d1150162f3d31"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030435-001.xml" Hash="a6b10fd12629607e7e02f7d460759db3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02030435-002.xml" Hash="5bc98418e8294b8c16ee6fac49819788"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02040201-001.xml" Hash="199adca520aa0f68ceeeb5043c2d094e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02040202-001.xml" Hash="2b69ca8a9eb4d759f7324b5c9721f930"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02040203-001.xml" Hash="48667f426c3f031d081c168adf4539e7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02040204-001.xml" Hash="96eb2ab9c2876612a18adee48c487905"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02040205-001.xml" Hash="b28d2ab7fb54ac19a3e322a4e1e0500c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/02040206-001.xml" Hash="8d440ee946e3145d9aea5c7b8ab6c463"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010402-001.xml" Hash="0fbe9f5266dd3e19f527a583cebe4867"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010403-001.xml" Hash="52a9df1fd0949e8646ae878840d49b44"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010406-003.xml" Hash="cf49c65596e30b9c1f102b75de318451"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010407-001.xml" Hash="458efc9d02a6a14ef91f43136db9fd0f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010408-001.xml" Hash="0cc5d106a1d9acd3cda511cba1ae30ca"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010409-001.xml" Hash="3d092d9cd461a025651be8f5dd72daed"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010411-001.xml" Hash="7a1f028eb7a560e3a49b2e5811916eaf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010412-001.xml" Hash="763e28eaaaebc90d1218e9b60ff77656"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010412-002.xml" Hash="85778d87e8b3c54e233b712297ca2679"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010412-003.xml" Hash="1efac0922b9c6d836161e7516d76af26"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-002.xml" Hash="1b63271d3aa1a1980cf7bfbb0167dd26"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-003.xml" Hash="5b093a07cf5cc3506ab345049eabe9b3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-004.xml" Hash="693dc341d282f8dd6d3920eaca740c1d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-005.xml" Hash="6aa5094ddfd0c94cb0cbd1692a7ec12e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-006.xml" Hash="669d10c90254788a798e22c7cff55d40"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-007.xml" Hash="eab17e7156a8c49d0e701d06af717ccf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-008.xml" Hash="a014be337449df54bbdcc40603356aac"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-009.xml" Hash="ee8ae3302eac9d8a59bba62e19f16914"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-010.xml" Hash="fe906c4a36beb80462265cb74a4d918a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-011.xml" Hash="f67832eaf439ba46e125bc8ef7c47099"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-012.xml" Hash="835d9bb5620738a5acd4390fade6f6dd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010502-013.xml" Hash="f1ffcd2dcf043c26ff50fea253f06729"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010503-002.xml" Hash="99897eeebe331afb4b7101b9ff72310d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010503-003.xml" Hash="dfa14f8f4a812f8e9629489c4f5d88cc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010503-004.xml" Hash="afc50c230dad957347f821fd65247f8d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010503-005.xml" Hash="a3cf81b9985956def144a04305f01b2c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03010503-007.xml" Hash="5ac134c898690aa406e3ede0f59b8c38"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03040103-001.xml" Hash="0a8d3a8ac1e1b0f3b81fabe4d9b4d6cf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03050103-001.xml" Hash="aa5d75eaf1e17ca05a47eb280d0bd4c9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03050104-001.xml" Hash="aad49b39830c4854d514d24158891de6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03050202-001.xml" Hash="735d327116ef1ce5913363b49a7a192f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03060102-001.xml" Hash="38bc366deba35eb905dbb88b4b8bc762"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03070311-001.xml" Hash="7271bfe3e8cf3c8a658391e801ef29ed"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03070311-002.xml" Hash="115d41d6370c2f0cf491f471f63c666b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03070311-003.xml" Hash="9b6e9b87562100ef8adba358d60a0eb6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03070314-001.xml" Hash="7286ca3746a9b97d767395d7dd825858"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03090201-001.xml" Hash="35a7c9aab8091bf4fbf0b019e3f79635"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03090201-002.xml" Hash="a79c9e800a2b41780916c585e8b9a160"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03090201-003.xml" Hash="223f94f6b80e98e503eaf285f7878cc5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03150203-002.xml" Hash="62e9d93ced24f110fa006824f1a3cd65"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03180113-001.xml" Hash="ac177fb92679bb63dfa8d56a58d40a04"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03180113-002.xml" Hash="295dcf45c1f9728167c23a30d6744143"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/03180113-003.xml" Hash="aaba605cb98fa51b4669b81d39912845"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020104-001.xml" Hash="f063538ece8a4b4115eeb19238cb75fa"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020104-002.xml" Hash="461c7527435832a650e86603ebd6d9d1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020702-001.xml" Hash="ee703820d305c0323c9d4e377cbb4866"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020703-001.xml" Hash="e045d9f3022ce73f955b210283bd568a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020703-003.xml" Hash="dd743988bd7aace8e6f9a1bd5d9af555"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020705-001.xml" Hash="33bb032deb37b44b95f3486e2ce8e466"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020705-002.xml" Hash="3dcfaeef2cb44ad9688b7250191a5860"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020705-005.xml" Hash="b78a83d0c2d0b9b2416559e513bf0062"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020705-006.xml" Hash="1e3c3d340a5a7861f1fdae4add2be3ed"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020706-001.xml" Hash="7271324afb56664ddf9c17aa31978444"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020708-001.xml" Hash="8efc92bf1d60b244c2c90b4d93b7fd67"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020708-002.xml" Hash="a2f5686dde2e51681c9d5e34e126b6f0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020708-003.xml" Hash="3d7112f5f8598a58292bce1f3956b347"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020708-004.xml" Hash="9b67448dbaeb99136d2144431f0d825d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020708-005.xml" Hash="6f48b534e4eb2025a45cf7f61d327df7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020708-006.xml" Hash="42f7e5e1ddee4ece8e408f6c85c73c6f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020709-001.xml" Hash="86ce7ab3bb47d949df8de497b0239df2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020710-001.xml" Hash="14e22fab05476777ec38c81e9c889fd2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020710-003.xml" Hash="4632f17e43bf0825fb7f22a1523c8579"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020711-001.xml" Hash="95a8f76dc958b15e26cb85984a90c7a5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020712-001.xml" Hash="ccb13b723a1f08f890e9c8688b11e67c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020712-002.xml" Hash="fe736de26cfb7633a9822e50b6ecc15e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020712-003.xml" Hash="146acf8985930096be933d85bc22ca3f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020715-001.xml" Hash="f52aeccf150d7191e85c814aa5d70961"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020717-001.xml" Hash="8620be77ea969fea388a1a90249cddb5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020717-002.xml" Hash="f8ad7d1b4be0d3fc8428d160faa4d9ed"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04020718-001.xml" Hash="917b7ed29c30d4596e1edd88d3363d9d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021102-001.xml" Hash="78a873aaa243cfc9d331bab5269c6c90"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021103-001.xml" Hash="72ee7a1c2d4282f9acd85d684ab3d82f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021103-002.xml" Hash="7253cbde804350fd148ef928d014d632"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021103-004.xml" Hash="8223e3d4feb0badcb557d610abea2247"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021104-001.xml" Hash="fbbec4eced50b41e0cb4c430a3f6df1c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021104-002.xml" Hash="6d800baba9d77bd89dc5711136458fd7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021104-003.xml" Hash="40cf1a9e6cd6bbe1c85fd1fb4c1b6f7b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021104-004.xml" Hash="a351af8d47d7e5e0b8de09ad1d400425"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021104-005.xml" Hash="5b418827b3304ee5559eb0689c048cd1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021104-006.xml" Hash="63673cc0e3423d9867e9b856079f2a1b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021104-007.xml" Hash="1607696d83cc34d96cc666ff96b43543"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021105-001.xml" Hash="b541d385405e50ebeba352dc6b6c9e49"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021105-002.xml" Hash="75d5ccdfd046b56ae243d1a3a6d3a4ce"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021105-003.xml" Hash="d2046fb7f9b956943077bea8d1201344"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021105-004.xml" Hash="aa4642ffb2f2d75017c57ba758a7251d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021105-005.xml" Hash="ab572135f763dcb95bee0434fee90879"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021105-006.xml" Hash="4b110c9251e8a3050f47edf72d0df1c9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021106-001.xml" Hash="02021bae22f73aed5e9a94519a19bb16"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021106-002.xml" Hash="f5f87da4a7f4cfe3340b6ba42d51207e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021106-003.xml" Hash="c3426e6b5b501a735477a90a5f4ba2ea"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021106-004.xml" Hash="1cc4f4bdb7e73437c4a6f647c9b0c4f5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021106-005.xml" Hash="a540cbfb831a73a2baa48cc5a8b2849d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021106-006.xml" Hash="ad8f73a4a39e310e3c26d3757ed2bb0b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021108-001.xml" Hash="799d3f5e53fca36f7132784afe1039bf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021111-001.xml" Hash="5256f837a9292938c05169dd58367cd8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021402-001.xml" Hash="914ac47e6def831863e4238b06f6182f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04021402-002.xml" Hash="c104ebaad37da88afc413a4f2566490f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04030102-001.xml" Hash="f51b531095274f7d26e4fd586adca466"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04030402-002.xml" Hash="e607be8089927bdec540e32a4e93820a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04030402-003.xml" Hash="e1c270e17e9ab08bbad823d994c32527"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04030504-001.xml" Hash="38857fa45c086c6c4a747796138b4940"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04030504-002.xml" Hash="2d27c14254469c12633986449cff9612"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04030702-003.xml" Hash="4b0c0467dbb294b376345eb6114bfc6c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04030802-003.xml" Hash="ee6a4ec11329d847a6ab9448df7a48a8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04030902-003.xml" Hash="c973847af41397d612afceeb662d048c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04031003-001.xml" Hash="0db98b30fc6d84f11c6d91f220671880"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04031105-001.xml" Hash="3f722f7621ece4fecafbec12d339e60e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04031204-001.xml" Hash="51c16453cee8c4d0baefa3e38a8e5e08"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04031205-001.xml" Hash="2d5a529c3c1d6b6040d422de83672cd6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04031305-001.xml" Hash="ac177fb92679bb63dfa8d56a58d40a04"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04031305-002.xml" Hash="295dcf45c1f9728167c23a30d6744143"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04031305-003.xml" Hash="489675dfc84b195305bf6b0cb295ef2c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04031402-001.xml" Hash="a5937287bf15db2e6bb5253b423b6a51"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04040103-001.xml" Hash="d7f7b537a320560788224e314c64713c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04040103-002.xml" Hash="52d27835bc22545e77263545259792e9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04040103-003.xml" Hash="59a6a7e582c45e899074c43f74761e21"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04050104-001.xml" Hash="d13cf774885e0cd38f323525f824fe7c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04050104-002.xml" Hash="8a77a96acb6a1bdec5d484588013518d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04050104-003.xml" Hash="bf5050959a388f5b4969160e2ecb175c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04050204-002.xml" Hash="38101e6825585cc7ba0c8a197ca37f20"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04050204-005.xml" Hash="619f74f21b9716e41e98a5695eb26f52"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/04050307-004.xml" Hash="c740951b5b2414265afdedb07cac0d44"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06020102-001.xml" Hash="b553d3358d0a4a2ccefd3a2cb062cdd5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06020102-002.xml" Hash="a789bc89b20022030c54acd9d68bd4df"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06020102-003.xml" Hash="5fc63bc0d6f6181740116e71447dcfbd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06020103-001.xml" Hash="6a242f0558a7fe7a529c755f78ff2271"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06020103-002.xml" Hash="062c8d0c07c5596df5c663830d4a09c3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06020104-001.xml" Hash="2cdb6524be4e0eb5aaf1f9681a36d499"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06020105-002.xml" Hash="a1e0f3d7ae2b8e83a87c3246667e45d5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06030101-001.xml" Hash="48bebcc72d74c06998e0a35aec90c401"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06030102-001.xml" Hash="a126d55b1b78b6521d42c2c461a2c205"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06040101-001.xml" Hash="aa70dfd88b437bf0f4eeb980fba124ce"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06040103-001.xml" Hash="c091a7067322c76c5eea877578f7f5d5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06050102-001.xml" Hash="06ceafc2a69069433875457939066a91"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06060109-001.xml" Hash="1f876e34a6f702f90c321de07b4272f0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06080102-001.xml" Hash="f822fd3f3ac8d6bf79dbf8143c3bbe58"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06080102-002.xml" Hash="8b3d7646f713606b1d9d186314520a26"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/06090103-001.xml" Hash="c46b026b15b60a39fcfc77237c147f63"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/07031801-001.xml" Hash="c73f915d85592e79abb15a70660b7745"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/07080202-001.xml" Hash="d7f467d3cf46d6f4c6c2257c7f783416"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/07080204-001.xml" Hash="0ab95dc7ca02a7c438c17fbbfa58beba"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/07080204-002.xml" Hash="e1d1df22ca0516e14fb33ae1780962fc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/07080302-001.xml" Hash="4bb2328c120f9074d2153a46fcab3c43"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/07080401-001.xml" Hash="b4170596f788791cdc9ab0abefb9ff00"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/07080401-002.xml" Hash="0c650a58842f834b9318d62262738457"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/07080502-001.xml" Hash="d8ec8a38d47e15b79da07da4edee7473"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/08040314-001.xml" Hash="e2ca1af2a7b51f3e654ca8d20c93b8a7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/11050201-001.xml" Hash="961e900ec31e2bdf15405bd7d691db0f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/12020303-001.xml" Hash="e2ca1af2a7b51f3e654ca8d20c93b8a7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/12021004-002.xml" Hash="dc525f5be49a400943b0fc5d1e9e8e04"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/12021004-003.xml" Hash="603cfcb7739c056a57225e61e8caa050"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/12021005-001.xml" Hash="6f48b534e4eb2025a45cf7f61d327df7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/12021006-001.xml" Hash="14e22fab05476777ec38c81e9c889fd2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/12021010-001.xml" Hash="d30a5701171aa3172c8307052c75150a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/12021011-001.xml" Hash="3dcfaeef2cb44ad9688b7250191a5860"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/12021011-004.xml" Hash="b78a83d0c2d0b9b2416559e513bf0062"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/12021011-005.xml" Hash="1e3c3d340a5a7861f1fdae4add2be3ed"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/12021014-001.xml" Hash="86ce7ab3bb47d949df8de497b0239df2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/12021018-001.xml" Hash="917b7ed29c30d4596e1edd88d3363d9d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/13051401-002.xml" Hash="fda84b4936f0eed551b58e89f79d34d9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/13051403-001.xml" Hash="5b6e1f19c9778ae237816bc9b3501b04"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/13051405-001.xml" Hash="bc5899f4dedc7e940270a8b96f0100bd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/13051717-001.xml" Hash="eef6e9a3eaadac3fa39efd64feb0d619"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/StreamingAssets/Scenario/13051717-002.xml" Hash="615736ceef667747473a6152557c6c6b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData/favicon.ico" Hash="57b5a31d2566cf227c47819eb3e5acfa"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData/fullscreen-button.png" Hash="489a5a9723567d8368c9810cde3dc098"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData/logo.png" Hash="c09db2e9923582f923e3af20178c45d0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData/progress-bar-empty-dark.png" Hash="781ae0583f8c2398925ecedfa04b62df"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData/progress-bar-empty-light.png" Hash="2789c25428af99e60c6733254b52d7a3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData/progress-bar-full-dark.png" Hash="99949a10dbeffcdf39821336aa11b3e0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData/progress-bar-full-light.png" Hash="fcda192672329e164ed4ccad922590fa"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData/style.css" Hash="bc9b71bad45bcbbeffc6d1e20cfba58d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData/unity-logo-dark.png" Hash="59fa0334e801c9d8fe14af70400ee200"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData/unity-logo-light.png" Hash="3c8bc23981828d69f857a5feafc1b699"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/modelsConverter/TemplateData/webgl-logo.png" Hash="ddd95c65824da6c6223f48b961a583e4"/>
<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"/>
</FileDataList>

View File

@@ -1,2 +1,2 @@
<?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.

BIN
debug/hashcomparer.o Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -22,8 +22,8 @@ QT_BEGIN_MOC_NAMESPACE
QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED
struct qt_meta_stringdata_UpdateController_t {
QByteArrayData data[1];
char stringdata0[17];
QByteArrayData data[4];
char stringdata0[41];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
@@ -32,10 +32,14 @@ struct qt_meta_stringdata_UpdateController_t {
)
static const qt_meta_stringdata_UpdateController_t qt_meta_stringdata_UpdateController = {
{
QT_MOC_LITERAL(0, 0, 16) // "UpdateController"
QT_MOC_LITERAL(0, 0, 16), // "UpdateController"
QT_MOC_LITERAL(1, 17, 17), // "sigUpdateComplete"
QT_MOC_LITERAL(2, 35, 0), // ""
QT_MOC_LITERAL(3, 36, 4) // "flag"
},
"UpdateController"
"UpdateController\0sigUpdateComplete\0\0"
"flag"
};
#undef QT_MOC_LITERAL
@@ -45,22 +49,41 @@ static const uint qt_meta_data_UpdateController[] = {
8, // revision
0, // classname
0, 0, // classinfo
0, 0, // methods
1, 14, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
0, // signalCount
1, // signalCount
// signals: name, argc, parameters, tag, flags
1, 1, 19, 2, 0x06 /* Public */,
// signals: parameters
QMetaType::Void, QMetaType::Bool, 3,
0 // eod
};
void UpdateController::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
Q_UNUSED(_o);
Q_UNUSED(_id);
Q_UNUSED(_c);
Q_UNUSED(_a);
if (_c == QMetaObject::InvokeMetaMethod) {
auto *_t = static_cast<UpdateController *>(_o);
Q_UNUSED(_t)
switch (_id) {
case 0: _t->sigUpdateComplete((*reinterpret_cast< bool(*)>(_a[1]))); break;
default: ;
}
} else if (_c == QMetaObject::IndexOfMethod) {
int *result = reinterpret_cast<int *>(_a[0]);
{
using _t = void (UpdateController::*)(bool );
if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&UpdateController::sigUpdateComplete)) {
*result = 0;
return;
}
}
}
}
QT_INIT_METAOBJECT const QMetaObject UpdateController::staticMetaObject = { {
@@ -89,7 +112,25 @@ void *UpdateController::qt_metacast(const char *_clname)
int UpdateController::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QObject::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
if (_c == QMetaObject::InvokeMetaMethod) {
if (_id < 1)
qt_static_metacall(this, _c, _id, _a);
_id -= 1;
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
if (_id < 1)
*reinterpret_cast<int*>(_a[0]) = -1;
_id -= 1;
}
return _id;
}
// SIGNAL 0
void UpdateController::sigUpdateComplete(bool _t1)
{
void *_a[] = { nullptr, const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t1))) };
QMetaObject::activate(this, &staticMetaObject, 0, _a);
}
QT_WARNING_POP
QT_END_MOC_NAMESPACE

Binary file not shown.

Binary file not shown.

Binary file not shown.

134
debug/moc_hashcomparer.cpp Normal file
View File

@@ -0,0 +1,134 @@
/****************************************************************************
** Meta object code from reading C++ file 'hashcomparer.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.14.2)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include <memory>
#include "../Core/hashcomparer.h"
#include <QtCore/qbytearray.h>
#include <QtCore/qmetatype.h>
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'hashcomparer.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 67
#error "This file was generated using the moc from 5.14.2. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED
struct qt_meta_stringdata_HashComparer_t {
QByteArrayData data[3];
char stringdata0[27];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
qptrdiff(offsetof(qt_meta_stringdata_HashComparer_t, stringdata0) + ofs \
- idx * sizeof(QByteArrayData)) \
)
static const qt_meta_stringdata_HashComparer_t qt_meta_stringdata_HashComparer = {
{
QT_MOC_LITERAL(0, 0, 12), // "HashComparer"
QT_MOC_LITERAL(1, 13, 12), // "sigCallCheck"
QT_MOC_LITERAL(2, 26, 0) // ""
},
"HashComparer\0sigCallCheck\0"
};
#undef QT_MOC_LITERAL
static const uint qt_meta_data_HashComparer[] = {
// content:
8, // revision
0, // classname
0, 0, // classinfo
1, 14, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
1, // signalCount
// signals: name, argc, parameters, tag, flags
1, 0, 19, 2, 0x06 /* Public */,
// signals: parameters
QMetaType::Void,
0 // eod
};
void HashComparer::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
if (_c == QMetaObject::InvokeMetaMethod) {
auto *_t = static_cast<HashComparer *>(_o);
Q_UNUSED(_t)
switch (_id) {
case 0: _t->sigCallCheck(); break;
default: ;
}
} else if (_c == QMetaObject::IndexOfMethod) {
int *result = reinterpret_cast<int *>(_a[0]);
{
using _t = void (HashComparer::*)();
if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&HashComparer::sigCallCheck)) {
*result = 0;
return;
}
}
}
Q_UNUSED(_a);
}
QT_INIT_METAOBJECT const QMetaObject HashComparer::staticMetaObject = { {
QMetaObject::SuperData::link<QObject::staticMetaObject>(),
qt_meta_stringdata_HashComparer.data,
qt_meta_data_HashComparer,
qt_static_metacall,
nullptr,
nullptr
} };
const QMetaObject *HashComparer::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
}
void *HashComparer::qt_metacast(const char *_clname)
{
if (!_clname) return nullptr;
if (!strcmp(_clname, qt_meta_stringdata_HashComparer.stringdata0))
return static_cast<void*>(this);
return QObject::qt_metacast(_clname);
}
int HashComparer::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QObject::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
if (_c == QMetaObject::InvokeMetaMethod) {
if (_id < 1)
qt_static_metacall(this, _c, _id, _a);
_id -= 1;
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
if (_id < 1)
*reinterpret_cast<int*>(_a[0]) = -1;
_id -= 1;
}
return _id;
}
// SIGNAL 0
void HashComparer::sigCallCheck()
{
QMetaObject::activate(this, &staticMetaObject, 0, nullptr);
}
QT_WARNING_POP
QT_END_MOC_NAMESPACE

BIN
debug/moc_hashcomparer.o Normal file

Binary file not shown.

View File

@@ -22,8 +22,8 @@ QT_BEGIN_MOC_NAMESPACE
QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED
struct qt_meta_stringdata_MainWindow_t {
QByteArrayData data[26];
char stringdata0[460];
QByteArrayData data[30];
char stringdata0[492];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
@@ -39,35 +39,40 @@ QT_MOC_LITERAL(3, 32, 16), // "RecognizeSystem*"
QT_MOC_LITERAL(4, 49, 15), // "recognizeSystem"
QT_MOC_LITERAL(5, 65, 17), // "ExternalExecuter*"
QT_MOC_LITERAL(6, 83, 16), // "externalExecuter"
QT_MOC_LITERAL(7, 100, 13), // "sigSetConnect"
QT_MOC_LITERAL(8, 114, 15), // "ServerSettings*"
QT_MOC_LITERAL(9, 130, 14), // "serverSettings"
QT_MOC_LITERAL(10, 145, 16), // "sigCalculateHash"
QT_MOC_LITERAL(11, 162, 26), // "sigSendClientAuthorization"
QT_MOC_LITERAL(12, 189, 14), // "sigSendMessage"
QT_MOC_LITERAL(13, 204, 7), // "message"
QT_MOC_LITERAL(14, 212, 22), // "on_loginButton_clicked"
QT_MOC_LITERAL(15, 235, 23), // "on_updateButton_clicked"
QT_MOC_LITERAL(16, 259, 22), // "on_startButton_clicked"
QT_MOC_LITERAL(17, 282, 27), // "on_saveServerButton_clicked"
QT_MOC_LITERAL(18, 310, 25), // "on_settingsButton_clicked"
QT_MOC_LITERAL(19, 336, 24), // "on_connectButton_clicked"
QT_MOC_LITERAL(20, 361, 29), // "on_languageComboBox_activated"
QT_MOC_LITERAL(21, 391, 4), // "arg1"
QT_MOC_LITERAL(22, 396, 17), // "slotDisableNotify"
QT_MOC_LITERAL(23, 414, 19), // "slotConnectionState"
QT_MOC_LITERAL(24, 434, 4), // "flag"
QT_MOC_LITERAL(25, 439, 20) // "slotServerDisconnect"
QT_MOC_LITERAL(7, 100, 11), // "SendSystem*"
QT_MOC_LITERAL(8, 112, 10), // "sendSystem"
QT_MOC_LITERAL(9, 123, 8), // "QThread*"
QT_MOC_LITERAL(10, 132, 6), // "thread"
QT_MOC_LITERAL(11, 139, 13), // "sigSetConnect"
QT_MOC_LITERAL(12, 153, 15), // "ServerSettings*"
QT_MOC_LITERAL(13, 169, 14), // "serverSettings"
QT_MOC_LITERAL(14, 184, 16), // "sigCalculateHash"
QT_MOC_LITERAL(15, 201, 14), // "sigSendCommand"
QT_MOC_LITERAL(16, 216, 7), // "message"
QT_MOC_LITERAL(17, 224, 19), // "sigSendAutorization"
QT_MOC_LITERAL(18, 244, 22), // "on_loginButton_clicked"
QT_MOC_LITERAL(19, 267, 23), // "on_updateButton_clicked"
QT_MOC_LITERAL(20, 291, 22), // "on_startButton_clicked"
QT_MOC_LITERAL(21, 314, 27), // "on_saveServerButton_clicked"
QT_MOC_LITERAL(22, 342, 25), // "on_settingsButton_clicked"
QT_MOC_LITERAL(23, 368, 24), // "on_connectButton_clicked"
QT_MOC_LITERAL(24, 393, 29), // "on_languageComboBox_activated"
QT_MOC_LITERAL(25, 423, 4), // "arg1"
QT_MOC_LITERAL(26, 428, 17), // "slotDisableNotify"
QT_MOC_LITERAL(27, 446, 19), // "slotConnectionState"
QT_MOC_LITERAL(28, 466, 4), // "flag"
QT_MOC_LITERAL(29, 471, 20) // "slotServerDisconnect"
},
"MainWindow\0sigInitializeClient\0\0"
"RecognizeSystem*\0recognizeSystem\0"
"ExternalExecuter*\0externalExecuter\0"
"SendSystem*\0sendSystem\0QThread*\0thread\0"
"sigSetConnect\0ServerSettings*\0"
"serverSettings\0sigCalculateHash\0"
"sigSendClientAuthorization\0sigSendMessage\0"
"message\0on_loginButton_clicked\0"
"on_updateButton_clicked\0on_startButton_clicked\0"
"sigSendCommand\0message\0sigSendAutorization\0"
"on_loginButton_clicked\0on_updateButton_clicked\0"
"on_startButton_clicked\0"
"on_saveServerButton_clicked\0"
"on_settingsButton_clicked\0"
"on_connectButton_clicked\0"
@@ -91,30 +96,30 @@ static const uint qt_meta_data_MainWindow[] = {
5, // signalCount
// signals: name, argc, parameters, tag, flags
1, 2, 89, 2, 0x06 /* Public */,
7, 1, 94, 2, 0x06 /* Public */,
10, 0, 97, 2, 0x06 /* Public */,
11, 0, 98, 2, 0x06 /* Public */,
12, 1, 99, 2, 0x06 /* Public */,
1, 4, 89, 2, 0x06 /* Public */,
11, 2, 98, 2, 0x06 /* Public */,
14, 0, 103, 2, 0x06 /* Public */,
15, 1, 104, 2, 0x06 /* Public */,
17, 0, 107, 2, 0x06 /* Public */,
// slots: name, argc, parameters, tag, flags
14, 0, 102, 2, 0x08 /* Private */,
15, 0, 103, 2, 0x08 /* Private */,
16, 0, 104, 2, 0x08 /* Private */,
17, 0, 105, 2, 0x08 /* Private */,
18, 0, 106, 2, 0x08 /* Private */,
19, 0, 107, 2, 0x08 /* Private */,
20, 1, 108, 2, 0x08 /* Private */,
22, 0, 111, 2, 0x08 /* Private */,
23, 1, 112, 2, 0x08 /* Private */,
25, 0, 115, 2, 0x08 /* Private */,
18, 0, 108, 2, 0x08 /* Private */,
19, 0, 109, 2, 0x08 /* Private */,
20, 0, 110, 2, 0x08 /* Private */,
21, 0, 111, 2, 0x08 /* Private */,
22, 0, 112, 2, 0x08 /* Private */,
23, 0, 113, 2, 0x08 /* Private */,
24, 1, 114, 2, 0x08 /* Private */,
26, 0, 117, 2, 0x08 /* Private */,
27, 1, 118, 2, 0x08 /* Private */,
29, 0, 121, 2, 0x08 /* Private */,
// signals: parameters
QMetaType::Void, 0x80000000 | 3, 0x80000000 | 5, 4, 6,
QMetaType::Void, 0x80000000 | 8, 9,
QMetaType::Void, 0x80000000 | 3, 0x80000000 | 5, 0x80000000 | 7, 0x80000000 | 9, 4, 6, 8, 10,
QMetaType::Void, 0x80000000 | 12, 0x80000000 | 9, 13, 10,
QMetaType::Void,
QMetaType::Void, QMetaType::QString, 16,
QMetaType::Void,
QMetaType::Void, QMetaType::QString, 13,
// slots: parameters
QMetaType::Void,
@@ -123,9 +128,9 @@ static const uint qt_meta_data_MainWindow[] = {
QMetaType::Void,
QMetaType::Void,
QMetaType::Void,
QMetaType::Void, QMetaType::QString, 21,
QMetaType::Void, QMetaType::QString, 25,
QMetaType::Void,
QMetaType::Void, QMetaType::Bool, 24,
QMetaType::Void, QMetaType::Bool, 28,
QMetaType::Void,
0 // eod
@@ -137,11 +142,11 @@ void MainWindow::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id,
auto *_t = static_cast<MainWindow *>(_o);
Q_UNUSED(_t)
switch (_id) {
case 0: _t->sigInitializeClient((*reinterpret_cast< RecognizeSystem*(*)>(_a[1])),(*reinterpret_cast< ExternalExecuter*(*)>(_a[2]))); break;
case 1: _t->sigSetConnect((*reinterpret_cast< ServerSettings*(*)>(_a[1]))); break;
case 0: _t->sigInitializeClient((*reinterpret_cast< RecognizeSystem*(*)>(_a[1])),(*reinterpret_cast< ExternalExecuter*(*)>(_a[2])),(*reinterpret_cast< SendSystem*(*)>(_a[3])),(*reinterpret_cast< QThread*(*)>(_a[4]))); break;
case 1: _t->sigSetConnect((*reinterpret_cast< ServerSettings*(*)>(_a[1])),(*reinterpret_cast< QThread*(*)>(_a[2]))); break;
case 2: _t->sigCalculateHash(); break;
case 3: _t->sigSendClientAuthorization(); break;
case 4: _t->sigSendMessage((*reinterpret_cast< QString(*)>(_a[1]))); break;
case 3: _t->sigSendCommand((*reinterpret_cast< QString(*)>(_a[1]))); break;
case 4: _t->sigSendAutorization(); break;
case 5: _t->on_loginButton_clicked(); break;
case 6: _t->on_updateButton_clicked(); break;
case 7: _t->on_startButton_clicked(); break;
@@ -162,22 +167,33 @@ void MainWindow::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id,
default: *reinterpret_cast<int*>(_a[0]) = -1; break;
case 1:
*reinterpret_cast<int*>(_a[0]) = qRegisterMetaType< ExternalExecuter* >(); break;
case 3:
*reinterpret_cast<int*>(_a[0]) = qRegisterMetaType< QThread* >(); break;
case 0:
*reinterpret_cast<int*>(_a[0]) = qRegisterMetaType< RecognizeSystem* >(); break;
case 2:
*reinterpret_cast<int*>(_a[0]) = qRegisterMetaType< SendSystem* >(); break;
}
break;
case 1:
switch (*reinterpret_cast<int*>(_a[1])) {
default: *reinterpret_cast<int*>(_a[0]) = -1; break;
case 1:
*reinterpret_cast<int*>(_a[0]) = qRegisterMetaType< QThread* >(); break;
}
break;
}
} else if (_c == QMetaObject::IndexOfMethod) {
int *result = reinterpret_cast<int *>(_a[0]);
{
using _t = void (MainWindow::*)(RecognizeSystem * , ExternalExecuter * );
using _t = void (MainWindow::*)(RecognizeSystem * , ExternalExecuter * , SendSystem * , QThread * );
if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::sigInitializeClient)) {
*result = 0;
return;
}
}
{
using _t = void (MainWindow::*)(ServerSettings * );
using _t = void (MainWindow::*)(ServerSettings * , QThread * );
if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::sigSetConnect)) {
*result = 1;
return;
@@ -191,15 +207,15 @@ void MainWindow::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id,
}
}
{
using _t = void (MainWindow::*)();
if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::sigSendClientAuthorization)) {
using _t = void (MainWindow::*)(QString );
if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::sigSendCommand)) {
*result = 3;
return;
}
}
{
using _t = void (MainWindow::*)(QString );
if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::sigSendMessage)) {
using _t = void (MainWindow::*)();
if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::sigSendAutorization)) {
*result = 4;
return;
}
@@ -248,16 +264,16 @@ int MainWindow::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
}
// SIGNAL 0
void MainWindow::sigInitializeClient(RecognizeSystem * _t1, ExternalExecuter * _t2)
void MainWindow::sigInitializeClient(RecognizeSystem * _t1, ExternalExecuter * _t2, SendSystem * _t3, QThread * _t4)
{
void *_a[] = { nullptr, const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t1))), const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t2))) };
void *_a[] = { nullptr, const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t1))), const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t2))), const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t3))), const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t4))) };
QMetaObject::activate(this, &staticMetaObject, 0, _a);
}
// SIGNAL 1
void MainWindow::sigSetConnect(ServerSettings * _t1)
void MainWindow::sigSetConnect(ServerSettings * _t1, QThread * _t2)
{
void *_a[] = { nullptr, const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t1))) };
void *_a[] = { nullptr, const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t1))), const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t2))) };
QMetaObject::activate(this, &staticMetaObject, 1, _a);
}
@@ -268,16 +284,16 @@ void MainWindow::sigCalculateHash()
}
// SIGNAL 3
void MainWindow::sigSendClientAuthorization()
void MainWindow::sigSendCommand(QString _t1)
{
QMetaObject::activate(this, &staticMetaObject, 3, nullptr);
void *_a[] = { nullptr, const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t1))) };
QMetaObject::activate(this, &staticMetaObject, 3, _a);
}
// SIGNAL 4
void MainWindow::sigSendMessage(QString _t1)
void MainWindow::sigSendAutorization()
{
void *_a[] = { nullptr, const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t1))) };
QMetaObject::activate(this, &staticMetaObject, 4, _a);
QMetaObject::activate(this, &staticMetaObject, 4, nullptr);
}
QT_WARNING_POP
QT_END_MOC_NAMESPACE

Binary file not shown.

View File

@@ -22,8 +22,8 @@ QT_BEGIN_MOC_NAMESPACE
QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED
struct qt_meta_stringdata_RecognizeSystem_t {
QByteArrayData data[18];
char stringdata0[241];
QByteArrayData data[19];
char stringdata0[257];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
@@ -49,7 +49,8 @@ QT_MOC_LITERAL(13, 157, 16), // "sigSaveLoginData"
QT_MOC_LITERAL(14, 174, 20), // "ServerAuthorization*"
QT_MOC_LITERAL(15, 195, 10), // "serverAuth"
QT_MOC_LITERAL(16, 206, 25), // "sigSocketWaitForReadyRead"
QT_MOC_LITERAL(17, 232, 8) // "waitTime"
QT_MOC_LITERAL(17, 232, 8), // "waitTime"
QT_MOC_LITERAL(18, 241, 15) // "sigStartCompare"
},
"RecognizeSystem\0sigUpdateBytesAvailable\0"
@@ -58,7 +59,7 @@ QT_MOC_LITERAL(17, 232, 8) // "waitTime"
"sigSocketDisabled\0sigServerBlocked\0"
"sigSaveLoginData\0ServerAuthorization*\0"
"serverAuth\0sigSocketWaitForReadyRead\0"
"waitTime"
"waitTime\0sigStartCompare"
};
#undef QT_MOC_LITERAL
@@ -68,22 +69,23 @@ static const uint qt_meta_data_RecognizeSystem[] = {
8, // revision
0, // classname
0, 0, // classinfo
8, 14, // methods
9, 14, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
8, // signalCount
9, // signalCount
// signals: name, argc, parameters, tag, flags
1, 2, 54, 2, 0x06 /* Public */,
5, 0, 59, 2, 0x06 /* Public */,
6, 3, 60, 2, 0x06 /* Public */,
9, 1, 67, 2, 0x06 /* Public */,
11, 0, 70, 2, 0x06 /* Public */,
12, 0, 71, 2, 0x06 /* Public */,
13, 1, 72, 2, 0x06 /* Public */,
16, 1, 75, 2, 0x06 /* Public */,
1, 2, 59, 2, 0x06 /* Public */,
5, 0, 64, 2, 0x06 /* Public */,
6, 3, 65, 2, 0x06 /* Public */,
9, 1, 72, 2, 0x06 /* Public */,
11, 0, 75, 2, 0x06 /* Public */,
12, 0, 76, 2, 0x06 /* Public */,
13, 1, 77, 2, 0x06 /* Public */,
16, 1, 80, 2, 0x06 /* Public */,
18, 0, 83, 2, 0x06 /* Public */,
// signals: parameters
QMetaType::Void, QMetaType::LongLong, QMetaType::ULongLong, 3, 4,
@@ -94,6 +96,7 @@ static const uint qt_meta_data_RecognizeSystem[] = {
QMetaType::Void,
QMetaType::Void, 0x80000000 | 14, 15,
QMetaType::Void, QMetaType::Int, 17,
QMetaType::Void,
0 // eod
};
@@ -112,6 +115,7 @@ void RecognizeSystem::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int
case 5: _t->sigServerBlocked(); break;
case 6: _t->sigSaveLoginData((*reinterpret_cast< ServerAuthorization*(*)>(_a[1]))); break;
case 7: _t->sigSocketWaitForReadyRead((*reinterpret_cast< int(*)>(_a[1]))); break;
case 8: _t->sigStartCompare(); break;
default: ;
}
} else if (_c == QMetaObject::IndexOfMethod) {
@@ -172,6 +176,13 @@ void RecognizeSystem::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int
return;
}
}
{
using _t = void (RecognizeSystem::*)();
if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&RecognizeSystem::sigStartCompare)) {
*result = 8;
return;
}
}
}
}
@@ -204,13 +215,13 @@ int RecognizeSystem::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
if (_id < 0)
return _id;
if (_c == QMetaObject::InvokeMetaMethod) {
if (_id < 8)
if (_id < 9)
qt_static_metacall(this, _c, _id, _a);
_id -= 8;
_id -= 9;
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
if (_id < 8)
if (_id < 9)
*reinterpret_cast<int*>(_a[0]) = -1;
_id -= 8;
_id -= 9;
}
return _id;
}
@@ -267,5 +278,11 @@ void RecognizeSystem::sigSocketWaitForReadyRead(int _t1)
void *_a[] = { nullptr, const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t1))) };
QMetaObject::activate(this, &staticMetaObject, 7, _a);
}
// SIGNAL 8
void RecognizeSystem::sigStartCompare()
{
QMetaObject::activate(this, &staticMetaObject, 8, nullptr);
}
QT_WARNING_POP
QT_END_MOC_NAMESPACE

Binary file not shown.

137
debug/moc_sendsystem.cpp Normal file
View File

@@ -0,0 +1,137 @@
/****************************************************************************
** Meta object code from reading C++ file 'sendsystem.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.14.2)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include <memory>
#include "../Core/sendsystem.h"
#include <QtCore/qbytearray.h>
#include <QtCore/qmetatype.h>
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'sendsystem.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 67
#error "This file was generated using the moc from 5.14.2. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED
struct qt_meta_stringdata_SendSystem_t {
QByteArrayData data[3];
char stringdata0[28];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
qptrdiff(offsetof(qt_meta_stringdata_SendSystem_t, stringdata0) + ofs \
- idx * sizeof(QByteArrayData)) \
)
static const qt_meta_stringdata_SendSystem_t qt_meta_stringdata_SendSystem = {
{
QT_MOC_LITERAL(0, 0, 10), // "SendSystem"
QT_MOC_LITERAL(1, 11, 15), // "sigGetXmlAnswer"
QT_MOC_LITERAL(2, 27, 0) // ""
},
"SendSystem\0sigGetXmlAnswer\0"
};
#undef QT_MOC_LITERAL
static const uint qt_meta_data_SendSystem[] = {
// content:
8, // revision
0, // classname
0, 0, // classinfo
1, 14, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
1, // signalCount
// signals: name, argc, parameters, tag, flags
1, 1, 19, 2, 0x06 /* Public */,
// signals: parameters
QMetaType::QByteArray, QMetaType::QString, 2,
0 // eod
};
void SendSystem::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
if (_c == QMetaObject::InvokeMetaMethod) {
auto *_t = static_cast<SendSystem *>(_o);
Q_UNUSED(_t)
switch (_id) {
case 0: { QByteArray _r = _t->sigGetXmlAnswer((*reinterpret_cast< QString(*)>(_a[1])));
if (_a[0]) *reinterpret_cast< QByteArray*>(_a[0]) = std::move(_r); } break;
default: ;
}
} else if (_c == QMetaObject::IndexOfMethod) {
int *result = reinterpret_cast<int *>(_a[0]);
{
using _t = QByteArray (SendSystem::*)(QString );
if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&SendSystem::sigGetXmlAnswer)) {
*result = 0;
return;
}
}
}
}
QT_INIT_METAOBJECT const QMetaObject SendSystem::staticMetaObject = { {
QMetaObject::SuperData::link<QObject::staticMetaObject>(),
qt_meta_stringdata_SendSystem.data,
qt_meta_data_SendSystem,
qt_static_metacall,
nullptr,
nullptr
} };
const QMetaObject *SendSystem::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
}
void *SendSystem::qt_metacast(const char *_clname)
{
if (!_clname) return nullptr;
if (!strcmp(_clname, qt_meta_stringdata_SendSystem.stringdata0))
return static_cast<void*>(this);
return QObject::qt_metacast(_clname);
}
int SendSystem::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QObject::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
if (_c == QMetaObject::InvokeMetaMethod) {
if (_id < 1)
qt_static_metacall(this, _c, _id, _a);
_id -= 1;
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
if (_id < 1)
*reinterpret_cast<int*>(_a[0]) = -1;
_id -= 1;
}
return _id;
}
// SIGNAL 0
QByteArray SendSystem::sigGetXmlAnswer(QString _t1)
{
QByteArray _t0{};
void *_a[] = { const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t0))), const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t1))) };
QMetaObject::activate(this, &staticMetaObject, 0, _a);
return _t0;
}
QT_WARNING_POP
QT_END_MOC_NAMESPACE

BIN
debug/moc_sendsystem.o Normal file

Binary file not shown.

View File

@@ -23,7 +23,7 @@ QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED
struct qt_meta_stringdata_TCPClient_t {
QByteArrayData data[14];
char stringdata0[178];
char stringdata0[172];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
@@ -39,19 +39,19 @@ QT_MOC_LITERAL(3, 27, 7), // "message"
QT_MOC_LITERAL(4, 35, 12), // "sigRecognize"
QT_MOC_LITERAL(5, 48, 11), // "QTcpSocket*"
QT_MOC_LITERAL(6, 60, 6), // "socket"
QT_MOC_LITERAL(7, 67, 18), // "sigConnectionState"
QT_MOC_LITERAL(8, 86, 4), // "flag"
QT_MOC_LITERAL(9, 91, 19), // "sigServerDisconnect"
QT_MOC_LITERAL(10, 111, 15), // "sigGetXmlAnswer"
QT_MOC_LITERAL(11, 127, 18), // "slotMessageEntered"
QT_MOC_LITERAL(12, 146, 17), // "slotConnectNotify"
QT_MOC_LITERAL(13, 164, 13) // "slotReadyRead"
QT_MOC_LITERAL(7, 67, 19), // "sigServerDisconnect"
QT_MOC_LITERAL(8, 87, 18), // "sigConnectionState"
QT_MOC_LITERAL(9, 106, 4), // "flag"
QT_MOC_LITERAL(10, 111, 12), // "sigSetSocket"
QT_MOC_LITERAL(11, 124, 15), // "slotSendCommand"
QT_MOC_LITERAL(12, 140, 17), // "slotConnectNotify"
QT_MOC_LITERAL(13, 158, 13) // "slotReadyRead"
},
"TCPClient\0sigSendDebugLog\0\0message\0"
"sigRecognize\0QTcpSocket*\0socket\0"
"sigConnectionState\0flag\0sigServerDisconnect\0"
"sigGetXmlAnswer\0slotMessageEntered\0"
"sigServerDisconnect\0sigConnectionState\0"
"flag\0sigSetSocket\0slotSendCommand\0"
"slotConnectNotify\0slotReadyRead"
};
#undef QT_MOC_LITERAL
@@ -72,8 +72,8 @@ static const uint qt_meta_data_TCPClient[] = {
// signals: name, argc, parameters, tag, flags
1, 1, 54, 2, 0x06 /* Public */,
4, 1, 57, 2, 0x06 /* Public */,
7, 1, 60, 2, 0x06 /* Public */,
9, 0, 63, 2, 0x06 /* Public */,
7, 0, 60, 2, 0x06 /* Public */,
8, 1, 61, 2, 0x06 /* Public */,
10, 1, 64, 2, 0x06 /* Public */,
// slots: name, argc, parameters, tag, flags
@@ -84,9 +84,9 @@ static const uint qt_meta_data_TCPClient[] = {
// signals: parameters
QMetaType::Void, QMetaType::QString, 3,
QMetaType::Void, 0x80000000 | 5, 6,
QMetaType::Void, QMetaType::Bool, 8,
QMetaType::Void,
QMetaType::QByteArray, QMetaType::QString, 2,
QMetaType::Void, QMetaType::Bool, 9,
QMetaType::Void, 0x80000000 | 5, 6,
// slots: parameters
QMetaType::Void, QMetaType::QString, 3,
@@ -104,11 +104,10 @@ void TCPClient::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, v
switch (_id) {
case 0: _t->sigSendDebugLog((*reinterpret_cast< QString(*)>(_a[1]))); break;
case 1: _t->sigRecognize((*reinterpret_cast< QTcpSocket*(*)>(_a[1]))); break;
case 2: _t->sigConnectionState((*reinterpret_cast< bool(*)>(_a[1]))); break;
case 3: _t->sigServerDisconnect(); break;
case 4: { QByteArray _r = _t->sigGetXmlAnswer((*reinterpret_cast< QString(*)>(_a[1])));
if (_a[0]) *reinterpret_cast< QByteArray*>(_a[0]) = std::move(_r); } break;
case 5: _t->slotMessageEntered((*reinterpret_cast< QString(*)>(_a[1]))); break;
case 2: _t->sigServerDisconnect(); break;
case 3: _t->sigConnectionState((*reinterpret_cast< bool(*)>(_a[1]))); break;
case 4: _t->sigSetSocket((*reinterpret_cast< QTcpSocket*(*)>(_a[1]))); break;
case 5: _t->slotSendCommand((*reinterpret_cast< QString(*)>(_a[1]))); break;
case 6: _t->slotConnectNotify(); break;
case 7: _t->slotReadyRead(); break;
default: ;
@@ -123,6 +122,13 @@ void TCPClient::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, v
*reinterpret_cast<int*>(_a[0]) = qRegisterMetaType< QTcpSocket* >(); break;
}
break;
case 4:
switch (*reinterpret_cast<int*>(_a[1])) {
default: *reinterpret_cast<int*>(_a[0]) = -1; break;
case 0:
*reinterpret_cast<int*>(_a[0]) = qRegisterMetaType< QTcpSocket* >(); break;
}
break;
}
} else if (_c == QMetaObject::IndexOfMethod) {
int *result = reinterpret_cast<int *>(_a[0]);
@@ -141,22 +147,22 @@ void TCPClient::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, v
}
}
{
using _t = void (TCPClient::*)(bool );
if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&TCPClient::sigConnectionState)) {
using _t = void (TCPClient::*)();
if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&TCPClient::sigServerDisconnect)) {
*result = 2;
return;
}
}
{
using _t = void (TCPClient::*)();
if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&TCPClient::sigServerDisconnect)) {
using _t = void (TCPClient::*)(bool );
if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&TCPClient::sigConnectionState)) {
*result = 3;
return;
}
}
{
using _t = QByteArray (TCPClient::*)(QString );
if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&TCPClient::sigGetXmlAnswer)) {
using _t = void (TCPClient::*)(QTcpSocket * );
if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&TCPClient::sigSetSocket)) {
*result = 4;
return;
}
@@ -219,25 +225,23 @@ void TCPClient::sigRecognize(QTcpSocket * _t1)
}
// SIGNAL 2
void TCPClient::sigConnectionState(bool _t1)
void TCPClient::sigServerDisconnect()
{
void *_a[] = { nullptr, const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t1))) };
QMetaObject::activate(this, &staticMetaObject, 2, _a);
QMetaObject::activate(this, &staticMetaObject, 2, nullptr);
}
// SIGNAL 3
void TCPClient::sigServerDisconnect()
void TCPClient::sigConnectionState(bool _t1)
{
QMetaObject::activate(this, &staticMetaObject, 3, nullptr);
void *_a[] = { nullptr, const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t1))) };
QMetaObject::activate(this, &staticMetaObject, 3, _a);
}
// SIGNAL 4
QByteArray TCPClient::sigGetXmlAnswer(QString _t1)
void TCPClient::sigSetSocket(QTcpSocket * _t1)
{
QByteArray _t0{};
void *_a[] = { const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t0))), const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t1))) };
void *_a[] = { nullptr, const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t1))) };
QMetaObject::activate(this, &staticMetaObject, 4, _a);
return _t0;
}
QT_WARNING_POP
QT_END_MOC_NAMESPACE

Binary file not shown.

View File

@@ -0,0 +1,95 @@
/****************************************************************************
** Meta object code from reading C++ file 'updatelistform.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.14.2)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include <memory>
#include "../updatelistform.h"
#include <QtCore/qbytearray.h>
#include <QtCore/qmetatype.h>
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'updatelistform.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 67
#error "This file was generated using the moc from 5.14.2. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED
struct qt_meta_stringdata_UpdateListForm_t {
QByteArrayData data[1];
char stringdata0[15];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
qptrdiff(offsetof(qt_meta_stringdata_UpdateListForm_t, stringdata0) + ofs \
- idx * sizeof(QByteArrayData)) \
)
static const qt_meta_stringdata_UpdateListForm_t qt_meta_stringdata_UpdateListForm = {
{
QT_MOC_LITERAL(0, 0, 14) // "UpdateListForm"
},
"UpdateListForm"
};
#undef QT_MOC_LITERAL
static const uint qt_meta_data_UpdateListForm[] = {
// content:
8, // revision
0, // classname
0, 0, // classinfo
0, 0, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
0, // signalCount
0 // eod
};
void UpdateListForm::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
Q_UNUSED(_o);
Q_UNUSED(_id);
Q_UNUSED(_c);
Q_UNUSED(_a);
}
QT_INIT_METAOBJECT const QMetaObject UpdateListForm::staticMetaObject = { {
QMetaObject::SuperData::link<QWidget::staticMetaObject>(),
qt_meta_stringdata_UpdateListForm.data,
qt_meta_data_UpdateListForm,
qt_static_metacall,
nullptr,
nullptr
} };
const QMetaObject *UpdateListForm::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
}
void *UpdateListForm::qt_metacast(const char *_clname)
{
if (!_clname) return nullptr;
if (!strcmp(_clname, qt_meta_stringdata_UpdateListForm.stringdata0))
return static_cast<void*>(this);
return QWidget::qt_metacast(_clname);
}
int UpdateListForm::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QWidget::qt_metacall(_c, _id, _a);
return _id;
}
QT_WARNING_POP
QT_END_MOC_NAMESPACE

BIN
debug/moc_updatelistform.o Normal file

Binary file not shown.

View File

@@ -0,0 +1,158 @@
/****************************************************************************
** Meta object code from reading C++ file 'updatenotifywidget.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.14.2)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include <memory>
#include "../updatenotifywidget.h"
#include <QtCore/qbytearray.h>
#include <QtCore/qmetatype.h>
#include <QtCore/QList>
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'updatenotifywidget.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 67
#error "This file was generated using the moc from 5.14.2. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED
struct qt_meta_stringdata_UpdateNotifyWidget_t {
QByteArrayData data[9];
char stringdata0[151];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
qptrdiff(offsetof(qt_meta_stringdata_UpdateNotifyWidget_t, stringdata0) + ofs \
- idx * sizeof(QByteArrayData)) \
)
static const qt_meta_stringdata_UpdateNotifyWidget_t qt_meta_stringdata_UpdateNotifyWidget = {
{
QT_MOC_LITERAL(0, 0, 18), // "UpdateNotifyWidget"
QT_MOC_LITERAL(1, 19, 22), // "sigUpdateFilesOnServer"
QT_MOC_LITERAL(2, 42, 0), // ""
QT_MOC_LITERAL(3, 43, 16), // "QList<FileData>*"
QT_MOC_LITERAL(4, 60, 12), // "fileSendList"
QT_MOC_LITERAL(5, 73, 21), // "showCompleteDialogBox"
QT_MOC_LITERAL(6, 95, 4), // "flag"
QT_MOC_LITERAL(7, 100, 26), // "on_StartLoadButton_clicked"
QT_MOC_LITERAL(8, 127, 23) // "on_CancelButton_clicked"
},
"UpdateNotifyWidget\0sigUpdateFilesOnServer\0"
"\0QList<FileData>*\0fileSendList\0"
"showCompleteDialogBox\0flag\0"
"on_StartLoadButton_clicked\0"
"on_CancelButton_clicked"
};
#undef QT_MOC_LITERAL
static const uint qt_meta_data_UpdateNotifyWidget[] = {
// content:
8, // revision
0, // classname
0, 0, // classinfo
4, 14, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
1, // signalCount
// signals: name, argc, parameters, tag, flags
1, 1, 34, 2, 0x06 /* Public */,
// slots: name, argc, parameters, tag, flags
5, 1, 37, 2, 0x08 /* Private */,
7, 0, 40, 2, 0x08 /* Private */,
8, 0, 41, 2, 0x08 /* Private */,
// signals: parameters
QMetaType::Void, 0x80000000 | 3, 4,
// slots: parameters
QMetaType::Void, QMetaType::Bool, 6,
QMetaType::Void,
QMetaType::Void,
0 // eod
};
void UpdateNotifyWidget::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
if (_c == QMetaObject::InvokeMetaMethod) {
auto *_t = static_cast<UpdateNotifyWidget *>(_o);
Q_UNUSED(_t)
switch (_id) {
case 0: _t->sigUpdateFilesOnServer((*reinterpret_cast< QList<FileData>*(*)>(_a[1]))); break;
case 1: _t->showCompleteDialogBox((*reinterpret_cast< bool(*)>(_a[1]))); break;
case 2: _t->on_StartLoadButton_clicked(); break;
case 3: _t->on_CancelButton_clicked(); break;
default: ;
}
} else if (_c == QMetaObject::IndexOfMethod) {
int *result = reinterpret_cast<int *>(_a[0]);
{
using _t = void (UpdateNotifyWidget::*)(QList<FileData> * );
if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&UpdateNotifyWidget::sigUpdateFilesOnServer)) {
*result = 0;
return;
}
}
}
}
QT_INIT_METAOBJECT const QMetaObject UpdateNotifyWidget::staticMetaObject = { {
QMetaObject::SuperData::link<QWidget::staticMetaObject>(),
qt_meta_stringdata_UpdateNotifyWidget.data,
qt_meta_data_UpdateNotifyWidget,
qt_static_metacall,
nullptr,
nullptr
} };
const QMetaObject *UpdateNotifyWidget::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
}
void *UpdateNotifyWidget::qt_metacast(const char *_clname)
{
if (!_clname) return nullptr;
if (!strcmp(_clname, qt_meta_stringdata_UpdateNotifyWidget.stringdata0))
return static_cast<void*>(this);
return QWidget::qt_metacast(_clname);
}
int UpdateNotifyWidget::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QWidget::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
if (_c == QMetaObject::InvokeMetaMethod) {
if (_id < 4)
qt_static_metacall(this, _c, _id, _a);
_id -= 4;
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
if (_id < 4)
*reinterpret_cast<int*>(_a[0]) = -1;
_id -= 4;
}
return _id;
}
// SIGNAL 0
void UpdateNotifyWidget::sigUpdateFilesOnServer(QList<FileData> * _t1)
{
void *_a[] = { nullptr, const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t1))) };
QMetaObject::activate(this, &staticMetaObject, 0, _a);
}
QT_WARNING_POP
QT_END_MOC_NAMESPACE

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
debug/updatelistform.o Normal file

Binary file not shown.

BIN
debug/updatenotifywidget.o Normal file

Binary file not shown.

View File

@@ -1,4 +1,5 @@
#include "mainwindow.h"
#include "updatenotifywidget.h"
#include <QApplication>
#include <QTranslator>
@@ -8,6 +9,8 @@ int main(int argc, char *argv[])
QApplication a(argc, argv);
a.setWindowIcon(QIcon("./plane.png"));
MainWindow w;
UpdateNotifyWidget *notifyWidget = new UpdateNotifyWidget;
w.bindNotifyWidget(notifyWidget);
w.show();
return a.exec();
}

View File

@@ -1,5 +1,6 @@
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "updatenotifywidget.h"
#include <QTimer>
@@ -12,11 +13,71 @@ MainWindow::MainWindow(QWidget *parent)
}
void MainWindow::createObjects()
{
connectionThread = new QThread;
client = new TCPClient;
client->moveToThread(connectionThread);
dataParser = new DataParser;
sendSystem = new SendSystem;
sendSystem->moveToThread(connectionThread);
updateController = new UpdateController(dataParser,sendSystem);
updateController->moveToThread(connectionThread);
recognizeSystem = new RecognizeSystem;
recognizeSystem->moveToThread(connectionThread);
screenChecker = new ScreenChecker(dataParser,ui->displayWidget);
externalExecuter = new ExternalExecuter;
hashComparer = new HashComparer(dataParser);
connectionThread->start();
connectionThread->setPriority(QThread::HighestPriority);
timer = new QTimer;
}
void MainWindow::bindConnection()
{
connect(timer,&QTimer::timeout,this,&MainWindow::slotDisableNotify);
connect(recognizeSystem,&RecognizeSystem::sigStartCompare,hashComparer,&HashComparer::CompareDeltas);
connect(recognizeSystem,&RecognizeSystem::sigUpdateBytesAvailable,this,&MainWindow::updateProgress);
connect(recognizeSystem,&RecognizeSystem::sigLoadComplete,this,&MainWindow::loadComplete);
connect(recognizeSystem,&RecognizeSystem::sigNeedUpdate,this,&MainWindow::setNeedUpdate);
connect(recognizeSystem,&RecognizeSystem::sigSendDebugLog,this,&MainWindow::debugLog);
connect(recognizeSystem,&RecognizeSystem::sigSocketDisabled,this,&MainWindow::lostConnection);
connect(recognizeSystem,&RecognizeSystem::sigSaveLoginData,this,&MainWindow::checkLoginResult);
connect(recognizeSystem,&RecognizeSystem::sigSocketWaitForReadyRead,client,&TCPClient::waitRead,Qt::AutoConnection);
connect(recognizeSystem,&RecognizeSystem::sigServerBlocked,this,&MainWindow::serverBlocked);
connect(hashComparer,&HashComparer::sigCallCheck,this,&MainWindow::checkUpdate);
connect(sendSystem,&SendSystem::sigGetXmlAnswer,dataParser,&DataParser::slotGetXmlAnswer);
connect(client,&TCPClient::sigSendDebugLog,this,&MainWindow::debugLog,Qt::AutoConnection);
connect(this,&MainWindow::sigInitializeClient,client,&TCPClient::initialize,Qt::AutoConnection);
connect(this,&MainWindow::sigSetConnect,client,&TCPClient::setConnect,Qt::AutoConnection);
connect(this,&MainWindow::sigSendCommand,client,&TCPClient::slotSendCommand,Qt::AutoConnection);
connect(client,&TCPClient::sigConnectionState,this,&MainWindow::slotConnectionState,Qt::AutoConnection);
connect(client,&TCPClient::sigServerDisconnect,this,&MainWindow::slotServerDisconnect);
connect(this,&MainWindow::sigCalculateHash,updateController,&UpdateController::calculateCommonHash);
connect(this,&MainWindow::sigSendAutorization,sendSystem,&SendSystem::sendClientAutorization);
}
void MainWindow::initialize()
{
maxBytesAvailable = 0;
globalValue = 0;
ui->loadingProgressBar->setValue(0);
ui->settingsWidget->hide();
ui->notificationLabel->hide();
ui->loadingProgressBar->hide();
@@ -26,70 +87,22 @@ void MainWindow::initialize()
ui->debugText->hide();
ui->displayGroupWidget->hide();
ui->autostartCheckBox->hide();
updateControllerThread = new QThread;
connectionThread = new QThread;
client = new TCPClient;
client->moveToThread(connectionThread);
dataParser = new DataParser;
updateController = new UpdateController(dataParser);
updateController->moveToThread(updateControllerThread);
recognizeSystem = new RecognizeSystem;
screenChecker = new ScreenChecker(dataParser,ui->displayWidget);
externalExecuter = new ExternalExecuter;
timer = new QTimer;
connect(timer,&QTimer::timeout,this,&MainWindow::slotDisableNotify);
connect(recognizeSystem,&RecognizeSystem::sigUpdateBytesAvailable,this,&MainWindow::updateProgress);
connect(recognizeSystem,&RecognizeSystem::sigLoadComplete,this,&MainWindow::loadComplete);
connect(recognizeSystem,&RecognizeSystem::sigNeedUpdate,this,&MainWindow::setNeedUpdate);
connect(recognizeSystem,&RecognizeSystem::sigSendDebugLog,this,&MainWindow::debugLog);
connect(recognizeSystem,&RecognizeSystem::sigSocketDisabled,this,&MainWindow::lostConnection);
connect(recognizeSystem,&RecognizeSystem::sigSaveLoginData,this,&MainWindow::checkLoginResult);
connect(recognizeSystem,&RecognizeSystem::sigSocketWaitForReadyRead,client,&TCPClient::waitRead,Qt::AutoConnection);
connect(recognizeSystem,&RecognizeSystem::sigServerBlocked,this,&MainWindow::serverBlocked);
connect(client,&TCPClient::sigGetXmlAnswer,dataParser,&DataParser::slotGetXmlAnswer);
connectionThread->start();
updateControllerThread->start();
updateControllerThread->setPriority(QThread::LowPriority);
connectionThread->setPriority(QThread::HighestPriority);
connect(client,&TCPClient::sigSendDebugLog,this,&MainWindow::debugLog,Qt::AutoConnection);
connect(this,&MainWindow::sigInitializeClient,client,&TCPClient::initialize,Qt::AutoConnection);
connect(this,&MainWindow::sigSetConnect,client,&TCPClient::setConnect,Qt::AutoConnection);
connect(this,&MainWindow::sigSendMessage,client,&TCPClient::slotMessageEntered,Qt::AutoConnection);
connect(this,&MainWindow::sigSendClientAuthorization,client,&TCPClient::sendClientAutorization,Qt::AutoConnection);
connect(client,&TCPClient::sigConnectionState,this,&MainWindow::slotConnectionState,Qt::AutoConnection);
connect(client,&TCPClient::sigServerDisconnect,this,&MainWindow::slotServerDisconnect);
connect(this,&MainWindow::sigCalculateHash,updateController,&UpdateController::calculateHash);
emit sigCalculateHash();
emit sigInitializeClient(recognizeSystem,externalExecuter);
recognizeSystem->initialize(updateController,dataParser);
screenChecker->check();
ui->updateButton->setEnabled(false);
ui->startButton->setEnabled(false);
maxBytesAvailable = 0;
globalValue = 0;
createObjects();
ui->loadingProgressBar->setValue(0);
bindConnection();
emit sigCalculateHash();
emit sigInitializeClient(recognizeSystem,externalExecuter,sendSystem,connectionThread);
recognizeSystem->initialize(updateController,dataParser,this);
screenChecker->check();
loadStaticData();
emit sigSetConnect(dataParser->getServerSettings());
emit sigSetConnect(dataParser->getServerSettings(),connectionThread);
checkAppAvailable();
@@ -153,12 +166,16 @@ void MainWindow::serverBlocked()
timer->start(3000);
}
void MainWindow::checkLoginResult(ServerAuthorization *serverAuth)
{
if (serverAuth->Result){
emit sigSendMessage("check");
if (serverAuth->Result)
{
ui->inlineTextDebug->setText(tr("Проверка обновлений..."));
if (serverAuth->AccessType != "instructor") //временно для отладки загрузки на сервер
{
checkUpdate();
}
ui->loadingProgressBar->show();
ui->updateButton->show();
@@ -247,15 +264,15 @@ void MainWindow::slotConnectionState(bool flag)
void MainWindow::slotServerDisconnect()
{
ui->loadingProgressBar->hide();
ui->updateButton->hide();
ui->displayGroupWidget->hide();
ui->autostartCheckBox->hide();
ui->loadingProgressBar->hide();
ui->updateButton->hide();
ui->displayGroupWidget->hide();
ui->autostartCheckBox->hide();
ui->loginWidget->show();
ui->inlineTextDebug->setText("");
ui->updateButton->setEnabled(false);
slotConnectionState(false);
ui->loginWidget->show();
ui->inlineTextDebug->setText("");
ui->updateButton->setEnabled(false);
slotConnectionState(false);
}
@@ -277,6 +294,22 @@ void MainWindow::debugLog(QString message)
ui->debugText->append(message);
}
void MainWindow::callUpdateList()
{
updateController->calculateStreamingHash();
hashComparer->setWidget(updateWidget);
QByteArray answer = dataParser->xmlAnswer_notify("GETSERVERDATALIST");
sendSystem->sendXMLAnswer(answer);
updateWidget->initialize(this,updateController);
}
void MainWindow::bindNotifyWidget(UpdateNotifyWidget *widget)
{
updateWidget = widget;
}
void MainWindow::on_loginButton_clicked()
{
@@ -288,12 +321,13 @@ void MainWindow::on_loginButton_clicked()
autorization->Password = password;
dataParser->createAuthMessage(autorization);
emit sigSendClientAuthorization();
emit sigSendAutorization();
}
void MainWindow::on_updateButton_clicked()
{
emit sigSendMessage("update");
emit sigSendCommand("update");
ui->updateButton->hide();
ui->loadingProgressBar->setValue(0);
}
@@ -301,7 +335,7 @@ void MainWindow::on_updateButton_clicked()
void MainWindow::on_startButton_clicked()
{
externalExecuter->callApp();
client->sendDisable();
sendSystem->sendDisable();
}
@@ -315,7 +349,7 @@ void MainWindow::on_saveServerButton_clicked()
dataParser->createServerSettings(server,port);
emit sigSetConnect(dataParser->getServerSettings());
emit sigSetConnect(dataParser->getServerSettings(),connectionThread);
}
void MainWindow::on_settingsButton_clicked()
@@ -327,7 +361,7 @@ void MainWindow::on_settingsButton_clicked()
void MainWindow::on_connectButton_clicked()
{
emit sigSetConnect(dataParser->getServerSettings());
emit sigSetConnect(dataParser->getServerSettings(),connectionThread);
}
void MainWindow::on_languageComboBox_activated(const QString &arg1)
@@ -338,18 +372,21 @@ void MainWindow::on_languageComboBox_activated(const QString &arg1)
ui->retranslateUi(this);
}
void MainWindow::checkUpdate()
{
emit sigSendCommand("check");
ui->inlineTextDebug->setText(tr("Проверка обновлений..."));
}
MainWindow::~MainWindow()
{
connectionThread->quit();
connectionThread->wait();
updateControllerThread->quit();
updateControllerThread->wait();
client->sendDisable();
sendSystem->sendDisable();
delete connectionThread;
delete updateControllerThread;
delete ui;
}

View File

@@ -8,8 +8,11 @@
#include <Core/dataparser.h>
#include <Core/tcpclient.h>
#include <Core/screenchecker.h>
#include <Core/updatecontroller.h>
#include <Core/UpdateController.h>
#include <Core/sendsystem.h>
#include <Core/hashcomparer.h>
#include "Datas.h"
#include "updatenotifywidget.h"
QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
@@ -19,6 +22,8 @@ class TCPClient;
class UpdateController;
class RecognizeSystem;
class ExternalExecuter;
class UpdateNotifyWidget;
class HashComparer;
class MainWindow : public QMainWindow
{
@@ -26,17 +31,24 @@ class MainWindow : public QMainWindow
public:
MainWindow(QWidget *parent = nullptr);
void callUpdateList();
void bindNotifyWidget(UpdateNotifyWidget *widget);
void checkUpdate();
~MainWindow();
void bindConnection();
signals:
void sigInitializeClient(RecognizeSystem *recognizeSystem,
ExternalExecuter *externalExecuter);
ExternalExecuter *externalExecuter,
SendSystem *sendSystem,
QThread *thread);
void sigSetConnect(ServerSettings* serverSettings);
void sigSetConnect(ServerSettings* serverSettings,QThread *thread);
void sigCalculateHash();
void sigSendClientAuthorization();
void sigSendMessage(QString message);
void sigSendCommand(QString message);
void sigSendAutorization();
private slots:
void on_loginButton_clicked();
@@ -61,6 +73,7 @@ private slots:
private:
Ui::MainWindow *ui;
UpdateNotifyWidget *updateWidget;
QTranslator translator;
TCPClient *client;
DataParser *dataParser;
@@ -68,8 +81,9 @@ private:
RecognizeSystem *recognizeSystem;
ScreenChecker *screenChecker;
ExternalExecuter *externalExecuter;
SendSystem *sendSystem;
HashComparer *hashComparer;
QThread *connectionThread;
QThread *updateControllerThread;
quint64 maxBytesAvailable;
QTimer *timer;
float globalValue;
@@ -87,5 +101,6 @@ private:
void autoStart();
void loadStaticData();
void bindClient();
void createObjects();
};
#endif // MAINWINDOW_H

View File

@@ -32,176 +32,6 @@
<string>Тренажер процедур технического обслуживания самолета RRJ-95NEW-100</string>
</property>
<widget class="QWidget" name="centralwidget">
<widget class="QWidget" name="horizontalLayoutWidget">
<property name="geometry">
<rect>
<x>10</x>
<y>100</y>
<width>681</width>
<height>221</height>
</rect>
</property>
<layout class="QHBoxLayout" name="horizontalLayout">
<property name="sizeConstraint">
<enum>QLayout::SetDefaultConstraint</enum>
</property>
<property name="leftMargin">
<number>0</number>
</property>
<item>
<widget class="QWidget" name="loginWidget" native="true">
<property name="enabled">
<bool>true</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>250</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>250</width>
<height>16777215</height>
</size>
</property>
<property name="autoFillBackground">
<bool>false</bool>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QLabel" name="loginTitle">
<property name="text">
<string>Вход в систему</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="loginLayout">
<item>
<widget class="QLineEdit" name="loginInputField">
<property name="text">
<string/>
</property>
<property name="placeholderText">
<string>Логин</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="passwordLayout">
<item>
<widget class="QLineEdit" name="passwordInputField">
<property name="placeholderText">
<string>Пароль</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="loginButtonsLayout">
<item>
<widget class="QPushButton" name="settingsButton">
<property name="text">
<string>Настройки</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="loginButton">
<property name="text">
<string>Войти</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QWidget" name="settingsWidget" native="true">
<property name="enabled">
<bool>true</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>200</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>200</width>
<height>16777215</height>
</size>
</property>
<property name="autoFillBackground">
<bool>false</bool>
</property>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<widget class="QLabel" name="serverSettingsTitle">
<property name="text">
<string>Настройки сервера</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="serverInputLayout">
<item>
<widget class="QLineEdit" name="serverInputField">
<property name="placeholderText">
<string>Сервер</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="portInputLayout">
<item>
<widget class="QLineEdit" name="portInputField">
<property name="placeholderText">
<string>Порт</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<widget class="QPushButton" name="saveServerButton">
<property name="text">
<string>Сохранить</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="layoutWidget">
<property name="geometry">
<rect>
@@ -366,125 +196,6 @@
</item>
</layout>
</widget>
<widget class="QLabel" name="notificationLabel">
<property name="geometry">
<rect>
<x>200</x>
<y>80</y>
<width>300</width>
<height>40</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>300</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>300</width>
<height>16777215</height>
</size>
</property>
<property name="font">
<font>
<pointsize>10</pointsize>
</font>
</property>
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Plain</enum>
</property>
<property name="text">
<string>Какая-то ошибка</string>
</property>
<property name="textFormat">
<enum>Qt::RichText</enum>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QTextEdit" name="debugText">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>701</width>
<height>81</height>
</rect>
</property>
</widget>
<widget class="QWidget" name="displayGroupWidget" native="true">
<property name="geometry">
<rect>
<x>50</x>
<y>90</y>
<width>600</width>
<height>200</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>600</width>
<height>200</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>500</width>
<height>200</height>
</size>
</property>
<layout class="QVBoxLayout" name="verticalLayout_4">
<item>
<widget class="QLabel" name="displayChoiceTitle">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>30</height>
</size>
</property>
<property name="text">
<string>Выберите активные мониторы:</string>
</property>
<property name="alignment">
<set>Qt::AlignHCenter|Qt::AlignTop</set>
</property>
</widget>
</item>
<item>
<widget class="QWidget" name="screenWidget" native="true">
<layout class="QHBoxLayout" name="displayWidget">
<item>
<layout class="QHBoxLayout" name="displayLayout"/>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="widget" native="true">
<property name="geometry">
<rect>
@@ -536,6 +247,317 @@
</item>
</layout>
</widget>
<widget class="QFrame" name="mainFrame">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>10</x>
<y>10</y>
<width>681</width>
<height>381</height>
</rect>
</property>
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<widget class="QTextEdit" name="debugText">
<property name="geometry">
<rect>
<x>10</x>
<y>290</y>
<width>661</width>
<height>81</height>
</rect>
</property>
</widget>
<widget class="QWidget" name="horizontalLayoutWidget">
<property name="geometry">
<rect>
<x>10</x>
<y>110</y>
<width>661</width>
<height>221</height>
</rect>
</property>
<layout class="QHBoxLayout" name="horizontalLayout">
<property name="sizeConstraint">
<enum>QLayout::SetDefaultConstraint</enum>
</property>
<property name="leftMargin">
<number>0</number>
</property>
<item>
<widget class="QWidget" name="loginWidget" native="true">
<property name="enabled">
<bool>true</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>250</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>250</width>
<height>16777215</height>
</size>
</property>
<property name="autoFillBackground">
<bool>false</bool>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QLabel" name="loginTitle">
<property name="text">
<string>Вход в систему</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="loginLayout">
<item>
<widget class="QLineEdit" name="loginInputField">
<property name="text">
<string/>
</property>
<property name="placeholderText">
<string>Логин</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="passwordLayout">
<item>
<widget class="QLineEdit" name="passwordInputField">
<property name="placeholderText">
<string>Пароль</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="loginButtonsLayout">
<item>
<widget class="QPushButton" name="settingsButton">
<property name="text">
<string>Настройки</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="loginButton">
<property name="text">
<string>Войти</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QWidget" name="settingsWidget" native="true">
<property name="enabled">
<bool>true</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>200</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>200</width>
<height>16777215</height>
</size>
</property>
<property name="autoFillBackground">
<bool>false</bool>
</property>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<widget class="QLabel" name="serverSettingsTitle">
<property name="text">
<string>Настройки сервера</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="serverInputLayout">
<item>
<widget class="QLineEdit" name="serverInputField">
<property name="placeholderText">
<string>Сервер</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="portInputLayout">
<item>
<widget class="QLineEdit" name="portInputField">
<property name="placeholderText">
<string>Порт</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<widget class="QPushButton" name="saveServerButton">
<property name="text">
<string>Сохранить</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="displayGroupWidget" native="true">
<property name="geometry">
<rect>
<x>50</x>
<y>70</y>
<width>600</width>
<height>200</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>600</width>
<height>200</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>500</width>
<height>200</height>
</size>
</property>
<layout class="QVBoxLayout" name="verticalLayout_4">
<item>
<widget class="QLabel" name="displayChoiceTitle">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>30</height>
</size>
</property>
<property name="text">
<string>Выберите активные мониторы:</string>
</property>
<property name="alignment">
<set>Qt::AlignHCenter|Qt::AlignTop</set>
</property>
</widget>
</item>
<item>
<widget class="QWidget" name="screenWidget" native="true">
<layout class="QHBoxLayout" name="displayWidget">
<item>
<layout class="QHBoxLayout" name="displayLayout"/>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
<widget class="QLabel" name="notificationLabel">
<property name="geometry">
<rect>
<x>190</x>
<y>30</y>
<width>300</width>
<height>40</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>300</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>300</width>
<height>16777215</height>
</size>
</property>
<property name="font">
<font>
<pointsize>10</pointsize>
</font>
</property>
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Plain</enum>
</property>
<property name="text">
<string>Какая-то ошибка</string>
</property>
<property name="textFormat">
<enum>Qt::RichText</enum>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</widget>
<zorder>mainFrame</zorder>
<zorder>layoutWidget</zorder>
<zorder>widget</zorder>
</widget>
</widget>
<resources/>

View File

@@ -1,3 +1,4 @@
debug/sendsystem.o
debug/updatecontroller.o
debug/externalexecuter.o
debug/dataparser.o
@@ -5,13 +6,18 @@ debug/recognizesystem.o
debug/screenchecker.o
debug/tcpclient.o
debug/tools.o
debug/hashcomparer.o
debug/main.o
debug/mainwindow.o
debug/updatenotifywidget.o
debug/qrc_resources.o
debug/moc_sendsystem.o
debug/moc_updatecontroller.o
debug/moc_externalexecuter.o
debug/moc_dataparser.o
debug/moc_recognizesystem.o
debug/moc_screenchecker.o
debug/moc_tcpclient.o
debug/moc_hashcomparer.o
debug/moc_mainwindow.o
debug/moc_updatenotifywidget.o

View File

@@ -1,3 +1,4 @@
release/sendsystem.o
release/updatecontroller.o
release/externalexecuter.o
release/dataparser.o
@@ -5,13 +6,18 @@ release/recognizesystem.o
release/screenchecker.o
release/tcpclient.o
release/tools.o
release/hashcomparer.o
release/main.o
release/mainwindow.o
release/updatenotifywidget.o
release/qrc_resources.o
release/moc_sendsystem.o
release/moc_updatecontroller.o
release/moc_externalexecuter.o
release/moc_dataparser.o
release/moc_recognizesystem.o
release/moc_screenchecker.o
release/moc_tcpclient.o
release/moc_hashcomparer.o
release/moc_mainwindow.o
release/moc_updatenotifywidget.o

57
ui_UpdateListForm.h Normal file
View File

@@ -0,0 +1,57 @@
/********************************************************************************
** Form generated from reading UI file 'UpdateListForm.ui'
**
** Created by: Qt User Interface Compiler version 5.14.2
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_UPDATELISTFORM_H
#define UI_UPDATELISTFORM_H
#include <QtCore/QVariant>
#include <QtWidgets/QApplication>
#include <QtWidgets/QListView>
#include <QtWidgets/QPushButton>
#include <QtWidgets/QWidget>
QT_BEGIN_NAMESPACE
class Ui_UpdateListForm
{
public:
QPushButton *pushButton;
QListView *listView;
void setupUi(QWidget *UpdateListForm)
{
if (UpdateListForm->objectName().isEmpty())
UpdateListForm->setObjectName(QString::fromUtf8("UpdateListForm"));
UpdateListForm->resize(400, 300);
pushButton = new QPushButton(UpdateListForm);
pushButton->setObjectName(QString::fromUtf8("pushButton"));
pushButton->setGeometry(QRect(160, 260, 80, 25));
listView = new QListView(UpdateListForm);
listView->setObjectName(QString::fromUtf8("listView"));
listView->setGeometry(QRect(20, 10, 371, 231));
retranslateUi(UpdateListForm);
QMetaObject::connectSlotsByName(UpdateListForm);
} // setupUi
void retranslateUi(QWidget *UpdateListForm)
{
UpdateListForm->setWindowTitle(QCoreApplication::translate("UpdateListForm", "Form", nullptr));
pushButton->setText(QCoreApplication::translate("UpdateListForm", "PushButton", nullptr));
} // retranslateUi
};
namespace Ui {
class UpdateListForm: public Ui_UpdateListForm {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_UPDATELISTFORM_H

View File

@@ -13,6 +13,7 @@
#include <QtWidgets/QApplication>
#include <QtWidgets/QCheckBox>
#include <QtWidgets/QComboBox>
#include <QtWidgets/QFrame>
#include <QtWidgets/QGridLayout>
#include <QtWidgets/QHBoxLayout>
#include <QtWidgets/QLabel>
@@ -30,6 +31,22 @@ class Ui_MainWindow
{
public:
QWidget *centralwidget;
QWidget *layoutWidget;
QHBoxLayout *downlayout;
QVBoxLayout *downLayoutLoadingSlider;
QLabel *inlineTextDebug;
QProgressBar *loadingProgressBar;
QGridLayout *gridLayout;
QPushButton *connectButton;
QPushButton *startButton;
QPushButton *updateButton;
QCheckBox *autostartCheckBox;
QWidget *widget;
QHBoxLayout *horizontalLayout_2;
QLabel *languageTite;
QComboBox *languageComboBox;
QFrame *mainFrame;
QTextEdit *debugText;
QWidget *horizontalLayoutWidget;
QHBoxLayout *horizontalLayout;
QWidget *loginWidget;
@@ -50,28 +67,13 @@ public:
QHBoxLayout *portInputLayout;
QLineEdit *portInputField;
QPushButton *saveServerButton;
QWidget *layoutWidget;
QHBoxLayout *downlayout;
QVBoxLayout *downLayoutLoadingSlider;
QLabel *inlineTextDebug;
QProgressBar *loadingProgressBar;
QGridLayout *gridLayout;
QPushButton *connectButton;
QPushButton *startButton;
QPushButton *updateButton;
QCheckBox *autostartCheckBox;
QLabel *notificationLabel;
QTextEdit *debugText;
QWidget *displayGroupWidget;
QVBoxLayout *verticalLayout_4;
QLabel *displayChoiceTitle;
QWidget *screenWidget;
QHBoxLayout *displayWidget;
QHBoxLayout *displayLayout;
QWidget *widget;
QHBoxLayout *horizontalLayout_2;
QLabel *languageTite;
QComboBox *languageComboBox;
QLabel *notificationLabel;
void setupUi(QMainWindow *MainWindow)
{
@@ -87,9 +89,121 @@ public:
MainWindow->setMaximumSize(QSize(700, 500));
centralwidget = new QWidget(MainWindow);
centralwidget->setObjectName(QString::fromUtf8("centralwidget"));
horizontalLayoutWidget = new QWidget(centralwidget);
layoutWidget = new QWidget(centralwidget);
layoutWidget->setObjectName(QString::fromUtf8("layoutWidget"));
layoutWidget->setGeometry(QRect(10, 400, 681, 88));
downlayout = new QHBoxLayout(layoutWidget);
downlayout->setObjectName(QString::fromUtf8("downlayout"));
downlayout->setContentsMargins(0, 0, 0, 0);
downLayoutLoadingSlider = new QVBoxLayout();
downLayoutLoadingSlider->setObjectName(QString::fromUtf8("downLayoutLoadingSlider"));
inlineTextDebug = new QLabel(layoutWidget);
inlineTextDebug->setObjectName(QString::fromUtf8("inlineTextDebug"));
inlineTextDebug->setAlignment(Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft);
downLayoutLoadingSlider->addWidget(inlineTextDebug);
loadingProgressBar = new QProgressBar(layoutWidget);
loadingProgressBar->setObjectName(QString::fromUtf8("loadingProgressBar"));
loadingProgressBar->setMinimumSize(QSize(0, 30));
loadingProgressBar->setMaximumSize(QSize(16777215, 30));
loadingProgressBar->setValue(10);
downLayoutLoadingSlider->addWidget(loadingProgressBar);
downlayout->addLayout(downLayoutLoadingSlider);
gridLayout = new QGridLayout();
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
gridLayout->setSizeConstraint(QLayout::SetFixedSize);
gridLayout->setContentsMargins(-1, 27, -1, 0);
connectButton = new QPushButton(layoutWidget);
connectButton->setObjectName(QString::fromUtf8("connectButton"));
connectButton->setEnabled(true);
QSizePolicy sizePolicy1(QSizePolicy::Minimum, QSizePolicy::Minimum);
sizePolicy1.setHorizontalStretch(0);
sizePolicy1.setVerticalStretch(0);
sizePolicy1.setHeightForWidth(connectButton->sizePolicy().hasHeightForWidth());
connectButton->setSizePolicy(sizePolicy1);
connectButton->setMinimumSize(QSize(100, 30));
connectButton->setMaximumSize(QSize(100, 30));
connectButton->setCheckable(false);
connectButton->setChecked(false);
gridLayout->addWidget(connectButton, 1, 0, 1, 1);
startButton = new QPushButton(layoutWidget);
startButton->setObjectName(QString::fromUtf8("startButton"));
startButton->setEnabled(true);
sizePolicy1.setHeightForWidth(startButton->sizePolicy().hasHeightForWidth());
startButton->setSizePolicy(sizePolicy1);
startButton->setMinimumSize(QSize(100, 30));
startButton->setMaximumSize(QSize(100, 30));
gridLayout->addWidget(startButton, 1, 2, 1, 1);
updateButton = new QPushButton(layoutWidget);
updateButton->setObjectName(QString::fromUtf8("updateButton"));
updateButton->setEnabled(true);
sizePolicy1.setHeightForWidth(updateButton->sizePolicy().hasHeightForWidth());
updateButton->setSizePolicy(sizePolicy1);
updateButton->setMinimumSize(QSize(100, 30));
updateButton->setMaximumSize(QSize(100, 30));
updateButton->setFlat(false);
gridLayout->addWidget(updateButton, 1, 1, 1, 1);
autostartCheckBox = new QCheckBox(layoutWidget);
autostartCheckBox->setObjectName(QString::fromUtf8("autostartCheckBox"));
autostartCheckBox->setEnabled(true);
autostartCheckBox->setChecked(false);
gridLayout->addWidget(autostartCheckBox, 0, 2, 1, 1);
downlayout->addLayout(gridLayout);
widget = new QWidget(centralwidget);
widget->setObjectName(QString::fromUtf8("widget"));
widget->setGeometry(QRect(0, 10, 171, 30));
horizontalLayout_2 = new QHBoxLayout(widget);
horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
horizontalLayout_2->setContentsMargins(-1, 0, -1, 0);
languageTite = new QLabel(widget);
languageTite->setObjectName(QString::fromUtf8("languageTite"));
QSizePolicy sizePolicy2(QSizePolicy::Expanding, QSizePolicy::Expanding);
sizePolicy2.setHorizontalStretch(0);
sizePolicy2.setVerticalStretch(0);
sizePolicy2.setHeightForWidth(languageTite->sizePolicy().hasHeightForWidth());
languageTite->setSizePolicy(sizePolicy2);
horizontalLayout_2->addWidget(languageTite);
languageComboBox = new QComboBox(widget);
languageComboBox->addItem(QString());
languageComboBox->addItem(QString());
languageComboBox->setObjectName(QString::fromUtf8("languageComboBox"));
QSizePolicy sizePolicy3(QSizePolicy::Maximum, QSizePolicy::Expanding);
sizePolicy3.setHorizontalStretch(0);
sizePolicy3.setVerticalStretch(0);
sizePolicy3.setHeightForWidth(languageComboBox->sizePolicy().hasHeightForWidth());
languageComboBox->setSizePolicy(sizePolicy3);
horizontalLayout_2->addWidget(languageComboBox);
mainFrame = new QFrame(centralwidget);
mainFrame->setObjectName(QString::fromUtf8("mainFrame"));
mainFrame->setEnabled(true);
mainFrame->setGeometry(QRect(10, 10, 681, 381));
mainFrame->setFrameShape(QFrame::StyledPanel);
mainFrame->setFrameShadow(QFrame::Raised);
debugText = new QTextEdit(mainFrame);
debugText->setObjectName(QString::fromUtf8("debugText"));
debugText->setGeometry(QRect(10, 290, 661, 81));
horizontalLayoutWidget = new QWidget(mainFrame);
horizontalLayoutWidget->setObjectName(QString::fromUtf8("horizontalLayoutWidget"));
horizontalLayoutWidget->setGeometry(QRect(10, 100, 681, 221));
horizontalLayoutWidget->setGeometry(QRect(10, 110, 661, 221));
horizontalLayout = new QHBoxLayout(horizontalLayoutWidget);
horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
horizontalLayout->setSizeConstraint(QLayout::SetDefaultConstraint);
@@ -97,11 +211,11 @@ public:
loginWidget = new QWidget(horizontalLayoutWidget);
loginWidget->setObjectName(QString::fromUtf8("loginWidget"));
loginWidget->setEnabled(true);
QSizePolicy sizePolicy1(QSizePolicy::Maximum, QSizePolicy::Maximum);
sizePolicy1.setHorizontalStretch(0);
sizePolicy1.setVerticalStretch(0);
sizePolicy1.setHeightForWidth(loginWidget->sizePolicy().hasHeightForWidth());
loginWidget->setSizePolicy(sizePolicy1);
QSizePolicy sizePolicy4(QSizePolicy::Maximum, QSizePolicy::Maximum);
sizePolicy4.setHorizontalStretch(0);
sizePolicy4.setVerticalStretch(0);
sizePolicy4.setHeightForWidth(loginWidget->sizePolicy().hasHeightForWidth());
loginWidget->setSizePolicy(sizePolicy4);
loginWidget->setMinimumSize(QSize(250, 0));
loginWidget->setMaximumSize(QSize(250, 16777215));
loginWidget->setAutoFillBackground(false);
@@ -195,114 +309,22 @@ public:
horizontalLayout->addWidget(settingsWidget);
layoutWidget = new QWidget(centralwidget);
layoutWidget->setObjectName(QString::fromUtf8("layoutWidget"));
layoutWidget->setGeometry(QRect(10, 400, 681, 88));
downlayout = new QHBoxLayout(layoutWidget);
downlayout->setObjectName(QString::fromUtf8("downlayout"));
downlayout->setContentsMargins(0, 0, 0, 0);
downLayoutLoadingSlider = new QVBoxLayout();
downLayoutLoadingSlider->setObjectName(QString::fromUtf8("downLayoutLoadingSlider"));
inlineTextDebug = new QLabel(layoutWidget);
inlineTextDebug->setObjectName(QString::fromUtf8("inlineTextDebug"));
inlineTextDebug->setAlignment(Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft);
downLayoutLoadingSlider->addWidget(inlineTextDebug);
loadingProgressBar = new QProgressBar(layoutWidget);
loadingProgressBar->setObjectName(QString::fromUtf8("loadingProgressBar"));
loadingProgressBar->setMinimumSize(QSize(0, 30));
loadingProgressBar->setMaximumSize(QSize(16777215, 30));
loadingProgressBar->setValue(10);
downLayoutLoadingSlider->addWidget(loadingProgressBar);
downlayout->addLayout(downLayoutLoadingSlider);
gridLayout = new QGridLayout();
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
gridLayout->setSizeConstraint(QLayout::SetFixedSize);
gridLayout->setContentsMargins(-1, 27, -1, 0);
connectButton = new QPushButton(layoutWidget);
connectButton->setObjectName(QString::fromUtf8("connectButton"));
connectButton->setEnabled(true);
QSizePolicy sizePolicy2(QSizePolicy::Minimum, QSizePolicy::Minimum);
sizePolicy2.setHorizontalStretch(0);
sizePolicy2.setVerticalStretch(0);
sizePolicy2.setHeightForWidth(connectButton->sizePolicy().hasHeightForWidth());
connectButton->setSizePolicy(sizePolicy2);
connectButton->setMinimumSize(QSize(100, 30));
connectButton->setMaximumSize(QSize(100, 30));
connectButton->setCheckable(false);
connectButton->setChecked(false);
gridLayout->addWidget(connectButton, 1, 0, 1, 1);
startButton = new QPushButton(layoutWidget);
startButton->setObjectName(QString::fromUtf8("startButton"));
startButton->setEnabled(true);
sizePolicy2.setHeightForWidth(startButton->sizePolicy().hasHeightForWidth());
startButton->setSizePolicy(sizePolicy2);
startButton->setMinimumSize(QSize(100, 30));
startButton->setMaximumSize(QSize(100, 30));
gridLayout->addWidget(startButton, 1, 2, 1, 1);
updateButton = new QPushButton(layoutWidget);
updateButton->setObjectName(QString::fromUtf8("updateButton"));
updateButton->setEnabled(true);
sizePolicy2.setHeightForWidth(updateButton->sizePolicy().hasHeightForWidth());
updateButton->setSizePolicy(sizePolicy2);
updateButton->setMinimumSize(QSize(100, 30));
updateButton->setMaximumSize(QSize(100, 30));
updateButton->setFlat(false);
gridLayout->addWidget(updateButton, 1, 1, 1, 1);
autostartCheckBox = new QCheckBox(layoutWidget);
autostartCheckBox->setObjectName(QString::fromUtf8("autostartCheckBox"));
autostartCheckBox->setEnabled(true);
autostartCheckBox->setChecked(false);
gridLayout->addWidget(autostartCheckBox, 0, 2, 1, 1);
downlayout->addLayout(gridLayout);
notificationLabel = new QLabel(centralwidget);
notificationLabel->setObjectName(QString::fromUtf8("notificationLabel"));
notificationLabel->setGeometry(QRect(200, 80, 300, 40));
sizePolicy.setHeightForWidth(notificationLabel->sizePolicy().hasHeightForWidth());
notificationLabel->setSizePolicy(sizePolicy);
notificationLabel->setMinimumSize(QSize(300, 0));
notificationLabel->setMaximumSize(QSize(300, 16777215));
QFont font;
font.setPointSize(10);
notificationLabel->setFont(font);
notificationLabel->setFrameShape(QFrame::StyledPanel);
notificationLabel->setFrameShadow(QFrame::Plain);
notificationLabel->setTextFormat(Qt::RichText);
notificationLabel->setAlignment(Qt::AlignCenter);
debugText = new QTextEdit(centralwidget);
debugText->setObjectName(QString::fromUtf8("debugText"));
debugText->setGeometry(QRect(0, 0, 701, 81));
displayGroupWidget = new QWidget(centralwidget);
displayGroupWidget = new QWidget(mainFrame);
displayGroupWidget->setObjectName(QString::fromUtf8("displayGroupWidget"));
displayGroupWidget->setGeometry(QRect(50, 90, 600, 200));
QSizePolicy sizePolicy3(QSizePolicy::Preferred, QSizePolicy::Minimum);
sizePolicy3.setHorizontalStretch(0);
sizePolicy3.setVerticalStretch(0);
sizePolicy3.setHeightForWidth(displayGroupWidget->sizePolicy().hasHeightForWidth());
displayGroupWidget->setSizePolicy(sizePolicy3);
displayGroupWidget->setGeometry(QRect(50, 70, 600, 200));
QSizePolicy sizePolicy5(QSizePolicy::Preferred, QSizePolicy::Minimum);
sizePolicy5.setHorizontalStretch(0);
sizePolicy5.setVerticalStretch(0);
sizePolicy5.setHeightForWidth(displayGroupWidget->sizePolicy().hasHeightForWidth());
displayGroupWidget->setSizePolicy(sizePolicy5);
displayGroupWidget->setMinimumSize(QSize(600, 200));
displayGroupWidget->setMaximumSize(QSize(500, 200));
verticalLayout_4 = new QVBoxLayout(displayGroupWidget);
verticalLayout_4->setObjectName(QString::fromUtf8("verticalLayout_4"));
displayChoiceTitle = new QLabel(displayGroupWidget);
displayChoiceTitle->setObjectName(QString::fromUtf8("displayChoiceTitle"));
sizePolicy2.setHeightForWidth(displayChoiceTitle->sizePolicy().hasHeightForWidth());
displayChoiceTitle->setSizePolicy(sizePolicy2);
sizePolicy1.setHeightForWidth(displayChoiceTitle->sizePolicy().hasHeightForWidth());
displayChoiceTitle->setSizePolicy(sizePolicy1);
displayChoiceTitle->setMaximumSize(QSize(16777215, 30));
displayChoiceTitle->setAlignment(Qt::AlignHCenter|Qt::AlignTop);
@@ -320,35 +342,24 @@ public:
verticalLayout_4->addWidget(screenWidget);
widget = new QWidget(centralwidget);
widget->setObjectName(QString::fromUtf8("widget"));
widget->setGeometry(QRect(0, 10, 171, 30));
horizontalLayout_2 = new QHBoxLayout(widget);
horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
horizontalLayout_2->setContentsMargins(-1, 0, -1, 0);
languageTite = new QLabel(widget);
languageTite->setObjectName(QString::fromUtf8("languageTite"));
QSizePolicy sizePolicy4(QSizePolicy::Expanding, QSizePolicy::Expanding);
sizePolicy4.setHorizontalStretch(0);
sizePolicy4.setVerticalStretch(0);
sizePolicy4.setHeightForWidth(languageTite->sizePolicy().hasHeightForWidth());
languageTite->setSizePolicy(sizePolicy4);
horizontalLayout_2->addWidget(languageTite);
languageComboBox = new QComboBox(widget);
languageComboBox->addItem(QString());
languageComboBox->addItem(QString());
languageComboBox->setObjectName(QString::fromUtf8("languageComboBox"));
QSizePolicy sizePolicy5(QSizePolicy::Maximum, QSizePolicy::Expanding);
sizePolicy5.setHorizontalStretch(0);
sizePolicy5.setVerticalStretch(0);
sizePolicy5.setHeightForWidth(languageComboBox->sizePolicy().hasHeightForWidth());
languageComboBox->setSizePolicy(sizePolicy5);
horizontalLayout_2->addWidget(languageComboBox);
notificationLabel = new QLabel(mainFrame);
notificationLabel->setObjectName(QString::fromUtf8("notificationLabel"));
notificationLabel->setGeometry(QRect(190, 30, 300, 40));
sizePolicy.setHeightForWidth(notificationLabel->sizePolicy().hasHeightForWidth());
notificationLabel->setSizePolicy(sizePolicy);
notificationLabel->setMinimumSize(QSize(300, 0));
notificationLabel->setMaximumSize(QSize(300, 16777215));
QFont font;
font.setPointSize(10);
notificationLabel->setFont(font);
notificationLabel->setFrameShape(QFrame::StyledPanel);
notificationLabel->setFrameShadow(QFrame::Plain);
notificationLabel->setTextFormat(Qt::RichText);
notificationLabel->setAlignment(Qt::AlignCenter);
MainWindow->setCentralWidget(centralwidget);
mainFrame->raise();
layoutWidget->raise();
widget->raise();
retranslateUi(MainWindow);
@@ -358,6 +369,15 @@ public:
void retranslateUi(QMainWindow *MainWindow)
{
MainWindow->setWindowTitle(QCoreApplication::translate("MainWindow", "\320\242\321\200\320\265\320\275\320\260\320\266\320\265\321\200 \320\277\321\200\320\276\321\206\320\265\320\264\321\203\321\200 \321\202\320\265\321\205\320\275\320\270\321\207\320\265\321\201\320\272\320\276\320\263\320\276 \320\276\320\261\321\201\320\273\321\203\320\266\320\270\320\262\320\260\320\275\320\270\321\217 \321\201\320\260\320\274\320\276\320\273\320\265\321\202\320\260 RRJ-95NEW-100", nullptr));
inlineTextDebug->setText(QString());
connectButton->setText(QCoreApplication::translate("MainWindow", "\320\241\320\276\320\265\320\264\320\270\320\275\320\270\321\202\321\214\321\201\321\217", nullptr));
startButton->setText(QCoreApplication::translate("MainWindow", "\320\227\320\260\320\277\321\203\321\201\320\272", nullptr));
updateButton->setText(QCoreApplication::translate("MainWindow", "\320\236\320\261\320\275\320\276\320\262\320\270\321\202\321\214", 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));
languageTite->setText(QCoreApplication::translate("MainWindow", "\320\257\320\267\321\213\320\272", nullptr));
languageComboBox->setItemText(0, QCoreApplication::translate("MainWindow", "RUS", nullptr));
languageComboBox->setItemText(1, QCoreApplication::translate("MainWindow", "ENG", nullptr));
loginTitle->setText(QCoreApplication::translate("MainWindow", "\320\222\321\205\320\276\320\264 \320\262 \321\201\320\270\321\201\321\202\320\265\320\274\321\203", nullptr));
loginInputField->setText(QString());
loginInputField->setPlaceholderText(QCoreApplication::translate("MainWindow", "\320\233\320\276\320\263\320\270\320\275", nullptr));
@@ -368,17 +388,8 @@ public:
serverInputField->setPlaceholderText(QCoreApplication::translate("MainWindow", "\320\241\320\265\321\200\320\262\320\265\321\200", nullptr));
portInputField->setPlaceholderText(QCoreApplication::translate("MainWindow", "\320\237\320\276\321\200\321\202", nullptr));
saveServerButton->setText(QCoreApplication::translate("MainWindow", "\320\241\320\276\321\205\321\200\320\260\320\275\320\270\321\202\321\214", nullptr));
inlineTextDebug->setText(QString());
connectButton->setText(QCoreApplication::translate("MainWindow", "\320\241\320\276\320\265\320\264\320\270\320\275\320\270\321\202\321\214\321\201\321\217", nullptr));
startButton->setText(QCoreApplication::translate("MainWindow", "\320\227\320\260\320\277\321\203\321\201\320\272", nullptr));
updateButton->setText(QCoreApplication::translate("MainWindow", "\320\236\320\261\320\275\320\276\320\262\320\270\321\202\321\214", 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));
notificationLabel->setText(QCoreApplication::translate("MainWindow", "\320\232\320\260\320\272\320\260\321\217-\321\202\320\276 \320\276\321\210\320\270\320\261\320\272\320\260", nullptr));
displayChoiceTitle->setText(QCoreApplication::translate("MainWindow", "\320\222\321\213\320\261\320\265\321\200\320\270\321\202\320\265 \320\260\320\272\321\202\320\270\320\262\320\275\321\213\320\265 \320\274\320\276\320\275\320\270\321\202\320\276\321\200\321\213:", nullptr));
languageTite->setText(QCoreApplication::translate("MainWindow", "\320\257\320\267\321\213\320\272", nullptr));
languageComboBox->setItemText(0, QCoreApplication::translate("MainWindow", "RUS", nullptr));
languageComboBox->setItemText(1, QCoreApplication::translate("MainWindow", "ENG", nullptr));
notificationLabel->setText(QCoreApplication::translate("MainWindow", "\320\232\320\260\320\272\320\260\321\217-\321\202\320\276 \320\276\321\210\320\270\320\261\320\272\320\260", nullptr));
} // retranslateUi
};

87
ui_updatenotifywidget.h Normal file
View File

@@ -0,0 +1,87 @@
/********************************************************************************
** Form generated from reading UI file 'updatenotifywidget.ui'
**
** Created by: Qt User Interface Compiler version 5.14.2
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_UPDATENOTIFYWIDGET_H
#define UI_UPDATENOTIFYWIDGET_H
#include <QtCore/QVariant>
#include <QtWidgets/QApplication>
#include <QtWidgets/QGridLayout>
#include <QtWidgets/QHBoxLayout>
#include <QtWidgets/QLabel>
#include <QtWidgets/QListWidget>
#include <QtWidgets/QPushButton>
#include <QtWidgets/QWidget>
QT_BEGIN_NAMESPACE
class Ui_UpdateNotifyWidget
{
public:
QGridLayout *gridLayout;
QHBoxLayout *ButtonsLayout;
QPushButton *StartLoadButton;
QPushButton *CancelButton;
QLabel *NotificationLabel;
QListWidget *updateListWidget;
void setupUi(QWidget *UpdateNotifyWidget)
{
if (UpdateNotifyWidget->objectName().isEmpty())
UpdateNotifyWidget->setObjectName(QString::fromUtf8("UpdateNotifyWidget"));
UpdateNotifyWidget->resize(726, 429);
gridLayout = new QGridLayout(UpdateNotifyWidget);
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
ButtonsLayout = new QHBoxLayout();
ButtonsLayout->setObjectName(QString::fromUtf8("ButtonsLayout"));
StartLoadButton = new QPushButton(UpdateNotifyWidget);
StartLoadButton->setObjectName(QString::fromUtf8("StartLoadButton"));
ButtonsLayout->addWidget(StartLoadButton);
CancelButton = new QPushButton(UpdateNotifyWidget);
CancelButton->setObjectName(QString::fromUtf8("CancelButton"));
ButtonsLayout->addWidget(CancelButton);
gridLayout->addLayout(ButtonsLayout, 2, 0, 1, 1);
NotificationLabel = new QLabel(UpdateNotifyWidget);
NotificationLabel->setObjectName(QString::fromUtf8("NotificationLabel"));
gridLayout->addWidget(NotificationLabel, 0, 0, 1, 1);
updateListWidget = new QListWidget(UpdateNotifyWidget);
updateListWidget->setObjectName(QString::fromUtf8("updateListWidget"));
gridLayout->addWidget(updateListWidget, 1, 0, 1, 1);
retranslateUi(UpdateNotifyWidget);
QMetaObject::connectSlotsByName(UpdateNotifyWidget);
} // setupUi
void retranslateUi(QWidget *UpdateNotifyWidget)
{
UpdateNotifyWidget->setWindowTitle(QCoreApplication::translate("UpdateNotifyWidget", "Form", nullptr));
StartLoadButton->setText(QCoreApplication::translate("UpdateNotifyWidget", "\320\227\320\260\320\263\321\200\321\203\320\267\320\270\321\202\321\214 \320\275\320\260 \321\201\320\265\321\200\320\262\320\265\321\200", nullptr));
CancelButton->setText(QCoreApplication::translate("UpdateNotifyWidget", "\320\236\321\202\320\274\320\265\320\275\320\260", nullptr));
NotificationLabel->setText(QCoreApplication::translate("UpdateNotifyWidget", "\320\236\320\261\320\275\320\260\321\200\321\203\320\266\320\265\320\275\321\213 \320\275\320\276\320\262\321\213\320\265 \321\204\320\260\320\271\320\273\321\213:", nullptr));
} // retranslateUi
};
namespace Ui {
class UpdateNotifyWidget: public Ui_UpdateNotifyWidget {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_UPDATENOTIFYWIDGET_H

81
updatenotifywidget.cpp Normal file
View File

@@ -0,0 +1,81 @@
#include "updatenotifywidget.h"
#include "ui_updatenotifywidget.h"
#include "mainwindow.h"
#include <QMessageBox>
UpdateNotifyWidget::UpdateNotifyWidget(QWidget *parent) :
ui(new Ui::UpdateNotifyWidget)
{
ui->setupUi(this);
setWindowFlag(Qt::SubWindow);
}
void UpdateNotifyWidget::initialize(MainWindow *mainWindow,UpdateController *updateController)
{
setWindowTitle("Отправка новых файлов");
this->mainWindow = mainWindow;
this->updateController = updateController;
fillList();
connect(updateController,&UpdateController::sigUpdateComplete,this,&UpdateNotifyWidget::showCompleteDialogBox);
connect(this,&UpdateNotifyWidget::sigUpdateFilesOnServer,updateController,&UpdateController::updateFilesOnServer);
}
void UpdateNotifyWidget::setUpdateList(QList<FileData> *fileDataList)
{
this->updateList = fileDataList;
}
void UpdateNotifyWidget::addToList(FileData fileData)
{
ui->updateListWidget->addItem(fileData.path);
}
void UpdateNotifyWidget::on_StartLoadButton_clicked()
{
emit sigUpdateFilesOnServer(updateList);
}
void UpdateNotifyWidget::on_CancelButton_clicked()
{
mainWindow->checkUpdate();
close();
}
void UpdateNotifyWidget::fillList()
{
}
UpdateNotifyWidget::~UpdateNotifyWidget()
{
delete ui;
}
void UpdateNotifyWidget::showCompleteDialogBox(bool flag)
{
QMessageBox *messageBox = new QMessageBox;
if(flag)
{
messageBox->setIcon(QMessageBox::Information);
messageBox->setWindowTitle("Информация");
messageBox->addButton(QMessageBox::Ok);
messageBox->setText("Загрузка завершена");
}
else
{
messageBox->setIcon(QMessageBox::Warning);
messageBox->setWindowTitle("Ошибка");
messageBox->addButton(QMessageBox::Ok);
messageBox->setText("Произошла ошибка при загрузке");
}
connect(messageBox,&QMessageBox::accepted,this,&UpdateNotifyWidget::hide);
connect(messageBox,&QMessageBox::accepted,this,&UpdateNotifyWidget::on_CancelButton_clicked);
messageBox->show();
}

44
updatenotifywidget.h Normal file
View File

@@ -0,0 +1,44 @@
#ifndef UPDATENOTIFYWIDGET_H
#define UPDATENOTIFYWIDGET_H
#include "mainwindow.h"
#include <QDialog>
#include <QWidget>
#include <Core/FileData.h>
namespace Ui {
class UpdateNotifyWidget;
}
class MainWindow;
class UpdateController;
class UpdateNotifyWidget : public QWidget
{
Q_OBJECT
public:
explicit UpdateNotifyWidget(QWidget *parent = nullptr);
void initialize(MainWindow *mainWindow, UpdateController *updateController);
void addToList(FileData fileData);
void setUpdateList(QList<FileData> *fileDataList);
~UpdateNotifyWidget();
signals:
void sigUpdateFilesOnServer(QList<FileData> *fileSendList);
private slots:
void showCompleteDialogBox(bool flag);
void on_StartLoadButton_clicked();
void on_CancelButton_clicked();
private:
Ui::UpdateNotifyWidget *ui;
MainWindow *mainWindow;
UpdateController *updateController;
QList<FileData> *updateList;
void fillList();
};
#endif // UPDATENOTIFYWIDGET_H

49
updatenotifywidget.ui Normal file
View File

@@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>UpdateNotifyWidget</class>
<widget class="QWidget" name="UpdateNotifyWidget">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>726</width>
<height>429</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<layout class="QGridLayout" name="gridLayout">
<item row="2" column="0">
<layout class="QHBoxLayout" name="ButtonsLayout">
<item>
<widget class="QPushButton" name="StartLoadButton">
<property name="text">
<string>Загрузить на сервер</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="CancelButton">
<property name="text">
<string>Отмена</string>
</property>
</widget>
</item>
</layout>
</item>
<item row="0" column="0">
<widget class="QLabel" name="NotificationLabel">
<property name="text">
<string>Обнаружены новые файлы:</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QListWidget" name="updateListWidget"/>
</item>
</layout>
</widget>
<resources/>
<connections/>
</ui>