diff options
author | Qt by Nokia <qt-info@nokia.com> | 2011-04-27 12:05:43 +0200 |
---|---|---|
committer | axis <qt-info@nokia.com> | 2011-04-27 12:05:43 +0200 |
commit | 38be0d13830efd2d98281c645c3a60afe05ffece (patch) | |
tree | 6ea73f3ec77f7d153333779883e8120f82820abe /tests/benchmarks/corelib/tools |
Initial import from the monolithic Qt.
This is the beginning of revision history for this module. If you
want to look at revision history older than this, please refer to the
Qt Git wiki for how to use Git history grafting. At the time of
writing, this wiki is located here:
http://qt.gitorious.org/qt/pages/GitIntroductionWithQt
If you have already performed the grafting and you don't see any
history beyond this commit, try running "git log" with the "--follow"
argument.
Branched from the monolithic repo, Qt master branch, at commit
896db169ea224deb96c59ce8af800d019de63f12
Diffstat (limited to 'tests/benchmarks/corelib/tools')
35 files changed, 79949 insertions, 0 deletions
diff --git a/tests/benchmarks/corelib/tools/containers-associative/containers-associative.pro b/tests/benchmarks/corelib/tools/containers-associative/containers-associative.pro new file mode 100644 index 0000000000..0dcee4f5dc --- /dev/null +++ b/tests/benchmarks/corelib/tools/containers-associative/containers-associative.pro @@ -0,0 +1,9 @@ +load(qttest_p4) +TEMPLATE = app +TARGET = tst_bench_containers-associative +DEPENDPATH += . +INCLUDEPATH += . + +# Input +SOURCES += main.cpp +QT -= gui diff --git a/tests/benchmarks/corelib/tools/containers-associative/main.cpp b/tests/benchmarks/corelib/tools/containers-associative/main.cpp new file mode 100644 index 0000000000..b06bb99633 --- /dev/null +++ b/tests/benchmarks/corelib/tools/containers-associative/main.cpp @@ -0,0 +1,142 @@ +/**************************************************************************** +** +** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the test suite of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ +#include <QString> + +#include <qtest.h> + +class tst_associative_containers : public QObject +{ + Q_OBJECT +private slots: + void insert_data(); + void insert(); + void lookup_data(); + void lookup(); +}; + +template <typename T> +void testInsert(int size) +{ + T container; + + QBENCHMARK { + for (int i = 0; i < size; ++i) + container.insert(i, i); + } +} + +void tst_associative_containers::insert_data() +{ + QTest::addColumn<bool>("useHash"); + QTest::addColumn<int>("size"); + + for (int size = 10; size < 20000; size += 100) { + + const QByteArray sizeString = QByteArray::number(size); + + QTest::newRow(("hash--" + sizeString).constData()) << true << size; + QTest::newRow(("map--" + sizeString).constData()) << false << size; + } +} + +void tst_associative_containers::insert() +{ + QFETCH(bool, useHash); + QFETCH(int, size); + + QHash<int, int> testHash; + QMap<int, int> testMap; + + if (useHash) { + testInsert<QHash<int, int> >(size); + } else { + testInsert<QMap<int, int> >(size); + } +} + +void tst_associative_containers::lookup_data() +{ +// setReportType(LineChartReport); +// setChartTitle("Time to call value(), with an increasing number of items in the container"); + + QTest::addColumn<bool>("useHash"); + QTest::addColumn<int>("size"); + + for (int size = 10; size < 20000; size += 100) { + + const QByteArray sizeString = QByteArray::number(size); + + QTest::newRow(("hash--" + sizeString).constData()) << true << size; + QTest::newRow(("map--" + sizeString).constData()) << false << size; + } +} + +template <typename T> +void testLookup(int size) +{ + T container; + + for (int i = 0; i < size; ++i) + container.insert(i, i); + + int val; + + QBENCHMARK { + for (int i = 0; i < size; ++i) + val = container.value(i); + + } +} + +void tst_associative_containers::lookup() +{ + QFETCH(bool, useHash); + QFETCH(int, size); + + if (useHash) { + testLookup<QHash<int, int> >(size); + } else { + testLookup<QMap<int, int> >(size); + } +} + +QTEST_MAIN(tst_associative_containers) +#include "main.moc" diff --git a/tests/benchmarks/corelib/tools/containers-sequential/containers-sequential.pro b/tests/benchmarks/corelib/tools/containers-sequential/containers-sequential.pro new file mode 100644 index 0000000000..656510e72d --- /dev/null +++ b/tests/benchmarks/corelib/tools/containers-sequential/containers-sequential.pro @@ -0,0 +1,9 @@ +load(qttest_p4) +TEMPLATE = app +TARGET = tst_bench_containers-sequential +DEPENDPATH += . +INCLUDEPATH += . + +# Input +SOURCES += main.cpp +QT -= gui diff --git a/tests/benchmarks/corelib/tools/containers-sequential/main.cpp b/tests/benchmarks/corelib/tools/containers-sequential/main.cpp new file mode 100644 index 0000000000..ac183ce0cb --- /dev/null +++ b/tests/benchmarks/corelib/tools/containers-sequential/main.cpp @@ -0,0 +1,265 @@ +/**************************************************************************** +** +** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the test suite of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ +// This file contains benchmarks for comparing QVector against std::vector + +#include <QtCore> +#include <QVector> +#include <vector> + +#include <qtest.h> + +template <typename T> // T is the item type +class UseCases { +public: + virtual ~UseCases() {} + + // Use case: Insert \a size items into the vector. + virtual void insert(int size) = 0; + + // Use case: Lookup \a size items from the vector. + virtual void lookup(int size) = 0; +}; + +template <typename T> +T * f(T *ts) // dummy function to prevent code from being optimized away by the compiler +{ + return ts; +} + +// This subclass implements the use cases using QVector as efficiently as possible. +template <typename T> +class UseCases_QVector : public UseCases<T> +{ + void insert(int size) + { + QVector<T> v; + T t; + QBENCHMARK { + for (int i = 0; i < size; ++i) + v.append(t); + } + } + + void lookup(int size) + { + QVector<T> v; + + T t; + for (int i = 0; i < size; ++i) + v.append(t); + + T *ts = new T[size]; + QBENCHMARK { + for (int i = 0; i < size; ++i) + ts[i] = v.value(i); + } + f<T>(ts); + delete[] ts; + } +}; + +// This subclass implements the use cases using std::vector as efficiently as possible. +template <typename T> +class UseCases_stdvector : public UseCases<T> +{ + void insert(int size) + { + std::vector<T> v; + T t; + QBENCHMARK { + for (int i = 0; i < size; ++i) + v.push_back(t); + } + } + + void lookup(int size) + { + std::vector<T> v; + + T t; + for (int i = 0; i < size; ++i) + v.push_back(t); + + T *ts = new T[size]; + QBENCHMARK { + for (int i = 0; i < size; ++i) + ts[i] = v[i]; + } + f<T>(ts); + delete[] ts; + } +}; + +struct Large { // A "large" item type + int x[1000]; +}; + +// Symbian devices typically have limited memory +#if defined(Q_OS_SYMBIAN) || defined(Q_WS_WINCE) +# define LARGE_MAX_SIZE 2000 +#else +# define LARGE_MAX_SIZE 20000 +#endif + +class tst_vector_vs_std : public QObject +{ + Q_OBJECT +public: + tst_vector_vs_std() + { + useCases_QVector_int = new UseCases_QVector<int>; + useCases_stdvector_int = new UseCases_stdvector<int>; + + useCases_QVector_Large = new UseCases_QVector<Large>; + useCases_stdvector_Large = new UseCases_stdvector<Large>; + } + +private: + UseCases<int> *useCases_QVector_int; + UseCases<int> *useCases_stdvector_int; + UseCases<Large> *useCases_QVector_Large; + UseCases<Large> *useCases_stdvector_Large; + +private slots: + void insert_int_data(); + void insert_int(); + void insert_Large_data(); + void insert_Large(); + void lookup_int_data(); + void lookup_int(); + void lookup_Large_data(); + void lookup_Large(); +}; + +void tst_vector_vs_std::insert_int_data() +{ + QTest::addColumn<bool>("useStd"); + QTest::addColumn<int>("size"); + + for (int size = 10; size < 20000; size += 100) { + const QByteArray sizeString = QByteArray::number(size); + QTest::newRow(("std::vector-int--" + sizeString).constData()) << true << size; + QTest::newRow(("QVector-int--" + sizeString).constData()) << false << size; + } +} + +void tst_vector_vs_std::insert_int() +{ + QFETCH(bool, useStd); + QFETCH(int, size); + + if (useStd) + useCases_stdvector_int->insert(size); + else + useCases_QVector_int->insert(size); +} + +void tst_vector_vs_std::insert_Large_data() +{ + QTest::addColumn<bool>("useStd"); + QTest::addColumn<int>("size"); + + for (int size = 10; size < LARGE_MAX_SIZE; size += 100) { + const QByteArray sizeString = QByteArray::number(size); + QTest::newRow(("std::vector-Large--" + sizeString).constData()) << true << size; + QTest::newRow(("QVector-Large--" + sizeString).constData()) << false << size; + } +} + +void tst_vector_vs_std::insert_Large() +{ + QFETCH(bool, useStd); + QFETCH(int, size); + + if (useStd) + useCases_stdvector_Large->insert(size); + else + useCases_QVector_Large->insert(size); +} + +void tst_vector_vs_std::lookup_int_data() +{ + QTest::addColumn<bool>("useStd"); + QTest::addColumn<int>("size"); + + for (int size = 10; size < 20000; size += 100) { + const QByteArray sizeString = QByteArray::number(size); + QTest::newRow(("std::vector-int--" + sizeString).constData()) << true << size; + QTest::newRow(("QVector-int--" + sizeString).constData()) << false << size; + } +} + +void tst_vector_vs_std::lookup_int() +{ + QFETCH(bool, useStd); + QFETCH(int, size); + + if (useStd) + useCases_stdvector_int->lookup(size); + else + useCases_QVector_int->lookup(size); +} + +void tst_vector_vs_std::lookup_Large_data() +{ + QTest::addColumn<bool>("useStd"); + QTest::addColumn<int>("size"); + + for (int size = 10; size < LARGE_MAX_SIZE; size += 100) { + const QByteArray sizeString = QByteArray::number(size); + QTest::newRow(("std::vector-Large--" + sizeString).constData()) << true << size; + QTest::newRow(("QVector-Large--" + sizeString).constData()) << false << size; + } +} + +void tst_vector_vs_std::lookup_Large() +{ + QFETCH(bool, useStd); + QFETCH(int, size); + + if (useStd) + useCases_stdvector_Large->lookup(size); + else + useCases_QVector_Large->lookup(size); +} + +QTEST_MAIN(tst_vector_vs_std) +#include "main.moc" diff --git a/tests/benchmarks/corelib/tools/qbytearray/main.cpp b/tests/benchmarks/corelib/tools/qbytearray/main.cpp new file mode 100644 index 0000000000..9c204a5605 --- /dev/null +++ b/tests/benchmarks/corelib/tools/qbytearray/main.cpp @@ -0,0 +1,92 @@ +/**************************************************************************** +** +** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the test suite of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ +#include <QDebug> +#include <QIODevice> +#include <QFile> +#include <QString> + +#include <qtest.h> + + +class tst_qbytearray : public QObject +{ + Q_OBJECT +private slots: + void append(); + void append_data(); +}; + + +void tst_qbytearray::append_data() +{ + QTest::addColumn<int>("size"); + QTest::newRow("1") << int(1); + QTest::newRow("10") << int(10); + QTest::newRow("100") << int(100); + QTest::newRow("1000") << int(1000); + QTest::newRow("10000") << int(10000); + QTest::newRow("100000") << int(100000); + QTest::newRow("1000000") << int(1000000); + QTest::newRow("10000000") << int(10000000); + QTest::newRow("100000000") << int(100000000); +} + +void tst_qbytearray::append() +{ + QFETCH(int, size); + +#ifdef Q_OS_SYMBIAN + if (size > 1000000) + QSKIP("Skipped due to limited memory in many Symbian devices.", SkipSingle); +#endif + + QByteArray ba; + QBENCHMARK { + QByteArray ba2(size, 'x'); + ba.append(ba2); + ba.clear(); + } +} + + +QTEST_MAIN(tst_qbytearray) + +#include "main.moc" diff --git a/tests/benchmarks/corelib/tools/qbytearray/qbytearray.pro b/tests/benchmarks/corelib/tools/qbytearray/qbytearray.pro new file mode 100755 index 0000000000..3474dd061a --- /dev/null +++ b/tests/benchmarks/corelib/tools/qbytearray/qbytearray.pro @@ -0,0 +1,12 @@ +load(qttest_p4) +TEMPLATE = app +TARGET = tst_bench_qbytearray +DEPENDPATH += . +INCLUDEPATH += . + +QT -= gui + +CONFIG += release + +# Input +SOURCES += main.cpp diff --git a/tests/benchmarks/corelib/tools/qhash/data.txt b/tests/benchmarks/corelib/tools/qhash/data.txt new file mode 100644 index 0000000000..d5acd28820 --- /dev/null +++ b/tests/benchmarks/corelib/tools/qhash/data.txt @@ -0,0 +1,195 @@ +. +./corelib.pro +./kernel +./kernel/kernel.pro +./kernel/qobject +./kernel/qobject/main.cpp +./kernel/qobject/object.cpp +./kernel/qobject/object.h +./kernel/qobject/Makefile +./kernel/qobject/qobject.pro +./kernel/qvariant +./kernel/qvariant/tst_qvariant.cpp +./kernel/qvariant/Makefile +./kernel/qvariant/qvariant.pro +./kernel/qtimer_vs_qmetaobject +./kernel/qtimer_vs_qmetaobject/tst_qtimer_vs_qmetaobject.cpp +./kernel/qtimer_vs_qmetaobject/Makefile +./kernel/qtimer_vs_qmetaobject/qtimer_vs_qmetaobject.pro +./kernel/.pch +./kernel/.pch/debug-shared +./kernel/qmetaobject +./kernel/qmetaobject/main.cpp +./kernel/qmetaobject/qmetaobject.pro +./kernel/qmetaobject/Makefile +./kernel/Makefile +./kernel/.obj +./kernel/.obj/debug-shared +./kernel/events +./kernel/events/events.pro +./kernel/events/main.cpp +./kernel/events/Makefile +./kernel/qmetatype +./kernel/qmetatype/qmetatype.pro +./kernel/qmetatype/Makefile +./kernel/qmetatype/tst_qmetatype.cpp +./codecs +./codecs/qtextcodec +./codecs/qtextcodec/qtextcodec.pro +./codecs/qtextcodec/main.cpp +./codecs/qtextcodec/Makefile +./codecs/qtextcodec/utf-8.txt +./codecs/codecs.pro +./codecs/.pch +./codecs/.pch/debug-shared +./codecs/Makefile +./codecs/.obj +./codecs/.obj/debug-shared +./.pch +./.pch/debug-shared +./tools +./tools/tools.pro +./tools/qregexp +./tools/qregexp/qregexp.qrc +./tools/qregexp/main.cpp +./tools/qregexp/Makefile +./tools/qregexp/qregexp.pro +./tools/qvector +./tools/qvector/tst_vector +./tools/qvector/.pch +./tools/qvector/.pch/debug-shared +./tools/qvector/qrawvector.h +./tools/qvector/main.cpp +./tools/qvector/Makefile +./tools/qvector/.moc +./tools/qvector/.moc/release-shared +./tools/qvector/.moc/release-shared/main.moc +./tools/qvector/.obj +./tools/qvector/.obj/release-shared +./tools/qvector/.obj/release-shared/outofline.o +./tools/qvector/.obj/release-shared/main.o +./tools/qvector/outofline.cpp +./tools/qvector/qvector.pro +./tools/.pch +./tools/.pch/debug-shared +./tools/qstringbuilder +./tools/qstringbuilder/main.cpp +./tools/qstringbuilder/Makefile +./tools/qstringbuilder/qstringbuilder.pro +./tools/containers-sequential +./tools/containers-sequential/containers-sequential.pro +./tools/containers-sequential/main.cpp +./tools/containers-sequential/Makefile +./tools/qstring +./tools/qstring/generatelist.pl +./tools/qstring/data.h +./tools/qstring/qstring.pro +./tools/qstring/main.cpp +./tools/qstring/data.cpp +./tools/qstring/Makefile +./tools/qstring/utf-8.txt +./tools/qstringlist +./tools/qstringlist/qstringlist.pro +./tools/qstringlist/main.cpp +./tools/qstringlist/.gitignore +./tools/qstringlist/Makefile +./tools/qbytearray +./tools/qbytearray/qbytearray.pro +./tools/qbytearray/main.cpp +./tools/qbytearray/Makefile +./tools/containers-associative +./tools/containers-associative/containers-associative.pro +./tools/containers-associative/main.cpp +./tools/containers-associative/Makefile +./tools/qrect +./tools/qrect/main.cpp +./tools/qrect/Makefile +./tools/qrect/qrect.pro +./tools/Makefile +./tools/qhash +./tools/qhash/data.txt +./tools/qhash/qhash_string.cpp +./tools/qhash/.qhash_string.cpp.swp +./tools/qhash/qhash.pro +./tools/qhash/outofline.cpp +./tools/.obj +./tools/.obj/debug-shared +./Makefile +./.obj +./.obj/debug-shared +./plugin +./plugin/plugin.pro +./plugin/.pch +./plugin/.pch/debug-shared +./plugin/Makefile +./plugin/.obj +./plugin/.obj/debug-shared +./plugin/quuid +./plugin/quuid/tst_quuid.cpp +./plugin/quuid/quuid.pro +./plugin/quuid/Makefile +./io +./io/qtemporaryfile +./io/qtemporaryfile/qtemporaryfile.pro +./io/qtemporaryfile/main.cpp +./io/qtemporaryfile/Makefile +./io/qiodevice +./io/qiodevice/qiodevice.pro +./io/qiodevice/main.cpp +./io/qiodevice/Makefile +./io/qurl +./io/qurl/main.cpp +./io/qurl/Makefile +./io/qurl/qurl.pro +./io/qdir +./io/qdir/.pch +./io/qdir/.pch/debug-shared +./io/qdir/qdir.pro +./io/qdir/tree +./io/qdir/tree/bench_qdir_tree.qrc +./io/qdir/tree/tree.pro +./io/qdir/tree/4.6.0-list.txt +./io/qdir/tree/Makefile +./io/qdir/tree/bench_qdir_tree.cpp +./io/qdir/Makefile +./io/qdir/.obj +./io/qdir/.obj/debug-shared +./io/qdir/10000 +./io/qdir/10000/10000.pro +./io/qdir/10000/bench_qdir_10000.cpp +./io/qdir/10000/Makefile +./io/.pch +./io/.pch/debug-shared +./io/qfile +./io/qfile/qfile.pro +./io/qfile/main.cpp +./io/qfile/Makefile +./io/io.pro +./io/qfileinfo +./io/qfileinfo/qfileinfo.pro +./io/qfileinfo/main.cpp +./io/qfileinfo/Makefile +./io/qdiriterator +./io/qdiriterator/qfilesystemiterator.h +./io/qdiriterator/main.cpp +./io/qdiriterator/Makefile +./io/qdiriterator/qfilesystemiterator.cpp +./io/qdiriterator/qdiriterator.pro +./io/Makefile +./io/.obj +./io/.obj/debug-shared +./thread +./thread/qmutex +./thread/qmutex/tst_qmutex.cpp +./thread/qmutex/Makefile +./thread/qmutex/qmutex.pro +./thread/qthreadstorage +./thread/qthreadstorage/qthreadstorage.pro +./thread/qthreadstorage/Makefile +./thread/qthreadstorage/tst_qthreadstorage.cpp +./thread/.pch +./thread/.pch/debug-shared +./thread/Makefile +./thread/.obj +./thread/.obj/debug-shared +./thread/thread.pro diff --git a/tests/benchmarks/corelib/tools/qhash/outofline.cpp b/tests/benchmarks/corelib/tools/qhash/outofline.cpp new file mode 100644 index 0000000000..0a60da29a3 --- /dev/null +++ b/tests/benchmarks/corelib/tools/qhash/outofline.cpp @@ -0,0 +1,90 @@ +/**************************************************************************** +** +** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtTest module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include "qhash_string.h" + +static void doHash(const unsigned short *p, uint &h) +{ +#if 1 + // Copied from static uint hash(const QChar *p, int n). + // Possibly not the cheapest way. + h = (h << 4) + (*p++); + h ^= (h & 0xf0000000) >> 23; + h &= 0x0fffffff; + + h = (h << 4) + (*p++); + h ^= (h & 0xf0000000) >> 23; + h &= 0x0fffffff; + + h = (h << 4) + (*p++); + h ^= (h & 0xf0000000) >> 23; + h &= 0x0fffffff; + + h = (h << 4) + (*p++); + h ^= (h & 0xf0000000) >> 23; + h &= 0x0fffffff; +#else + // Faster, but probably less spread. + h ^= *(unsigned int *)p; +#endif +} + +QT_BEGIN_NAMESPACE + +uint qHash(const String &str) +{ + const unsigned short *p = (unsigned short *)str.constData(); + const int s = str.size(); + switch (s) { + case 0: return 0; + case 1: return *p; + case 2: return *(unsigned int *)p; + case 3: return (*(unsigned int *)p) ^ *(p + 2); + //case 3: return (*p << 11) + (*(p + 1) << 22) + *(p + 2); + } + uint h = 0; + doHash(p, h); + doHash(p + s / 2 - 2, h); + doHash(p + s - 4, h); + return h; +} + +QT_END_NAMESPACE diff --git a/tests/benchmarks/corelib/tools/qhash/qhash.pro b/tests/benchmarks/corelib/tools/qhash/qhash.pro new file mode 100644 index 0000000000..dff152cda7 --- /dev/null +++ b/tests/benchmarks/corelib/tools/qhash/qhash.pro @@ -0,0 +1,6 @@ +load(qttest_p4) +TARGET = tst_hash +QT = core +INCLUDEPATH += . +SOURCES += qhash_string.cpp outofline.cpp +CONFIG += release diff --git a/tests/benchmarks/corelib/tools/qhash/qhash_string.cpp b/tests/benchmarks/corelib/tools/qhash/qhash_string.cpp new file mode 100644 index 0000000000..d9e62cca00 --- /dev/null +++ b/tests/benchmarks/corelib/tools/qhash/qhash_string.cpp @@ -0,0 +1,131 @@ +/**************************************************************************** +** +** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the test suite of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +/* + +//////////////////////////////////////////////////////////////////// + +This benchmark serves as reality check on the idea that hashing the complete +string is a good idea. + + Executive summary: It is not a good idea. + +//////////////////////////////////////////////////////////////////// + +********* Start testing of tst_QHash ********* +Config: Using QTest library 4.8.0, Qt 4.8.0 +PASS : tst_QHash::initTestCase() +RESULT : tst_QHash::qhash_qt4(): + 0.041 msecs per iteration (total: 85, iterations: 2048) +PASS : tst_QHash::qhash_qt4() +RESULT : tst_QHash::qhash_faster(): + 0.0122 msecs per iteration (total: 100, iterations: 8192) +PASS : tst_QHash::qhash_faster() +PASS : tst_QHash::cleanupTestCase() +Totals: 4 passed, 0 failed, 0 skipped + +//////////////////////////////////////////////////////////////////// + +*/ + +#include "qhash_string.h" + +#include <QFile> +#include <QHash> +#include <QString> +#include <QStringList> + +#include <QTest> + + +class tst_QHash : public QObject +{ + Q_OBJECT + +private slots: + void qhash_qt4(); + void qhash_faster(); + +private: + QString data(); +}; + +const int N = 1000000; +extern double s; + +///////////////////// QHash ///////////////////// + +QString tst_QHash::data() +{ + QFile file("data.txt"); + file.open(QIODevice::ReadOnly); + return QString::fromLatin1(file.readAll()); +} + +void tst_QHash::qhash_qt4() +{ + QStringList items = data().split(QLatin1Char('\n')); + QHash<QString, int> hash; + + QBENCHMARK { + for (int i = 0, n = items.size(); i != n; ++i) { + hash[items.at(i)] = i; + } + } +} + +void tst_QHash::qhash_faster() +{ + QList<String> items; + foreach (const QString &s, data().split(QLatin1Char('\n'))) + items.append(s); + QHash<String, int> hash; + + QBENCHMARK { + for (int i = 0, n = items.size(); i != n; ++i) { + hash[items.at(i)] = i; + } + } +} + +QTEST_MAIN(tst_QHash) + +#include "qhash_string.moc" diff --git a/tests/benchmarks/corelib/tools/qhash/qhash_string.h b/tests/benchmarks/corelib/tools/qhash/qhash_string.h new file mode 100644 index 0000000000..78a3a42c1b --- /dev/null +++ b/tests/benchmarks/corelib/tools/qhash/qhash_string.h @@ -0,0 +1,52 @@ +/**************************************************************************** +** +** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the QtTest module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include <QString> + +struct String : QString +{ + String() {} + String(const QString &s) : QString(s) {} +}; + +QT_BEGIN_NAMESPACE +uint qHash(const String &); +QT_END_NAMESPACE diff --git a/tests/benchmarks/corelib/tools/qrect/main.cpp b/tests/benchmarks/corelib/tools/qrect/main.cpp new file mode 100644 index 0000000000..3dd4722fd0 --- /dev/null +++ b/tests/benchmarks/corelib/tools/qrect/main.cpp @@ -0,0 +1,329 @@ +/**************************************************************************** +** +** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the test suite of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ +// This file contains benchmarks for QRect/QRectF functions. + +#include <QDebug> +#include <qtest.h> + +class tst_qrect : public QObject +{ + Q_OBJECT +private slots: + // QRect functions: + void contains_point_data(); + void contains_point(); + void contains_rect_data(); + void contains_rect(); + void intersects_data(); + void intersects(); + void intersected_data(); + void intersected(); + void united_data(); + void united(); + + // QRectF functions: + void contains_point_f_data(); + void contains_point_f(); + void contains_rect_f_data(); + void contains_rect_f(); + void intersects_f_data(); + void intersects_f(); + void intersected_f_data(); + void intersected_f(); + void united_f_data(); + void united_f(); +}; + +struct RectRectCombination +{ + QString tag; + qreal x1, y1, w1, h1, x2, y2, w2, h2; + RectRectCombination( + const QString &tag, + const qreal x1, const qreal y1, const qreal w1, const qreal h1, + const qreal x2, const qreal y2, const qreal w2, const qreal h2) + : tag(tag), x1(x1), y1(y1), w1(w1), h1(h1), x2(x2), y2(y2), w2(w2), h2(h2) {} +}; + +static QList<RectRectCombination> createRectRectCombinations() +{ + QList<RectRectCombination> result; + result << RectRectCombination("null", 0, 0, 0, 0, 0, 0, 0, 0); + result << RectRectCombination("null1", 0, 0, 0, 0, 0, 0, 10, 10); + result << RectRectCombination("null2", 0, 0, 10, 10, 0, 0, 0, 0); + + result << RectRectCombination("miss", 0, 0, 10, 10, 11, 11, 10, 10); + result << RectRectCombination("intersect", 0, 0, 10, 10, 5, 5, 10, 10); + result << RectRectCombination("contain1", 0, 0, 10, 10, 1, 1, 8, 8); + result << RectRectCombination("contain2", 1, 1, 8, 8, 0, 0, 10, 10); + + result << RectRectCombination("miss_flip1", 9, 9, -10, -10, 11, 11, 10, 10); + result << RectRectCombination("intersect_flip1", 9, 9, -10, -10, 5, 5, 10, 10); + result << RectRectCombination("contain1_flip1", 9, 9, -10, -10, 1, 1, 8, 8); + result << RectRectCombination("contain2_flip1", 8, 8, -8, -8, 0, 0, 10, 10); + + result << RectRectCombination("miss_flip2", 0, 0, 10, 10, 20, 20, -10, -10); + result << RectRectCombination("intersect_flip2", 0, 0, 10, 10, 14, 14, -10, -10); + result << RectRectCombination("contain1_flip2", 0, 0, 10, 10, 8, 8, -8, -8); + result << RectRectCombination("contain2_flip2", 1, 1, 8, 8, 9, 9, -10, -10); + + return result; +} + +static void addRectRectData(bool includeProperArg = false) +{ + QTest::addColumn<QRectF>("rf1"); + QTest::addColumn<QRectF>("rf2"); + if (includeProperArg) + QTest::addColumn<bool>("proper"); + for (int i = 0; i < (includeProperArg ? 2 : 1); ++i) { + QList<RectRectCombination> combinations = createRectRectCombinations(); + foreach (RectRectCombination c, combinations) { + QTestData &testData = QTest::newRow(c.tag.toLatin1().data()); + QRectF r1(c.x1, c.y1, c.w1, c.h1); + QRectF r2(c.x2, c.y2, c.w2, c.h2); + testData << r1 << r2; + if (includeProperArg) + testData << (i == 0); + } + } +} + +struct RectPointCombination +{ + QString tag; + qreal x, y, w, h, px, py; + RectPointCombination( + const QString &tag, + const qreal x, const qreal y, const qreal w, const qreal h, const qreal px, const qreal py) + : tag(tag), x(x), y(y), w(w), h(h), px(px), py(py) {} +}; + +static QList<RectPointCombination> createRectPointCombinations() +{ + QList<RectPointCombination> result; + result << RectPointCombination("null", 0, 0, 0, 0, 0, 0); + + result << RectPointCombination("miss", 0, 0, 10, 10, -1, -1); + result << RectPointCombination("contain", 0, 0, 10, 10, 0, 0); + result << RectPointCombination("contain_proper", 0, 0, 10, 10, 1, 1); + + result << RectPointCombination("miss_flip", 9, 9, -10, -10, -1, -1); + result << RectPointCombination("contain_flip", 9, 9, -10, -10, 0, 0); + result << RectPointCombination("contain_flip_proper", 9, 9, -10, -10, 1, 1); + + return result; +} + +static void addRectPointData(bool includeProperArg = false) +{ + QTest::addColumn<QRectF>("rf"); + QTest::addColumn<QPointF>("pf"); + if (includeProperArg) + QTest::addColumn<bool>("proper"); + for (int i = 0; i < (includeProperArg ? 2 : 1); ++i) { + QList<RectPointCombination> combinations = createRectPointCombinations(); + foreach (RectPointCombination c, combinations) { + QTestData &testData = QTest::newRow(c.tag.toLatin1().data()); + QRectF r(c.x, c.y, c.w, c.h); + QPointF p(c.px, c.py); + testData << r << p; + if (includeProperArg) + testData << (i == 0); + } + } +} + +void tst_qrect::contains_point_data() +{ + addRectPointData(true); +} + +void tst_qrect::contains_point() +{ + QFETCH(QRectF, rf); + QFETCH(QPointF, pf); + QFETCH(bool, proper); + QRect r(rf.toRect()); + QPoint p(pf.toPoint()); + QBENCHMARK { + r.contains(p, proper); + } +} + +void tst_qrect::contains_rect_data() +{ + addRectRectData(true); +} + +void tst_qrect::contains_rect() +{ + QFETCH(QRectF, rf1); + QFETCH(QRectF, rf2); + QFETCH(bool, proper); + QRect r1(rf1.toRect()); + QRect r2(rf2.toRect()); + QBENCHMARK { + r1.contains(r2, proper); + } +} + +void tst_qrect::intersects_data() +{ + addRectRectData(); +} + +void tst_qrect::intersects() +{ + QFETCH(QRectF, rf1); + QFETCH(QRectF, rf2); + QRect r1(rf1.toRect()); + QRect r2(rf2.toRect()); + QBENCHMARK { + r1.intersects(r2); + } +} + +void tst_qrect::intersected_data() +{ + addRectRectData(); +} + +void tst_qrect::intersected() +{ + QFETCH(QRectF, rf1); + QFETCH(QRectF, rf2); + QRect r1(rf1.toRect()); + QRect r2(rf2.toRect()); + QBENCHMARK { + r1.intersected(r2); + } +} + +void tst_qrect::united_data() +{ + addRectRectData(); +} + +void tst_qrect::united() +{ + QFETCH(QRectF, rf1); + QFETCH(QRectF, rf2); + QRect r1(rf1.toRect()); + QRect r2(rf2.toRect()); + QBENCHMARK { + r1.united(r2); + } +} + +void tst_qrect::contains_point_f_data() +{ + addRectPointData(); +} + +void tst_qrect::contains_point_f() +{ + QFETCH(QRectF, rf); + QFETCH(QPointF, pf); + QBENCHMARK { + rf.contains(pf); + } +} + +void tst_qrect::contains_rect_f_data() +{ + addRectRectData(); +} + +void tst_qrect::contains_rect_f() +{ + QFETCH(QRectF, rf1); + QFETCH(QRectF, rf2); + QBENCHMARK { + rf1.contains(rf2); + } +} + +void tst_qrect::intersects_f_data() +{ + addRectRectData(); +} + +void tst_qrect::intersects_f() +{ + QFETCH(QRectF, rf1); + QFETCH(QRectF, rf2); + QBENCHMARK { + rf1.intersects(rf2); + } +} + +void tst_qrect::intersected_f_data() +{ + addRectRectData(); +} + +void tst_qrect::intersected_f() +{ + QFETCH(QRectF, rf1); + QFETCH(QRectF, rf2); + QBENCHMARK { + rf1.intersected(rf2); + } +} + +void tst_qrect::united_f_data() +{ + addRectRectData(); +} + +void tst_qrect::united_f() +{ + QFETCH(QRectF, rf1); + QFETCH(QRectF, rf2); + QBENCHMARK { + rf1.united(rf2); + } +} + +QTEST_MAIN(tst_qrect) + +#include "main.moc" diff --git a/tests/benchmarks/corelib/tools/qrect/qrect.pro b/tests/benchmarks/corelib/tools/qrect/qrect.pro new file mode 100644 index 0000000000..4bd05aa0ad --- /dev/null +++ b/tests/benchmarks/corelib/tools/qrect/qrect.pro @@ -0,0 +1,12 @@ +load(qttest_p4) +TEMPLATE = app +TARGET = tst_bench_qrect +DEPENDPATH += . +INCLUDEPATH += . + +QT -= gui + +CONFIG += release + +# Input +SOURCES += main.cpp diff --git a/tests/benchmarks/corelib/tools/qregexp/main.cpp b/tests/benchmarks/corelib/tools/qregexp/main.cpp new file mode 100644 index 0000000000..98d539f21a --- /dev/null +++ b/tests/benchmarks/corelib/tools/qregexp/main.cpp @@ -0,0 +1,594 @@ +/**************************************************************************** +** +** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the test suite of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include <QDebug> +#include <QRegExp> +#include <QString> +#include <QFile> + +#include <qtest.h> +#ifdef HAVE_BOOST +#include <boost/regex.hpp> +#endif + +#include <QtScript> +#include "pcre/pcre.h" + +#define ZLIB_VERSION "1.2.3.4" + +class tst_qregexp : public QObject +{ + Q_OBJECT +public: + tst_qregexp(); +private slots: + void escape_old(); + void escape_old_data() { escape_data(); } + void escape_new1(); + void escape_new1_data() { escape_data(); } + void escape_new2(); + void escape_new2_data() { escape_data(); } + void escape_new3(); + void escape_new3_data() { escape_data(); } + void escape_new4(); + void escape_new4_data() { escape_data(); } +/* + JSC outperforms everything. + Boost is less impressive then expected. + */ + void simpleFind1(); + void rangeReplace1(); + void matchReplace1(); + + void simpleFind2(); + void rangeReplace2(); + void matchReplace2(); + + void simpleFindJSC(); + void rangeReplaceJSC(); + void matchReplaceJSC(); + +#ifdef HAVE_BOOST + void simpleFindBoost(); + void rangeReplaceBoost(); + void matchReplaceBoost(); +#endif + +/* those apply an (incorrect) regexp on entire source + (this main.cpp). JSC appears to handle this + (ab)use case best. QRegExp performs extremly bad. + */ + void horribleWrongReplace1(); + void horribleReplace1(); + void horribleReplace2(); + void horribleWrongReplace2(); + void horribleWrongReplaceJSC(); + void horribleReplaceJSC(); +#ifdef HAVE_BOOST + void horribleWrongReplaceBoost(); + void horribleReplaceBoost(); +#endif +private: + QString str1; + QString str2; + void escape_data(); +}; + +tst_qregexp::tst_qregexp() + :QObject() + ,str1("We are all happy monkeys") +{ + QFile f(":/main.cpp"); + f.open(QFile::ReadOnly); + str2=f.readAll(); +} + +static void verify(const QString "ed, const QString &expected) +{ + if (quoted != expected) + qDebug() << "ERROR:" << quoted << expected; +} + +void tst_qregexp::escape_data() +{ + QTest::addColumn<QString>("pattern"); + QTest::addColumn<QString>("expected"); + + QTest::newRow("escape 0") << "Hello world" << "Hello world"; + QTest::newRow("escape 1") << "(Hello world)" << "\\(Hello world\\)"; + { + QString s; + for (int i = 0; i < 10; ++i) + s += "(escape)"; + QTest::newRow("escape 10") << s << QRegExp::escape(s); + } + { + QString s; + for (int i = 0; i < 100; ++i) + s += "(escape)"; + QTest::newRow("escape 100") << s << QRegExp::escape(s); + } +} + +void tst_qregexp::escape_old() +{ + QFETCH(QString, pattern); + QFETCH(QString, expected); + + QBENCHMARK { + static const char meta[] = "$()*+.?[\\]^{|}"; + QString quoted = pattern; + int i = 0; + + while (i < quoted.length()) { + if (strchr(meta, quoted.at(i).toLatin1()) != 0) + quoted.insert(i++, QLatin1Char('\\')); + ++i; + } + + verify(quoted, expected); + } +} + +void tst_qregexp::escape_new1() +{ + QFETCH(QString, pattern); + QFETCH(QString, expected); + + QBENCHMARK { + QString quoted; + const int count = pattern.count(); + quoted.reserve(count * 2); + const QLatin1Char backslash('\\'); + for (int i = 0; i < count; i++) { + switch (pattern.at(i).toLatin1()) { + case '$': + case '(': + case ')': + case '*': + case '+': + case '.': + case '?': + case '[': + case '\\': + case ']': + case '^': + case '{': + case '|': + case '}': + quoted.append(backslash); + } + quoted.append(pattern.at(i)); + } + verify(quoted, expected); + } +} + +void tst_qregexp::escape_new2() +{ + QFETCH(QString, pattern); + QFETCH(QString, expected); + + QBENCHMARK { + int count = pattern.count(); + const QLatin1Char backslash('\\'); + QString quoted(count * 2, backslash); + const QChar *patternData = pattern.data(); + QChar *quotedData = quoted.data(); + int escaped = 0; + for ( ; --count >= 0; ++patternData) { + const QChar c = *patternData; + switch (c.unicode()) { + case '$': + case '(': + case ')': + case '*': + case '+': + case '.': + case '?': + case '[': + case '\\': + case ']': + case '^': + case '{': + case '|': + case '}': + ++escaped; + ++quotedData; + } + *quotedData = c; + ++quotedData; + } + quoted.resize(pattern.size() + escaped); + + verify(quoted, expected); + } +} + +void tst_qregexp::escape_new3() +{ + QFETCH(QString, pattern); + QFETCH(QString, expected); + + QBENCHMARK { + QString quoted; + const int count = pattern.count(); + quoted.reserve(count * 2); + const QLatin1Char backslash('\\'); + for (int i = 0; i < count; i++) { + switch (pattern.at(i).toLatin1()) { + case '$': + case '(': + case ')': + case '*': + case '+': + case '.': + case '?': + case '[': + case '\\': + case ']': + case '^': + case '{': + case '|': + case '}': + quoted += backslash; + } + quoted += pattern.at(i); + } + + verify(quoted, expected); + } +} + + +static inline bool needsEscaping(int c) +{ + switch (c) { + case '$': + case '(': + case ')': + case '*': + case '+': + case '.': + case '?': + case '[': + case '\\': + case ']': + case '^': + case '{': + case '|': + case '}': + return true; + } + return false; +} + +void tst_qregexp::escape_new4() +{ + QFETCH(QString, pattern); + QFETCH(QString, expected); + + QBENCHMARK { + const int n = pattern.size(); + const QChar *patternData = pattern.data(); + // try to prevent copy if no escape is needed + int i = 0; + for (int i = 0; i != n; ++i) { + const QChar c = patternData[i]; + if (needsEscaping(c.unicode())) + break; + } + if (i == n) { + verify(pattern, expected); + // no escaping needed, "return pattern" should be done here. + return; + } + const QLatin1Char backslash('\\'); + QString quoted(n * 2, backslash); + QChar *quotedData = quoted.data(); + for (int j = 0; j != i; ++j) + *quotedData++ = *patternData++; + int escaped = 0; + for (; i != n; ++i) { + const QChar c = *patternData; + if (needsEscaping(c.unicode())) { + ++escaped; + ++quotedData; + } + *quotedData = c; + ++quotedData; + ++patternData; + } + quoted.resize(n + escaped); + verify(quoted, expected); + // "return quoted" + } +} + + +void tst_qregexp::simpleFind1() +{ + int roff; + QRegExp rx("happy"); + rx.setPatternSyntax(QRegExp::RegExp); + QBENCHMARK{ + roff = rx.indexIn(str1); + } + QCOMPARE(roff, 11); +} + +void tst_qregexp::rangeReplace1() +{ + QString r; + QRegExp rx("[a-f]"); + rx.setPatternSyntax(QRegExp::RegExp); + QBENCHMARK{ + r = QString(str1).replace(rx, "-"); + } + QCOMPARE(r, QString("W- -r- -ll h-ppy monk-ys")); +} + +void tst_qregexp::matchReplace1() +{ + QString r; + QRegExp rx("[^a-f]*([a-f]+)[^a-f]*"); + rx.setPatternSyntax(QRegExp::RegExp); + QBENCHMARK{ + r = QString(str1).replace(rx, "\\1"); + } + QCOMPARE(r, QString("eaeaae")); +} + +void tst_qregexp::horribleWrongReplace1() +{ + QString r; + QRegExp rx(".*#""define ZLIB_VERSION \"([0-9]+)\\.([0-9]+)\\.([0-9]+)\".*"); + rx.setPatternSyntax(QRegExp::RegExp); + QBENCHMARK{ + r = QString(str2).replace(rx, "\\1.\\2.\\3"); + } + QCOMPARE(r, str2); +} + +void tst_qregexp::horribleReplace1() +{ + QString r; + QRegExp rx(".*#""define ZLIB_VERSION \"([0-9]+)\\.([0-9]+)\\.([0-9]+).*"); + rx.setPatternSyntax(QRegExp::RegExp); + QBENCHMARK{ + r = QString(str2).replace(rx, "\\1.\\2.\\3"); + } + QCOMPARE(r, QString("1.2.3")); +} + + +void tst_qregexp::simpleFind2() +{ + int roff; + QRegExp rx("happy"); + rx.setPatternSyntax(QRegExp::RegExp2); + QBENCHMARK{ + roff = rx.indexIn(str1); + } + QCOMPARE(roff, 11); +} + +void tst_qregexp::rangeReplace2() +{ + QString r; + QRegExp rx("[a-f]"); + rx.setPatternSyntax(QRegExp::RegExp2); + QBENCHMARK{ + r = QString(str1).replace(rx, "-"); + } + QCOMPARE(r, QString("W- -r- -ll h-ppy monk-ys")); +} + +void tst_qregexp::matchReplace2() +{ + QString r; + QRegExp rx("[^a-f]*([a-f]+)[^a-f]*"); + rx.setPatternSyntax(QRegExp::RegExp2); + QBENCHMARK{ + r = QString(str1).replace(rx, "\\1"); + } + QCOMPARE(r, QString("eaeaae")); +} + +void tst_qregexp::horribleWrongReplace2() +{ + QString r; + QRegExp rx(".*#""define ZLIB_VERSION \"([0-9]+)\\.([0-9]+)\\.([0-9]+)\".*"); + rx.setPatternSyntax(QRegExp::RegExp2); + QBENCHMARK{ + r = QString(str2).replace(rx, "\\1.\\2.\\3"); + } + QCOMPARE(r, str2); +} + +void tst_qregexp::horribleReplace2() +{ + QString r; + QRegExp rx(".*#""define ZLIB_VERSION \"([0-9]+)\\.([0-9]+)\\.([0-9]+).*"); + rx.setPatternSyntax(QRegExp::RegExp2); + QBENCHMARK{ + r = QString(str2).replace(rx, "\\1.\\2.\\3"); + } + QCOMPARE(r, QString("1.2.3")); +} + + +void tst_qregexp::simpleFindJSC() +{ + int numr; + const char * errmsg=" "; + QString rxs("happy"); + JSRegExp *rx = jsRegExpCompile(rxs.utf16(), rxs.length(), JSRegExpDoNotIgnoreCase, JSRegExpSingleLine, 0, &errmsg); + QVERIFY(rx != 0); + QString s(str1); + int offsetVector[3]; + QBENCHMARK{ + numr = jsRegExpExecute(rx, s.utf16(), s.length(), 0, offsetVector, 3); + } + jsRegExpFree(rx); + QCOMPARE(numr, 1); + QCOMPARE(offsetVector[0], 11); +} + +void tst_qregexp::rangeReplaceJSC() +{ + QScriptValue r; + QScriptEngine engine; + engine.globalObject().setProperty("s", str1); + QScriptValue replaceFunc = engine.evaluate("(function() { return s.replace(/[a-f]/g, '-') } )"); + QVERIFY(replaceFunc.isFunction()); + QBENCHMARK{ + r = replaceFunc.call(QScriptValue()); + } + QCOMPARE(r.toString(), QString("W- -r- -ll h-ppy monk-ys")); +} + +void tst_qregexp::matchReplaceJSC() +{ + QScriptValue r; + QScriptEngine engine; + engine.globalObject().setProperty("s", str1); + QScriptValue replaceFunc = engine.evaluate("(function() { return s.replace(/[^a-f]*([a-f]+)[^a-f]*/g, '$1') } )"); + QVERIFY(replaceFunc.isFunction()); + QBENCHMARK{ + r = replaceFunc.call(QScriptValue()); + } + QCOMPARE(r.toString(), QString("eaeaae")); +} + +void tst_qregexp::horribleWrongReplaceJSC() +{ + QScriptValue r; + QScriptEngine engine; + engine.globalObject().setProperty("s", str2); + QScriptValue replaceFunc = engine.evaluate("(function() { return s.replace(/.*#""define ZLIB_VERSION \"([0-9]+)\\.([0-9]+)\\.([0-9]+)\".*/gm, '$1.$2.$3') } )"); + QVERIFY(replaceFunc.isFunction()); + QBENCHMARK{ + r = replaceFunc.call(QScriptValue()); + } + QCOMPARE(r.toString(), str2); +} + +void tst_qregexp::horribleReplaceJSC() +{ + QScriptValue r; + QScriptEngine engine; + // the m flag doesnt actually work here; dunno + engine.globalObject().setProperty("s", str2.replace('\n', ' ')); + QScriptValue replaceFunc = engine.evaluate("(function() { return s.replace(/.*#""define ZLIB_VERSION \"([0-9]+)\\.([0-9]+)\\.([0-9]+).*/gm, '$1.$2.$3') } )"); + QVERIFY(replaceFunc.isFunction()); + QBENCHMARK{ + r = replaceFunc.call(QScriptValue()); + } + QCOMPARE(r.toString(), QString("1.2.3")); +} + + +#ifdef HAVE_BOOST +void tst_qregexp::simpleFindBoost(){ + int roff; + boost::regex rx ("happy", boost::regex_constants::perl); + std::string s = str1.toStdString(); + std::string::const_iterator start, end; + start = s.begin(); + end = s.end(); + boost::match_flag_type flags = boost::match_default; + QBENCHMARK{ + boost::match_results<std::string::const_iterator> what; + regex_search(start, end, what, rx, flags); + roff = (what[0].first)-start; + } + QCOMPARE(roff, 11); +} + +void tst_qregexp::rangeReplaceBoost() +{ + boost::regex pattern ("[a-f]", boost::regex_constants::perl); + std::string s = str1.toStdString(); + std::string r; + QBENCHMARK{ + r = boost::regex_replace (s, pattern, "-"); + } + QCOMPARE(r, std::string("W- -r- -ll h-ppy monk-ys")); +} + +void tst_qregexp::matchReplaceBoost() +{ + boost::regex pattern ("[^a-f]*([a-f]+)[^a-f]*",boost::regex_constants::perl); + std::string s = str1.toStdString(); + std::string r; + QBENCHMARK{ + r = boost::regex_replace (s, pattern, "$1"); + } + QCOMPARE(r, std::string("eaeaae")); +} + +void tst_qregexp::horribleWrongReplaceBoost() +{ + boost::regex pattern (".*#""define ZLIB_VERSION \"([0-9]+)\\.([0-9]+)\\.([0-9]+)\".*", boost::regex_constants::perl); + std::string s = str2.toStdString(); + std::string r; + QBENCHMARK{ + r = boost::regex_replace (s, pattern, "$1.$2.$3"); + } + QCOMPARE(r, s); +} + +void tst_qregexp::horribleReplaceBoost() +{ + boost::regex pattern (".*#""define ZLIB_VERSION \"([0-9]+)\\.([0-9]+)\\.([0-9]+).*", boost::regex_constants::perl); + std::string s = str2.toStdString(); + std::string r; + QBENCHMARK{ + r = boost::regex_replace (s, pattern, "$1.$2.$3"); + } + QCOMPARE(r, std::string("1.2.3")); +} +#endif //HAVE_BOOST + +QTEST_MAIN(tst_qregexp) + +#include "main.moc" diff --git a/tests/benchmarks/corelib/tools/qregexp/qregexp.pro b/tests/benchmarks/corelib/tools/qregexp/qregexp.pro new file mode 100644 index 0000000000..ffdad12cef --- /dev/null +++ b/tests/benchmarks/corelib/tools/qregexp/qregexp.pro @@ -0,0 +1,21 @@ +load(qttest_p4) +TEMPLATE = app +TARGET = tst_bench_qregexp +DEPENDPATH += . +INCLUDEPATH += . +RESOURCES+=qregexp.qrc +QT -= gui +QT += script + +CONFIG += release + +# Input +SOURCES += main.cpp + +include( $${QT_SOURCE_TREE}/src/3rdparty/webkit/JavaScriptCore/JavaScriptCore.pri ) + +exists( /usr/include/boost/regex.hpp ){ +DEFINES+=HAVE_BOOST +LIBS+=-lboost_regex +} + diff --git a/tests/benchmarks/corelib/tools/qregexp/qregexp.qrc b/tests/benchmarks/corelib/tools/qregexp/qregexp.qrc new file mode 100644 index 0000000000..a7fe13c035 --- /dev/null +++ b/tests/benchmarks/corelib/tools/qregexp/qregexp.qrc @@ -0,0 +1,6 @@ +<!DOCTYPE RCC><RCC version="1.0"> +<qresource> + <file>main.cpp</file> +</qresource> +</RCC> + diff --git a/tests/benchmarks/corelib/tools/qstring/data.cpp b/tests/benchmarks/corelib/tools/qstring/data.cpp new file mode 100644 index 0000000000..d44a796e52 --- /dev/null +++ b/tests/benchmarks/corelib/tools/qstring/data.cpp @@ -0,0 +1,1281 @@ +// This is a generated file - DO NOT EDIT + +#include "data.h" + +const ushort stringCollectionData[] __attribute__((aligned(16))) = { + // #0 + 65535, + 99, 111, 109, 112, 105, 108, 101, 114, 32, 118, 101, 114, 115, 105, 111, 110, 115, 47, + 65535,65534,65533,65532,65531, // 24 + 65535,65534,65533,65532,65531, + 99, 111, 109, 112, 105, 108, 101, 114, 32, 118, 101, 114, 115, 105, 111, 110, 115, 47, + 65535, // 48 + + // #1 + 65535,65534,65533,65532,65531, + 99, 111, 109, 112, 105, 108, 101, 114, 32, 118, 101, 114, 115, 105, 111, 110, 115, 47, + 65535, // 72 + 65535,65534,65533,65532,65531, + 67, 111, 109, 112, 105, 108, 101, 114, 32, 86, 101, 114, 115, 105, 111, 110, 115, 47, + 65535, // 96 + + // #2 + 65535, + 99, 111, 109, 112, 105, 108, 101, 114, 32, 116, 105, 109, 101, 115, 116, 97, 109, 112, 115, 47, + 65535,65534,65533, // 120 + 65535,65534,65533,65532,65531, + 99, 111, 109, 112, 105, 108, 101, 114, 32, 116, 105, 109, 101, 115, 116, 97, 109, 112, 115, 47, + 65535,65534,65533,65532,65531,65530,65529, // 152 + + // #3 + 65535,65534,65533,65532,65531, + 99, 111, 109, 112, 105, 108, 101, 114, 32, 116, 105, 109, 101, 115, 116, 97, 109, 112, 115, 47, + 65535,65534,65533,65532,65531,65530,65529, // 184 + 65535, + 67, 111, 109, 112, 105, 108, 101, 114, 32, 84, 105, 109, 101, 115, 116, 97, 109, 112, 115, 47, + 65535,65534,65533, // 208 + + // #4 + 65535,65534,65533,65532,65531,65530,65529,65528,65527,65526,65525,65524,65523,65522,65521,65520,65519, + 47, 118, 97, 114, 47, 116, 109, 112, 47, 116, 101, 97, 109, 98, 117, 105, 108, 100, 101, 114, 45, 116, 109, 97, 99, 105, 101, 105, 114, 47, 99, 108, 105, 101, 110, 116, 47, 99, 111, 109, 112, 105, 108, 101, 114, 115, 46, 99, 111, 110, 102, + 65535,65534,65533,65532, // 280+ + + + // #5 + 65535,65534,65533,65532,65531,65530,65529,65528,65527,65526,65525,65524,65523, + 47, 118, 97, 114, 47, 116, 109, 112, 47, 116, 101, 97, 109, 98, 117, 105, 108, 100, 101, 114, 45, 116, 109, 97, 99, 105, 101, 105, 114, 47, 99, 108, 105, 101, 110, 116, 47, 99, 111, 109, 112, 105, 108, 101, 114, 115, 46, 99, 111, 110, 102, + 65535,65534,65533,65532,65531,65530,65529,65528, // 352+ + 65535, + 47, 118, 97, 114, 47, 116, 109, 112, 47, 116, 101, 97, 109, 98, 117, 105, 108, 100, 101, 114, 45, 116, 109, 97, 99, 105, 101, 105, 114, 47, 99, 108, 105, 101, 110, 116, 47, 99, 111, 109, 112, 105, 108, 101, 114, 115, 46, 99, 111, 110, 102, + 65535,65534,65533,65532, // 408+ + + // #6 + 65535,65534,65533,65532,65531,65530,65529,65528,65527, + 47, 118, 97, 114, 47, 116, 109, 112, 47, 116, 101, 97, 109, 98, 117, 105, 108, 100, 101, 114, 45, 116, 109, 97, 99, 105, 101, 105, 114, 47, 99, 108, 105, 101, 110, 116, 47, 99, 111, 109, 112, 105, 108, 101, 114, 115, 46, 99, 111, 110, 102, + 65535,65534,65533,65532, // 472+ + + + // #7 + 65535, + 97, 114, 99, 104, 105, 118, 101, 100, 32, 99, 111, 109, 112, 105, 108, 101, 114, 115, 47, + 65535,65534,65533,65532, // 496 + 65535,65534,65533,65532,65531, + 97, 114, 99, 104, 105, 118, 101, 100, 32, 99, 111, 109, 112, 105, 108, 101, 114, 115, 47, + 65535,65534,65533,65532,65531,65530,65529,65528, // 528 + + // #8 + 65535,65534,65533,65532,65531, + 97, 114, 99, 104, 105, 118, 101, 100, 32, 99, 111, 109, 112, 105, 108, 101, 114, 115, 47, + 65535,65534,65533,65532,65531,65530,65529,65528, // 560 + 65535,65534,65533,65532,65531, + 65, 114, 99, 104, 105, 118, 101, 100, 32, 67, 111, 109, 112, 105, 108, 101, 114, 115, 47, + 65535,65534,65533,65532,65531,65530,65529,65528, // 592 + + // #9 + 65535,65534,65533,65532,65531,65530,65529,65528,65527,65526,65525,65524,65523,65522,65521,65520,65519, + 47, 118, 97, 114, 47, 116, 109, 112, 47, 116, 101, 97, 109, 98, 117, 105, 108, 100, 101, 114, 45, 116, 109, 97, 99, 105, 101, 105, 114, 47, 99, 108, 105, 101, 110, 116, 47, 99, 111, 109, 112, 105, 108, 101, 114, 115, 46, 99, 111, 110, 102, + 65535,65534,65533,65532, // 664+ + 65535,65534,65533,65532,65531,65530,65529,65528,65527,65526,65525,65524,65523, + 47, 118, 97, 114, 47, 116, 109, 112, 47, 116, 101, 97, 109, 98, 117, 105, 108, 100, 101, 114, 45, 116, 109, 97, 99, 105, 101, 105, 114, 47, 99, 108, 105, 101, 110, 116, 47, 99, 111, 109, 112, 105, 108, 101, 114, 115, 46, 99, 111, 110, 102, + 65535,65534,65533,65532,65531,65530,65529,65528, // 736+ + + // #10 + 65535,65534,65533,65532,65531, + 76, 105, 110, 117, 120, + 65535,65534,65533,65532,65531,65530, // 752 + 65535, + 76, 105, 110, 117, 120, + 65535,65534, // 760 + + // #11 + 65535,65534,65533,65532,65531, + 105, 51, 56, 54, + 65535,65534,65533,65532,65531,65530,65529, // 776 + 65535,65534,65533,65532,65531, + 105, 51, 56, 54, + 65535,65534,65533,65532,65531,65530,65529, // 792 + + // #12 + 65535, + 105, 99, 99, + 65535,65534,65533,65532, // 800 + 65535,65534,65533,65532,65531, + 103, 43, 43, + 65535,65534,65533,65532,65531,65530,65529,65528, // 816 + + // #13 + 65535, + 76, 105, 110, 117, 120, + 65535,65534, // 824 + 65535, + 76, 105, 110, 117, 120, + 65535,65534, // 832 + + // #14 + 65535, + 105, 51, 56, 54, + 65535,65534,65533, // 840 + 65535,65534,65533,65532,65531, + 105, 51, 56, 54, + 65535,65534,65533,65532,65531,65530,65529, // 856 + + // #15 + 65535, + 76, 105, 110, 117, 120, + 65535,65534, // 864 + 65535, + 76, 105, 110, 117, 120, + 65535,65534, // 872 + + // #16 + 65535, + 105, 51, 56, 54, + 65535,65534,65533, // 880 + 65535,65534,65533,65532,65531, + 105, 51, 56, 54, + 65535,65534,65533,65532,65531,65530,65529, // 896 + + // #17 + 65535, + 103, 99, 99, + 65535,65534,65533,65532, // 904 + 65535,65534,65533,65532,65531, + 103, 43, 43, + 65535,65534,65533,65532,65531,65530,65529,65528, // 920 + + // #18 + 65535,65534,65533,65532,65531, + 76, 105, 110, 117, 120, + 65535,65534,65533,65532,65531,65530, // 936 + 65535, + 76, 105, 110, 117, 120, + 65535,65534, // 944 + + // #19 + 65535,65534,65533,65532,65531, + 105, 51, 56, 54, + 65535,65534,65533,65532,65531,65530,65529, // 960 + 65535,65534,65533,65532,65531, + 105, 51, 56, 54, + 65535,65534,65533,65532,65531,65530,65529, // 976 + + // #20 + 65535, + 103, 43, 43, + 65535,65534,65533,65532, // 984 + 65535,65534,65533,65532,65531, + 103, 43, 43, + 65535,65534,65533,65532,65531,65530,65529,65528, // 1000 + + // #21 + 65535,65534,65533,65532,65531, + 52, 46, 52, 46, 51, + 65535,65534,65533,65532,65531,65530, // 1016 + 65535,65534,65533,65532,65531, + 52, 46, 52, 46, 51, + 65535,65534,65533,65532,65531,65530, // 1032 + + // #22 + 65535, + 76, 105, 110, 117, 120, + 65535,65534, // 1040 + 65535, + 76, 105, 110, 117, 120, + 65535,65534, // 1048 + + // #23 + 65535,65534,65533,65532,65531, + 105, 51, 56, 54, + 65535,65534,65533,65532,65531,65530,65529, // 1064 + 65535,65534,65533,65532,65531, + 105, 51, 56, 54, + 65535,65534,65533,65532,65531,65530,65529, // 1080 + + // #24 + 65535, + 47, 117, 115, 114, 47, 98, 105, 110, 47, 103, 43, 43, + 65535,65534,65533, // 1096 + 65535, + 47, 117, 115, 114, 47, 98, 105, 110, 47, 103, 43, 43, + 65535,65534,65533, // 1112 + + // #25 + 65535, + 76, 105, 110, 117, 120, + 65535,65534, // 1120 + 65535, + 76, 105, 110, 117, 120, + 65535,65534, // 1128 + + // #26 + 65535, + 105, 51, 56, 54, + 65535,65534,65533, // 1136 + 65535,65534,65533,65532,65531, + 105, 51, 56, 54, + 65535,65534,65533,65532,65531,65530,65529, // 1152 + + // #27 + 65535, + 105, 99, 99, + 65535,65534,65533,65532, // 1160 + 65535,65534,65533,65532,65531, + 103, 43, 43, + 65535,65534,65533,65532,65531,65530,65529,65528, // 1176 + + // #28 + 65535, + 76, 105, 110, 117, 120, + 65535,65534, // 1184 + 65535, + 76, 105, 110, 117, 120, + 65535,65534, // 1192 + + // #29 + 65535, + 105, 51, 56, 54, + 65535,65534,65533, // 1200 + 65535,65534,65533,65532,65531, + 105, 51, 56, 54, + 65535,65534,65533,65532,65531,65530,65529, // 1216 + + // #30 + 65535,65534,65533,65532,65531, + 76, 105, 110, 117, 120, + 65535,65534,65533,65532,65531,65530, // 1232 + 65535, + 76, 105, 110, 117, 120, + 65535,65534, // 1240 + + // #31 + 65535,65534,65533,65532,65531, + 105, 51, 56, 54, + 65535,65534,65533,65532,65531,65530,65529, // 1256 + 65535,65534,65533,65532,65531, + 105, 51, 56, 54, + 65535,65534,65533,65532,65531,65530,65529, // 1272 + + // #32 + 65535,65534,65533,65532,65531, + 76, 105, 110, 117, 120, + 65535,65534,65533,65532,65531,65530, // 1288 + 65535, + 76, 105, 110, 117, 120, + 65535,65534, // 1296 + + // #33 + 65535,65534,65533,65532,65531, + 105, 51, 56, 54, + 65535,65534,65533,65532,65531,65530,65529, // 1312 + 65535,65534,65533,65532,65531, + 105, 51, 56, 54, + 65535,65534,65533,65532,65531,65530,65529, // 1328 + + // #34 + 65535, + 45, 109, 97, 114, 99, 104, 61, 99, 111, 114, 101, 50, + 65535,65534,65533, // 1344 + 65535, + 116, 98, 51, 54, 57, 54, 56, 95, 50, 46, 105, 105, + 65535,65534,65533, // 1360 + + // #35 + 65535,65534,65533,65532,65531, + 45, 102, 108, 111, 111, 112, 45, 98, 108, 111, 99, 107, + 65535,65534,65533,65532,65531,65530,65529, // 1384 + 65535, + 116, 98, 51, 54, 57, 54, 56, 95, 50, 46, 105, 105, + 65535,65534,65533, // 1400 + + // #36 + 65535,65534,65533,65532,65531, + 116, 98, 51, 54, 57, 54, 56, 95, 50, 46, 105, 105, + 65535,65534,65533,65532,65531,65530,65529, // 1424 + 65535, + 116, 98, 51, 54, 57, 54, 56, 95, 50, 46, 105, 105, + 65535,65534,65533, // 1440 + + // #37 + 65535,65534,65533,65532,65531, + 45, 109, 115, 115, 101, 52, + 65535,65534,65533,65532,65531, // 1456 + 65535,65534,65533,65532,65531, + 108, 101, 110, 103, 116, 104, + 65535,65534,65533,65532,65531, // 1472 + + // #38 + 65535,65534,65533,65532,65531, + 116, 98, 51, 54, 57, 54, 56, 95, 49, 46, 111, + 65535,65534,65533,65532,65531,65530,65529,65528, // 1496 + 65535,65534,65533,65532,65531, + 116, 98, 51, 54, 57, 54, 56, 95, 49, 46, 111, + 65535,65534,65533,65532,65531,65530,65529,65528, // 1520 + + // #39 + 65535,65534,65533,65532,65531, + 68, 69, 83, 75, 84, 79, 80, 95, 83, 69, 83, 83, + 65535,65534,65533,65532,65531,65530,65529, // 1544 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 1560 + + // #40 + 65535,65534,65533,65532,65531, + 76, 67, 95, 83, 79, 85, 82, 67, 69, 68, 61, 49, + 65535,65534,65533,65532,65531,65530,65529, // 1584 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 1600 + + // #41 + 65535,65534,65533,65532,65531, + 81, 84, 68, 73, 82, 61, 47, 104, 111, 109, 101, 47, + 65535,65534,65533,65532,65531,65530,65529, // 1624 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 1640 + + // #42 + 65535, + 76, 67, 95, 67, 84, 89, 80, 69, 61, 112, 116, 95, + 65535,65534,65533, // 1656 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 1672 + + // #43 + 65535, + 71, 84, 75, 95, 82, 67, 95, 70, 73, 76, 69, 83, + 65535,65534,65533, // 1688 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 1704 + + // #44 + 65535, + 88, 77, 79, 68, 73, 70, 73, 69, 82, 83, 61, 64, + 65535,65534,65533, // 1720 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 1736 + + // #45 + 65535, + 83, 72, 69, 76, 76, 61, 47, 98, 105, 110, 47, 122, + 65535,65534,65533, // 1752 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 1768 + + // #46 + 65535,65534,65533,65532,65531, + 85, 61, 64, 123, 117, 112, 115, 116, 114, 101, 97, 109, + 65535,65534,65533,65532,65531,65530,65529, // 1792 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 1808 + + // #47 + 65535, + 95, 61, 47, 117, 115, 114, 47, 98, 105, 110, 47, 105, + 65535,65534,65533, // 1824 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 1840 + + // #48 + 65535, + 88, 68, 71, 95, 67, 79, 78, 70, 73, 71, 95, 68, + 65535,65534,65533, // 1856 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 1872 + + // #49 + 65535,65534,65533,65532,65531, + 83, 65, 86, 69, 72, 73, 83, 84, 61, 49, 48, 48, + 65535,65534,65533,65532,65531,65530,65529, // 1896 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 1912 + + // #50 + 65535, + 75, 68, 69, 95, 77, 85, 76, 84, 73, 72, 69, 65, + 65535,65534,65533, // 1928 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 1944 + + // #51 + 65535,65534,65533,65532,65531, + 77, 65, 76, 76, 79, 67, 95, 67, 72, 69, 67, 75, + 65535,65534,65533,65532,65531,65530,65529, // 1968 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 1984 + + // #52 + 65535,65534,65533,65532,65531, + 72, 73, 83, 84, 67, 79, 78, 84, 82, 79, 76, 61, + 65535,65534,65533,65532,65531,65530,65529, // 2008 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2024 + + // #53 + 65535,65534,65533,65532,65531, + 88, 68, 71, 95, 68, 65, 84, 65, 95, 68, 73, 82, + 65535,65534,65533,65532,65531,65530,65529, // 2048 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2064 + + // #54 + 65535,65534,65533,65532,65531, + 88, 68, 77, 95, 77, 65, 78, 65, 71, 69, 68, 61, + 65535,65534,65533,65532,65531,65530,65529, // 2088 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2104 + + // #55 + 65535, + 76, 67, 95, 67, 79, 76, 76, 65, 84, 69, 61, 112, + 65535,65534,65533, // 2120 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2136 + + // #56 + 65535, + 81, 84, 95, 80, 76, 85, 71, 73, 78, 95, 80, 65, + 65535,65534,65533, // 2152 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2168 + + // #57 + 65535, + 83, 67, 82, 69, 69, 78, 68, 73, 82, 61, 47, 104, + 65535,65534,65533, // 2184 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2200 + + // #58 + 65535,65534,65533,65532,65531, + 76, 69, 83, 83, 79, 80, 69, 78, 61, 124, 47, 117, + 65535,65534,65533,65532,65531,65530,65529, // 2224 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2240 + + // #59 + 65535, + 76, 67, 95, 78, 65, 77, 69, 61, 110, 98, 95, 78, + 65535,65534,65533, // 2256 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2272 + + // #60 + 65535,65534,65533,65532,65531, + 80, 52, 67, 76, 73, 69, 78, 84, 61, 116, 109, 97, + 65535,65534,65533,65532,65531,65530,65529, // 2296 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2312 + + // #61 + 65535, + 80, 65, 84, 72, 61, 47, 104, 111, 109, 101, 47, 116, + 65535,65534,65533, // 2328 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2344 + + // #62 + 65535,65534,65533,65532,65531, + 71, 80, 71, 95, 65, 71, 69, 78, 84, 95, 73, 78, + 65535,65534,65533,65532,65531,65530,65529, // 2368 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2384 + + // #63 + 65535,65534,65533,65532,65531, + 88, 67, 85, 82, 83, 79, 82, 95, 84, 72, 69, 77, + 65535,65534,65533,65532,65531,65530,65529, // 2408 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2424 + + // #64 + 65535,65534,65533,65532,65531, + 83, 69, 83, 83, 73, 79, 78, 95, 77, 65, 78, 65, + 65535,65534,65533,65532,65531,65530,65529, // 2448 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2464 + + // #65 + 65535, + 81, 84, 83, 82, 67, 68, 73, 82, 61, 47, 104, 111, + 65535,65534,65533, // 2480 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2496 + + // #66 + 65535,65534,65533,65532,65531, + 87, 73, 78, 68, 79, 87, 73, 68, 61, 52, 54, 49, + 65535,65534,65533,65532,65531,65530,65529, // 2520 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2536 + + // #67 + 65535,65534,65533,65532,65531, + 76, 67, 95, 77, 69, 83, 83, 65, 71, 69, 83, 61, + 65535,65534,65533,65532,65531,65530,65529, // 2560 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2576 + + // #68 + 65535, + 76, 67, 95, 78, 85, 77, 69, 82, 73, 67, 61, 110, + 65535,65534,65533, // 2592 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2608 + + // #69 + 65535, + 71, 84, 75, 50, 95, 82, 67, 95, 70, 73, 76, 69, + 65535,65534,65533, // 2624 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2640 + + // #70 + 65535, + 80, 82, 79, 70, 73, 76, 69, 72, 79, 77, 69, 61, + 65535,65534,65533, // 2656 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2672 + + // #71 + 65535,65534,65533,65532,65531, + 68, 77, 95, 67, 79, 78, 84, 82, 79, 76, 61, 47, + 65535,65534,65533,65532,65531,65530,65529, // 2696 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2712 + + // #72 + 65535, + 76, 83, 95, 67, 79, 76, 79, 82, 83, 61, 114, 115, + 65535,65534,65533, // 2728 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2744 + + // #73 + 65535,65534,65533,65532,65531, + 83, 83, 72, 95, 65, 85, 84, 72, 95, 83, 79, 67, + 65535,65534,65533,65532,65531,65530,65529, // 2768 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2784 + + // #74 + 65535,65534,65533,65532,65531, + 75, 68, 69, 68, 73, 82, 83, 61, 47, 104, 111, 109, + 65535,65534,65533,65532,65531,65530,65529, // 2808 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2824 + + // #75 + 65535,65534,65533,65532,65531, + 76, 68, 95, 80, 82, 69, 76, 79, 65, 68, 61, 47, + 65535,65534,65533,65532,65531,65530,65529, // 2848 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2864 + + // #76 + 65535,65534,65533,65532,65531, + 88, 67, 85, 82, 83, 79, 82, 95, 80, 65, 84, 72, + 65535,65534,65533,65532,65531,65530,65529, // 2888 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2904 + + // #77 + 65535, + 115, 114, 99, 100, 105, 114, 61, 47, 104, 111, 109, 101, + 65535,65534,65533, // 2920 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2936 + + // #78 + 65535,65534,65533,65532,65531, + 72, 79, 77, 69, 61, 47, 104, 111, 109, 101, 47, 116, + 65535,65534,65533,65532,65531,65530,65529, // 2960 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 2976 + + // #79 + 65535, + 81, 84, 52, 68, 79, 67, 68, 73, 82, 61, 47, 117, + 65535,65534,65533, // 2992 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3008 + + // #80 + 65535,65534,65533,65532,65531, + 80, 87, 68, 61, 47, 104, 111, 109, 101, 47, 116, 109, + 65535,65534,65533,65532,65531,65530,65529, // 3032 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3048 + + // #81 + 65535,65534,65533,65532,65531, + 75, 68, 69, 95, 83, 69, 83, 83, 73, 79, 78, 95, + 65535,65534,65533,65532,65531,65530,65529, // 3072 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3088 + + // #82 + 65535, + 73, 78, 83, 73, 68, 69, 95, 83, 80, 69, 67, 73, + 65535,65534,65533, // 3104 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3120 + + // #83 + 65535, + 83, 83, 72, 95, 65, 71, 69, 78, 84, 95, 80, 73, + 65535,65534,65533, // 3136 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3152 + + // #84 + 65535, + 80, 75, 71, 95, 67, 79, 78, 70, 73, 71, 95, 80, + 65535,65534,65533, // 3168 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3184 + + // #85 + 65535,65534,65533,65532,65531, + 68, 66, 85, 83, 95, 83, 69, 83, 83, 73, 79, 78, + 65535,65534,65533,65532,65531,65530,65529, // 3208 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3224 + + // #86 + 65535, + 76, 68, 95, 76, 73, 66, 82, 65, 82, 89, 95, 80, + 65535,65534,65533, // 3240 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3256 + + // #87 + 65535,65534,65533,65532,65531, + 80, 52, 85, 83, 69, 82, 61, 116, 106, 109, 97, 99, + 65535,65534,65533,65532,65531,65530,65529, // 3280 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3296 + + // #88 + 65535,65534,65533,65532,65531, + 81, 84, 69, 83, 84, 95, 67, 79, 76, 79, 82, 69, + 65535,65534,65533,65532,65531,65530,65529, // 3320 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3336 + + // #89 + 65535,65534,65533,65532,65531, + 88, 68, 71, 95, 83, 69, 83, 83, 73, 79, 78, 95, + 65535,65534,65533,65532,65531,65530,65529, // 3360 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3376 + + // #90 + 65535,65534,65533,65532,65531, + 76, 69, 83, 83, 75, 69, 89, 61, 47, 101, 116, 99, + 65535,65534,65533,65532,65531,65530,65529, // 3400 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3416 + + // #91 + 65535, + 76, 79, 71, 78, 65, 77, 69, 61, 116, 109, 97, 99, + 65535,65534,65533, // 3432 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3448 + + // #92 + 65535, + 71, 95, 70, 73, 76, 69, 78, 65, 77, 69, 95, 69, + 65535,65534,65533, // 3464 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3480 + + // #93 + 65535, + 75, 68, 69, 95, 70, 85, 76, 76, 95, 83, 69, 83, + 65535,65534,65533, // 3496 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3512 + + // #94 + 65535,65534,65533,65532,65531, + 72, 79, 83, 84, 78, 65, 77, 69, 61, 108, 111, 116, + 65535,65534,65533,65532,65531,65530,65529, // 3536 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3552 + + // #95 + 65535,65534,65533,65532,65531, + 76, 67, 95, 84, 73, 77, 69, 61, 112, 116, 95, 66, + 65535,65534,65533,65532,65531,65530,65529, // 3576 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3592 + + // #96 + 65535, + 83, 83, 72, 95, 65, 83, 75, 80, 65, 83, 83, 61, + 65535,65534,65533, // 3608 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3624 + + // #97 + 65535,65534,65533,65532,65531, + 72, 73, 83, 84, 70, 73, 76, 69, 61, 47, 104, 111, + 65535,65534,65533,65532,65531,65530,65529, // 3648 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3664 + + // #98 + 65535, + 75, 79, 78, 83, 79, 76, 69, 95, 68, 66, 85, 83, + 65535,65534,65533, // 3680 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3696 + + // #99 + 65535, + 77, 65, 75, 69, 61, 47, 117, 115, 114, 47, 98, 105, + 65535,65534,65533, // 3712 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3728 + + // #100 + 65535, + 67, 65, 78, 66, 69, 82, 82, 65, 95, 68, 82, 73, + 65535,65534,65533, // 3744 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3760 + + // #101 + 65535, + 71, 67, 79, 78, 70, 95, 84, 77, 80, 68, 73, 82, + 65535,65534,65533, // 3776 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3792 + + // #102 + 65535,65534,65533,65532,65531, + 85, 83, 69, 82, 61, 116, 109, 97, 99, 105, 101, 105, + 65535,65534,65533,65532,65531,65530,65529, // 3816 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3832 + + // #103 + 65535, + 111, 98, 106, 100, 105, 114, 61, 47, 104, 111, 109, 101, + 65535,65534,65533, // 3848 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3864 + + // #104 + 65535,65534,65533,65532,65531, + 76, 67, 95, 77, 79, 78, 69, 84, 65, 82, 89, 61, + 65535,65534,65533,65532,65531,65530,65529, // 3888 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3904 + + // #105 + 65535,65534,65533,65532,65531, + 81, 84, 76, 73, 66, 61, 47, 117, 115, 114, 47, 108, + 65535,65534,65533,65532,65531,65530,65529, // 3928 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3944 + + // #106 + 65535,65534,65533,65532,65531, + 76, 67, 95, 84, 69, 76, 69, 80, 72, 79, 78, 69, + 65535,65534,65533,65532,65531,65530,65529, // 3968 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 3984 + + // #107 + 65535, + 80, 89, 84, 72, 79, 78, 68, 79, 78, 84, 87, 82, + 65535,65534,65533, // 4000 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4016 + + // #108 + 65535,65534,65533,65532,65531, + 84, 77, 80, 68, 73, 82, 61, 47, 116, 109, 112, 47, + 65535,65534,65533,65532,65531,65530,65529, // 4040 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4056 + + // #109 + 65535,65534,65533,65532,65531, + 65, 82, 77, 76, 77, 68, 95, 76, 73, 67, 69, 78, + 65535,65534,65533,65532,65531,65530,65529, // 4080 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4096 + + // #110 + 65535, + 80, 89, 84, 72, 79, 78, 80, 65, 84, 72, 61, 47, + 65535,65534,65533, // 4112 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4128 + + // #111 + 65535,65534,65533,65532,65531, + 77, 65, 75, 69, 70, 76, 65, 71, 83, 61, 119, 32, + 65535,65534,65533,65532,65531,65530,65529, // 4152 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4168 + + // #112 + 65535, + 77, 70, 76, 65, 71, 83, 61, 45, 119, 32, 45, 45, + 65535,65534,65533, // 4184 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4200 + + // #113 + 65535, + 77, 65, 73, 76, 61, 47, 118, 97, 114, 47, 115, 112, + 65535,65534,65533, // 4216 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4232 + + // #114 + 65535,65534,65533,65532,65531, + 83, 72, 69, 76, 76, 95, 83, 69, 83, 83, 73, 79, + 65535,65534,65533,65532,65531,65530,65529, // 4256 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4272 + + // #115 + 65535, + 75, 68, 69, 68, 73, 82, 61, 47, 104, 111, 109, 101, + 65535,65534,65533, // 4288 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4304 + + // #116 + 65535,65534,65533,65532,65531, + 76, 69, 83, 83, 67, 72, 65, 82, 83, 69, 84, 61, + 65535,65534,65533,65532,65531,65530,65529, // 4328 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4344 + + // #117 + 65535,65534,65533,65532,65531, + 76, 67, 95, 80, 65, 80, 69, 82, 61, 110, 98, 95, + 65535,65534,65533,65532,65531,65530,65529, // 4368 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4384 + + // #118 + 65535, + 66, 82, 79, 87, 83, 69, 82, 61, 47, 117, 115, 114, + 65535,65534,65533, // 4400 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4416 + + // #119 + 65535, + 77, 69, 84, 65, 95, 67, 76, 65, 83, 83, 61, 100, + 65535,65534,65533, // 4432 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4448 + + // #120 + 65535,65534,65533,65532,65531, + 77, 68, 86, 95, 77, 69, 78, 85, 95, 83, 84, 89, + 65535,65534,65533,65532,65531,65530,65529, // 4472 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4488 + + // #121 + 65535,65534,65533,65532,65531, + 67, 79, 76, 79, 82, 70, 71, 66, 71, 61, 49, 53, + 65535,65534,65533,65532,65531,65530,65529, // 4512 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4528 + + // #122 + 65535,65534,65533,65532,65531, + 80, 89, 84, 72, 79, 78, 83, 84, 65, 82, 84, 85, + 65535,65534,65533,65532,65531,65530,65529, // 4552 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4568 + + // #123 + 65535, + 76, 67, 95, 77, 69, 65, 83, 85, 82, 69, 77, 69, + 65535,65534,65533, // 4584 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4600 + + // #124 + 65535,65534,65533,65532,65531, + 69, 68, 73, 84, 79, 82, 61, 47, 117, 115, 114, 47, + 65535,65534,65533,65532,65531,65530,65529, // 4624 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4640 + + // #125 + 65535,65534,65533,65532,65531, + 69, 78, 95, 84, 66, 61, 109, 111, 99, 58, 117, 105, + 65535,65534,65533,65532,65531,65530,65529, // 4664 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4680 + + // #126 + 65535, + 72, 73, 83, 84, 83, 73, 90, 69, 61, 49, 48, 48, + 65535,65534,65533, // 4696 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4712 + + // #127 + 65535,65534,65533,65532,65531, + 71, 83, 95, 76, 73, 66, 61, 47, 104, 111, 109, 101, + 65535,65534,65533,65532,65531,65530,65529, // 4736 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4752 + + // #128 + 65535,65534,65533,65532,65531, + 78, 76, 83, 80, 65, 84, 72, 61, 47, 117, 115, 114, + 65535,65534,65533,65532,65531,65530,65529, // 4776 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4792 + + // #129 + 65535,65534,65533,65532,65531, + 87, 73, 78, 68, 79, 87, 80, 65, 84, 72, 61, 55, + 65535,65534,65533,65532,65531,65530,65529, // 4816 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4832 + + // #130 + 65535,65534,65533,65532,65531, + 75, 79, 78, 83, 79, 76, 69, 95, 68, 66, 85, 83, + 65535,65534,65533,65532,65531,65530,65529, // 4856 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4872 + + // #131 + 65535, + 76, 67, 95, 73, 68, 69, 78, 84, 73, 70, 73, 67, + 65535,65534,65533, // 4888 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4904 + + // #132 + 65535, + 73, 78, 80, 85, 84, 82, 67, 61, 47, 101, 116, 99, + 65535,65534,65533, // 4920 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4936 + + // #133 + 65535,65534,65533,65532,65531, + 81, 84, 73, 78, 67, 61, 47, 117, 115, 114, 47, 108, + 65535,65534,65533,65532,65531,65530,65529, // 4960 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 4976 + + // #134 + 65535, + 76, 67, 95, 65, 68, 68, 82, 69, 83, 83, 61, 110, + 65535,65534,65533, // 4992 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 5008 + + // #135 + 65535,65534,65533,65532,65531, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 95, + 65535,65534,65533,65532,65531,65530,65529, // 5032 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 5048 + + // #136 + 65535, + 76, 65, 78, 71, 61, 112, 116, 95, 66, 82, 46, 85, + 65535,65534,65533, // 5064 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 5080 + + // #137 + 65535, + 80, 52, 80, 79, 82, 84, 61, 112, 52, 46, 116, 114, + 65535,65534,65533, // 5096 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 5112 + + // #138 + 65535,65534,65533,65532,65531, + 80, 73, 76, 79, 84, 80, 79, 82, 84, 61, 117, 115, + 65535,65534,65533,65532,65531,65530,65529, // 5136 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 5152 + + // #139 + 65535, + 75, 68, 69, 95, 83, 69, 83, 83, 73, 79, 78, 95, + 65535,65534,65533, // 5168 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 5184 + + // #140 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 5200 + 65535, + 84, 69, 65, 77, 66, 85, 73, 76, 68, 69, 82, 61, + 65535,65534,65533, // 5216 +}; + +const struct StringCollection stringCollection[] = { + {18, 1, 29, 3666, 106}, // #0 + {18, 53, 77, 106, 1978}, // #1 + {20, 97, 125, 2850, 3210}, // #2 + {20, 157, 185, 3210, 3138}, // #3 + {51, 225, 225, 3362, 3362}, // #4 + {51, 293, 353, 1434, 3362}, // #5 + {51, 417, 417, 3362, 3362}, // #6 + {19, 473, 501, 2850, 10}, // #7 + {19, 533, 565, 10, 442}, // #8 + {51, 609, 677, 3362, 1434}, // #9 + {5, 741, 753, 2666, 2066}, // #10 + {4, 765, 781, 2362, 3930}, // #11 + {3, 793, 805, 3330, 2138}, // #12 + {5, 817, 825, 738, 2066}, // #13 + {4, 833, 845, 434, 3930}, // #14 + {5, 857, 865, 3842, 2066}, // #15 + {4, 873, 885, 3538, 3930}, // #16 + {3, 897, 909, 3330, 2138}, // #17 + {5, 925, 937, 1898, 2066}, // #18 + {4, 949, 965, 1594, 3930}, // #19 + {3, 977, 989, 3330, 2138}, // #20 + {5, 1005, 1021, 2218, 762}, // #21 + {5, 1033, 1041, 3346, 2066}, // #22 + {4, 1053, 1069, 3082, 3930}, // #23 + {12, 1081, 1097, 2082, 962}, // #24 + {5, 1113, 1121, 3362, 2066}, // #25 + {4, 1129, 1141, 322, 3930}, // #26 + {3, 1153, 1165, 2050, 2138}, // #27 + {5, 1177, 1185, 1538, 2066}, // #28 + {4, 1193, 1205, 1234, 3930}, // #29 + {5, 1221, 1233, 554, 2066}, // #30 + {4, 1245, 1261, 250, 3930}, // #31 + {5, 1277, 1289, 2858, 2066}, // #32 + {4, 1301, 1317, 2554, 3930}, // #33 + {12, 1329, 1345, 2194, 1762}, // #34 + {12, 1365, 1385, 2170, 1762}, // #35 + {12, 1405, 1425, 2314, 1762}, // #36 + {6, 1445, 1461, 3626, 666}, // #37 + {11, 1477, 1501, 3882, 842}, // #38 + {12, 1525, 1545, 1722, 2930}, // #39 + {12, 1565, 1585, 1914, 2930}, // #40 + {12, 1605, 1625, 442, 2930}, // #41 + {12, 1641, 1657, 626, 2930}, // #42 + {12, 1673, 1689, 946, 2930}, // #43 + {12, 1705, 1721, 738, 2930}, // #44 + {12, 1737, 1753, 2066, 2930}, // #45 + {12, 1773, 1793, 1210, 2930}, // #46 + {12, 1809, 1825, 1426, 2930}, // #47 + {12, 1841, 1857, 1650, 2930}, // #48 + {12, 1877, 1897, 1530, 2930}, // #49 + {12, 1913, 1929, 1858, 2930}, // #50 + {12, 1949, 1969, 2106, 2930}, // #51 + {12, 1989, 2009, 2202, 2930}, // #52 + {12, 2029, 2049, 2490, 2930}, // #53 + {12, 2069, 2089, 2794, 2930}, // #54 + {12, 2105, 2121, 2322, 2930}, // #55 + {12, 2137, 2153, 2834, 2930}, // #56 + {12, 2169, 2185, 1266, 2930}, // #57 + {12, 2205, 2225, 2538, 2930}, // #58 + {12, 2241, 2257, 2706, 2930}, // #59 + {12, 2277, 2297, 3402, 2930}, // #60 + {12, 2313, 2329, 146, 2930}, // #61 + {12, 2349, 2369, 3690, 2930}, // #62 + {12, 2389, 2409, 810, 2930}, // #63 + {12, 2429, 2449, 1178, 2930}, // #64 + {12, 2465, 2481, 1442, 2930}, // #65 + {12, 2501, 2521, 3546, 2930}, // #66 + {12, 2541, 2561, 1930, 2930}, // #67 + {12, 2577, 2593, 1634, 2930}, // #68 + {12, 2609, 2625, 1986, 2930}, // #69 + {12, 2641, 2657, 1970, 2930}, // #70 + {12, 2677, 2697, 1834, 2930}, // #71 + {12, 2713, 2729, 1474, 2930}, // #72 + {12, 2749, 2769, 2250, 2930}, // #73 + {12, 2789, 2809, 2458, 2930}, // #74 + {12, 2829, 2849, 2618, 2930}, // #75 + {12, 2869, 2889, 3066, 2930}, // #76 + {12, 2905, 2921, 3330, 2930}, // #77 + {12, 2941, 2961, 1706, 2930}, // #78 + {12, 2977, 2993, 2802, 2930}, // #79 + {12, 3013, 3033, 3770, 2930}, // #80 + {12, 3053, 3073, 3594, 2930}, // #81 + {12, 3089, 3105, 2, 2930}, // #82 + {12, 3121, 3137, 2962, 2930}, // #83 + {12, 3153, 3169, 290, 2930}, // #84 + {12, 3189, 3209, 794, 2930}, // #85 + {12, 3225, 3241, 1058, 2930}, // #86 + {12, 3261, 3281, 2394, 2930}, // #87 + {12, 3301, 3321, 138, 2930}, // #88 + {12, 3341, 3361, 1482, 2930}, // #89 + {12, 3381, 3401, 570, 2930}, // #90 + {12, 3417, 3433, 674, 2930}, // #91 + {12, 3449, 3465, 1282, 2930}, // #92 + {12, 3481, 3497, 1746, 2930}, // #93 + {12, 3517, 3537, 1866, 2930}, // #94 + {12, 3557, 3577, 1978, 2930}, // #95 + {12, 3593, 3609, 3954, 2930}, // #96 + {12, 3629, 3649, 2570, 2930}, // #97 + {12, 3665, 3681, 2754, 2930}, // #98 + {12, 3697, 3713, 3666, 2930}, // #99 + {12, 3729, 3745, 34, 2930}, // #100 + {12, 3761, 3777, 2914, 2930}, // #101 + {12, 3797, 3817, 1194, 2930}, // #102 + {12, 3833, 3849, 3202, 2930}, // #103 + {12, 3869, 3889, 3018, 2930}, // #104 + {12, 3909, 3929, 202, 2930}, // #105 + {12, 3949, 3969, 3546, 2930}, // #106 + {12, 3985, 4001, 3682, 2930}, // #107 + {12, 4021, 4041, 3466, 2930}, // #108 + {12, 4061, 4081, 4074, 2930}, // #109 + {12, 4097, 4113, 306, 2930}, // #110 + {12, 4133, 4153, 634, 2930}, // #111 + {12, 4169, 4185, 802, 2930}, // #112 + {12, 4201, 4217, 962, 2930}, // #113 + {12, 4237, 4257, 1114, 2930}, // #114 + {12, 4273, 4289, 1250, 2930}, // #115 + {12, 4309, 4329, 3898, 2930}, // #116 + {12, 4349, 4369, 1386, 2930}, // #117 + {12, 4385, 4401, 1586, 2930}, // #118 + {12, 4417, 4433, 1730, 2930}, // #119 + {12, 4453, 4473, 1914, 2930}, // #120 + {12, 4493, 4513, 1498, 2930}, // #121 + {12, 4533, 4553, 2138, 2930}, // #122 + {12, 4569, 4585, 2290, 2930}, // #123 + {12, 4605, 4625, 2426, 2930}, // #124 + {12, 4645, 4665, 2666, 2930}, // #125 + {12, 4681, 4697, 2050, 2930}, // #126 + {12, 4717, 4737, 2874, 2930}, // #127 + {12, 4757, 4777, 3018, 2930}, // #128 + {12, 4797, 4817, 1834, 2930}, // #129 + {12, 4837, 4857, 3178, 2930}, // #130 + {12, 4873, 4889, 3314, 2930}, // #131 + {12, 4905, 4921, 2546, 2930}, // #132 + {12, 4941, 4961, 3546, 2930}, // #133 + {12, 4977, 4993, 3682, 2930}, // #134 + {12, 5013, 5033, 3802, 2930}, // #135 + {12, 5049, 5065, 3922, 2930}, // #136 + {12, 5081, 5097, 4018, 2930}, // #137 + {12, 5117, 5137, 42, 2930}, // #138 + {12, 5153, 5169, 130, 2930}, // #139 + {12, 5185, 5201, 242, 2930}, // #140 +}; +const int stringCollectionCount = 141; +const int stringCollectionMaxLen = 51; +// average comparison length: 12.0922 +// cache-line crosses: 6 (2.1%) +// alignment histogram: +// 0xXXX2 = 188 (66.7%) strings, 57 (30.3%) of which same-aligned +// 0xXXXa = 94 (33.3%) strings, 10 (10.6%) of which same-aligned +// total = 282 (100%) strings, 67 (23.8%) of which same-aligned diff --git a/tests/benchmarks/corelib/tools/qstring/data.h b/tests/benchmarks/corelib/tools/qstring/data.h new file mode 100644 index 0000000000..bd4ff55bd1 --- /dev/null +++ b/tests/benchmarks/corelib/tools/qstring/data.h @@ -0,0 +1,70 @@ +/**************************************************************************** +** +** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the test suite of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#ifndef DATA_H +#define DATA_H + +#include <qglobal.h> + +struct StringCollection +{ + int len; + int offset1, offset2; + ushort align1, align2; +}; + +extern const ushort stringCollectionData[]; +extern const StringCollection stringCollection[]; +extern const int stringCollectionCount; + +struct StringData +{ + const int *entries; + union { + const char *charData; + const ushort *ushortData; + }; + + int entryCount; + int maxLength; +}; + +#endif // DATA_H diff --git a/tests/benchmarks/corelib/tools/qstring/fromlatin1.cpp b/tests/benchmarks/corelib/tools/qstring/fromlatin1.cpp new file mode 100644 index 0000000000..9a44b26505 --- /dev/null +++ b/tests/benchmarks/corelib/tools/qstring/fromlatin1.cpp @@ -0,0 +1,43065 @@ +// This is a generated file - DO NOT EDIT + +#include "data.h" + +static const char charData[] __attribute__((aligned(64))) = { + // #0 + "\377\376\375\374\373\372\371\370\367\366" + "org.kde.StatusNotifierWatcher" + "\377\376\375\374\373\372\371\370\367" // 48+ + + // #1 + "\377" + "|/|" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 64 + + // #2 + "\377\376\375\374\373" + "$[" + "\377\376\375\374\373\372\371\370\367" // 80 + + // #3 + "\377\376\375\374\373" + "]" + "\377\376\375\374\373\372\371\370\367\366" // 96 + + // #4 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330" + "LC_SCRIPTS" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 160+ + + // #5 + "\377\376\375\374" + "en_US" + "\377\376\375\374\373\372\371" // 176 + + // #6 + "\377\376" + "http://" + "\377\376\375\374\373\372\371" // 192 + + // #7 + "\377\376" + "kde.org" + "\377\376\375\374\373\372\371" // 208 + + // #8 + "\377\376\375\374\373\372\371\370" + "tools-report-bug" + "\377\376\375\374\373\372\371\370" // 240 + + // #9 + "\377" + "/.krcdirs" + "\377\376\375\374\373\372" // 256 + + // #10 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + ".kde" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 288 + + // #11 + "\377" + "/.config/" + "\377\376\375\374\373\372" // 304 + + // #12 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "share/" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 336 + + // #13 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "share/" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 368 + + // #14 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "share/" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 400 + + // #15 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "share/" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 432 + + // #16 + "\377\376\375\374\373" + "/.local/share/" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 464 + + // #17 + "\377\376" + "lib/" + "\377\376\375\374\373\372\371\370\367\366" // 480 + + // #18 + "\377\376\375\374\373" + "share/apps" + "\377" // 496 + + // #19 + "\377\376\375\374\373" + "share/doc/HTML" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 528 + + // #20 + "\377\376\375\374\373\372\371\370\367" + "share/icons" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 560 + + // #21 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + "share/config" + "\377\376\375\374\373\372\371\370" // 608+ + + // #22 + "share/pixmaps" + "\377\376\375" // 624 + + // #23 + "\377\376\375" + "share/applnk" + "\377" // 640 + + // #24 + "\377\376\375\374\373\372" + "share/sounds" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 672+ + + // #25 + "\377\376\375\374\373\372\371\370\367\366" + "share/locale" + "\377\376\375\374\373\372\371\370\367\366" // 704 + + // #26 + "share/kde4/services" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 736 + + // #27 + "\377" + "share/kde4/servicetypes" + "\377\376\375\374\373\372\371\370" // 768 + + // #28 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "share/mimelnk" + "\377\376\375\374\373" // 800 + + // #29 + "cgi-bin" + "\377\376\375\374\373\372\371\370\367" // 816 + + // #30 + "\377\376" + "share/wallpapers" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 848 + + // #31 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "share/templates" + "\377\376\375\374" // 880 + + // #32 + "\377" + "bin" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 896 + + // #33 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "%lib/kde4" + "\377\376\375\374\373\372\371\370\367\366\365" // 928+ + + // #34 + "%lib/kde4/plugins" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 960 + + // #35 + "\377\376\375\374\373\372\371" + "share/config.kcfg" + "\377\376\375\374\373\372\371\370" // 992 + + // #36 + "\377\376\375" + "share/emoticons" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 1024 + + // #37 + "applications" + "\377\376\375\374" // 1040 + + // #38 + "\377\376\375\374\373\372\371\370\367\366" + "icons" + "\377" // 1056 + + // #39 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "pixmaps" + "\377\376\375\374\373\372\371\370\367\366" // 1088 + + // #40 + "\377\376\375\374" + "desktop-directories" + "\377\376\375\374\373\372\371\370\367" // 1120 + + // #41 + "\377\376\375\374\373\372\371\370\367" + "mime" + "\377\376\375" // 1136 + + // #42 + "\377\376" + "menus" + "\377\376\375\374\373\372\371\370\367" // 1152 + + // #43 + "\377\376\375\374\373\372\371\370\367\366" + "autostart" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 1184 + + // #44 + "\377\376\375\374" + "kde4/libexec" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 1216 + + // #45 + "\377\376\375\374\373\372\371\370" + "lib" + "\377\376\375\374\373" // 1232 + + // #46 + "\377\376\375" + "/" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 1248 + + // #47 + "\377\376\375\374\373\372" + "xdgconf-autostart" + "\377\376\375\374\373\372\371\370\367" // 1280 + + // #48 + "\377\376\375\374\373\372\371\370" + "share/autostart" + "\377\376\375\374\373\372\371\370\367" // 1312 + + // #49 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "data" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 1344 + + // #50 + "\377\376\375\374" + "kdeglobals" + "\377\376" // 1360 + + // #51 + "\377\376\375\374\373\372\371\370\367\366" + "." + "\377\376\375\374\373" // 1376 + + // #52 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 1392 + + // #53 + "\377\376\375\374\373\372\371\370\367\366" + "." + "\377\376\375\374\373" // 1408 + + // #54 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 1424 + + // #55 + "\377" + ":/qt/etc/qt.conf" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 1456 + + // #56 + "\377\376\375\374\373\372\371\370" + "nb_NO.UTF-8" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 1488 + + // #57 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 1504 + + // #58 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "/usr/lib/qt4/plugins:/home/tmacieir/.kde/lib/kde4/plugins/:/home/tmacieir/KDE4/lib/kde4/plugins/:/usr/lib/kde4/plugins/" + "\377\376\375\374\373\372\371\370\367" // 1664+ + + // #59 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 1680 + + // #60 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 1696 + + // #61 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 1712 + + // #62 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 1728 + + // #63 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 1744 + + // #64 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 1760 + + // #65 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 1776 + + // #66 + "\377\376" + "/etc/kde4rc" + "\377\376\375" // 1792 + + // #67 + "\377\376\375\374" + "rc" + "\377\376\375\374\373\372\371\370\367\366" // 1808 + + // #68 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 1824 + + // #69 + "\377\376\375\374" + "kdeglobals" + "\377\376" // 1840 + + // #70 + "\377\376\375\374\373\372\371\370\367\366" + "." + "\377\376\375\374\373" // 1856 + + // #71 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 1872 + + // #72 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "system.kdeglobals" + "\377\376" // 1904 + + // #73 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 1920 + + // #74 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 1936 + + // #75 + "\377\376\375\374\373\372\371\370" + "Directories" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 1968 + + // #76 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346" + "default" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 2016+ + + // #77 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335" + "Directories-%1" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 2080+ + + // #78 + "\377\376\375\374\373\372\371\370" + "/etc/xdg" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 2112 + + // #79 + "\377\376\375\374\373\372\371" + "/share" + "\377\376\375" // 2128 + + // #80 + "\377\376\375\374\373\372\371\370" + "/etc/xdg" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 2160 + + // #81 + "\377\376\375\374\373\372\371" + "/share" + "\377\376\375" // 2176 + + // #82 + "\377\376\375\374\373\372\371\370\367\366" + "." + "\377\376\375\374\373" // 2192 + + // #83 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 2208 + + // #84 + "\377\376\375\374" + "kdeglobals" + "\377\376" // 2224 + + // #85 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "system.kdeglobals" + "\377\376" // 2256 + + // #86 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 2272 + + // #87 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 2288 + + // #88 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 2304 + + // #89 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 2320 + + // #90 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "/proc/%1/exe" + "\377\376\375\374\373\372\371\370" // 2352 + + // #91 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 2368 + + // #92 + "imsw-multi" + "\377\376\375\374\373\372" // 2384 + + // #93 + "\377\376\375\374\373\372\371\370\367\366\365" + "/proc/" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 2416 + + // #94 + "\377\376\375" + "/cmdline" + "\377\376\375\374\373" // 2432 + + // #95 + "\377\376\375\374\373\372\371\370" + ":0" + "\377\376\375\374\373\372" // 2448 + + // #96 + "\377\376\375\374\373\372\371\370\367\366\365" + "Xrandr" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 2480 + + // #97 + "\377\376\375\374" + "lib" + "\377\376\375\374\373\372\371\370\367" // 2496 + + // #98 + "\377\376\375\374\373\372\371\370" + ".so.%1" + "\377\376" // 2512 + + // #99 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "libXfixes" + "\377\376\375\374\373\372\371\370" // 2544 + + // #100 + "\377\376\375\374" + "lib" + "\377\376\375\374\373\372\371\370\367" // 2560 + + // #101 + "\377\376\375\374\373\372\371\370" + ".so.%1" + "\377\376" // 2576 + + // #102 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315" + "Cannot load library %1: %2" + "\377\376\375" // 2656+ + + // #103 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "libXfixes" + "\377\376\375\374\373\372\371\370" // 2688 + + // #104 + "\377\376\375\374" + "lib" + "\377\376\375\374\373\372\371\370\367" // 2704 + + // #105 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + ".so" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 2736 + + // #106 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "libXfixes" + "\377\376\375\374\373\372\371\370" // 2768 + + // #107 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "libXfixes" + "\377\376\375\374\373\372\371\370" // 2800 + + // #108 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "libXfixes" + "\377\376\375\374\373\372\371\370" // 2832 + + // #109 + "\377\376\375\374\373\372\371\370\367\366\365" + "Xcursor" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 2864 + + // #110 + "\377\376\375\374" + "lib" + "\377\376\375\374\373\372\371\370\367" // 2880 + + // #111 + "\377\376\375\374\373\372\371\370" + ".so.%1" + "\377\376" // 2896 + + // #112 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "Xinerama" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 2928 + + // #113 + "\377\376\375\374" + "lib" + "\377\376\375\374\373\372\371\370\367" // 2944 + + // #114 + "\377\376\375\374\373\372\371\370" + ".so.%1" + "\377\376" // 2960 + + // #115 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "libXi" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 2992 + + // #116 + "\377\376\375\374" + "lib" + "\377\376\375\374\373\372\371\370\367" // 3008 + + // #117 + "\377\376\375\374\373\372\371\370" + ".so.%1" + "\377\376" // 3024 + + // #118 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315" + "Cannot load library %1: %2" + "\377\376\375" // 3104+ + + // #119 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "libXi" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 3136 + + // #120 + "\377\376\375\374" + "lib" + "\377\376\375\374\373\372\371\370\367" // 3152 + + // #121 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + ".so" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 3184 + + // #122 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "libXi" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 3216 + + // #123 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "libXi" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 3248 + + // #124 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "libXi" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 3280 + + // #125 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "libXi" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 3312 + + // #126 + "\377\376" + "Trolltech" + "\377\376\375\374\373" // 3328 + + // #127 + "\377\376\375\374\373\372\371\370\367" + ".conf" + "\377\376" // 3344 + + // #128 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311" + "No such file or directory" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 3440+ + + // #129 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "Qt" + "\377\376" // 3456 + + // #130 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Palette/active" + "\377\376\375" // 3488 + + // #131 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "Palette/inactive" + "\377\376" // 3520 + + // #132 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Palette/disabled" + "\377" // 3552 + + // #133 + "\377\376\375\374\373\372\371" + "Helvetica" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 3584 + + // #134 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 3600 + + // #135 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305\304\303" + "/.kde" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 3680+ + + // #136 + "\377\376\375" + ".kde4" + "\377\376\375\374\373\372\371\370" // 3696 + + // #137 + "\377\376\375\374\373\372\371\370\367" + "/.kde4" + "\377" // 3712 + + // #138 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + ".ini" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 3744 + + // #139 + "\377\376\375" + "font" + "\377\376\375\374\373\372\371\370\367" // 3760 + + // #140 + "\377\376\375\374\373\372\371\370" + "," + "\377\376\375\374\373\372\371" // 3776 + + // #141 + "\377\376\375" + "font" + "\377\376\375\374\373\372\371\370\367" // 3792 + + // #142 + "\377\376\375\374\373\372\371\370\367\366" + "%1.%2/libraryPath" + "\377\376\375\374\373" // 3824 + + // #143 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + "style" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 3872+ + + // #144 + "\377\376" + "doubleClickInterval" + "\377\376\375\374\373\372\371\370\367\366\365" // 3904 + + // #145 + "\377\376\375\374\373\372" + "cursorFlashTime" + "\377\376\375\374\373\372\371\370\367\366\365" // 3936 + + // #146 + "\377\376\375\374\373\372" + "wheelScrollLines" + "\377\376\375\374\373\372\371\370\367\366" // 3968 + + // #147 + "\377\376\375\374\373\372\371" + "default" + "\377\376" // 3984 + + // #148 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305\304\303\302\301" + "colorSpec" + "\377\376\375\374\373\372\371\370" // 4064+ + + // #149 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "none" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 4096 + + // #150 + "\377" + "defaultCodec" + "\377\376\375" // 4112 + + // #151 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "globalStrut/width" + "\377" // 4144 + + // #152 + "globalStrut/height" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 4176 + + // #153 + "\377\376\375" + "GUIEffects" + "\377\376\375" // 4192 + + // #154 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "general" + "\377\376\375\374\373\372\371\370\367\366\365" // 4224 + + // #155 + "\377\376\375\374\373\372" + "animatemenu" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 4256 + + // #156 + "\377\376" + "fademenu" + "\377\376\375\374\373\372" // 4272 + + // #157 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345" + "animatecombo" + "\377\376\375\374\373\372\371\370\367" // 4320+ + + // #158 + "\377\376\375\374\373\372\371\370" + "animatetooltip" + "\377\376\375\374\373\372\371\370\367\366" // 4352 + + // #159 + "\377\376\375\374\373\372\371" + "fadetooltip" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 4384 + + // #160 + "\377\376\375" + "animatetoolbox" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 4416 + + // #161 + "\377\376\375\374\373" + "useRtlExtensions" + "\377\376\375\374\373\372\371\370\367\366\365" // 4448 + + // #162 + "\377\376\375\374\373\372" + "on the spot" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 4480 + + // #163 + "\377\376" + "XIMInputStyle" + "\377" // 4496 + + // #164 + "\377" + "xim" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 4512 + + // #165 + "\377\376\375" + "/inputmethods" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 4544 + + // #166 + "Trolltech" + "\377\376\375\374\373\372\371" // 4560 + + // #167 + "\377\376\375\374\373\372\371\370\367" + ".conf" + "\377\376" // 4576 + + // #168 + "\377\376\375\374\373\372\371\370\367\366" + "." + "\377\376\375\374\373" // 4592 + + // #169 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 4608 + + // #170 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 4624 + + // #171 + "\377\376\375\374\373\372" + "*" + "\377\376\375\374\373\372\371\370\367" // 4640 + + // #172 + "\377" + "%1:%2:%3" + "\377\376\375\374\373\372\371" // 4656 + + // #173 + "\377\376\375" + "debug" + "\377\376\375\374\373\372\371\370" // 4672 + + // #174 + "\377\376" + "Qt Plugin Cache %1.%2.%3/%4" + "\377\376\375" // 4704 + + // #175 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330" + "com.trolltech.Qt.QInputContextFactoryInterface" + "\377\376\375\374\373\372\371\370\367\366" // 4800+ + + // #176 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "Qt Factory Cache %1.%2/%3:/%4" + "\377\376\375\374\373" // 4848 + + // #177 + "The shared library was not found." + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 4896 + + // #178 + "\377\376\375\374\373\372\371\370\367\366" + "." + "\377\376\375\374\373" // 4912 + + // #179 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 4928 + + // #180 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 4944 + + // #181 + "\377\376\375\374\373\372" + "*" + "\377\376\375\374\373\372\371\370\367" // 4960 + + // #182 + "\377" + "%1:%2:%3" + "\377\376\375\374\373\372\371" // 4976 + + // #183 + "\377\376\375" + "debug" + "\377\376\375\374\373\372\371\370" // 4992 + + // #184 + "\377\376" + "Qt Plugin Cache %1.%2.%3/%4" + "\377\376\375" // 5024 + + // #185 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330" + "com.trolltech.Qt.QInputContextFactoryInterface" + "\377\376\375\374\373\372\371\370\367\366" // 5120+ + + // #186 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "Qt Factory Cache %1.%2/%3:/%4" + "\377\376\375\374\373" // 5168 + + // #187 + "\377\376\375\374\373\372\371\370\367\366" + "." + "\377\376\375\374\373" // 5184 + + // #188 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 5200 + + // #189 + "\377\376\375\374\373\372\371\370\367\366" + "." + "\377\376\375\374\373" // 5216 + + // #190 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 5232 + + // #191 + "\377\376\375\374\373\372\371\370\367\366" + "." + "\377\376\375\374\373" // 5248 + + // #192 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 5264 + + // #193 + "\377\376\375\374\373\372\371\370\367\366\365" + "xim" + "\377\376" // 5280 + + // #194 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DefaultInputMethod" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 5328 + + // #195 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310" + "*Emacs*font:\11""-misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-iso8859-1\12""" + "\377\376\375\374\373\372\371\370\367\366\365" // 5472+ + + // #196 + "\377\376\375\374" + "/styles" + "\377\376\375\374\373" // 5488 + + // #197 + "Trolltech" + "\377\376\375\374\373\372\371" // 5504 + + // #198 + "\377\376\375\374\373\372\371\370\367" + ".conf" + "\377\376" // 5520 + + // #199 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311" + "No such file or directory" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 5616+ + + // #200 + "\377\376\375\374\373\372\371\370\367\366" + "." + "\377\376\375\374\373" // 5632 + + // #201 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 5648 + + // #202 + "\377\376\375\374\373\372\371\370\367\366" + "." + "\377\376\375\374\373" // 5664 + + // #203 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 5680 + + // #204 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 5696 + + // #205 + "\377\376\375\374\373\372" + "*" + "\377\376\375\374\373\372\371\370\367" // 5712 + + // #206 + "\377" + "%1:%2:%3" + "\377\376\375\374\373\372\371" // 5728 + + // #207 + "\377\376\375" + "debug" + "\377\376\375\374\373\372\371\370" // 5744 + + // #208 + "\377\376" + "Qt Plugin Cache %1.%2.%3/%4" + "\377\376\375" // 5776 + + // #209 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "com.trolltech.Qt.QStyleFactoryInterface" + "\377\376\375\374\373\372\371\370\367" // 5872+ + + // #210 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "Qt Factory Cache %1.%2/%3:/%4" + "\377\376\375\374\373" // 5920 + + // #211 + "\377\376\375\374\373\372\371\370\367\366" + "." + "\377\376\375\374\373" // 5936 + + // #212 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 5952 + + // #213 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 5968 + + // #214 + "\377\376\375\374\373\372" + "*" + "\377\376\375\374\373\372\371\370\367" // 5984 + + // #215 + "\377" + "%1:%2:%3" + "\377\376\375\374\373\372\371" // 6000 + + // #216 + "\377\376\375" + "debug" + "\377\376\375\374\373\372\371\370" // 6016 + + // #217 + "\377\376" + "Qt Plugin Cache %1.%2.%3/%4" + "\377\376\375" // 6048 + + // #218 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "com.trolltech.Qt.QStyleFactoryInterface" + "\377\376\375\374\373\372\371\370\367" // 6128+ + + // #219 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "Qt Factory Cache %1.%2/%3:/%4" + "\377\376\375\374\373" // 6176 + + // #220 + "\377" + "%1:%2:%3" + "\377\376\375\374\373\372\371" // 6192 + + // #221 + "\377\376\375" + "debug" + "\377\376\375\374\373\372\371\370" // 6208 + + // #222 + "\377\376" + "Qt Plugin Cache %1.%2.%3/%4" + "\377\376\375" // 6240 + + // #223 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "com.trolltech.Qt.QStyleFactoryInterface" + "\377\376\375\374\373\372\371\370\367" // 6320+ + + // #224 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "Qt Factory Cache %1.%2/%3:/%4" + "\377\376\375\374\373" // 6368 + + // #225 + "\377\376\375\374\373\372\371\370\367\366" + "." + "\377\376\375\374\373" // 6384 + + // #226 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 6400 + + // #227 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 6416 + + // #228 + "\377\376\375\374\373\372" + "*" + "\377\376\375\374\373\372\371\370\367" // 6432 + + // #229 + "\377" + "%1:%2:%3" + "\377\376\375\374\373\372\371" // 6448 + + // #230 + "\377\376\375" + "debug" + "\377\376\375\374\373\372\371\370" // 6464 + + // #231 + "\377\376" + "Qt Plugin Cache %1.%2.%3/%4" + "\377\376\375" // 6496 + + // #232 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "com.trolltech.Qt.QStyleFactoryInterface" + "\377\376\375\374\373\372\371\370\367" // 6576+ + + // #233 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "Qt Factory Cache %1.%2/%3:/%4" + "\377\376\375\374\373" // 6624 + + // #234 + "\377" + "%1:%2:%3" + "\377\376\375\374\373\372\371" // 6640 + + // #235 + "\377\376\375" + "debug" + "\377\376\375\374\373\372\371\370" // 6656 + + // #236 + "\377\376" + "Qt Plugin Cache %1.%2.%3/%4" + "\377\376\375" // 6688 + + // #237 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "com.trolltech.Qt.QStyleFactoryInterface" + "\377\376\375\374\373\372\371\370\367" // 6768+ + + // #238 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "Qt Factory Cache %1.%2/%3:/%4" + "\377\376\375\374\373" // 6816 + + // #239 + "\377\376\375\374\373\372\371\370\367\366" + "." + "\377\376\375\374\373" // 6832 + + // #240 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 6848 + + // #241 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "Size" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 6880 + + // #242 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336" + "HorizontalOffset" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 6944+ + + // #243 + "\377\376\375" + "VerticalOffset" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 6976 + + // #244 + "\377\376" + "InnerColor" + "\377\376\375\374" // 6992 + + // #245 + "OuterColor" + "\377\376\375\374\373\372" // 7008 + + // #246 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "UseOuterColor" + "\377\376\375\374\373\372" // 7040 + + // #247 + "\377\376\375\374\373\372\371\370\367\366\365" + "AnimationsDuration" + "\377\376\375" // 7072 + + // #248 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322" + "ShadowCacheMode" + "\377\376\375" // 7136+ + + // #249 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "ShadowMode" + "\377\376\375\374\373\372\371\370" // 7168 + + // #250 + "\377\376\375\374\373\372\371\370\367" + "UseDropShadows" + "\377\376\375\374\373\372\371\370\367" // 7200 + + // #251 + "\377\376\375\374\373\372\371\370" + "UseOxygenShadows" + "\377\376\375\374\373\372\371\370" // 7232 + + // #252 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "Size" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 7264 + + // #253 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336" + "HorizontalOffset" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 7328+ + + // #254 + "\377\376\375" + "VerticalOffset" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 7360 + + // #255 + "\377\376" + "InnerColor" + "\377\376\375\374" // 7376 + + // #256 + "OuterColor" + "\377\376\375\374\373\372" // 7392 + + // #257 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "UseOuterColor" + "\377\376\375\374\373\372" // 7424 + + // #258 + "\377\376\375\374\373\372\371\370\367\366\365" + "AnimationsDuration" + "\377\376\375" // 7456 + + // #259 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322" + "ShadowCacheMode" + "\377\376\375" // 7520+ + + // #260 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "ShadowMode" + "\377\376\375\374\373\372\371\370" // 7552 + + // #261 + "\377\376\375\374\373\372\371\370\367" + "UseDropShadows" + "\377\376\375\374\373\372\371\370\367" // 7584 + + // #262 + "\377\376\375\374\373\372\371\370" + "UseOxygenShadows" + "\377\376\375\374\373\372\371\370" // 7616 + + // #263 + "\377\376" + "http://" + "\377\376\375\374\373\372\371" // 7632 + + // #264 + "\377\376" + "kde.org" + "\377\376\375\374\373\372\371" // 7648 + + // #265 + "\377" + "/.krcdirs" + "\377\376\375\374\373\372" // 7664 + + // #266 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + ".kde" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 7696 + + // #267 + "\377" + "/.config/" + "\377\376\375\374\373\372" // 7712 + + // #268 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "share/" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 7744 + + // #269 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "share/" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 7776 + + // #270 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "share/" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 7808 + + // #271 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "share/" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 7840 + + // #272 + "\377\376\375\374\373" + "/.local/share/" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 7872 + + // #273 + "\377\376" + "lib/" + "\377\376\375\374\373\372\371\370\367\366" // 7888 + + // #274 + "\377\376\375\374\373" + "share/apps" + "\377" // 7904 + + // #275 + "\377\376\375\374\373" + "share/doc/HTML" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 7936 + + // #276 + "\377\376\375\374\373\372\371\370\367" + "share/icons" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 7968 + + // #277 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324" + "share/config" + "\377\376\375\374\373\372\371\370" // 8032+ + + // #278 + "share/pixmaps" + "\377\376\375" // 8048 + + // #279 + "\377\376\375" + "share/applnk" + "\377" // 8064 + + // #280 + "\377\376\375\374\373\372" + "share/sounds" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 8096+ + + // #281 + "\377\376\375\374\373\372\371\370\367\366" + "share/locale" + "\377\376\375\374\373\372\371\370\367\366" // 8128 + + // #282 + "share/kde4/services" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 8160 + + // #283 + "\377" + "share/kde4/servicetypes" + "\377\376\375\374\373\372\371\370" // 8192 + + // #284 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "share/mimelnk" + "\377\376\375\374\373" // 8224 + + // #285 + "cgi-bin" + "\377\376\375\374\373\372\371\370\367" // 8240 + + // #286 + "\377\376" + "share/wallpapers" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 8272 + + // #287 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "share/templates" + "\377\376\375\374" // 8304 + + // #288 + "\377" + "bin" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 8320 + + // #289 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "%lib/kde4" + "\377\376\375\374\373\372\371\370\367\366\365" // 8352+ + + // #290 + "%lib/kde4/plugins" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 8384 + + // #291 + "\377\376\375\374\373\372\371" + "share/config.kcfg" + "\377\376\375\374\373\372\371\370" // 8416 + + // #292 + "\377\376\375" + "share/emoticons" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 8448 + + // #293 + "applications" + "\377\376\375\374" // 8464 + + // #294 + "\377\376\375\374\373\372\371\370\367\366" + "icons" + "\377" // 8480 + + // #295 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "pixmaps" + "\377\376\375\374\373\372\371\370\367\366" // 8512 + + // #296 + "\377\376\375\374" + "desktop-directories" + "\377\376\375\374\373\372\371\370\367" // 8544 + + // #297 + "\377\376\375\374\373\372\371\370\367" + "mime" + "\377\376\375" // 8560 + + // #298 + "\377\376" + "menus" + "\377\376\375\374\373\372\371\370\367" // 8576 + + // #299 + "\377\376\375\374\373\372\371\370\367\366" + "autostart" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 8608 + + // #300 + "\377\376\375\374" + "kde4/libexec" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 8640 + + // #301 + "\377\376\375\374\373\372\371\370" + "lib" + "\377\376\375\374\373" // 8656 + + // #302 + "\377\376\375" + "/" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 8672 + + // #303 + "\377\376\375\374\373\372" + "xdgconf-autostart" + "\377\376\375\374\373\372\371\370\367" // 8704 + + // #304 + "\377\376\375\374\373\372\371\370" + "share/autostart" + "\377\376\375\374\373\372\371\370\367" // 8736 + + // #305 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "data" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 8768 + + // #306 + "\377\376\375\374" + "kdeglobals" + "\377\376" // 8784 + + // #307 + "\377\376" + "/etc/kde4rc" + "\377\376\375" // 8800 + + // #308 + "\377\376\375\374" + "rc" + "\377\376\375\374\373\372\371\370\367\366" // 8816 + + // #309 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 8832 + + // #310 + "\377\376\375\374" + "kdeglobals" + "\377\376" // 8848 + + // #311 + "\377\376\375\374\373\372\371\370\367\366" + "." + "\377\376\375\374\373" // 8864 + + // #312 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 8880 + + // #313 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "system.kdeglobals" + "\377\376" // 8912 + + // #314 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 8928 + + // #315 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 8944 + + // #316 + "\377\376\375\374\373\372\371\370" + "Directories" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 8976 + + // #317 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306" + "default" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 9056+ + + // #318 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335" + "Directories-%1" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 9120+ + + // #319 + "\377\376\375\374\373\372\371\370" + "/etc/xdg" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 9152 + + // #320 + "\377\376\375\374\373\372\371" + "/share" + "\377\376\375" // 9168 + + // #321 + "\377\376\375\374\373\372\371\370" + "/etc/xdg" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 9200 + + // #322 + "\377\376\375\374\373\372\371" + "/share" + "\377\376\375" // 9216 + + // #323 + "\377\376\375\374\373\372\371\370\367\366" + "." + "\377\376\375\374\373" // 9232 + + // #324 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 9248 + + // #325 + "\377\376\375\374" + "kdeglobals" + "\377\376" // 9264 + + // #326 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "system.kdeglobals" + "\377\376" // 9296 + + // #327 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 9312 + + // #328 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 9328 + + // #329 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 9344 + + // #330 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 9360 + + // #331 + "\377\376\375\374\373\372\371\370" + "7" + "\377\376\375\374\373\372\371" // 9376 + + // #332 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 9408 + + // #333 + "contrast" + "\377\376\375\374\373\372\371\370" // 9424 + + // #334 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 9520+ + + // #335 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 9600+ + + // #336 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "kdebugrc" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 9632 + + // #337 + "\377\376\375\374" + "kdeglobals" + "\377\376" // 9648 + + // #338 + "\377\376" + "/etc/kde4rc" + "\377\376\375" // 9664 + + // #339 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 9680 + + // #340 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 9696 + + // #341 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 9712 + + // #342 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 9728 + + // #343 + "false" + "\377\376\375\374\373\372\371\370\367\366\365" // 9744 + + // #344 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 9760 + + // #345 + "\377\376\375\374\373" + "DisableAll" + "\377" // 9776 + + // #346 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 9840+ + + // #347 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 9920+ + + // #348 + "InfoOutput" + "\377\376\375\374\373\372" // 9936 + + // #349 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305\304\303\302\301" + "Enter" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 10016+ + + // #350 + "\377\376\375\374\373\372\371\370\367\366" + "Leave" + "\377" // 10032 + + // #351 + "HoverMove" + "\377\376\375\374\373\372\371" // 10048 + + // #352 + "\377\376\375\374\373\372\371\370\367\366" + "HoverEnter" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 10080+ + + // #353 + "\377\376\375\374\373" + "HoverLeave" + "\377" // 10096 + + // #354 + "\377\376\375\374" + "MouseMove" + "\377\376\375" // 10112 + + // #355 + "MouseButtonPress" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 10144 + + // #356 + "\377" + "MouseButtonRelease" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 10176 + + // #357 + "FocusIn" + "\377\376\375\374\373\372\371\370\367" // 10192 + + // #358 + "\377\376\375\374\373\372\371\370" + "FocusOut" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 10224 + + // #359 + "\377\376\375" + "CE_CapacityBar" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 10256 + + // #360 + "\377\376" + "CE_" + "\377\376\375\374\373\372\371\370\367\366\365" // 10272 + + // #361 + "\377\376\375\374\373\372\371\370" + "qt_default_session_bus" + "\377\376" // 10304 + + // #362 + "\377\376\375\374" + "dbus-1" + "\377\376\375\374\373\372" // 10320 + + // #363 + "\377\376\375\374" + "lib" + "\377\376\375\374\373\372\371\370\367" // 10336 + + // #364 + "\377\376\375\374\373\372\371\370" + ".so.%1" + "\377\376" // 10352 + + // #365 + "\377\376\375\374\373\372\371\370\367" + "org.freedesktop.DBus" + "\377\376\375" // 10384 + + // #366 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305\304" + "NameAcquired:org.freedesktop.DBus" + "\377\376\375" // 10480+ + + // #367 + "\377" + "NameLost:org.freedesktop.DBus" + "\377\376" // 10512 + + // #368 + "\377\376\375\374\373\372\371\370\367" + "/org/freedesktop/DBus" + "\377\376" // 10544 + + // #369 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341" + "org.freedesktop.DBus" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 10608+ + + // #370 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341" + "org.freedesktop.DBus" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 10672+ + + // #371 + "\377\376" + "NameOwnerChanged" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 10704 + + // #372 + "\377\376\375" + "org.freedesktop.DBus" + "\377\376\375\374\373\372\371\370\367" // 10736 + + // #373 + "\377\376\375" + "org.freedesktop.DBus" + "\377\376\375\374\373\372\371\370\367" // 10768 + + // #374 + "\377" + "type='signal'," + "\377" // 10784 + + // #375 + "%1='%2'," + "\377\376\375\374\373\372\371\370" // 10800 + + // #376 + "\377\376\375\374\373\372\371\370\367" + "sender" + "\377" // 10816 + + // #377 + "\377\376\375\374\373" + "interface" + "\377\376" // 10832 + + // #378 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "member" + "\377\376\375\374\373\372\371\370\367\366\365" // 10864 + + // #379 + "\377\376\375\374\373\372" + "arg%1='%2'," + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 10896 + + // #380 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312" + "reparseConfiguration" + "\377\376\375\374\373\372" // 10976+ + + // #381 + "\377\376\375\374\373\372\371\370\367\366\365" + "org.kde.Oxygen.Style" + "\377" // 11008 + + // #382 + "/OxygenStyle" + "\377\376\375\374" // 11024 + + // #383 + "\377" + "type='signal'," + "\377" // 11040 + + // #384 + "%1='%2'," + "\377\376\375\374\373\372\371\370" // 11056 + + // #385 + "path" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 11072 + + // #386 + "\377\376\375\374\373" + "interface" + "\377\376" // 11088 + + // #387 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "member" + "\377\376\375\374\373\372\371\370\367\366\365" // 11120 + + // #388 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "notifyChange" + "\377\376\375\374\373\372\371" // 11152 + + // #389 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306" + "org.kde.KGlobalSettings" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 11248+ + + // #390 + "\377\376" + "/KGlobalSettings" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 11280 + + // #391 + "\377" + "type='signal'," + "\377" // 11296 + + // #392 + "%1='%2'," + "\377\376\375\374\373\372\371\370" // 11312 + + // #393 + "path" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 11328 + + // #394 + "\377\376\375\374\373" + "interface" + "\377\376" // 11344 + + // #395 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "member" + "\377\376\375\374\373\372\371\370\367\366\365" // 11376 + + // #396 + "\377\376\375\374" + "kdeglobals" + "\377\376" // 11392 + + // #397 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "system.kdeglobals" + "\377\376" // 11424 + + // #398 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 11440 + + // #399 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 11456 + + // #400 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 11472 + + // #401 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 11488 + + // #402 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 11504 + + // #403 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 11536 + + // #404 + "contrast" + "\377\376\375\374\373\372\371\370" // 11552 + + // #405 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 11632+ + + // #406 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 11712+ + + // #407 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 11728 + + // #408 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 11760 + + // #409 + "contrast" + "\377\376\375\374\373\372\371\370" // 11776 + + // #410 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 11824+ + + // #411 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 11904+ + + // #412 + "255,255,255" + "\377\376\375\374\373" // 11920 + + // #413 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 11936 + + // #414 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321" + "BackgroundNormal" + "\377" // 12000+ + + // #415 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 12080+ + + // #416 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 12160+ + + // #417 + "\377\376\375\374\373\372\371\370" + "248,247,246" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 12192+ + + // #418 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 12208 + + // #419 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 12240 + + // #420 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 12336+ + + // #421 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 12416+ + + // #422 + "20,19,18" + "\377\376\375\374\373\372\371\370" // 12432 + + // #423 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 12448 + + // #424 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 12480 + + // #425 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 12528+ + + // #426 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 12608+ + + // #427 + "\377\376\375\374\373\372\371\370" + "136,135,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 12640 + + // #428 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 12656 + + // #429 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 12688 + + // #430 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 12784+ + + // #431 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 12864+ + + // #432 + "255,128,224" + "\377\376\375\374\373" // 12880 + + // #433 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 12896 + + // #434 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 12960+ + + // #435 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 13040+ + + // #436 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 13120+ + + // #437 + "\377\376\375\374\373\372\371\370" + "0,87,174" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 13152 + + // #438 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 13168 + + // #439 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 13200 + + // #440 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 13296+ + + // #441 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 13376+ + + // #442 + "\377\376\375\374\373\372\371\370" + "69,40,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 13408+ + + // #443 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 13424 + + // #444 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 13456 + + // #445 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 13552+ + + // #446 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 13632+ + + // #447 + "\377\376\375\374\373\372\371\370" + "191,3,3" + "\377" // 13648 + + // #448 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 13664 + + // #449 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 13696 + + // #450 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 13744+ + + // #451 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 13824+ + + // #452 + "\377\376\375\374\373\372\371\370" + "176,128,0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 13856+ + + // #453 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 13872 + + // #454 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346" + "ForegroundNeutral" + "\377\376\375\374\373" // 13920+ + + // #455 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 14000+ + + // #456 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 14080+ + + // #457 + "\377\376\375\374\373\372\371\370" + "0,110,40" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 14112 + + // #458 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 14128 + + // #459 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 14160 + + // #460 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 14256+ + + // #461 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 14336+ + + // #462 + "\377\376\375\374\373\372\371\370" + "119,183,255" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 14368 + + // #463 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 14384 + + // #464 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 14416 + + // #465 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 14512+ + + // #466 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 14592+ + + // #467 + "43,116,199" + "\377\376\375\374\373\372" // 14608 + + // #468 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 14624 + + // #469 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 14656 + + // #470 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 14704+ + + // #471 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 14784+ + + // #472 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 14800 + + // #473 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 14832 + + // #474 + "contrast" + "\377\376\375\374\373\372\371\370" // 14848 + + // #475 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 14896+ + + // #476 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 14976+ + + // #477 + "255,255,255" + "\377\376\375\374\373" // 14992 + + // #478 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 15008 + + // #479 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321" + "BackgroundNormal" + "\377" // 15072+ + + // #480 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 15152+ + + // #481 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 15232+ + + // #482 + "\377\376\375\374\373\372\371\370" + "248,247,246" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 15264+ + + // #483 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 15280 + + // #484 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 15312 + + // #485 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 15408+ + + // #486 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 15488+ + + // #487 + "20,19,18" + "\377\376\375\374\373\372\371\370" // 15504 + + // #488 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 15520 + + // #489 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 15552 + + // #490 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 15600+ + + // #491 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 15680+ + + // #492 + "\377\376\375\374\373\372\371\370" + "136,135,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 15712 + + // #493 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 15728 + + // #494 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 15760 + + // #495 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 15856+ + + // #496 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 15936+ + + // #497 + "255,128,224" + "\377\376\375\374\373" // 15952 + + // #498 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 15968 + + // #499 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 16032+ + + // #500 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 16112+ + + // #501 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 16192+ + + // #502 + "\377\376\375\374\373\372\371\370" + "0,87,174" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 16224 + + // #503 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 16240 + + // #504 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 16272 + + // #505 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 16368+ + + // #506 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 16448+ + + // #507 + "\377\376\375\374\373\372\371\370" + "69,40,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 16480+ + + // #508 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 16496 + + // #509 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 16528 + + // #510 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 16624+ + + // #511 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 16704+ + + // #512 + "\377\376\375\374\373\372\371\370" + "191,3,3" + "\377" // 16720 + + // #513 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 16736 + + // #514 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 16768 + + // #515 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 16816+ + + // #516 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 16896+ + + // #517 + "\377\376\375\374\373\372\371\370" + "176,128,0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 16928+ + + // #518 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 16944 + + // #519 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346" + "ForegroundNeutral" + "\377\376\375\374\373" // 16992+ + + // #520 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 17072+ + + // #521 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 17152+ + + // #522 + "\377\376\375\374\373\372\371\370" + "0,110,40" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 17184 + + // #523 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 17200 + + // #524 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 17232 + + // #525 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 17328+ + + // #526 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 17408+ + + // #527 + "\377\376\375\374\373\372\371\370" + "119,183,255" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 17440 + + // #528 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 17456 + + // #529 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 17488 + + // #530 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 17584+ + + // #531 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 17664+ + + // #532 + "43,116,199" + "\377\376\375\374\373\372" // 17680 + + // #533 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 17696 + + // #534 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 17728 + + // #535 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 17776+ + + // #536 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 17856+ + + // #537 + "\377\376\375\374\373\372\371\370" + "ColorEffects:Disabled" + "\377\376\375" // 17888 + + // #538 + "2" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 17904 + + // #539 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 17936 + + // #540 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305" + "IntensityEffect" + "\377\376\375\374\373\372" // 18016+ + + // #541 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 18096+ + + // #542 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 18176+ + + // #543 + "\377\376\375\374\373\372\371\370" + "0" + "\377\376\375\374\373\372\371" // 18192 + + // #544 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 18224 + + // #545 + "\377\376\375\374\373\372\371\370\367\366\365" + "ColorEffect" + "\377\376\375\374\373\372\371\370\367\366" // 18256 + + // #546 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 18352+ + + // #547 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 18432+ + + // #548 + "\377\376\375\374\373\372\371\370" + "1" + "\377\376\375\374\373\372\371" // 18448 + + // #549 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 18480 + + // #550 + "\377\376\375\374\373\372\371" + "ContrastEffect" + "\377\376\375\374\373\372\371\370\367\366\365" // 18512 + + // #551 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 18608+ + + // #552 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 18688+ + + // #553 + "\377\376\375\374\373\372\371\370" + "0.1" + "\377\376\375\374\373" // 18704 + + // #554 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 18736 + + // #555 + "\377\376\375\374\373\372" + "IntensityAmount" + "\377\376\375\374\373\372\371\370\367\366\365" // 18768 + + // #556 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 18864+ + + // #557 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 18944+ + + // #558 + "0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 18960 + + // #559 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 18992 + + // #560 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352" + "ColorAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 19040+ + + // #561 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 19120+ + + // #562 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 19200+ + + // #563 + "0.65" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 19216 + + // #564 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 19248 + + // #565 + "\377\376" + "ContrastAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 19280 + + // #566 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 19376+ + + // #567 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 19456+ + + // #568 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 19472 + + // #569 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 19504 + + // #570 + "contrast" + "\377\376\375\374\373\372\371\370" // 19520 + + // #571 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 19568+ + + // #572 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 19648+ + + // #573 + "255,255,255" + "\377\376\375\374\373" // 19664 + + // #574 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 19680 + + // #575 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321" + "BackgroundNormal" + "\377" // 19744+ + + // #576 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 19824+ + + // #577 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 19904+ + + // #578 + "\377\376\375\374\373\372\371\370" + "248,247,246" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 19936+ + + // #579 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 19952 + + // #580 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 19984 + + // #581 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 20080+ + + // #582 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 20160+ + + // #583 + "20,19,18" + "\377\376\375\374\373\372\371\370" // 20176 + + // #584 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 20192 + + // #585 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 20224 + + // #586 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 20272+ + + // #587 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 20352+ + + // #588 + "\377\376\375\374\373\372\371\370" + "136,135,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 20384 + + // #589 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 20400 + + // #590 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 20432 + + // #591 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 20528+ + + // #592 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 20608+ + + // #593 + "255,128,224" + "\377\376\375\374\373" // 20624 + + // #594 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 20640 + + // #595 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 20704+ + + // #596 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 20784+ + + // #597 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 20864+ + + // #598 + "\377\376\375\374\373\372\371\370" + "0,87,174" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 20896 + + // #599 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 20912 + + // #600 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 20944 + + // #601 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 21040+ + + // #602 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 21120+ + + // #603 + "\377\376\375\374\373\372\371\370" + "69,40,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 21152+ + + // #604 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 21168 + + // #605 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 21200 + + // #606 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 21296+ + + // #607 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 21376+ + + // #608 + "\377\376\375\374\373\372\371\370" + "191,3,3" + "\377" // 21392 + + // #609 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 21408 + + // #610 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 21440 + + // #611 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 21488+ + + // #612 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 21568+ + + // #613 + "\377\376\375\374\373\372\371\370" + "176,128,0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 21600+ + + // #614 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 21616 + + // #615 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346" + "ForegroundNeutral" + "\377\376\375\374\373" // 21664+ + + // #616 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 21744+ + + // #617 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 21824+ + + // #618 + "\377\376\375\374\373\372\371\370" + "0,110,40" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 21856 + + // #619 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 21872 + + // #620 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 21904 + + // #621 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 22000+ + + // #622 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 22080+ + + // #623 + "\377\376\375\374\373\372\371\370" + "119,183,255" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 22112 + + // #624 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 22128 + + // #625 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 22160 + + // #626 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 22256+ + + // #627 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 22336+ + + // #628 + "43,116,199" + "\377\376\375\374\373\372" // 22352 + + // #629 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 22368 + + // #630 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 22400 + + // #631 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 22448+ + + // #632 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 22528+ + + // #633 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "ColorEffects:Inactive" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 22576 + + // #634 + "\377\376\375\374\373\372\371\370" + "true" + "\377\376\375\374" // 22592 + + // #635 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 22608 + + // #636 + "\377\376\375\374" + "Enable" + "\377\376\375\374\373\372" // 22624 + + // #637 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 22704+ + + // #638 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 22784+ + + // #639 + "\377\376\375\374\373\372\371\370" + "0" + "\377\376\375\374\373\372\371" // 22800 + + // #640 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 22832 + + // #641 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345" + "IntensityEffect" + "\377\376\375\374\373\372" // 22880+ + + // #642 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 22960+ + + // #643 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 23040+ + + // #644 + "2" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 23056 + + // #645 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 23088 + + // #646 + "\377\376\375\374\373\372\371\370\367\366\365" + "ColorEffect" + "\377\376\375\374\373\372\371\370\367\366" // 23120 + + // #647 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 23216+ + + // #648 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 23296+ + + // #649 + "2" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 23312 + + // #650 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 23344 + + // #651 + "\377\376\375\374\373\372\371" + "ContrastEffect" + "\377\376\375\374\373\372\371\370\367\366\365" // 23376 + + // #652 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 23472+ + + // #653 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 23552+ + + // #654 + "0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 23568 + + // #655 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 23600 + + // #656 + "\377\376\375\374\373\372" + "IntensityAmount" + "\377\376\375\374\373\372\371\370\367\366\365" // 23632 + + // #657 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 23728+ + + // #658 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 23808+ + + // #659 + "\377\376\375\374\373\372\371\370" + "0.025" + "\377\376\375" // 23824 + + // #660 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 23856 + + // #661 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352" + "ColorAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 23904+ + + // #662 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 23984+ + + // #663 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 24064+ + + // #664 + "\377\376\375\374\373\372\371\370" + "0.1" + "\377\376\375\374\373" // 24080 + + // #665 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 24112 + + // #666 + "\377\376" + "ContrastAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 24144 + + // #667 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 24240+ + + // #668 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 24320+ + + // #669 + "\377\376\375\374\373\372\371\370" + "112,111,110" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 24352 + + // #670 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 24368 + + // #671 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Color" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 24400 + + // #672 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 24496+ + + // #673 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 24576+ + + // #674 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 24592 + + // #675 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 24624 + + // #676 + "contrast" + "\377\376\375\374\373\372\371\370" // 24640 + + // #677 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 24688+ + + // #678 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 24768+ + + // #679 + "255,255,255" + "\377\376\375\374\373" // 24784 + + // #680 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 24800 + + // #681 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321" + "BackgroundNormal" + "\377" // 24864+ + + // #682 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 24944+ + + // #683 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 25024+ + + // #684 + "\377\376\375\374\373\372\371\370" + "248,247,246" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 25056+ + + // #685 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 25072 + + // #686 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 25104 + + // #687 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 25200+ + + // #688 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 25280+ + + // #689 + "20,19,18" + "\377\376\375\374\373\372\371\370" // 25296 + + // #690 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 25312 + + // #691 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 25344 + + // #692 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 25392+ + + // #693 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 25472+ + + // #694 + "\377\376\375\374\373\372\371\370" + "136,135,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 25504 + + // #695 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 25520 + + // #696 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 25552 + + // #697 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 25648+ + + // #698 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 25728+ + + // #699 + "255,128,224" + "\377\376\375\374\373" // 25744 + + // #700 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 25760 + + // #701 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 25824+ + + // #702 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 25904+ + + // #703 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 25984+ + + // #704 + "\377\376\375\374\373\372\371\370" + "0,87,174" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 26016 + + // #705 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 26032 + + // #706 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 26064 + + // #707 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 26160+ + + // #708 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 26240+ + + // #709 + "\377\376\375\374\373\372\371\370" + "69,40,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 26272+ + + // #710 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 26288 + + // #711 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 26320 + + // #712 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 26416+ + + // #713 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 26496+ + + // #714 + "\377\376\375\374\373\372\371\370" + "191,3,3" + "\377" // 26512 + + // #715 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 26528 + + // #716 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 26560 + + // #717 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 26608+ + + // #718 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 26688+ + + // #719 + "\377\376\375\374\373\372\371\370" + "176,128,0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 26720+ + + // #720 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 26736 + + // #721 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346" + "ForegroundNeutral" + "\377\376\375\374\373" // 26784+ + + // #722 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 26864+ + + // #723 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 26944+ + + // #724 + "\377\376\375\374\373\372\371\370" + "0,110,40" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 26976 + + // #725 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 26992 + + // #726 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 27024 + + // #727 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 27120+ + + // #728 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 27200+ + + // #729 + "\377\376\375\374\373\372\371\370" + "119,183,255" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 27232 + + // #730 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 27248 + + // #731 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 27280 + + // #732 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 27376+ + + // #733 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 27456+ + + // #734 + "43,116,199" + "\377\376\375\374\373\372" // 27472 + + // #735 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 27488 + + // #736 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 27520 + + // #737 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 27568+ + + // #738 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 27648+ + + // #739 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 27664 + + // #740 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 27696 + + // #741 + "contrast" + "\377\376\375\374\373\372\371\370" // 27712 + + // #742 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 27760+ + + // #743 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 27840+ + + // #744 + "255,255,255" + "\377\376\375\374\373" // 27856 + + // #745 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 27872 + + // #746 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321" + "BackgroundNormal" + "\377" // 27936+ + + // #747 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 28016+ + + // #748 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 28096+ + + // #749 + "\377\376\375\374\373\372\371\370" + "248,247,246" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 28128+ + + // #750 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 28144 + + // #751 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 28176 + + // #752 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 28272+ + + // #753 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 28352+ + + // #754 + "20,19,18" + "\377\376\375\374\373\372\371\370" // 28368 + + // #755 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 28384 + + // #756 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 28416 + + // #757 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 28464+ + + // #758 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 28544+ + + // #759 + "\377\376\375\374\373\372\371\370" + "136,135,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 28576 + + // #760 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 28592 + + // #761 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 28624 + + // #762 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 28720+ + + // #763 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 28800+ + + // #764 + "255,128,224" + "\377\376\375\374\373" // 28816 + + // #765 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 28832 + + // #766 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 28896+ + + // #767 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 28976+ + + // #768 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 29056+ + + // #769 + "\377\376\375\374\373\372\371\370" + "0,87,174" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 29088 + + // #770 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 29104 + + // #771 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 29136 + + // #772 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 29232+ + + // #773 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 29312+ + + // #774 + "\377\376\375\374\373\372\371\370" + "69,40,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 29344+ + + // #775 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 29360 + + // #776 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 29392 + + // #777 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 29488+ + + // #778 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 29568+ + + // #779 + "\377\376\375\374\373\372\371\370" + "191,3,3" + "\377" // 29584 + + // #780 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 29600 + + // #781 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 29632 + + // #782 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 29680+ + + // #783 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 29760+ + + // #784 + "\377\376\375\374\373\372\371\370" + "176,128,0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 29792+ + + // #785 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 29808 + + // #786 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346" + "ForegroundNeutral" + "\377\376\375\374\373" // 29856+ + + // #787 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 29936+ + + // #788 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 30016+ + + // #789 + "\377\376\375\374\373\372\371\370" + "0,110,40" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 30048 + + // #790 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 30064 + + // #791 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 30096 + + // #792 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 30192+ + + // #793 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 30272+ + + // #794 + "\377\376\375\374\373\372\371\370" + "119,183,255" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 30304 + + // #795 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 30320 + + // #796 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 30352 + + // #797 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 30448+ + + // #798 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 30528+ + + // #799 + "43,116,199" + "\377\376\375\374\373\372" // 30544 + + // #800 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 30560 + + // #801 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 30592 + + // #802 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 30640+ + + // #803 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 30720+ + + // #804 + "\377\376\375\374\373\372\371\370" + "ColorEffects:Disabled" + "\377\376\375" // 30752 + + // #805 + "2" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 30768 + + // #806 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 30800 + + // #807 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305" + "IntensityEffect" + "\377\376\375\374\373\372" // 30880+ + + // #808 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 30960+ + + // #809 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 31040+ + + // #810 + "\377\376\375\374\373\372\371\370" + "0" + "\377\376\375\374\373\372\371" // 31056 + + // #811 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 31088 + + // #812 + "\377\376\375\374\373\372\371\370\367\366\365" + "ColorEffect" + "\377\376\375\374\373\372\371\370\367\366" // 31120 + + // #813 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 31216+ + + // #814 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 31296+ + + // #815 + "\377\376\375\374\373\372\371\370" + "1" + "\377\376\375\374\373\372\371" // 31312 + + // #816 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 31344 + + // #817 + "\377\376\375\374\373\372\371" + "ContrastEffect" + "\377\376\375\374\373\372\371\370\367\366\365" // 31376 + + // #818 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 31472+ + + // #819 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 31552+ + + // #820 + "\377\376\375\374\373\372\371\370" + "0.1" + "\377\376\375\374\373" // 31568 + + // #821 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 31600 + + // #822 + "\377\376\375\374\373\372" + "IntensityAmount" + "\377\376\375\374\373\372\371\370\367\366\365" // 31632 + + // #823 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 31728+ + + // #824 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 31808+ + + // #825 + "0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 31824 + + // #826 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 31856 + + // #827 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352" + "ColorAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 31904+ + + // #828 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 31984+ + + // #829 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 32064+ + + // #830 + "0.65" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 32080 + + // #831 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 32112 + + // #832 + "\377\376" + "ContrastAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 32144 + + // #833 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 32240+ + + // #834 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 32320+ + + // #835 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 32336 + + // #836 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 32368 + + // #837 + "contrast" + "\377\376\375\374\373\372\371\370" // 32384 + + // #838 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 32432+ + + // #839 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 32512+ + + // #840 + "255,255,255" + "\377\376\375\374\373" // 32528 + + // #841 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 32544 + + // #842 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321" + "BackgroundNormal" + "\377" // 32608+ + + // #843 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 32688+ + + // #844 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 32768+ + + // #845 + "\377\376\375\374\373\372\371\370" + "248,247,246" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 32800+ + + // #846 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 32816 + + // #847 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 32848 + + // #848 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 32944+ + + // #849 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 33024+ + + // #850 + "20,19,18" + "\377\376\375\374\373\372\371\370" // 33040 + + // #851 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 33056 + + // #852 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 33088 + + // #853 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 33136+ + + // #854 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 33216+ + + // #855 + "\377\376\375\374\373\372\371\370" + "136,135,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 33248 + + // #856 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 33264 + + // #857 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 33296 + + // #858 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 33392+ + + // #859 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 33472+ + + // #860 + "255,128,224" + "\377\376\375\374\373" // 33488 + + // #861 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 33504 + + // #862 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 33568+ + + // #863 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 33648+ + + // #864 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 33728+ + + // #865 + "\377\376\375\374\373\372\371\370" + "0,87,174" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 33760 + + // #866 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 33776 + + // #867 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 33808 + + // #868 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 33904+ + + // #869 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 33984+ + + // #870 + "\377\376\375\374\373\372\371\370" + "69,40,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 34016+ + + // #871 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 34032 + + // #872 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 34064 + + // #873 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 34160+ + + // #874 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 34240+ + + // #875 + "\377\376\375\374\373\372\371\370" + "191,3,3" + "\377" // 34256 + + // #876 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 34272 + + // #877 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 34304 + + // #878 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 34352+ + + // #879 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 34432+ + + // #880 + "\377\376\375\374\373\372\371\370" + "176,128,0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 34464+ + + // #881 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 34480 + + // #882 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346" + "ForegroundNeutral" + "\377\376\375\374\373" // 34528+ + + // #883 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 34608+ + + // #884 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 34688+ + + // #885 + "\377\376\375\374\373\372\371\370" + "0,110,40" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 34720 + + // #886 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 34736 + + // #887 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 34768 + + // #888 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 34864+ + + // #889 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 34944+ + + // #890 + "\377\376\375\374\373\372\371\370" + "119,183,255" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 34976 + + // #891 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 34992 + + // #892 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 35024 + + // #893 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 35120+ + + // #894 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 35200+ + + // #895 + "43,116,199" + "\377\376\375\374\373\372" // 35216 + + // #896 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 35232 + + // #897 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 35264 + + // #898 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 35312+ + + // #899 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 35392+ + + // #900 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "ColorEffects:Inactive" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 35440 + + // #901 + "\377\376\375\374\373\372\371\370" + "true" + "\377\376\375\374" // 35456 + + // #902 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 35472 + + // #903 + "\377\376\375\374" + "Enable" + "\377\376\375\374\373\372" // 35488 + + // #904 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 35568+ + + // #905 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 35648+ + + // #906 + "\377\376\375\374\373\372\371\370" + "0" + "\377\376\375\374\373\372\371" // 35664 + + // #907 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 35696 + + // #908 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345" + "IntensityEffect" + "\377\376\375\374\373\372" // 35744+ + + // #909 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 35824+ + + // #910 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 35904+ + + // #911 + "2" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 35920 + + // #912 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 35952 + + // #913 + "\377\376\375\374\373\372\371\370\367\366\365" + "ColorEffect" + "\377\376\375\374\373\372\371\370\367\366" // 35984 + + // #914 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 36080+ + + // #915 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 36160+ + + // #916 + "2" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 36176 + + // #917 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 36208 + + // #918 + "\377\376\375\374\373\372\371" + "ContrastEffect" + "\377\376\375\374\373\372\371\370\367\366\365" // 36240 + + // #919 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 36336+ + + // #920 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 36416+ + + // #921 + "0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 36432 + + // #922 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 36464 + + // #923 + "\377\376\375\374\373\372" + "IntensityAmount" + "\377\376\375\374\373\372\371\370\367\366\365" // 36496 + + // #924 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 36592+ + + // #925 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 36672+ + + // #926 + "\377\376\375\374\373\372\371\370" + "0.025" + "\377\376\375" // 36688 + + // #927 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 36720 + + // #928 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352" + "ColorAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 36768+ + + // #929 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 36848+ + + // #930 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 36928+ + + // #931 + "\377\376\375\374\373\372\371\370" + "0.1" + "\377\376\375\374\373" // 36944 + + // #932 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 36976 + + // #933 + "\377\376" + "ContrastAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 37008 + + // #934 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 37104+ + + // #935 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 37184+ + + // #936 + "\377\376\375\374\373\372\371\370" + "112,111,110" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 37216 + + // #937 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 37232 + + // #938 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Color" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 37264 + + // #939 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 37360+ + + // #940 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 37440+ + + // #941 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 37456 + + // #942 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 37488 + + // #943 + "contrast" + "\377\376\375\374\373\372\371\370" // 37504 + + // #944 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 37552+ + + // #945 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 37632+ + + // #946 + "255,255,255" + "\377\376\375\374\373" // 37648 + + // #947 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 37664 + + // #948 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321" + "BackgroundNormal" + "\377" // 37728+ + + // #949 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 37808+ + + // #950 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 37888+ + + // #951 + "\377\376\375\374\373\372\371\370" + "248,247,246" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 37920+ + + // #952 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 37936 + + // #953 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 37968 + + // #954 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 38064+ + + // #955 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 38144+ + + // #956 + "20,19,18" + "\377\376\375\374\373\372\371\370" // 38160 + + // #957 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 38176 + + // #958 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 38208 + + // #959 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 38256+ + + // #960 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 38336+ + + // #961 + "\377\376\375\374\373\372\371\370" + "136,135,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 38368 + + // #962 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 38384 + + // #963 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 38416 + + // #964 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 38512+ + + // #965 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 38592+ + + // #966 + "255,128,224" + "\377\376\375\374\373" // 38608 + + // #967 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 38624 + + // #968 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 38688+ + + // #969 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 38768+ + + // #970 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 38848+ + + // #971 + "\377\376\375\374\373\372\371\370" + "0,87,174" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 38880 + + // #972 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 38896 + + // #973 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 38928 + + // #974 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 39024+ + + // #975 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 39104+ + + // #976 + "\377\376\375\374\373\372\371\370" + "69,40,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 39136+ + + // #977 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 39152 + + // #978 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 39184 + + // #979 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 39280+ + + // #980 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 39360+ + + // #981 + "\377\376\375\374\373\372\371\370" + "191,3,3" + "\377" // 39376 + + // #982 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 39392 + + // #983 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 39424 + + // #984 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 39472+ + + // #985 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 39552+ + + // #986 + "\377\376\375\374\373\372\371\370" + "176,128,0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 39584+ + + // #987 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 39600 + + // #988 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346" + "ForegroundNeutral" + "\377\376\375\374\373" // 39648+ + + // #989 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 39728+ + + // #990 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 39808+ + + // #991 + "\377\376\375\374\373\372\371\370" + "0,110,40" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 39840 + + // #992 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 39856 + + // #993 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 39888 + + // #994 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 39984+ + + // #995 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 40064+ + + // #996 + "\377\376\375\374\373\372\371\370" + "119,183,255" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 40096 + + // #997 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 40112 + + // #998 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 40144 + + // #999 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 40240+ + + // #1000 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 40320+ + + // #1001 + "43,116,199" + "\377\376\375\374\373\372" // 40336 + + // #1002 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 40352 + + // #1003 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 40384 + + // #1004 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 40432+ + + // #1005 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 40512+ + + // #1006 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 40528 + + // #1007 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 40560 + + // #1008 + "contrast" + "\377\376\375\374\373\372\371\370" // 40576 + + // #1009 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 40624+ + + // #1010 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 40704+ + + // #1011 + "255,255,255" + "\377\376\375\374\373" // 40720 + + // #1012 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 40736 + + // #1013 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321" + "BackgroundNormal" + "\377" // 40800+ + + // #1014 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 40880+ + + // #1015 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 40960+ + + // #1016 + "\377\376\375\374\373\372\371\370" + "248,247,246" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 40992+ + + // #1017 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 41008 + + // #1018 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 41040 + + // #1019 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 41136+ + + // #1020 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 41216+ + + // #1021 + "20,19,18" + "\377\376\375\374\373\372\371\370" // 41232 + + // #1022 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 41248 + + // #1023 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 41280 + + // #1024 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 41328+ + + // #1025 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 41408+ + + // #1026 + "\377\376\375\374\373\372\371\370" + "136,135,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 41440 + + // #1027 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 41456 + + // #1028 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 41488 + + // #1029 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 41584+ + + // #1030 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 41664+ + + // #1031 + "255,128,224" + "\377\376\375\374\373" // 41680 + + // #1032 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 41696 + + // #1033 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 41760+ + + // #1034 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 41840+ + + // #1035 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 41920+ + + // #1036 + "\377\376\375\374\373\372\371\370" + "0,87,174" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 41952 + + // #1037 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 41968 + + // #1038 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 42000 + + // #1039 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 42096+ + + // #1040 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 42176+ + + // #1041 + "\377\376\375\374\373\372\371\370" + "69,40,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 42208+ + + // #1042 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 42224 + + // #1043 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 42256 + + // #1044 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 42352+ + + // #1045 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 42432+ + + // #1046 + "\377\376\375\374\373\372\371\370" + "191,3,3" + "\377" // 42448 + + // #1047 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 42464 + + // #1048 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 42496 + + // #1049 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 42544+ + + // #1050 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 42624+ + + // #1051 + "\377\376\375\374\373\372\371\370" + "176,128,0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 42656+ + + // #1052 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 42672 + + // #1053 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346" + "ForegroundNeutral" + "\377\376\375\374\373" // 42720+ + + // #1054 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 42800+ + + // #1055 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 42880+ + + // #1056 + "\377\376\375\374\373\372\371\370" + "0,110,40" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 42912 + + // #1057 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 42928 + + // #1058 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 42960 + + // #1059 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 43056+ + + // #1060 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 43136+ + + // #1061 + "\377\376\375\374\373\372\371\370" + "119,183,255" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 43168 + + // #1062 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 43184 + + // #1063 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 43216 + + // #1064 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 43312+ + + // #1065 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 43392+ + + // #1066 + "43,116,199" + "\377\376\375\374\373\372" // 43408 + + // #1067 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 43424 + + // #1068 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 43456 + + // #1069 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 43504+ + + // #1070 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 43584+ + + // #1071 + "\377\376\375\374\373\372\371\370" + "ColorEffects:Disabled" + "\377\376\375" // 43616 + + // #1072 + "2" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 43632 + + // #1073 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 43664 + + // #1074 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305" + "IntensityEffect" + "\377\376\375\374\373\372" // 43744+ + + // #1075 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 43824+ + + // #1076 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 43904+ + + // #1077 + "\377\376\375\374\373\372\371\370" + "0" + "\377\376\375\374\373\372\371" // 43920 + + // #1078 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 43952 + + // #1079 + "\377\376\375\374\373\372\371\370\367\366\365" + "ColorEffect" + "\377\376\375\374\373\372\371\370\367\366" // 43984 + + // #1080 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 44080+ + + // #1081 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 44160+ + + // #1082 + "\377\376\375\374\373\372\371\370" + "1" + "\377\376\375\374\373\372\371" // 44176 + + // #1083 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 44208 + + // #1084 + "\377\376\375\374\373\372\371" + "ContrastEffect" + "\377\376\375\374\373\372\371\370\367\366\365" // 44240 + + // #1085 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 44336+ + + // #1086 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 44416+ + + // #1087 + "\377\376\375\374\373\372\371\370" + "0.1" + "\377\376\375\374\373" // 44432 + + // #1088 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 44464 + + // #1089 + "\377\376\375\374\373\372" + "IntensityAmount" + "\377\376\375\374\373\372\371\370\367\366\365" // 44496 + + // #1090 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 44592+ + + // #1091 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 44672+ + + // #1092 + "0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 44688 + + // #1093 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 44720 + + // #1094 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352" + "ColorAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 44768+ + + // #1095 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 44848+ + + // #1096 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 44928+ + + // #1097 + "0.65" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 44944 + + // #1098 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 44976 + + // #1099 + "\377\376" + "ContrastAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 45008 + + // #1100 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 45104+ + + // #1101 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 45184+ + + // #1102 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 45200 + + // #1103 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 45232 + + // #1104 + "contrast" + "\377\376\375\374\373\372\371\370" // 45248 + + // #1105 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 45296+ + + // #1106 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 45376+ + + // #1107 + "255,255,255" + "\377\376\375\374\373" // 45392 + + // #1108 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 45408 + + // #1109 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321" + "BackgroundNormal" + "\377" // 45472+ + + // #1110 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 45552+ + + // #1111 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 45632+ + + // #1112 + "\377\376\375\374\373\372\371\370" + "248,247,246" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 45664+ + + // #1113 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 45680 + + // #1114 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 45712 + + // #1115 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 45808+ + + // #1116 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 45888+ + + // #1117 + "20,19,18" + "\377\376\375\374\373\372\371\370" // 45904 + + // #1118 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 45920 + + // #1119 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 45952 + + // #1120 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 46000+ + + // #1121 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 46080+ + + // #1122 + "\377\376\375\374\373\372\371\370" + "136,135,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 46112 + + // #1123 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 46128 + + // #1124 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 46160 + + // #1125 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 46256+ + + // #1126 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 46336+ + + // #1127 + "255,128,224" + "\377\376\375\374\373" // 46352 + + // #1128 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 46368 + + // #1129 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 46432+ + + // #1130 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 46512+ + + // #1131 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 46592+ + + // #1132 + "\377\376\375\374\373\372\371\370" + "0,87,174" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 46624 + + // #1133 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 46640 + + // #1134 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 46672 + + // #1135 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 46768+ + + // #1136 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 46848+ + + // #1137 + "\377\376\375\374\373\372\371\370" + "69,40,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 46880+ + + // #1138 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 46896 + + // #1139 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 46928 + + // #1140 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 47024+ + + // #1141 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 47104+ + + // #1142 + "\377\376\375\374\373\372\371\370" + "191,3,3" + "\377" // 47120 + + // #1143 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 47136 + + // #1144 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 47168 + + // #1145 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 47216+ + + // #1146 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 47296+ + + // #1147 + "\377\376\375\374\373\372\371\370" + "176,128,0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 47328+ + + // #1148 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 47344 + + // #1149 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346" + "ForegroundNeutral" + "\377\376\375\374\373" // 47392+ + + // #1150 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 47472+ + + // #1151 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 47552+ + + // #1152 + "\377\376\375\374\373\372\371\370" + "0,110,40" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 47584 + + // #1153 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 47600 + + // #1154 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 47632 + + // #1155 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 47728+ + + // #1156 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 47808+ + + // #1157 + "\377\376\375\374\373\372\371\370" + "119,183,255" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 47840 + + // #1158 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 47856 + + // #1159 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 47888 + + // #1160 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 47984+ + + // #1161 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 48064+ + + // #1162 + "43,116,199" + "\377\376\375\374\373\372" // 48080 + + // #1163 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 48096 + + // #1164 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 48128 + + // #1165 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 48176+ + + // #1166 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 48256+ + + // #1167 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "ColorEffects:Inactive" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 48304 + + // #1168 + "\377\376\375\374\373\372\371\370" + "true" + "\377\376\375\374" // 48320 + + // #1169 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 48336 + + // #1170 + "\377\376\375\374" + "Enable" + "\377\376\375\374\373\372" // 48352 + + // #1171 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 48432+ + + // #1172 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 48512+ + + // #1173 + "\377\376\375\374\373\372\371\370" + "0" + "\377\376\375\374\373\372\371" // 48528 + + // #1174 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 48560 + + // #1175 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345" + "IntensityEffect" + "\377\376\375\374\373\372" // 48608+ + + // #1176 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 48688+ + + // #1177 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 48768+ + + // #1178 + "2" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 48784 + + // #1179 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 48816 + + // #1180 + "\377\376\375\374\373\372\371\370\367\366\365" + "ColorEffect" + "\377\376\375\374\373\372\371\370\367\366" // 48848 + + // #1181 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 48944+ + + // #1182 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 49024+ + + // #1183 + "2" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 49040 + + // #1184 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 49072 + + // #1185 + "\377\376\375\374\373\372\371" + "ContrastEffect" + "\377\376\375\374\373\372\371\370\367\366\365" // 49104 + + // #1186 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 49200+ + + // #1187 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 49280+ + + // #1188 + "0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 49296 + + // #1189 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 49328 + + // #1190 + "\377\376\375\374\373\372" + "IntensityAmount" + "\377\376\375\374\373\372\371\370\367\366\365" // 49360 + + // #1191 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 49456+ + + // #1192 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 49536+ + + // #1193 + "\377\376\375\374\373\372\371\370" + "0.025" + "\377\376\375" // 49552 + + // #1194 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 49584 + + // #1195 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352" + "ColorAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 49632+ + + // #1196 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 49712+ + + // #1197 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 49792+ + + // #1198 + "\377\376\375\374\373\372\371\370" + "0.1" + "\377\376\375\374\373" // 49808 + + // #1199 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 49840 + + // #1200 + "\377\376" + "ContrastAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 49872 + + // #1201 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 49968+ + + // #1202 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 50048+ + + // #1203 + "\377\376\375\374\373\372\371\370" + "112,111,110" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 50080 + + // #1204 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 50096 + + // #1205 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Color" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 50128 + + // #1206 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 50224+ + + // #1207 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 50304+ + + // #1208 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "oxygenrc" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 50336 + + // #1209 + "\377\376\375\374\373\372" + "No Group" + "\377\376" // 50352 + + // #1210 + "\377\376\375\374" + "kdeglobals" + "\377\376" // 50368 + + // #1211 + "\377\376" + "/etc/kde4rc" + "\377\376\375" // 50384 + + // #1212 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 50400 + + // #1213 + "\377\376\375\374" + "kdeglobals" + "\377\376" // 50416 + + // #1214 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "system.kdeglobals" + "\377\376" // 50448 + + // #1215 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 50464 + + // #1216 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 50480 + + // #1217 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 50496 + + // #1218 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 50512 + + // #1219 + "\377\376\375\374\373\372\371\370\367\366" + "Style" + "\377" // 50528 + + // #1220 + "\377\376\375" + "CacheEnabled" + "\377" // 50544 + + // #1221 + "\377\376\375" + "CacheEnabled" + "\377" // 50560 + + // #1222 + "MaxCacheSize" + "\377\376\375\374" // 50576 + + // #1223 + "MaxCacheSize" + "\377\376\375\374" // 50592 + + // #1224 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "AnimationSteps" + "\377\376\375\374\373" // 50624 + + // #1225 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "AnimationSteps" + "\377\376\375\374\373" // 50656 + + // #1226 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324" + "ShowMnemonics" + "\377\376\375\374\373\372\371" // 50720+ + + // #1227 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324" + "ShowMnemonics" + "\377\376\375\374\373\372\371" // 50784+ + + // #1228 + "\377\376\375\374\373\372\371\370\367\366" + "ToolTipTransparent" + "\377\376\375\374" // 50816 + + // #1229 + "\377\376\375\374\373\372\371\370\367\366" + "ToolTipTransparent" + "\377\376\375\374" // 50848 + + // #1230 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "ToolTipDrawStyledFrames" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 50896 + + // #1231 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "ToolTipDrawStyledFrames" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 50944 + + // #1232 + "\377\376\375\374\373" + "ToolBarDrawItemSeparator" + "\377\376\375" // 50976+ + + // #1233 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333" + "ToolBarDrawItemSeparator" + "\377\376\375" // 51040+ + + // #1234 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "ViewDrawTriangularExpander" + "\377\376\375\374\373\372\371\370" // 51088 + + // #1235 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "ViewDrawTriangularExpander" + "\377\376\375\374\373\372\371\370" // 51136 + + // #1236 + "\377\376\375\374\373\372\371\370\367" + "TE_TINY" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 51168 + + // #1237 + "\377" + "TE_SMALL" + "\377\376\375\374\373\372\371" // 51184 + + // #1238 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346" + "TE_NORMAL" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 51232+ + + // #1239 + "\377\376\375\374" + "ViewTriangularExpanderSize" + "\377\376" // 51264 + + // #1240 + "\377\376\375\374" + "ViewTriangularExpanderSize" + "\377\376" // 51296 + + // #1241 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "ViewDrawFocusIndicator" + "\377\376\375\374\373\372\371\370\367\366\365" // 51344 + + // #1242 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "ViewDrawFocusIndicator" + "\377\376\375\374\373\372\371\370\367\366\365" // 51392 + + // #1243 + "\377\376\375\374\373\372" + "ViewDrawTreeBranchLines" + "\377\376\375" // 51424+ + + // #1244 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332" + "ViewDrawTreeBranchLines" + "\377\376\375" // 51488+ + + // #1245 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "ScrollBarWidth" + "\377\376\375\374" // 51520 + + // #1246 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "ScrollBarWidth" + "\377\376\375\374" // 51552 + + // #1247 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "ScrollBarAddLineButtons" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 51600 + + // #1248 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "ScrollBarAddLineButtons" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 51648 + + // #1249 + "\377\376\375\374\373" + "ScrollBarSubLineButtons" + "\377\376\375\374" // 51680+ + + // #1250 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333" + "ScrollBarSubLineButtons" + "\377\376\375\374" // 51744+ + + // #1251 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "ScrollBarColored" + "\377\376\375" // 51776 + + // #1252 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "ScrollBarColored" + "\377\376\375" // 51808 + + // #1253 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "ScrollBarBevel" + "\377\376\375\374" // 51840 + + // #1254 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "ScrollBarBevel" + "\377\376\375\374" // 51872 + + // #1255 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "CS_CHECK" + "\377\376\375\374\373\372\371\370\367\366\365" // 51904 + + // #1256 + "\377\376\375\374\373\372" + "CS_X" + "\377\376\375\374\373\372" // 51920 + + // #1257 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305" + "CheckBoxStyle" + "\377\376\375\374\373\372\371\370" // 52000+ + + // #1258 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325" + "CheckBoxStyle" + "\377\376\375\374\373\372\371\370" // 52064+ + + // #1259 + "\377\376\375\374\373\372\371\370\367" + "ProgressBarAnimated" + "\377\376\375\374" // 52096 + + // #1260 + "\377\376\375\374\373\372\371\370\367" + "ProgressBarAnimated" + "\377\376\375\374" // 52128 + + // #1261 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "MM_DARK" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 52160 + + // #1262 + "\377\376\375\374\373" + "MM_SUBTLE" + "\377\376" // 52176 + + // #1263 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "MM_STRONG" + "\377\376\375\374\373\372\371\370" // 52208 + + // #1264 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347" + "MenuHighlightMode" + "\377\376\375\374\373\372" // 52256+ + + // #1265 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327" + "MenuHighlightMode" + "\377\376\375\374\373\372" // 52320+ + + // #1266 + "\377\376\375\374\373\372\371\370\367\366\365" + "TabSubtleShadow" + "\377\376\375\374\373\372" // 52352 + + // #1267 + "\377\376\375\374\373\372\371\370\367\366\365" + "TabSubtleShadow" + "\377\376\375\374\373\372" // 52384 + + // #1268 + "\377\376\375\374\373\372\371\370\367\366\365" + "TS_SINGLE" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 52416 + + // #1269 + "\377\376\375\374\373" + "TS_PLAIN" + "\377\376\375" // 52432 + + // #1270 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "TabStyle" + "\377\376\375\374\373\372\371\370\367\366" // 52464 + + // #1271 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "TabStyle" + "\377\376\375\374\373\372\371\370\367\366" // 52496 + + // #1272 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311" + "WindowDragEnabled" + "\377\376\375\374\373\372\371\370" // 52576+ + + // #1273 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331" + "WindowDragEnabled" + "\377\376\375\374\373\372\371\370" // 52640+ + + // #1274 + "false" + "\377\376\375\374\373\372\371\370\367\366\365" // 52656 + + // #1275 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 52672 + + // #1276 + "WindowDragEnabled" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 52704 + + // #1277 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 52784+ + + // #1278 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 52864+ + + // #1279 + "\377\376\375\374\373\372\371\370\367" + "WD_MINIMAL" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 52896 + + // #1280 + "\377\376\375\374" + "WD_FULL" + "\377\376\375\374\373" // 52912 + + // #1281 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "WindowDragMode" + "\377\376\375\374\373\372" // 52944 + + // #1282 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "WindowDragMode" + "\377\376\375\374\373\372" // 52976 + + // #1283 + "\377\376\375\374\373\372\371\370\367\366\365" + "WidgetExplorerEnabled" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 53024 + + // #1284 + "\377\376\375\374\373\372\371\370\367\366\365" + "WidgetExplorerEnabled" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 53072 + + // #1285 + "\377" + "DrawWidgetRects" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 53104 + + // #1286 + "\377" + "DrawWidgetRects" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 53136 + + // #1287 + "\377" + "WindowDragWhiteList" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 53168 + + // #1288 + "\377" + "WindowDragWhiteList" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 53200 + + // #1289 + "\377\376\375\374\373" + "WindowDragBlackList" + "\377\376\375\374\373\372\371\370" // 53232 + + // #1290 + "\377\376\375\374\373" + "WindowDragBlackList" + "\377\376\375\374\373\372\371\370" // 53264 + + // #1291 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307" + "UseWMMoveResize" + "\377\376\375\374\373\372\371\370" // 53344+ + + // #1292 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327" + "UseWMMoveResize" + "\377\376\375\374\373\372\371\370" // 53408+ + + // #1293 + "AnimationsEnabled" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 53440 + + // #1294 + "AnimationsEnabled" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 53472 + + // #1295 + "\377\376\375\374\373\372\371\370\367" + "GenericAnimationsEnabled" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 53520 + + // #1296 + "\377\376\375\374\373\372\371\370\367" + "GenericAnimationsEnabled" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 53568 + + // #1297 + "\377\376" + "TB_NONE" + "\377\376\375\374\373\372\371" // 53584 + + // #1298 + "\377\376\375\374\373\372\371\370\367\366" + "TB_FADE" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 53616 + + // #1299 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356" + "TB_FOLLOW_MOUSE" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 53664+ + + // #1300 + "\377\376" + "ToolBarAnimationType" + "\377\376\375\374\373\372\371\370\367\366" // 53696 + + // #1301 + "\377\376" + "ToolBarAnimationType" + "\377\376\375\374\373\372\371\370\367\366" // 53728 + + // #1302 + "\377\376\375\374\373\372\371" + "MB_NONE" + "\377\376" // 53744 + + // #1303 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "MB_FADE" + "\377\376\375\374\373\372\371\370\367\366" // 53776 + + // #1304 + "\377\376\375\374\373\372\371" + "MB_FOLLOW_MOUSE" + "\377\376\375\374\373\372\371\370\367\366" // 53808 + + // #1305 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351" + "MenuBarAnimationType" + "\377\376\375\374\373" // 53856+ + + // #1306 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331" + "MenuBarAnimationType" + "\377\376\375\374\373" // 53920+ + + // #1307 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ME_NONE" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 53952 + + // #1308 + "\377\376\375\374" + "ME_FADE" + "\377\376\375\374\373" // 53968 + + // #1309 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ME_FOLLOW_MOUSE" + "\377\376\375\374\373" // 54000 + + // #1310 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "MenuAnimationType" + "\377\376\375" // 54032 + + // #1311 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "MenuAnimationType" + "\377\376\375" // 54064 + + // #1312 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342" + "ProgressBarAnimationsEnabled" + "\377\376\375\374\373\372" // 54128+ + + // #1313 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342" + "ProgressBarAnimationsEnabled" + "\377\376\375\374\373\372" // 54192+ + + // #1314 + "\377\376\375\374\373\372\371\370\367\366\365" + "GenericAnimationsDuration" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 54240 + + // #1315 + "\377\376\375\374\373\372\371\370\367\366\365" + "GenericAnimationsDuration" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 54288 + + // #1316 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313" + "ToolBarAnimationsDuration" + "\377\376" // 54368+ + + // #1317 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333" + "ToolBarAnimationsDuration" + "\377\376" // 54432+ + + // #1318 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "MenuBarAnimationsDuration" + "\377\376\375\374\373\372\371\370" // 54480 + + // #1319 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "MenuBarAnimationsDuration" + "\377\376\375\374\373\372\371\370" // 54528 + + // #1320 + "\377\376\375\374\373\372\371\370" + "MenuBarFollowMouseAnimationsDuration" + "\377\376\375\374" // 54576 + + // #1321 + "\377\376\375\374\373\372\371\370" + "MenuBarFollowMouseAnimationsDuration" + "\377\376\375\374" // 54624 + + // #1322 + "\377\376\375\374\373\372\371\370\367" + "MenuAnimationsDuration" + "\377" // 54656 + + // #1323 + "\377\376\375\374\373\372\371\370\367" + "MenuAnimationsDuration" + "\377" // 54688 + + // #1324 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "MenuFollowMouseAnimationsDuration" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 54768+ + + // #1325 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" + "MenuFollowMouseAnimationsDuration" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 54832+ + + // #1326 + "ProgressBarAnimationsDuration" + "\377\376\375" // 54864 + + // #1327 + "ProgressBarAnimationsDuration" + "\377\376\375" // 54896 + + // #1328 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "ProgressBarBusyStepDuration" + "\377\376\375\374\373\372\371" // 54944 + + // #1329 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "ProgressBarBusyStepDuration" + "\377\376\375\374\373\372\371" // 54992 + + // #1330 + "\377\376\375\374" + "StackedWidgetTransitionsEnabled" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 55040 + + // #1331 + "\377\376\375\374" + "StackedWidgetTransitionsEnabled" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 55088 + + // #1332 + "false" + "\377\376\375\374\373\372\371\370\367\366\365" // 55104 + + // #1333 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 55120 + + // #1334 + "\377\376\375\374\373\372\371\370" + "StackedWidgetTransitionsEnabled" + "\377\376\375\374\373\372\371\370\367" // 55168 + + // #1335 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 55216+ + + // #1336 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 55296+ + + // #1337 + "\377\376\375\374\373\372\371\370\367\366" + "LabelTransitionsEnabled" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 55344+ + + // #1338 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346" + "LabelTransitionsEnabled" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 55408+ + + // #1339 + "\377\376\375\374\373\372\371\370" + "false" + "\377\376\375" // 55424 + + // #1340 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 55440 + + // #1341 + "\377\376\375\374\373\372\371\370" + "LabelTransitionsEnabled" + "\377" // 55472 + + // #1342 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 55536+ + + // #1343 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 55616+ + + // #1344 + "\377\376" + "ComboBoxTransitionsEnabled" + "\377\376\375\374" // 55648 + + // #1345 + "\377\376" + "ComboBoxTransitionsEnabled" + "\377\376\375\374" // 55680 + + // #1346 + "false" + "\377\376\375\374\373\372\371\370\367\366\365" // 55696 + + // #1347 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 55712 + + // #1348 + "ComboBoxTransitionsEnabled" + "\377\376\375\374\373\372" // 55744 + + // #1349 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 55792+ + + // #1350 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 55872+ + + // #1351 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "LineEditTransitionsEnabled" + "\377\376\375\374\373\372\371\370\367" // 55920+ + + // #1352 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343" + "LineEditTransitionsEnabled" + "\377\376\375\374\373\372\371\370\367" // 55984+ + + // #1353 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354" + "StackedWidgetTransitionsDuration" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 56048+ + + // #1354 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354" + "StackedWidgetTransitionsDuration" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 56112+ + + // #1355 + "\377\376\375\374\373\372\371\370" + "LabelTransitionsDuration" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 56160 + + // #1356 + "\377\376\375\374\373\372\371\370" + "LabelTransitionsDuration" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 56208 + + // #1357 + "\377" + "ComboBoxTransitionsDuration" + "\377\376\375\374" // 56240 + + // #1358 + "\377" + "ComboBoxTransitionsDuration" + "\377\376\375\374" // 56272 + + // #1359 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305\304\303" + "LineEditTransitionsDuration" + "\377\376\375\374\373\372\371\370" // 56368+ + + // #1360 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343" + "LineEditTransitionsDuration" + "\377\376\375\374\373\372\371\370" // 56432+ + + // #1361 + "\377\376\375\374" + "kdeglobals" + "\377\376" // 56448 + + // #1362 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "system.kdeglobals" + "\377\376" // 56480 + + // #1363 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 56496 + + // #1364 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 56512 + + // #1365 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 56528 + + // #1366 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 56544 + + // #1367 + "\377\376\375\374\373\372\371\370" + "false" + "\377\376\375" // 56560 + + // #1368 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 56576 + + // #1369 + "WindowDragEnabled" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 56608+ + + // #1370 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 56688+ + + // #1371 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 56768+ + + // #1372 + "\377\376\375\374\373\372\371\370" + "false" + "\377\376\375" // 56784 + + // #1373 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 56800 + + // #1374 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330" + "StackedWidgetTransitionsEnabled" + "\377\376\375\374\373\372\371\370\367" // 56880+ + + // #1375 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 56944+ + + // #1376 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 57024+ + + // #1377 + "false" + "\377\376\375\374\373\372\371\370\367\366\365" // 57040 + + // #1378 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 57056 + + // #1379 + "LabelTransitionsEnabled" + "\377\376\375\374\373\372\371\370\367" // 57088 + + // #1380 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 57136+ + + // #1381 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 57216+ + + // #1382 + "\377\376\375\374\373\372\371\370" + "false" + "\377\376\375" // 57232 + + // #1383 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 57248 + + // #1384 + "ComboBoxTransitionsEnabled" + "\377\376\375\374\373\372" // 57280 + + // #1385 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 57328+ + + // #1386 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 57408+ + + // #1387 + "\377\376\375\374" + "kdeglobals" + "\377\376" // 57424 + + // #1388 + "\377\376\375\374\373\372\371\370\367\366\365\364\363" + "system.kdeglobals" + "\377\376" // 57456 + + // #1389 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 57472 + + // #1390 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 57488 + + // #1391 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 57504 + + // #1392 + "\377\376\375\374\373\372\371\370" + "INI" + "\377\376\375\374\373" // 57520 + + // #1393 + "\377\376\375\374\373\372\371\370" + "false" + "\377\376\375" // 57536 + + // #1394 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 57552 + + // #1395 + "WindowDragEnabled" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 57584 + + // #1396 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 57648+ + + // #1397 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 57728+ + + // #1398 + "\377\376\375\374\373\372\371\370" + "false" + "\377\376\375" // 57744 + + // #1399 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 57760 + + // #1400 + "\377\376\375\374\373\372\371\370" + "StackedWidgetTransitionsEnabled" + "\377\376\375\374\373\372\371\370\367" // 57808 + + // #1401 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 57904+ + + // #1402 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 57984+ + + // #1403 + "false" + "\377\376\375\374\373\372\371\370\367\366\365" // 58000 + + // #1404 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 58016 + + // #1405 + "LabelTransitionsEnabled" + "\377\376\375\374\373\372\371\370\367" // 58048 + + // #1406 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 58096+ + + // #1407 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 58176+ + + // #1408 + "\377\376\375\374\373\372\371\370" + "false" + "\377\376\375" // 58192 + + // #1409 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 58208 + + // #1410 + "ComboBoxTransitionsEnabled" + "\377\376\375\374\373\372" // 58240 + + // #1411 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 58288+ + + // #1412 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 58368+ + + // #1413 + "\377\376\375\374\373" + "MplayerWindow" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 58400 + + // #1414 + "\377\376\375\374\373\372\371\370\367" + "@" + "\377\376\375\374\373\372" // 58416 + + // #1415 + "\377\376\375" + "ViewSliders@kmix" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 58448 + + // #1416 + "\377\376\375\374\373\372\371\370\367" + "@" + "\377\376\375\374\373\372" // 58464 + + // #1417 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334" + "Sidebar_Widget@konqueror" + "\377\376\375\374" // 58528+ + + // #1418 + "\377\376\375\374\373\372\371\370\367" + "@" + "\377\376\375\374\373\372" // 58544 + + // #1419 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" + "CustomTrackView@kdenlive" + "\377\376\375\374\373\372\371\370" // 58592+ + + // #1420 + "\377\376\375\374\373\372\371\370\367" + "@" + "\377\376\375\374\373\372" // 58608 + + // #1421 + "\377\376\375\374\373\372\371\370\367\366\365" + "MuseScore" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 58640 + + // #1422 + "\377\376\375\374\373\372\371\370\367" + "@" + "\377\376\375\374\373\372" // 58656 + + // #1423 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "kde" + "\377" // 58672 + + // #1424 + "/gui_platform" + "\377\376\375" // 58688 + + // #1425 + "Trolltech" + "\377\376\375\374\373\372\371" // 58704 + + // #1426 + "\377\376\375\374\373\372\371\370\367" + ".conf" + "\377\376" // 58720 + + // #1427 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331" + "No such file or directory" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 58800+ + + // #1428 + "\377\376\375\374\373\372\371\370\367\366" + "." + "\377\376\375\374\373" // 58816 + + // #1429 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 58832 + + // #1430 + "\377\376\375\374\373\372\371\370\367\366" + "." + "\377\376\375\374\373" // 58848 + + // #1431 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 58864 + + // #1432 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 58880 + + // #1433 + "\377\376\375\374\373\372" + "*" + "\377\376\375\374\373\372\371\370\367" // 58896 + + // #1434 + "\377\376\375\374\373\372\371\370\367\366" + "." + "\377\376\375\374\373" // 58912 + + // #1435 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 58928 + + // #1436 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 58944 + + // #1437 + "\377\376\375\374\373\372" + "*" + "\377\376\375\374\373\372\371\370\367" // 58960 + + // #1438 + "\377" + "%1:%2:%3" + "\377\376\375\374\373\372\371" // 58976 + + // #1439 + "\377\376\375" + "debug" + "\377\376\375\374\373\372\371\370" // 58992 + + // #1440 + "\377\376" + "Qt Plugin Cache %1.%2.%3/%4" + "\377\376\375" // 59024 + + // #1441 + "\377\376\375\374\373\372\371\370" + "com.nokia.qt.QGuiPlatformPluginInterface" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 59088 + + // #1442 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "Qt Factory Cache %1.%2/%3:/%4" + "\377\376\375\374\373" // 59136 + + // #1443 + "\377\376\375\374\373\372\371\370\367\366" + "." + "\377\376\375\374\373" // 59152 + + // #1444 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 59168 + + // #1445 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 59184 + + // #1446 + "\377\376\375\374\373\372" + "*" + "\377\376\375\374\373\372\371\370\367" // 59200 + + // #1447 + "\377" + "%1:%2:%3" + "\377\376\375\374\373\372\371" // 59216 + + // #1448 + "\377\376\375" + "debug" + "\377\376\375\374\373\372\371\370" // 59232 + + // #1449 + "\377\376" + "Qt Plugin Cache %1.%2.%3/%4" + "\377\376\375" // 59264 + + // #1450 + "\377\376\375\374\373\372\371\370" + "com.nokia.qt.QGuiPlatformPluginInterface" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 59328 + + // #1451 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "Qt Factory Cache %1.%2/%3:/%4" + "\377\376\375\374\373" // 59376 + + // #1452 + "\377\376\375\374\373\372\371\370\367\366" + "." + "\377\376\375\374\373" // 59392 + + // #1453 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "*" + "\377\376\375" // 59408 + + // #1454 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 59424 + + // #1455 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 59456 + + // #1456 + "contrast" + "\377\376\375\374\373\372\371\370" // 59472 + + // #1457 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 59568+ + + // #1458 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 59648+ + + // #1459 + "\377\376\375\374\373\372\371\370" + "192,218,255" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 59680 + + // #1460 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 59696 + + // #1461 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341" + "BackgroundNormal" + "\377" // 59744+ + + // #1462 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 59824+ + + // #1463 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 59904+ + + // #1464 + "196,224,255" + "\377\376\375\374\373" // 59920 + + // #1465 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 59936 + + // #1466 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 59968 + + // #1467 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 60016+ + + // #1468 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 60096+ + + // #1469 + "\377\376\375\374\373\372\371\370" + "20,19,18" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 60128 + + // #1470 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 60144 + + // #1471 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 60176 + + // #1472 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 60272+ + + // #1473 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 60352+ + + // #1474 + "\377\376\375\374\373\372\371\370" + "96,112,128" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 60384 + + // #1475 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 60400 + + // #1476 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 60432 + + // #1477 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 60528+ + + // #1478 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 60608+ + + // #1479 + "255,128,224" + "\377\376\375\374\373" // 60624 + + // #1480 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 60640 + + // #1481 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 60704+ + + // #1482 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 60784+ + + // #1483 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 60864+ + + // #1484 + "0,87,174" + "\377\376\375\374\373\372\371\370" // 60880 + + // #1485 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 60896 + + // #1486 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 60928 + + // #1487 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 60976+ + + // #1488 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 61056+ + + // #1489 + "69,40,134" + "\377\376\375\374\373\372\371" // 61072 + + // #1490 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 61088 + + // #1491 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 61120 + + // #1492 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 61168+ + + // #1493 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 61248+ + + // #1494 + "191,3,3" + "\377\376\375\374\373\372\371\370\367" // 61264 + + // #1495 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 61280 + + // #1496 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 61312 + + // #1497 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 61360+ + + // #1498 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 61440+ + + // #1499 + "176,128,0" + "\377\376\375\374\373\372\371" // 61456 + + // #1500 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 61472 + + // #1501 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326" + "ForegroundNeutral" + "\377\376\375\374\373" // 61536+ + + // #1502 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 61616+ + + // #1503 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 61696+ + + // #1504 + "\377\376\375\374\373\372\371\370" + "0,110,40" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 61728 + + // #1505 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 61744 + + // #1506 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 61776 + + // #1507 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 61872+ + + // #1508 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 61952+ + + // #1509 + "\377\376\375\374\373\372\371\370" + "119,183,255" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 61984 + + // #1510 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 62000 + + // #1511 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 62032 + + // #1512 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 62128+ + + // #1513 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 62208+ + + // #1514 + "43,116,199" + "\377\376\375\374\373\372" // 62224 + + // #1515 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 62240 + + // #1516 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 62272 + + // #1517 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 62320+ + + // #1518 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 62400+ + + // #1519 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 62416 + + // #1520 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 62448 + + // #1521 + "contrast" + "\377\376\375\374\373\372\371\370" // 62464 + + // #1522 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 62512+ + + // #1523 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 62592+ + + // #1524 + "255,255,255" + "\377\376\375\374\373" // 62608 + + // #1525 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 62624 + + // #1526 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321" + "BackgroundNormal" + "\377" // 62688+ + + // #1527 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 62768+ + + // #1528 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 62848+ + + // #1529 + "\377\376\375\374\373\372\371\370" + "248,247,246" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 62880+ + + // #1530 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 62896 + + // #1531 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 62928 + + // #1532 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 63024+ + + // #1533 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 63104+ + + // #1534 + "20,19,18" + "\377\376\375\374\373\372\371\370" // 63120 + + // #1535 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 63136 + + // #1536 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 63168 + + // #1537 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 63216+ + + // #1538 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 63296+ + + // #1539 + "\377\376\375\374\373\372\371\370" + "136,135,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 63328 + + // #1540 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 63344 + + // #1541 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 63376 + + // #1542 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 63472+ + + // #1543 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 63552+ + + // #1544 + "255,128,224" + "\377\376\375\374\373" // 63568 + + // #1545 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 63584 + + // #1546 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 63648+ + + // #1547 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 63728+ + + // #1548 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 63808+ + + // #1549 + "\377\376\375\374\373\372\371\370" + "0,87,174" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 63840 + + // #1550 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 63856 + + // #1551 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 63888 + + // #1552 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 63984+ + + // #1553 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 64064+ + + // #1554 + "\377\376\375\374\373\372\371\370" + "69,40,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 64096+ + + // #1555 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 64112 + + // #1556 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 64144 + + // #1557 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 64240+ + + // #1558 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 64320+ + + // #1559 + "\377\376\375\374\373\372\371\370" + "191,3,3" + "\377" // 64336 + + // #1560 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 64352 + + // #1561 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 64384 + + // #1562 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 64432+ + + // #1563 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 64512+ + + // #1564 + "\377\376\375\374\373\372\371\370" + "176,128,0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 64544+ + + // #1565 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 64560 + + // #1566 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346" + "ForegroundNeutral" + "\377\376\375\374\373" // 64608+ + + // #1567 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 64688+ + + // #1568 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 64768+ + + // #1569 + "0,110,40" + "\377\376\375\374\373\372\371\370" // 64784 + + // #1570 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 64800 + + // #1571 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 64832 + + // #1572 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 64880+ + + // #1573 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 64960+ + + // #1574 + "\377\376\375\374\373\372\371\370" + "119,183,255" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 64992 + + // #1575 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 65008 + + // #1576 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 65040 + + // #1577 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 65136+ + + // #1578 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 65216+ + + // #1579 + "43,116,199" + "\377\376\375\374\373\372" // 65232 + + // #1580 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 65248 + + // #1581 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 65280 + + // #1582 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 65328+ + + // #1583 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 65408+ + + // #1584 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 65424 + + // #1585 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 65456 + + // #1586 + "contrast" + "\377\376\375\374\373\372\371\370" // 65472 + + // #1587 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 65520+ + + // #1588 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 65600+ + + // #1589 + "\377\376\375\374\373\372\371\370" + "224,223,222" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 65632 + + // #1590 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 65648 + + // #1591 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341" + "BackgroundNormal" + "\377" // 65696+ + + // #1592 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 65776+ + + // #1593 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 65856+ + + // #1594 + "\377\376\375\374\373\372\371\370" + "218,217,216" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 65888 + + // #1595 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 65904 + + // #1596 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 65936 + + // #1597 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 66032+ + + // #1598 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 66112+ + + // #1599 + "20,19,18" + "\377\376\375\374\373\372\371\370" // 66128 + + // #1600 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 66144 + + // #1601 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 66176 + + // #1602 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 66224+ + + // #1603 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 66304+ + + // #1604 + "136,135,134" + "\377\376\375\374\373" // 66320 + + // #1605 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 66336 + + // #1606 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 66368 + + // #1607 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 66416+ + + // #1608 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 66496+ + + // #1609 + "255,128,224" + "\377\376\375\374\373" // 66512 + + // #1610 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 66528 + + // #1611 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 66592+ + + // #1612 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 66672+ + + // #1613 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 66752+ + + // #1614 + "\377\376\375\374\373\372\371\370" + "0,87,174" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 66784 + + // #1615 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 66800 + + // #1616 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 66832 + + // #1617 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 66928+ + + // #1618 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 67008+ + + // #1619 + "\377\376\375\374\373\372\371\370" + "69,40,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 67040+ + + // #1620 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 67056 + + // #1621 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 67088 + + // #1622 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 67184+ + + // #1623 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 67264+ + + // #1624 + "191,3,3" + "\377\376\375\374\373\372\371\370\367" // 67280 + + // #1625 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 67296 + + // #1626 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 67328 + + // #1627 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 67376+ + + // #1628 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 67456+ + + // #1629 + "176,128,0" + "\377\376\375\374\373\372\371" // 67472 + + // #1630 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 67488 + + // #1631 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326" + "ForegroundNeutral" + "\377\376\375\374\373" // 67552+ + + // #1632 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 67632+ + + // #1633 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 67712+ + + // #1634 + "\377\376\375\374\373\372\371\370" + "0,110,40" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 67744 + + // #1635 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 67760 + + // #1636 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 67792 + + // #1637 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 67888+ + + // #1638 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 67968+ + + // #1639 + "\377\376\375\374\373\372\371\370" + "119,183,255" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 68000 + + // #1640 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 68016 + + // #1641 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 68048 + + // #1642 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 68144+ + + // #1643 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 68224+ + + // #1644 + "43,116,199" + "\377\376\375\374\373\372" // 68240 + + // #1645 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 68256 + + // #1646 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 68288 + + // #1647 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 68336+ + + // #1648 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 68416+ + + // #1649 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 68432 + + // #1650 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 68464 + + // #1651 + "contrast" + "\377\376\375\374\373\372\371\370" // 68480 + + // #1652 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 68528+ + + // #1653 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 68608+ + + // #1654 + "232,231,230" + "\377\376\375\374\373" // 68624 + + // #1655 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 68640 + + // #1656 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321" + "BackgroundNormal" + "\377" // 68704+ + + // #1657 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 68784+ + + // #1658 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 68864+ + + // #1659 + "\377\376\375\374\373\372\371\370" + "224,223,222" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 68896+ + + // #1660 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 68912 + + // #1661 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 68944 + + // #1662 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 69040+ + + // #1663 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 69120+ + + // #1664 + "20,19,18" + "\377\376\375\374\373\372\371\370" // 69136 + + // #1665 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 69152 + + // #1666 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 69184 + + // #1667 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 69232+ + + // #1668 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 69312+ + + // #1669 + "136,135,134" + "\377\376\375\374\373" // 69328 + + // #1670 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 69344 + + // #1671 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 69376 + + // #1672 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 69424+ + + // #1673 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 69504+ + + // #1674 + "\377\376\375\374\373\372\371\370" + "255,128,224" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 69536 + + // #1675 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 69552 + + // #1676 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 69600+ + + // #1677 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 69680+ + + // #1678 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 69760+ + + // #1679 + "\377\376\375\374\373\372\371\370" + "0,87,174" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 69792 + + // #1680 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 69808 + + // #1681 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 69840 + + // #1682 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 69936+ + + // #1683 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 70016+ + + // #1684 + "\377\376\375\374\373\372\371\370" + "69,40,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 70048+ + + // #1685 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 70064 + + // #1686 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 70096 + + // #1687 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 70192+ + + // #1688 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 70272+ + + // #1689 + "\377\376\375\374\373\372\371\370" + "191,3,3" + "\377" // 70288 + + // #1690 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 70304 + + // #1691 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 70336 + + // #1692 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 70384+ + + // #1693 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 70464+ + + // #1694 + "\377\376\375\374\373\372\371\370" + "176,128,0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 70496 + + // #1695 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 70512 + + // #1696 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346" + "ForegroundNeutral" + "\377\376\375\374\373" // 70560+ + + // #1697 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 70640+ + + // #1698 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 70720+ + + // #1699 + "0,110,40" + "\377\376\375\374\373\372\371\370" // 70736 + + // #1700 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 70752 + + // #1701 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 70784 + + // #1702 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 70832+ + + // #1703 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 70912+ + + // #1704 + "119,183,255" + "\377\376\375\374\373" // 70928 + + // #1705 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 70944 + + // #1706 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 70976 + + // #1707 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 71024+ + + // #1708 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 71104+ + + // #1709 + "\377\376\375\374\373\372\371\370" + "43,116,199" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 71136 + + // #1710 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 71152 + + // #1711 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 71184 + + // #1712 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 71280+ + + // #1713 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 71360+ + + // #1714 + "\377\376\375\374\373\372\371\370" + "true" + "\377\376\375\374" // 71376 + + // #1715 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 71392 + + // #1716 + "\377\376\375\374" + "Enable" + "\377\376\375\374\373\372" // 71408 + + // #1717 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 71472+ + + // #1718 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 71552+ + + // #1719 + "\377\376\375\374\373\372\371\370" + "true" + "\377\376\375\374" // 71568 + + // #1720 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 71584 + + // #1721 + "ChangeSelectionColor" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 71616 + + // #1722 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 71664+ + + // #1723 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 71744+ + + // #1724 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 71760 + + // #1725 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 71792 + + // #1726 + "contrast" + "\377\376\375\374\373\372\371\370" // 71808 + + // #1727 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 71856+ + + // #1728 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 71936+ + + // #1729 + "65,139,212" + "\377\376\375\374\373\372" // 71952 + + // #1730 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 71968 + + // #1731 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321" + "BackgroundNormal" + "\377" // 72032+ + + // #1732 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 72112+ + + // #1733 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 72192+ + + // #1734 + "62,138,204" + "\377\376\375\374\373\372" // 72208 + + // #1735 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 72224 + + // #1736 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 72256 + + // #1737 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 72304+ + + // #1738 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 72384+ + + // #1739 + "255,255,255" + "\377\376\375\374\373" // 72400 + + // #1740 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 72416 + + // #1741 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 72448 + + // #1742 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 72496+ + + // #1743 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 72576+ + + // #1744 + "165,193,228" + "\377\376\375\374\373" // 72592 + + // #1745 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 72608 + + // #1746 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 72640 + + // #1747 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 72688+ + + // #1748 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 72768+ + + // #1749 + "\377\376\375\374\373\372\371\370" + "255,128,224" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 72800 + + // #1750 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 72816 + + // #1751 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 72864+ + + // #1752 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 72944+ + + // #1753 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 73024+ + + // #1754 + "\377\376\375\374\373\372\371\370" + "0,49,110" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 73056 + + // #1755 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 73072 + + // #1756 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 73104 + + // #1757 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 73200+ + + // #1758 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 73280+ + + // #1759 + "69,40,134" + "\377\376\375\374\373\372\371" // 73296 + + // #1760 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 73312 + + // #1761 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 73344 + + // #1762 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 73392+ + + // #1763 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 73472+ + + // #1764 + "156,14,14" + "\377\376\375\374\373\372\371" // 73488 + + // #1765 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 73504 + + // #1766 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 73536 + + // #1767 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 73584+ + + // #1768 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 73664+ + + // #1769 + "\377\376\375\374\373\372\371\370" + "255,221,0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 73696 + + // #1770 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 73712 + + // #1771 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346" + "ForegroundNeutral" + "\377\376\375\374\373" // 73760+ + + // #1772 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 73840+ + + // #1773 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 73920+ + + // #1774 + "\377\376\375\374\373\372\371\370" + "128,255,128" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 73952 + + // #1775 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 73968 + + // #1776 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 74000 + + // #1777 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 74096+ + + // #1778 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 74176+ + + // #1779 + "119,183,255" + "\377\376\375\374\373" // 74192 + + // #1780 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 74208 + + // #1781 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 74240 + + // #1782 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 74288+ + + // #1783 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 74368+ + + // #1784 + "\377\376\375\374\373\372\371\370" + "43,116,199" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 74400 + + // #1785 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 74416 + + // #1786 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 74448 + + // #1787 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 74544+ + + // #1788 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 74624+ + + // #1789 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 74640 + + // #1790 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 74672 + + // #1791 + "contrast" + "\377\376\375\374\373\372\371\370" // 74688 + + // #1792 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 74736+ + + // #1793 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 74816+ + + // #1794 + "255,255,255" + "\377\376\375\374\373" // 74832 + + // #1795 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 74848 + + // #1796 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321" + "BackgroundNormal" + "\377" // 74912+ + + // #1797 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 74992+ + + // #1798 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 75072+ + + // #1799 + "\377\376\375\374\373\372\371\370" + "248,247,246" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 75104+ + + // #1800 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 75120 + + // #1801 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 75152 + + // #1802 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 75248+ + + // #1803 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 75328+ + + // #1804 + "20,19,18" + "\377\376\375\374\373\372\371\370" // 75344 + + // #1805 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 75360 + + // #1806 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 75392 + + // #1807 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 75440+ + + // #1808 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 75520+ + + // #1809 + "\377\376\375\374\373\372\371\370" + "136,135,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 75552 + + // #1810 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 75568 + + // #1811 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 75600 + + // #1812 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 75696+ + + // #1813 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 75776+ + + // #1814 + "255,128,224" + "\377\376\375\374\373" // 75792 + + // #1815 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 75808 + + // #1816 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 75872+ + + // #1817 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 75952+ + + // #1818 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 76032+ + + // #1819 + "\377\376\375\374\373\372\371\370" + "0,87,174" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 76064 + + // #1820 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 76080 + + // #1821 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 76112 + + // #1822 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 76208+ + + // #1823 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 76288+ + + // #1824 + "\377\376\375\374\373\372\371\370" + "69,40,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 76320+ + + // #1825 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 76336 + + // #1826 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 76368 + + // #1827 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 76464+ + + // #1828 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 76544+ + + // #1829 + "\377\376\375\374\373\372\371\370" + "191,3,3" + "\377" // 76560 + + // #1830 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 76576 + + // #1831 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 76608 + + // #1832 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 76656+ + + // #1833 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 76736+ + + // #1834 + "\377\376\375\374\373\372\371\370" + "176,128,0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 76768+ + + // #1835 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 76784 + + // #1836 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346" + "ForegroundNeutral" + "\377\376\375\374\373" // 76832+ + + // #1837 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 76912+ + + // #1838 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 76992+ + + // #1839 + "0,110,40" + "\377\376\375\374\373\372\371\370" // 77008 + + // #1840 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 77024 + + // #1841 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 77056 + + // #1842 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 77104+ + + // #1843 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 77184+ + + // #1844 + "\377\376\375\374\373\372\371\370" + "119,183,255" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 77216 + + // #1845 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 77232 + + // #1846 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 77264 + + // #1847 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 77360+ + + // #1848 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 77440+ + + // #1849 + "43,116,199" + "\377\376\375\374\373\372" // 77456 + + // #1850 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 77472 + + // #1851 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 77504 + + // #1852 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 77552+ + + // #1853 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 77632+ + + // #1854 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "ColorEffects:Inactive" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 77680 + + // #1855 + "\377\376\375\374\373\372\371\370" + "true" + "\377\376\375\374" // 77696 + + // #1856 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 77712 + + // #1857 + "\377\376\375\374" + "Enable" + "\377\376\375\374\373\372" // 77728 + + // #1858 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 77808+ + + // #1859 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 77888+ + + // #1860 + "0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 77904 + + // #1861 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 77936 + + // #1862 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345" + "IntensityEffect" + "\377\376\375\374\373\372" // 77984+ + + // #1863 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 78064+ + + // #1864 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 78144+ + + // #1865 + "2" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 78160 + + // #1866 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 78192 + + // #1867 + "\377\376\375\374\373\372\371\370\367\366\365" + "ColorEffect" + "\377\376\375\374\373\372\371\370\367\366" // 78224 + + // #1868 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 78320+ + + // #1869 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 78400+ + + // #1870 + "2" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 78416 + + // #1871 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 78448 + + // #1872 + "\377\376\375\374\373\372\371" + "ContrastEffect" + "\377\376\375\374\373\372\371\370\367\366\365" // 78480 + + // #1873 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 78576+ + + // #1874 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 78656+ + + // #1875 + "\377\376\375\374\373\372\371\370" + "0" + "\377\376\375\374\373\372\371" // 78672 + + // #1876 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 78704 + + // #1877 + "\377\376\375\374\373\372" + "IntensityAmount" + "\377\376\375\374\373\372\371\370\367\366\365" // 78736 + + // #1878 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 78832+ + + // #1879 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 78912+ + + // #1880 + "\377\376\375\374\373\372\371\370" + "0.025" + "\377\376\375" // 78928 + + // #1881 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 78960 + + // #1882 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352" + "ColorAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 79008+ + + // #1883 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 79088+ + + // #1884 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 79168+ + + // #1885 + "\377\376\375\374\373\372\371\370" + "0.1" + "\377\376\375\374\373" // 79184 + + // #1886 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 79216 + + // #1887 + "\377\376" + "ContrastAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 79248 + + // #1888 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 79344+ + + // #1889 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 79424+ + + // #1890 + "112,111,110" + "\377\376\375\374\373" // 79440 + + // #1891 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 79456 + + // #1892 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Color" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 79488 + + // #1893 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 79536+ + + // #1894 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 79616+ + + // #1895 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 79632 + + // #1896 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 79664 + + // #1897 + "contrast" + "\377\376\375\374\373\372\371\370" // 79680 + + // #1898 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 79728+ + + // #1899 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 79808+ + + // #1900 + "\377\376\375\374\373\372\371\370" + "224,223,222" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 79840 + + // #1901 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 79856 + + // #1902 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341" + "BackgroundNormal" + "\377" // 79904+ + + // #1903 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 79984+ + + // #1904 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 80064+ + + // #1905 + "\377\376\375\374\373\372\371\370" + "218,217,216" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 80096 + + // #1906 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 80112 + + // #1907 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 80144 + + // #1908 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 80240+ + + // #1909 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 80320+ + + // #1910 + "20,19,18" + "\377\376\375\374\373\372\371\370" // 80336 + + // #1911 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 80352 + + // #1912 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 80384 + + // #1913 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 80432+ + + // #1914 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 80512+ + + // #1915 + "136,135,134" + "\377\376\375\374\373" // 80528 + + // #1916 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 80544 + + // #1917 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 80576 + + // #1918 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 80624+ + + // #1919 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 80704+ + + // #1920 + "255,128,224" + "\377\376\375\374\373" // 80720 + + // #1921 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 80736 + + // #1922 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 80800+ + + // #1923 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 80880+ + + // #1924 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 80960+ + + // #1925 + "\377\376\375\374\373\372\371\370" + "0,87,174" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 80992 + + // #1926 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 81008 + + // #1927 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 81040 + + // #1928 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 81136+ + + // #1929 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 81216+ + + // #1930 + "\377\376\375\374\373\372\371\370" + "69,40,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 81248+ + + // #1931 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 81264 + + // #1932 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 81296 + + // #1933 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 81392+ + + // #1934 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 81472+ + + // #1935 + "191,3,3" + "\377\376\375\374\373\372\371\370\367" // 81488 + + // #1936 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 81504 + + // #1937 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 81536 + + // #1938 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 81584+ + + // #1939 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 81664+ + + // #1940 + "176,128,0" + "\377\376\375\374\373\372\371" // 81680 + + // #1941 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 81696 + + // #1942 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326" + "ForegroundNeutral" + "\377\376\375\374\373" // 81760+ + + // #1943 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 81840+ + + // #1944 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 81920+ + + // #1945 + "\377\376\375\374\373\372\371\370" + "0,110,40" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 81952 + + // #1946 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 81968 + + // #1947 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 82000 + + // #1948 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 82096+ + + // #1949 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 82176+ + + // #1950 + "\377\376\375\374\373\372\371\370" + "119,183,255" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 82208 + + // #1951 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 82224 + + // #1952 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 82256 + + // #1953 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 82352+ + + // #1954 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 82432+ + + // #1955 + "43,116,199" + "\377\376\375\374\373\372" // 82448 + + // #1956 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 82464 + + // #1957 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 82496 + + // #1958 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 82544+ + + // #1959 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 82624+ + + // #1960 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "ColorEffects:Inactive" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 82672 + + // #1961 + "\377\376\375\374\373\372\371\370" + "true" + "\377\376\375\374" // 82688 + + // #1962 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 82704 + + // #1963 + "\377\376\375\374" + "Enable" + "\377\376\375\374\373\372" // 82720 + + // #1964 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 82800+ + + // #1965 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 82880+ + + // #1966 + "0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 82896 + + // #1967 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 82928 + + // #1968 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345" + "IntensityEffect" + "\377\376\375\374\373\372" // 82976+ + + // #1969 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 83056+ + + // #1970 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 83136+ + + // #1971 + "2" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 83152 + + // #1972 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 83184 + + // #1973 + "\377\376\375\374\373\372\371\370\367\366\365" + "ColorEffect" + "\377\376\375\374\373\372\371\370\367\366" // 83216 + + // #1974 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 83312+ + + // #1975 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 83392+ + + // #1976 + "2" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 83408 + + // #1977 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 83440 + + // #1978 + "\377\376\375\374\373\372\371" + "ContrastEffect" + "\377\376\375\374\373\372\371\370\367\366\365" // 83472 + + // #1979 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 83568+ + + // #1980 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 83648+ + + // #1981 + "\377\376\375\374\373\372\371\370" + "0" + "\377\376\375\374\373\372\371" // 83664 + + // #1982 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 83696 + + // #1983 + "\377\376\375\374\373\372" + "IntensityAmount" + "\377\376\375\374\373\372\371\370\367\366\365" // 83728 + + // #1984 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 83824+ + + // #1985 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 83904+ + + // #1986 + "\377\376\375\374\373\372\371\370" + "0.025" + "\377\376\375" // 83920 + + // #1987 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 83952 + + // #1988 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352" + "ColorAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 84000+ + + // #1989 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 84080+ + + // #1990 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 84160+ + + // #1991 + "\377\376\375\374\373\372\371\370" + "0.1" + "\377\376\375\374\373" // 84176 + + // #1992 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 84208 + + // #1993 + "\377\376" + "ContrastAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 84240 + + // #1994 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 84336+ + + // #1995 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 84416+ + + // #1996 + "112,111,110" + "\377\376\375\374\373" // 84432 + + // #1997 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 84448 + + // #1998 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Color" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 84480 + + // #1999 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 84528+ + + // #2000 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 84608+ + + // #2001 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 84624 + + // #2002 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 84656 + + // #2003 + "contrast" + "\377\376\375\374\373\372\371\370" // 84672 + + // #2004 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 84720+ + + // #2005 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 84800+ + + // #2006 + "232,231,230" + "\377\376\375\374\373" // 84816 + + // #2007 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 84832 + + // #2008 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321" + "BackgroundNormal" + "\377" // 84896+ + + // #2009 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 84976+ + + // #2010 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 85056+ + + // #2011 + "\377\376\375\374\373\372\371\370" + "224,223,222" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 85088+ + + // #2012 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 85104 + + // #2013 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 85136 + + // #2014 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 85232+ + + // #2015 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 85312+ + + // #2016 + "20,19,18" + "\377\376\375\374\373\372\371\370" // 85328 + + // #2017 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 85344 + + // #2018 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 85376 + + // #2019 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 85424+ + + // #2020 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 85504+ + + // #2021 + "136,135,134" + "\377\376\375\374\373" // 85520 + + // #2022 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 85536 + + // #2023 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 85568 + + // #2024 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 85616+ + + // #2025 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 85696+ + + // #2026 + "\377\376\375\374\373\372\371\370" + "255,128,224" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 85728 + + // #2027 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 85744 + + // #2028 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 85792+ + + // #2029 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 85872+ + + // #2030 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 85952+ + + // #2031 + "\377\376\375\374\373\372\371\370" + "0,87,174" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 85984 + + // #2032 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 86000 + + // #2033 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 86032 + + // #2034 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 86128+ + + // #2035 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 86208+ + + // #2036 + "\377\376\375\374\373\372\371\370" + "69,40,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 86240+ + + // #2037 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 86256 + + // #2038 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 86288 + + // #2039 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 86384+ + + // #2040 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 86464+ + + // #2041 + "\377\376\375\374\373\372\371\370" + "191,3,3" + "\377" // 86480 + + // #2042 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 86496 + + // #2043 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 86528 + + // #2044 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 86576+ + + // #2045 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 86656+ + + // #2046 + "\377\376\375\374\373\372\371\370" + "176,128,0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 86688 + + // #2047 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 86704 + + // #2048 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346" + "ForegroundNeutral" + "\377\376\375\374\373" // 86752+ + + // #2049 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 86832+ + + // #2050 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 86912+ + + // #2051 + "0,110,40" + "\377\376\375\374\373\372\371\370" // 86928 + + // #2052 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 86944 + + // #2053 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 86976 + + // #2054 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 87024+ + + // #2055 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 87104+ + + // #2056 + "119,183,255" + "\377\376\375\374\373" // 87120 + + // #2057 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 87136 + + // #2058 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 87168 + + // #2059 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 87216+ + + // #2060 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 87296+ + + // #2061 + "\377\376\375\374\373\372\371\370" + "43,116,199" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 87328 + + // #2062 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 87344 + + // #2063 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 87376 + + // #2064 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 87472+ + + // #2065 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 87552+ + + // #2066 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "ColorEffects:Inactive" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 87600 + + // #2067 + "\377\376\375\374\373\372\371\370" + "true" + "\377\376\375\374" // 87616 + + // #2068 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 87632 + + // #2069 + "\377\376\375\374" + "Enable" + "\377\376\375\374\373\372" // 87648 + + // #2070 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 87728+ + + // #2071 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 87808+ + + // #2072 + "0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 87824 + + // #2073 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 87856 + + // #2074 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345" + "IntensityEffect" + "\377\376\375\374\373\372" // 87904+ + + // #2075 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 87984+ + + // #2076 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 88064+ + + // #2077 + "2" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 88080 + + // #2078 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 88112 + + // #2079 + "\377\376\375\374\373\372\371\370\367\366\365" + "ColorEffect" + "\377\376\375\374\373\372\371\370\367\366" // 88144 + + // #2080 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 88240+ + + // #2081 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 88320+ + + // #2082 + "2" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 88336 + + // #2083 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 88368 + + // #2084 + "\377\376\375\374\373\372\371" + "ContrastEffect" + "\377\376\375\374\373\372\371\370\367\366\365" // 88400 + + // #2085 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 88496+ + + // #2086 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 88576+ + + // #2087 + "\377\376\375\374\373\372\371\370" + "0" + "\377\376\375\374\373\372\371" // 88592 + + // #2088 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 88624 + + // #2089 + "\377\376\375\374\373\372" + "IntensityAmount" + "\377\376\375\374\373\372\371\370\367\366\365" // 88656 + + // #2090 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 88752+ + + // #2091 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 88832+ + + // #2092 + "\377\376\375\374\373\372\371\370" + "0.025" + "\377\376\375" // 88848 + + // #2093 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 88880 + + // #2094 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352" + "ColorAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 88928+ + + // #2095 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 89008+ + + // #2096 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 89088+ + + // #2097 + "\377\376\375\374\373\372\371\370" + "0.1" + "\377\376\375\374\373" // 89104 + + // #2098 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 89136 + + // #2099 + "\377\376" + "ContrastAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 89168 + + // #2100 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 89264+ + + // #2101 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 89344+ + + // #2102 + "112,111,110" + "\377\376\375\374\373" // 89360 + + // #2103 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 89376 + + // #2104 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Color" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 89408 + + // #2105 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 89456+ + + // #2106 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 89536+ + + // #2107 + "\377\376\375\374\373\372\371\370" + "true" + "\377\376\375\374" // 89552 + + // #2108 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 89568 + + // #2109 + "\377\376\375\374" + "Enable" + "\377\376\375\374\373\372" // 89584 + + // #2110 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 89648+ + + // #2111 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 89728+ + + // #2112 + "\377\376\375\374\373\372\371\370" + "true" + "\377\376\375\374" // 89744 + + // #2113 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 89760 + + // #2114 + "ChangeSelectionColor" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 89792 + + // #2115 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 89840+ + + // #2116 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 89920+ + + // #2117 + "\377\376\375\374\373\372\371\370" + "true" + "\377\376\375\374" // 89936 + + // #2118 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 89952 + + // #2119 + "\377\376\375\374" + "Enable" + "\377\376\375\374\373\372" // 89968 + + // #2120 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 90032+ + + // #2121 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 90112+ + + // #2122 + "\377\376\375\374\373\372\371\370" + "true" + "\377\376\375\374" // 90128 + + // #2123 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 90144 + + // #2124 + "ChangeSelectionColor" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 90176 + + // #2125 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 90224+ + + // #2126 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 90304+ + + // #2127 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 90320 + + // #2128 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 90352 + + // #2129 + "contrast" + "\377\376\375\374\373\372\371\370" // 90368 + + // #2130 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 90416+ + + // #2131 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 90496+ + + // #2132 + "65,139,212" + "\377\376\375\374\373\372" // 90512 + + // #2133 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 90528 + + // #2134 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321" + "BackgroundNormal" + "\377" // 90592+ + + // #2135 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 90672+ + + // #2136 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 90752+ + + // #2137 + "62,138,204" + "\377\376\375\374\373\372" // 90768 + + // #2138 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 90784 + + // #2139 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 90816 + + // #2140 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 90864+ + + // #2141 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 90944+ + + // #2142 + "255,255,255" + "\377\376\375\374\373" // 90960 + + // #2143 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 90976 + + // #2144 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 91008 + + // #2145 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 91056+ + + // #2146 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 91136+ + + // #2147 + "165,193,228" + "\377\376\375\374\373" // 91152 + + // #2148 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 91168 + + // #2149 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 91200 + + // #2150 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 91248+ + + // #2151 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 91328+ + + // #2152 + "\377\376\375\374\373\372\371\370" + "255,128,224" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 91360 + + // #2153 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 91376 + + // #2154 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 91424+ + + // #2155 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 91504+ + + // #2156 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 91584+ + + // #2157 + "\377\376\375\374\373\372\371\370" + "0,49,110" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 91616 + + // #2158 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 91632 + + // #2159 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 91664 + + // #2160 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 91760+ + + // #2161 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 91840+ + + // #2162 + "69,40,134" + "\377\376\375\374\373\372\371" // 91856 + + // #2163 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 91872 + + // #2164 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 91904 + + // #2165 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 91952+ + + // #2166 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 92032+ + + // #2167 + "156,14,14" + "\377\376\375\374\373\372\371" // 92048 + + // #2168 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 92064 + + // #2169 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 92096 + + // #2170 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 92144+ + + // #2171 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 92224+ + + // #2172 + "\377\376\375\374\373\372\371\370" + "255,221,0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 92256 + + // #2173 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 92272 + + // #2174 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346" + "ForegroundNeutral" + "\377\376\375\374\373" // 92320+ + + // #2175 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 92400+ + + // #2176 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 92480+ + + // #2177 + "\377\376\375\374\373\372\371\370" + "128,255,128" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 92512 + + // #2178 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 92528 + + // #2179 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 92560 + + // #2180 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 92656+ + + // #2181 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 92736+ + + // #2182 + "119,183,255" + "\377\376\375\374\373" // 92752 + + // #2183 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 92768 + + // #2184 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 92800 + + // #2185 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 92848+ + + // #2186 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 92928+ + + // #2187 + "\377\376\375\374\373\372\371\370" + "43,116,199" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 92960 + + // #2188 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 92976 + + // #2189 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 93008 + + // #2190 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 93104+ + + // #2191 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 93184+ + + // #2192 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 93200 + + // #2193 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 93232 + + // #2194 + "contrast" + "\377\376\375\374\373\372\371\370" // 93248 + + // #2195 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 93296+ + + // #2196 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 93376+ + + // #2197 + "\377\376\375\374\373\372\371\370" + "224,223,222" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 93408 + + // #2198 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 93424 + + // #2199 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341" + "BackgroundNormal" + "\377" // 93472+ + + // #2200 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 93552+ + + // #2201 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 93632+ + + // #2202 + "\377\376\375\374\373\372\371\370" + "218,217,216" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 93664 + + // #2203 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 93680 + + // #2204 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 93712 + + // #2205 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 93808+ + + // #2206 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 93888+ + + // #2207 + "20,19,18" + "\377\376\375\374\373\372\371\370" // 93904 + + // #2208 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 93920 + + // #2209 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 93952 + + // #2210 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 94000+ + + // #2211 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 94080+ + + // #2212 + "136,135,134" + "\377\376\375\374\373" // 94096 + + // #2213 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 94112 + + // #2214 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 94144 + + // #2215 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 94192+ + + // #2216 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 94272+ + + // #2217 + "255,128,224" + "\377\376\375\374\373" // 94288 + + // #2218 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 94304 + + // #2219 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 94368+ + + // #2220 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 94448+ + + // #2221 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 94528+ + + // #2222 + "\377\376\375\374\373\372\371\370" + "0,87,174" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 94560 + + // #2223 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 94576 + + // #2224 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 94608 + + // #2225 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 94704+ + + // #2226 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 94784+ + + // #2227 + "\377\376\375\374\373\372\371\370" + "69,40,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 94816+ + + // #2228 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 94832 + + // #2229 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 94864 + + // #2230 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 94960+ + + // #2231 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 95040+ + + // #2232 + "191,3,3" + "\377\376\375\374\373\372\371\370\367" // 95056 + + // #2233 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 95072 + + // #2234 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 95104 + + // #2235 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 95152+ + + // #2236 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 95232+ + + // #2237 + "176,128,0" + "\377\376\375\374\373\372\371" // 95248 + + // #2238 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 95264 + + // #2239 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326" + "ForegroundNeutral" + "\377\376\375\374\373" // 95328+ + + // #2240 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 95408+ + + // #2241 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 95488+ + + // #2242 + "\377\376\375\374\373\372\371\370" + "0,110,40" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 95520 + + // #2243 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 95536 + + // #2244 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 95568 + + // #2245 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 95664+ + + // #2246 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 95744+ + + // #2247 + "\377\376\375\374\373\372\371\370" + "119,183,255" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 95776 + + // #2248 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 95792 + + // #2249 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 95824 + + // #2250 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 95920+ + + // #2251 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 96000+ + + // #2252 + "43,116,199" + "\377\376\375\374\373\372" // 96016 + + // #2253 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 96032 + + // #2254 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 96064 + + // #2255 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 96112+ + + // #2256 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 96192+ + + // #2257 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "ColorEffects:Inactive" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 96240 + + // #2258 + "\377\376\375\374\373\372\371\370" + "true" + "\377\376\375\374" // 96256 + + // #2259 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 96272 + + // #2260 + "\377\376\375\374" + "Enable" + "\377\376\375\374\373\372" // 96288 + + // #2261 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 96368+ + + // #2262 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 96448+ + + // #2263 + "0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 96464 + + // #2264 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 96496 + + // #2265 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345" + "IntensityEffect" + "\377\376\375\374\373\372" // 96544+ + + // #2266 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 96624+ + + // #2267 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 96704+ + + // #2268 + "2" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 96720 + + // #2269 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 96752 + + // #2270 + "\377\376\375\374\373\372\371\370\367\366\365" + "ColorEffect" + "\377\376\375\374\373\372\371\370\367\366" // 96784 + + // #2271 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 96880+ + + // #2272 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 96960+ + + // #2273 + "2" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 96976 + + // #2274 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 97008 + + // #2275 + "\377\376\375\374\373\372\371" + "ContrastEffect" + "\377\376\375\374\373\372\371\370\367\366\365" // 97040 + + // #2276 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 97136+ + + // #2277 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 97216+ + + // #2278 + "\377\376\375\374\373\372\371\370" + "0" + "\377\376\375\374\373\372\371" // 97232 + + // #2279 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 97264 + + // #2280 + "\377\376\375\374\373\372" + "IntensityAmount" + "\377\376\375\374\373\372\371\370\367\366\365" // 97296 + + // #2281 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 97392+ + + // #2282 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 97472+ + + // #2283 + "\377\376\375\374\373\372\371\370" + "0.025" + "\377\376\375" // 97488 + + // #2284 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 97520 + + // #2285 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352" + "ColorAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 97568+ + + // #2286 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 97648+ + + // #2287 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 97728+ + + // #2288 + "\377\376\375\374\373\372\371\370" + "0.1" + "\377\376\375\374\373" // 97744 + + // #2289 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 97776 + + // #2290 + "\377\376" + "ContrastAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 97808 + + // #2291 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 97904+ + + // #2292 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 97984+ + + // #2293 + "112,111,110" + "\377\376\375\374\373" // 98000 + + // #2294 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 98016 + + // #2295 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Color" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 98048 + + // #2296 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 98096+ + + // #2297 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 98176+ + + // #2298 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 98192 + + // #2299 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 98224 + + // #2300 + "contrast" + "\377\376\375\374\373\372\371\370" // 98240 + + // #2301 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 98288+ + + // #2302 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 98368+ + + // #2303 + "255,255,255" + "\377\376\375\374\373" // 98384 + + // #2304 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 98400 + + // #2305 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321" + "BackgroundNormal" + "\377" // 98464+ + + // #2306 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 98544+ + + // #2307 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 98624+ + + // #2308 + "\377\376\375\374\373\372\371\370" + "248,247,246" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 98656+ + + // #2309 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 98672 + + // #2310 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 98704 + + // #2311 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 98800+ + + // #2312 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 98880+ + + // #2313 + "20,19,18" + "\377\376\375\374\373\372\371\370" // 98896 + + // #2314 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 98912 + + // #2315 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 98944 + + // #2316 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 98992+ + + // #2317 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 99072+ + + // #2318 + "\377\376\375\374\373\372\371\370" + "136,135,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 99104 + + // #2319 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 99120 + + // #2320 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 99152 + + // #2321 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 99248+ + + // #2322 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 99328+ + + // #2323 + "255,128,224" + "\377\376\375\374\373" // 99344 + + // #2324 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 99360 + + // #2325 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 99424+ + + // #2326 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 99504+ + + // #2327 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 99584+ + + // #2328 + "\377\376\375\374\373\372\371\370" + "0,87,174" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 99616 + + // #2329 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 99632 + + // #2330 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 99664 + + // #2331 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 99760+ + + // #2332 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 99840+ + + // #2333 + "\377\376\375\374\373\372\371\370" + "69,40,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 99872+ + + // #2334 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 99888 + + // #2335 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 99920 + + // #2336 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 100016+ + + // #2337 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 100096+ + + // #2338 + "\377\376\375\374\373\372\371\370" + "191,3,3" + "\377" // 100112 + + // #2339 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 100128 + + // #2340 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 100160 + + // #2341 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 100208+ + + // #2342 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 100288+ + + // #2343 + "\377\376\375\374\373\372\371\370" + "176,128,0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 100320+ + + // #2344 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 100336 + + // #2345 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346" + "ForegroundNeutral" + "\377\376\375\374\373" // 100384+ + + // #2346 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 100464+ + + // #2347 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 100544+ + + // #2348 + "0,110,40" + "\377\376\375\374\373\372\371\370" // 100560 + + // #2349 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 100576 + + // #2350 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 100608 + + // #2351 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 100656+ + + // #2352 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 100736+ + + // #2353 + "\377\376\375\374\373\372\371\370" + "119,183,255" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 100768 + + // #2354 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 100784 + + // #2355 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 100816 + + // #2356 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 100912+ + + // #2357 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 100992+ + + // #2358 + "43,116,199" + "\377\376\375\374\373\372" // 101008 + + // #2359 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 101024 + + // #2360 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 101056 + + // #2361 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 101104+ + + // #2362 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 101184+ + + // #2363 + "\377\376\375\374\373\372\371\370" + "ColorEffects:Disabled" + "\377\376\375" // 101216 + + // #2364 + "\377\376\375\374\373\372\371\370" + "2" + "\377\376\375\374\373\372\371" // 101232 + + // #2365 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 101264 + + // #2366 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305" + "IntensityEffect" + "\377\376\375\374\373\372" // 101344+ + + // #2367 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 101424+ + + // #2368 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 101504+ + + // #2369 + "0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 101520 + + // #2370 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 101552 + + // #2371 + "\377\376\375\374\373\372\371\370\367\366\365" + "ColorEffect" + "\377\376\375\374\373\372\371\370\367\366" // 101584 + + // #2372 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 101680+ + + // #2373 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 101760+ + + // #2374 + "\377\376\375\374\373\372\371\370" + "1" + "\377\376\375\374\373\372\371" // 101776 + + // #2375 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 101808 + + // #2376 + "\377\376\375\374\373\372\371" + "ContrastEffect" + "\377\376\375\374\373\372\371\370\367\366\365" // 101840 + + // #2377 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 101936+ + + // #2378 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 102016+ + + // #2379 + "0.1" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 102032 + + // #2380 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 102064 + + // #2381 + "\377\376\375\374\373\372" + "IntensityAmount" + "\377\376\375\374\373\372\371\370\367\366\365" // 102096 + + // #2382 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 102192+ + + // #2383 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 102272+ + + // #2384 + "\377\376\375\374\373\372\371\370" + "0" + "\377\376\375\374\373\372\371" // 102288 + + // #2385 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 102320 + + // #2386 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352" + "ColorAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 102368+ + + // #2387 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 102448+ + + // #2388 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 102528+ + + // #2389 + "0.65" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 102544 + + // #2390 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 102576 + + // #2391 + "\377\376" + "ContrastAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 102608 + + // #2392 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 102704+ + + // #2393 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 102784+ + + // #2394 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 102800 + + // #2395 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 102832 + + // #2396 + "contrast" + "\377\376\375\374\373\372\371\370" // 102848 + + // #2397 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 102896+ + + // #2398 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 102976+ + + // #2399 + "\377\376\375\374\373\372\371\370" + "224,223,222" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 103008 + + // #2400 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 103024 + + // #2401 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341" + "BackgroundNormal" + "\377" // 103072+ + + // #2402 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 103152+ + + // #2403 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 103232+ + + // #2404 + "\377\376\375\374\373\372\371\370" + "218,217,216" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 103264 + + // #2405 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 103280 + + // #2406 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 103312 + + // #2407 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 103408+ + + // #2408 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 103488+ + + // #2409 + "20,19,18" + "\377\376\375\374\373\372\371\370" // 103504 + + // #2410 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 103520 + + // #2411 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 103552 + + // #2412 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 103600+ + + // #2413 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 103680+ + + // #2414 + "136,135,134" + "\377\376\375\374\373" // 103696 + + // #2415 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 103712 + + // #2416 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 103744 + + // #2417 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 103792+ + + // #2418 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 103872+ + + // #2419 + "255,128,224" + "\377\376\375\374\373" // 103888 + + // #2420 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 103904 + + // #2421 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 103968+ + + // #2422 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 104048+ + + // #2423 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 104128+ + + // #2424 + "\377\376\375\374\373\372\371\370" + "0,87,174" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 104160 + + // #2425 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 104176 + + // #2426 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 104208 + + // #2427 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 104304+ + + // #2428 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 104384+ + + // #2429 + "\377\376\375\374\373\372\371\370" + "69,40,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 104416+ + + // #2430 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 104432 + + // #2431 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 104464 + + // #2432 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 104560+ + + // #2433 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 104640+ + + // #2434 + "191,3,3" + "\377\376\375\374\373\372\371\370\367" // 104656 + + // #2435 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 104672 + + // #2436 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 104704 + + // #2437 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 104752+ + + // #2438 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 104832+ + + // #2439 + "176,128,0" + "\377\376\375\374\373\372\371" // 104848 + + // #2440 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 104864 + + // #2441 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326" + "ForegroundNeutral" + "\377\376\375\374\373" // 104928+ + + // #2442 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 105008+ + + // #2443 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 105088+ + + // #2444 + "\377\376\375\374\373\372\371\370" + "0,110,40" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 105120 + + // #2445 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 105136 + + // #2446 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 105168 + + // #2447 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 105264+ + + // #2448 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 105344+ + + // #2449 + "\377\376\375\374\373\372\371\370" + "119,183,255" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 105376 + + // #2450 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 105392 + + // #2451 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 105424 + + // #2452 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 105520+ + + // #2453 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 105600+ + + // #2454 + "43,116,199" + "\377\376\375\374\373\372" // 105616 + + // #2455 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 105632 + + // #2456 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 105664 + + // #2457 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 105712+ + + // #2458 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 105792+ + + // #2459 + "\377\376\375\374\373\372\371\370" + "ColorEffects:Disabled" + "\377\376\375" // 105824 + + // #2460 + "\377\376\375\374\373\372\371\370" + "2" + "\377\376\375\374\373\372\371" // 105840 + + // #2461 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 105872 + + // #2462 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305" + "IntensityEffect" + "\377\376\375\374\373\372" // 105952+ + + // #2463 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 106032+ + + // #2464 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 106112+ + + // #2465 + "0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 106128 + + // #2466 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 106160 + + // #2467 + "\377\376\375\374\373\372\371\370\367\366\365" + "ColorEffect" + "\377\376\375\374\373\372\371\370\367\366" // 106192 + + // #2468 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 106288+ + + // #2469 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 106368+ + + // #2470 + "\377\376\375\374\373\372\371\370" + "1" + "\377\376\375\374\373\372\371" // 106384 + + // #2471 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 106416 + + // #2472 + "\377\376\375\374\373\372\371" + "ContrastEffect" + "\377\376\375\374\373\372\371\370\367\366\365" // 106448 + + // #2473 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 106544+ + + // #2474 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 106624+ + + // #2475 + "0.1" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 106640 + + // #2476 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 106672 + + // #2477 + "\377\376\375\374\373\372" + "IntensityAmount" + "\377\376\375\374\373\372\371\370\367\366\365" // 106704 + + // #2478 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 106800+ + + // #2479 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 106880+ + + // #2480 + "\377\376\375\374\373\372\371\370" + "0" + "\377\376\375\374\373\372\371" // 106896 + + // #2481 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 106928 + + // #2482 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352" + "ColorAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 106976+ + + // #2483 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 107056+ + + // #2484 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 107136+ + + // #2485 + "0.65" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 107152 + + // #2486 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 107184 + + // #2487 + "\377\376" + "ContrastAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 107216 + + // #2488 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 107312+ + + // #2489 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 107392+ + + // #2490 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 107408 + + // #2491 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 107440 + + // #2492 + "contrast" + "\377\376\375\374\373\372\371\370" // 107456 + + // #2493 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 107504+ + + // #2494 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 107584+ + + // #2495 + "232,231,230" + "\377\376\375\374\373" // 107600 + + // #2496 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 107616 + + // #2497 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321" + "BackgroundNormal" + "\377" // 107680+ + + // #2498 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 107760+ + + // #2499 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 107840+ + + // #2500 + "\377\376\375\374\373\372\371\370" + "224,223,222" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 107872+ + + // #2501 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 107888 + + // #2502 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 107920 + + // #2503 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 108016+ + + // #2504 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 108096+ + + // #2505 + "20,19,18" + "\377\376\375\374\373\372\371\370" // 108112 + + // #2506 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 108128 + + // #2507 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 108160 + + // #2508 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 108208+ + + // #2509 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 108288+ + + // #2510 + "136,135,134" + "\377\376\375\374\373" // 108304 + + // #2511 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 108320 + + // #2512 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 108352 + + // #2513 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 108400+ + + // #2514 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 108480+ + + // #2515 + "\377\376\375\374\373\372\371\370" + "255,128,224" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 108512 + + // #2516 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 108528 + + // #2517 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 108576+ + + // #2518 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 108656+ + + // #2519 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 108736+ + + // #2520 + "\377\376\375\374\373\372\371\370" + "0,87,174" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 108768 + + // #2521 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 108784 + + // #2522 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 108816 + + // #2523 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 108912+ + + // #2524 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 108992+ + + // #2525 + "\377\376\375\374\373\372\371\370" + "69,40,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 109024+ + + // #2526 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 109040 + + // #2527 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 109072 + + // #2528 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 109168+ + + // #2529 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 109248+ + + // #2530 + "\377\376\375\374\373\372\371\370" + "191,3,3" + "\377" // 109264 + + // #2531 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 109280 + + // #2532 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 109312 + + // #2533 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 109360+ + + // #2534 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 109440+ + + // #2535 + "\377\376\375\374\373\372\371\370" + "176,128,0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 109472 + + // #2536 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 109488 + + // #2537 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346" + "ForegroundNeutral" + "\377\376\375\374\373" // 109536+ + + // #2538 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 109616+ + + // #2539 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 109696+ + + // #2540 + "0,110,40" + "\377\376\375\374\373\372\371\370" // 109712 + + // #2541 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 109728 + + // #2542 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 109760 + + // #2543 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 109808+ + + // #2544 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 109888+ + + // #2545 + "119,183,255" + "\377\376\375\374\373" // 109904 + + // #2546 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 109920 + + // #2547 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 109952 + + // #2548 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 110000+ + + // #2549 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 110080+ + + // #2550 + "\377\376\375\374\373\372\371\370" + "43,116,199" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 110112 + + // #2551 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 110128 + + // #2552 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 110160 + + // #2553 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 110256+ + + // #2554 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 110336+ + + // #2555 + "\377\376\375\374\373\372\371\370" + "ColorEffects:Disabled" + "\377\376\375" // 110368 + + // #2556 + "\377\376\375\374\373\372\371\370" + "2" + "\377\376\375\374\373\372\371" // 110384 + + // #2557 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 110416 + + // #2558 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305" + "IntensityEffect" + "\377\376\375\374\373\372" // 110496+ + + // #2559 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 110576+ + + // #2560 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 110656+ + + // #2561 + "0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 110672 + + // #2562 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 110704 + + // #2563 + "\377\376\375\374\373\372\371\370\367\366\365" + "ColorEffect" + "\377\376\375\374\373\372\371\370\367\366" // 110736 + + // #2564 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 110832+ + + // #2565 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 110912+ + + // #2566 + "\377\376\375\374\373\372\371\370" + "1" + "\377\376\375\374\373\372\371" // 110928 + + // #2567 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 110960 + + // #2568 + "\377\376\375\374\373\372\371" + "ContrastEffect" + "\377\376\375\374\373\372\371\370\367\366\365" // 110992 + + // #2569 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 111088+ + + // #2570 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 111168+ + + // #2571 + "0.1" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 111184 + + // #2572 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 111216 + + // #2573 + "\377\376\375\374\373\372" + "IntensityAmount" + "\377\376\375\374\373\372\371\370\367\366\365" // 111248 + + // #2574 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 111344+ + + // #2575 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 111424+ + + // #2576 + "\377\376\375\374\373\372\371\370" + "0" + "\377\376\375\374\373\372\371" // 111440 + + // #2577 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 111472 + + // #2578 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352" + "ColorAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 111520+ + + // #2579 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 111600+ + + // #2580 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 111680+ + + // #2581 + "0.65" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 111696 + + // #2582 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 111728 + + // #2583 + "\377\376" + "ContrastAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 111760 + + // #2584 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 111856+ + + // #2585 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 111936+ + + // #2586 + "\377\376\375\374\373\372\371\370" + "true" + "\377\376\375\374" // 111952 + + // #2587 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 111968 + + // #2588 + "\377\376\375\374" + "Enable" + "\377\376\375\374\373\372" // 111984 + + // #2589 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 112048+ + + // #2590 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 112128+ + + // #2591 + "\377\376\375\374\373\372\371\370" + "true" + "\377\376\375\374" // 112144 + + // #2592 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 112160 + + // #2593 + "ChangeSelectionColor" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 112192 + + // #2594 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 112240+ + + // #2595 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 112320+ + + // #2596 + "7" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 112336 + + // #2597 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 112368 + + // #2598 + "contrast" + "\377\376\375\374\373\372\371\370" // 112384 + + // #2599 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 112432+ + + // #2600 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 112512+ + + // #2601 + "\377\376\375\374\373\372\371\370" + "224,223,222" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 112544 + + // #2602 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 112560 + + // #2603 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341" + "BackgroundNormal" + "\377" // 112608+ + + // #2604 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 112688+ + + // #2605 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 112768+ + + // #2606 + "\377\376\375\374\373\372\371\370" + "218,217,216" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 112800 + + // #2607 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 112816 + + // #2608 + "BackgroundAlternate" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 112848 + + // #2609 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 112944+ + + // #2610 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 113024+ + + // #2611 + "20,19,18" + "\377\376\375\374\373\372\371\370" // 113040 + + // #2612 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 113056 + + // #2613 + "\377" + "ForegroundNormal" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 113088 + + // #2614 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 113136+ + + // #2615 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 113216+ + + // #2616 + "136,135,134" + "\377\376\375\374\373" // 113232 + + // #2617 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 113248 + + // #2618 + "\377\376" + "ForegroundInactive" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 113280 + + // #2619 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 113328+ + + // #2620 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 113408+ + + // #2621 + "255,128,224" + "\377\376\375\374\373" // 113424 + + // #2622 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 113440 + + // #2623 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333" + "ForegroundActive" + "\377\376\375\374\373\372\371\370\367\366\365" // 113504+ + + // #2624 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 113584+ + + // #2625 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 113664+ + + // #2626 + "\377\376\375\374\373\372\371\370" + "0,87,174" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 113696 + + // #2627 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 113712 + + // #2628 + "\377\376\375\374\373\372" + "ForegroundLink" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 113744 + + // #2629 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 113840+ + + // #2630 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 113920+ + + // #2631 + "\377\376\375\374\373\372\371\370" + "69,40,134" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 113952+ + + // #2632 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 113968 + + // #2633 + "\377\376\375\374\373" + "ForegroundVisited" + "\377\376\375\374\373\372\371\370\367\366" // 114000 + + // #2634 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 114096+ + + // #2635 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 114176+ + + // #2636 + "191,3,3" + "\377\376\375\374\373\372\371\370\367" // 114192 + + // #2637 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 114208 + + // #2638 + "\377\376\375\374\373\372\371" + "ForegroundNegative" + "\377\376\375\374\373\372\371" // 114240 + + // #2639 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 114288+ + + // #2640 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 114368+ + + // #2641 + "176,128,0" + "\377\376\375\374\373\372\371" // 114384 + + // #2642 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 114400 + + // #2643 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326" + "ForegroundNeutral" + "\377\376\375\374\373" // 114464+ + + // #2644 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 114544+ + + // #2645 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 114624+ + + // #2646 + "\377\376\375\374\373\372\371\370" + "0,110,40" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 114656 + + // #2647 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 114672 + + // #2648 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "ForegroundPositive" + "\377\376" // 114704 + + // #2649 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 114800+ + + // #2650 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 114880+ + + // #2651 + "\377\376\375\374\373\372\371\370" + "119,183,255" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 114912 + + // #2652 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 114928 + + // #2653 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationHover" + "\377\376" // 114960 + + // #2654 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 115056+ + + // #2655 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 115136+ + + // #2656 + "43,116,199" + "\377\376\375\374\373\372" // 115152 + + // #2657 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 115168 + + // #2658 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "DecorationFocus" + "\377\376" // 115200 + + // #2659 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 115248+ + + // #2660 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 115328+ + + // #2661 + "\377\376\375\374\373\372\371\370" + "ColorEffects:Disabled" + "\377\376\375" // 115360 + + // #2662 + "\377\376\375\374\373\372\371\370" + "2" + "\377\376\375\374\373\372\371" // 115376 + + // #2663 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 115408 + + // #2664 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305" + "IntensityEffect" + "\377\376\375\374\373\372" // 115488+ + + // #2665 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 115568+ + + // #2666 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 115648+ + + // #2667 + "0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 115664 + + // #2668 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 115696 + + // #2669 + "\377\376\375\374\373\372\371\370\367\366\365" + "ColorEffect" + "\377\376\375\374\373\372\371\370\367\366" // 115728 + + // #2670 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 115824+ + + // #2671 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 115904+ + + // #2672 + "\377\376\375\374\373\372\371\370" + "1" + "\377\376\375\374\373\372\371" // 115920 + + // #2673 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "int" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 115952 + + // #2674 + "\377\376\375\374\373\372\371" + "ContrastEffect" + "\377\376\375\374\373\372\371\370\367\366\365" // 115984 + + // #2675 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 116080+ + + // #2676 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 116160+ + + // #2677 + "0.1" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 116176 + + // #2678 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 116208 + + // #2679 + "\377\376\375\374\373\372" + "IntensityAmount" + "\377\376\375\374\373\372\371\370\367\366\365" // 116240 + + // #2680 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 116336+ + + // #2681 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 116416+ + + // #2682 + "\377\376\375\374\373\372\371\370" + "0" + "\377\376\375\374\373\372\371" // 116432 + + // #2683 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 116464 + + // #2684 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352" + "ColorAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 116512+ + + // #2685 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 116592+ + + // #2686 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 116672+ + + // #2687 + "0.65" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 116688 + + // #2688 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 116720 + + // #2689 + "\377\376" + "ContrastAmount" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 116752 + + // #2690 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 116848+ + + // #2691 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 116928+ + + // #2692 + "\377\376\375" + "oxygen" + "\377\376\375\374\373\372\371" // 116944 + + // #2693 + "\377\376\375\374\373\372" + "wacomcfg" + "\377\376" // 116960 + + // #2694 + "\377\376\375\374" + "lib" + "\377\376\375\374\373\372\371\370\367" // 116976 + + // #2695 + "\377\376\375\374\373\372\371\370" + ".so.%1" + "\377\376" // 116992 + + // #2696 + "\377\376\375" + "Cannot load library %1: %2" + "\377\376\375" // 117024+ + + // #2697 + "\377\376\375\374" + "Desktop" + "\377\376\375\374\373" // 117040 + + // #2698 + "\377\376" + "Toolbar" + "\377\376\375\374\373\372\371" // 117056 + + // #2699 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "MainToolbar" + "\377\376\375\374\373\372\371\370\367" // 117088 + + // #2700 + "\377\376\375\374\373\372\371\370" + "Small" + "\377\376\375" // 117104 + + // #2701 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" + "Panel" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 117136 + + // #2702 + "\377\376\375" + "Dialog" + "\377\376\375\374\373\372\371" // 117152 + + // #2703 + "Default" + "\377\376\375\374\373\372\371\370\367" // 117168 + + // #2704 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341" + "Active" + "\377\376\375\374\373\372\371\370\367\366\365" // 117216+ + + // #2705 + "\377\376\375\374\373" + "Disabled" + "\377\376\375" // 117232 + + // #2706 + "\377\376\375\374" + "togray" + "\377\376\375\374\373\372" // 117248 + + // #2707 + "\377\376\375\374\373\372\371\370\367\366\365" + "colorize" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 117280+ + + // #2708 + "\377\376\375\374" + "desaturate" + "\377\376" // 117296 + + // #2709 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "togamma" + "\377\376\375\374\373\372\371\370\367\366" // 117328 + + // #2710 + "\377\376\375\374\373" + "none" + "\377\376\375\374\373\372\371" // 117344 + + // #2711 + "\377\376\375\374\373\372\371" + "tomonochrome" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 117376 + + // #2712 + "\377\376\375\374\373\372\371\370\367" + "Icons" + "\377\376" // 117392 + + // #2713 + "Effect" + "\377\376\375\374\373\372\371\370\367\366" // 117408 + + // #2714 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322" + "Value" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 117472+ + + // #2715 + "1" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 117488 + + // #2716 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 117520 + + // #2717 + "DefaultValue" + "\377\376\375\374" // 117536 + + // #2718 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 117616+ + + // #2719 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 117696+ + + // #2720 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Color" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 117728 + + // #2721 + "\377\376\375\374\373\372\371\370" + "144,128,248" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 117760 + + // #2722 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 117776 + + // #2723 + "\377\376\375\374\373\372\371\370" + "DefaultColor" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 117808 + + // #2724 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 117872+ + + // #2725 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 117952+ + + // #2726 + "\377\376\375\374" + "Color2" + "\377\376\375\374\373\372" // 117968 + + // #2727 + "0,0,0" + "\377\376\375\374\373\372\371\370\367\366\365" // 117984 + + // #2728 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 118000 + + // #2729 + "\377\376\375\374\373\372\371\370" + "DefaultColor2" + "\377\376\375\374\373\372\371\370\367\366\365" // 118032 + + // #2730 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 118128+ + + // #2731 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 118208+ + + // #2732 + "\377\376\375\374\373\372\371\370\367\366\365" + "SemiTransparent" + "\377\376\375\374\373\372" // 118240 + + // #2733 + "false" + "\377\376\375\374\373\372\371\370\367\366\365" // 118256 + + // #2734 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 118272 + + // #2735 + "DefaultSemiTransparent" + "\377\376\375\374\373\372\371\370\367\366" // 118304 + + // #2736 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 118384+ + + // #2737 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 118464+ + + // #2738 + "Effect" + "\377\376\375\374\373\372\371\370\367\366" // 118480 + + // #2739 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305\304\303\302" + "Value" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 118560+ + + // #2740 + "\377\376\375\374\373\372\371\370" + "0.7" + "\377\376\375\374\373" // 118576 + + // #2741 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 118608 + + // #2742 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310" + "ActiveValue" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 118688+ + + // #2743 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 118768+ + + // #2744 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 118848+ + + // #2745 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Color" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 118880 + + // #2746 + "169,156,255" + "\377\376\375\374\373" // 118896 + + // #2747 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 118912 + + // #2748 + "ActiveColor" + "\377\376\375\374\373" // 118928 + + // #2749 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 119024+ + + // #2750 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 119104+ + + // #2751 + "\377\376\375\374" + "Color2" + "\377\376\375\374\373\372" // 119120 + + // #2752 + "\377\376\375\374\373\372\371\370" + "0,0,0" + "\377\376\375" // 119136 + + // #2753 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 119152 + + // #2754 + "\377\376\375\374\373\372\371\370" + "ActiveColor2" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 119184 + + // #2755 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 119280+ + + // #2756 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 119360+ + + // #2757 + "\377\376\375\374\373\372\371\370\367\366\365" + "SemiTransparent" + "\377\376\375\374\373\372" // 119392 + + // #2758 + "false" + "\377\376\375\374\373\372\371\370\367\366\365" // 119408 + + // #2759 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 119424 + + // #2760 + "ActiveSemiTransparent" + "\377\376\375\374\373\372\371\370\367\366\365" // 119456 + + // #2761 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 119536+ + + // #2762 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 119616+ + + // #2763 + "Effect" + "\377\376\375\374\373\372\371\370\367\366" // 119632 + + // #2764 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305\304\303\302" + "Value" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 119712+ + + // #2765 + "\377\376\375\374\373\372\371\370" + "1" + "\377\376\375\374\373\372\371" // 119728 + + // #2766 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 119760 + + // #2767 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310" + "DisabledValue" + "\377\376\375\374\373\372\371\370\367\366\365" // 119840+ + + // #2768 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 119920+ + + // #2769 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 120000+ + + // #2770 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Color" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 120032 + + // #2771 + "\377\376\375\374\373\372\371\370" + "34,202,0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 120064 + + // #2772 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 120080 + + // #2773 + "\377\376\375\374\373\372\371\370" + "DisabledColor" + "\377\376\375\374\373\372\371\370\367\366\365" // 120112 + + // #2774 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 120176+ + + // #2775 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 120256+ + + // #2776 + "\377\376\375\374" + "Color2" + "\377\376\375\374\373\372" // 120272 + + // #2777 + "0,0,0" + "\377\376\375\374\373\372\371\370\367\366\365" // 120288 + + // #2778 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 120304 + + // #2779 + "\377\376\375\374\373\372\371\370" + "DisabledColor2" + "\377\376\375\374\373\372\371\370\367\366" // 120336 + + // #2780 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 120432+ + + // #2781 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 120512+ + + // #2782 + "\377\376\375\374\373\372\371\370\367\366\365" + "SemiTransparent" + "\377\376\375\374\373\372" // 120544 + + // #2783 + "\377\376\375\374\373\372\371\370" + "true" + "\377\376\375\374" // 120560 + + // #2784 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 120576 + + // #2785 + "DisabledSemiTransparent" + "\377\376\375\374\373\372\371\370\367" // 120608 + + // #2786 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 120688+ + + // #2787 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 120768+ + + // #2788 + "\377\376\375\374\373\372\371\370\367" + "Icons" + "\377\376" // 120784 + + // #2789 + "Effect" + "\377\376\375\374\373\372\371\370\367\366" // 120800 + + // #2790 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322" + "Value" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 120864+ + + // #2791 + "\377\376\375\374\373\372\371\370" + "1" + "\377\376\375\374\373\372\371" // 120880 + + // #2792 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 120912 + + // #2793 + "DefaultValue" + "\377\376\375\374" // 120928 + + // #2794 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 121008+ + + // #2795 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 121088+ + + // #2796 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Color" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 121120 + + // #2797 + "\377\376\375\374\373\372\371\370" + "144,128,248" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 121152 + + // #2798 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 121168 + + // #2799 + "DefaultColor" + "\377\376\375\374" // 121184 + + // #2800 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 121264+ + + // #2801 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 121344+ + + // #2802 + "\377\376\375\374" + "Color2" + "\377\376\375\374\373\372" // 121360 + + // #2803 + "0,0,0" + "\377\376\375\374\373\372\371\370\367\366\365" // 121376 + + // #2804 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 121392 + + // #2805 + "\377\376\375\374\373\372\371\370" + "DefaultColor2" + "\377\376\375\374\373\372\371\370\367\366\365" // 121424 + + // #2806 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 121520+ + + // #2807 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 121600+ + + // #2808 + "\377\376\375\374\373\372\371\370\367\366\365" + "SemiTransparent" + "\377\376\375\374\373\372" // 121632 + + // #2809 + "false" + "\377\376\375\374\373\372\371\370\367\366\365" // 121648 + + // #2810 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 121664 + + // #2811 + "\377\376\375\374\373\372\371\370" + "DefaultSemiTransparent" + "\377\376" // 121696 + + // #2812 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 121776+ + + // #2813 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 121856+ + + // #2814 + "Effect" + "\377\376\375\374\373\372\371\370\367\366" // 121872 + + // #2815 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305\304\303\302" + "Value" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 121952+ + + // #2816 + "\377\376\375\374\373\372\371\370" + "1" + "\377\376\375\374\373\372\371" // 121968 + + // #2817 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 122000 + + // #2818 + "\377\376\375\374\373\372\371\370" + "ActiveValue" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 122032 + + // #2819 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 122096+ + + // #2820 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 122176+ + + // #2821 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Color" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 122208 + + // #2822 + "169,156,255" + "\377\376\375\374\373" // 122224 + + // #2823 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 122240 + + // #2824 + "\377\376\375\374\373\372\371\370" + "ActiveColor" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 122272+ + + // #2825 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 122352+ + + // #2826 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 122432+ + + // #2827 + "\377\376\375\374" + "Color2" + "\377\376\375\374\373\372" // 122448 + + // #2828 + "0,0,0" + "\377\376\375\374\373\372\371\370\367\366\365" // 122464 + + // #2829 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 122480 + + // #2830 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350" + "ActiveColor2" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 122528+ + + // #2831 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 122608+ + + // #2832 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 122688+ + + // #2833 + "\377\376\375\374\373\372\371\370\367\366\365" + "SemiTransparent" + "\377\376\375\374\373\372" // 122720 + + // #2834 + "false" + "\377\376\375\374\373\372\371\370\367\366\365" // 122736 + + // #2835 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 122752 + + // #2836 + "\377\376\375\374\373\372\371\370" + "ActiveSemiTransparent" + "\377\376\375" // 122784 + + // #2837 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 122864+ + + // #2838 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 122944+ + + // #2839 + "Effect" + "\377\376\375\374\373\372\371\370\367\366" // 122960 + + // #2840 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305\304\303\302" + "Value" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 123040+ + + // #2841 + "\377\376\375\374\373\372\371\370" + "1" + "\377\376\375\374\373\372\371" // 123056 + + // #2842 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 123088 + + // #2843 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310" + "DisabledValue" + "\377\376\375\374\373\372\371\370\367\366\365" // 123168+ + + // #2844 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 123248+ + + // #2845 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 123328+ + + // #2846 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Color" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 123360 + + // #2847 + "\377\376\375\374\373\372\371\370" + "34,202,0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 123392 + + // #2848 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 123408 + + // #2849 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310" + "DisabledColor" + "\377\376\375\374\373\372\371\370\367\366\365" // 123488+ + + // #2850 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 123568+ + + // #2851 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 123648+ + + // #2852 + "\377\376\375\374" + "Color2" + "\377\376\375\374\373\372" // 123664 + + // #2853 + "0,0,0" + "\377\376\375\374\373\372\371\370\367\366\365" // 123680 + + // #2854 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 123696 + + // #2855 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350" + "DisabledColor2" + "\377\376\375\374\373\372\371\370\367\366" // 123744+ + + // #2856 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 123824+ + + // #2857 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 123904+ + + // #2858 + "\377\376\375\374\373\372\371\370\367\366\365" + "SemiTransparent" + "\377\376\375\374\373\372" // 123936 + + // #2859 + "true" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 123952 + + // #2860 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 123968 + + // #2861 + "DisabledSemiTransparent" + "\377\376\375\374\373\372\371\370\367" // 124000 + + // #2862 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 124080+ + + // #2863 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 124160+ + + // #2864 + "\377\376\375\374\373\372\371\370\367" + "Icons" + "\377\376" // 124176 + + // #2865 + "Effect" + "\377\376\375\374\373\372\371\370\367\366" // 124192 + + // #2866 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322" + "Value" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 124256+ + + // #2867 + "\377\376\375\374\373\372\371\370" + "1" + "\377\376\375\374\373\372\371" // 124272 + + // #2868 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 124304 + + // #2869 + "\377\376\375\374\373\372\371\370" + "DefaultValue" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 124336 + + // #2870 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 124400+ + + // #2871 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 124480+ + + // #2872 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Color" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 124512 + + // #2873 + "\377\376\375\374\373\372\371\370" + "144,128,248" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 124544 + + // #2874 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 124560 + + // #2875 + "\377\376\375\374\373\372\371\370" + "DefaultColor" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 124592 + + // #2876 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 124656+ + + // #2877 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 124736+ + + // #2878 + "\377\376\375\374" + "Color2" + "\377\376\375\374\373\372" // 124752 + + // #2879 + "0,0,0" + "\377\376\375\374\373\372\371\370\367\366\365" // 124768 + + // #2880 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 124784 + + // #2881 + "\377\376\375\374\373\372\371\370" + "DefaultColor2" + "\377\376\375\374\373\372\371\370\367\366\365" // 124816 + + // #2882 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 124912+ + + // #2883 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 124992+ + + // #2884 + "\377\376\375\374\373\372\371\370\367\366\365" + "SemiTransparent" + "\377\376\375\374\373\372" // 125024 + + // #2885 + "false" + "\377\376\375\374\373\372\371\370\367\366\365" // 125040 + + // #2886 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 125056 + + // #2887 + "DefaultSemiTransparent" + "\377\376\375\374\373\372\371\370\367\366" // 125088+ + + // #2888 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 125168+ + + // #2889 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 125248+ + + // #2890 + "Effect" + "\377\376\375\374\373\372\371\370\367\366" // 125264 + + // #2891 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305\304\303\302" + "Value" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 125344+ + + // #2892 + "\377\376\375\374\373\372\371\370" + "1" + "\377\376\375\374\373\372\371" // 125360 + + // #2893 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 125392 + + // #2894 + "\377\376\375\374\373\372\371\370" + "ActiveValue" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 125424 + + // #2895 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 125488+ + + // #2896 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 125568+ + + // #2897 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Color" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 125600 + + // #2898 + "169,156,255" + "\377\376\375\374\373" // 125616 + + // #2899 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 125632 + + // #2900 + "ActiveColor" + "\377\376\375\374\373" // 125648 + + // #2901 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 125744+ + + // #2902 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 125824+ + + // #2903 + "\377\376\375\374" + "Color2" + "\377\376\375\374\373\372" // 125840 + + // #2904 + "0,0,0" + "\377\376\375\374\373\372\371\370\367\366\365" // 125856 + + // #2905 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 125872 + + // #2906 + "ActiveColor2" + "\377\376\375\374" // 125888 + + // #2907 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 125936+ + + // #2908 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 126016+ + + // #2909 + "\377\376\375\374\373\372\371\370\367\366\365" + "SemiTransparent" + "\377\376\375\374\373\372" // 126048 + + // #2910 + "false" + "\377\376\375\374\373\372\371\370\367\366\365" // 126064 + + // #2911 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 126080 + + // #2912 + "\377\376\375\374\373\372\371\370" + "ActiveSemiTransparent" + "\377\376\375" // 126112 + + // #2913 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 126192+ + + // #2914 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 126272+ + + // #2915 + "Effect" + "\377\376\375\374\373\372\371\370\367\366" // 126288 + + // #2916 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305\304\303\302" + "Value" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 126368+ + + // #2917 + "\377\376\375\374\373\372\371\370" + "1" + "\377\376\375\374\373\372\371" // 126384 + + // #2918 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 126416 + + // #2919 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310" + "DisabledValue" + "\377\376\375\374\373\372\371\370\367\366\365" // 126496+ + + // #2920 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 126576+ + + // #2921 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 126656+ + + // #2922 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Color" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 126688 + + // #2923 + "\377\376\375\374\373\372\371\370" + "34,202,0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 126720 + + // #2924 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 126736 + + // #2925 + "\377\376\375\374\373\372\371\370" + "DisabledColor" + "\377\376\375\374\373\372\371\370\367\366\365" // 126768 + + // #2926 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 126832+ + + // #2927 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 126912+ + + // #2928 + "\377\376\375\374" + "Color2" + "\377\376\375\374\373\372" // 126928 + + // #2929 + "0,0,0" + "\377\376\375\374\373\372\371\370\367\366\365" // 126944 + + // #2930 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 126960 + + // #2931 + "\377\376\375\374\373\372\371\370" + "DisabledColor2" + "\377\376\375\374\373\372\371\370\367\366" // 126992 + + // #2932 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 127088+ + + // #2933 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 127168+ + + // #2934 + "\377\376\375\374\373\372\371\370\367\366\365" + "SemiTransparent" + "\377\376\375\374\373\372" // 127200 + + // #2935 + "true" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 127216 + + // #2936 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 127232 + + // #2937 + "\377\376\375\374\373\372\371\370" + "DisabledSemiTransparent" + "\377" // 127264+ + + // #2938 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 127344+ + + // #2939 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 127424+ + + // #2940 + "\377\376\375\374\373\372\371\370\367" + "Icons" + "\377\376" // 127440 + + // #2941 + "Effect" + "\377\376\375\374\373\372\371\370\367\366" // 127456 + + // #2942 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322" + "Value" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 127520+ + + // #2943 + "\377\376\375\374\373\372\371\370" + "1" + "\377\376\375\374\373\372\371" // 127536 + + // #2944 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 127568 + + // #2945 + "DefaultValue" + "\377\376\375\374" // 127584 + + // #2946 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 127664+ + + // #2947 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 127744+ + + // #2948 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Color" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 127776 + + // #2949 + "\377\376\375\374\373\372\371\370" + "144,128,248" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 127808 + + // #2950 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 127824 + + // #2951 + "DefaultColor" + "\377\376\375\374" // 127840 + + // #2952 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 127920+ + + // #2953 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 128000+ + + // #2954 + "\377\376\375\374" + "Color2" + "\377\376\375\374\373\372" // 128016 + + // #2955 + "0,0,0" + "\377\376\375\374\373\372\371\370\367\366\365" // 128032 + + // #2956 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 128048 + + // #2957 + "DefaultColor2" + "\377\376\375" // 128064 + + // #2958 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 128112+ + + // #2959 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 128192+ + + // #2960 + "\377\376\375\374\373\372\371\370\367\366\365" + "SemiTransparent" + "\377\376\375\374\373\372" // 128224 + + // #2961 + "false" + "\377\376\375\374\373\372\371\370\367\366\365" // 128240 + + // #2962 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 128256 + + // #2963 + "DefaultSemiTransparent" + "\377\376\375\374\373\372\371\370\367\366" // 128288 + + // #2964 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 128368+ + + // #2965 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 128448+ + + // #2966 + "Effect" + "\377\376\375\374\373\372\371\370\367\366" // 128464 + + // #2967 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305\304\303\302" + "Value" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 128544+ + + // #2968 + "\377\376\375\374\373\372\371\370" + "1" + "\377\376\375\374\373\372\371" // 128560 + + // #2969 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 128592 + + // #2970 + "\377\376\375\374\373\372\371\370" + "ActiveValue" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 128624 + + // #2971 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 128688+ + + // #2972 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 128768+ + + // #2973 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Color" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 128800 + + // #2974 + "169,156,255" + "\377\376\375\374\373" // 128816 + + // #2975 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 128832 + + // #2976 + "ActiveColor" + "\377\376\375\374\373" // 128848 + + // #2977 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 128944+ + + // #2978 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 129024+ + + // #2979 + "\377\376\375\374" + "Color2" + "\377\376\375\374\373\372" // 129040 + + // #2980 + "0,0,0" + "\377\376\375\374\373\372\371\370\367\366\365" // 129056 + + // #2981 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 129072 + + // #2982 + "ActiveColor2" + "\377\376\375\374" // 129088 + + // #2983 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 129136+ + + // #2984 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 129216+ + + // #2985 + "\377\376\375\374\373\372\371\370\367\366\365" + "SemiTransparent" + "\377\376\375\374\373\372" // 129248 + + // #2986 + "false" + "\377\376\375\374\373\372\371\370\367\366\365" // 129264 + + // #2987 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 129280 + + // #2988 + "\377\376\375\374\373\372\371\370" + "ActiveSemiTransparent" + "\377\376\375" // 129312 + + // #2989 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 129392+ + + // #2990 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 129472+ + + // #2991 + "Effect" + "\377\376\375\374\373\372\371\370\367\366" // 129488 + + // #2992 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305\304\303\302" + "Value" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 129568+ + + // #2993 + "\377\376\375\374\373\372\371\370" + "1" + "\377\376\375\374\373\372\371" // 129584 + + // #2994 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 129616 + + // #2995 + "DisabledValue" + "\377\376\375" // 129632 + + // #2996 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 129712+ + + // #2997 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 129792+ + + // #2998 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Color" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 129824 + + // #2999 + "\377\376\375\374\373\372\371\370" + "34,202,0" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" // 129856 + + // #3000 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 129872 + + // #3001 + "\377\376\375\374\373\372\371\370" + "DisabledColor" + "\377\376\375\374\373\372\371\370\367\366\365" // 129904 + + // #3002 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 129968+ + + // #3003 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 130048+ + + // #3004 + "\377\376\375\374" + "Color2" + "\377\376\375\374\373\372" // 130064 + + // #3005 + "0,0,0" + "\377\376\375\374\373\372\371\370\367\366\365" // 130080 + + // #3006 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 130096 + + // #3007 + "\377\376\375\374\373\372\371\370" + "DisabledColor2" + "\377\376\375\374\373\372\371\370\367\366" // 130128 + + // #3008 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 130224+ + + // #3009 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 130304+ + + // #3010 + "\377\376\375\374\373\372\371\370\367\366\365" + "SemiTransparent" + "\377\376\375\374\373\372" // 130336 + + // #3011 + "true" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 130352 + + // #3012 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 130368 + + // #3013 + "\377\376\375\374\373\372\371\370" + "DisabledSemiTransparent" + "\377" // 130400 + + // #3014 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 130480+ + + // #3015 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 130560+ + + // #3016 + "\377\376\375\374\373\372\371\370\367" + "Icons" + "\377\376" // 130576 + + // #3017 + "Effect" + "\377\376\375\374\373\372\371\370\367\366" // 130592 + + // #3018 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322" + "Value" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 130656+ + + // #3019 + "1" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 130672 + + // #3020 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 130704 + + // #3021 + "DefaultValue" + "\377\376\375\374" // 130720 + + // #3022 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 130800+ + + // #3023 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 130880+ + + // #3024 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Color" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 130912 + + // #3025 + "\377\376\375\374\373\372\371\370" + "144,128,248" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 130944 + + // #3026 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 130960 + + // #3027 + "DefaultColor" + "\377\376\375\374" // 130976 + + // #3028 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 131056+ + + // #3029 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 131136+ + + // #3030 + "\377\376\375\374" + "Color2" + "\377\376\375\374\373\372" // 131152 + + // #3031 + "0,0,0" + "\377\376\375\374\373\372\371\370\367\366\365" // 131168 + + // #3032 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 131184 + + // #3033 + "DefaultColor2" + "\377\376\375" // 131200 + + // #3034 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 131248+ + + // #3035 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 131328+ + + // #3036 + "\377\376\375\374\373\372\371\370\367\366\365" + "SemiTransparent" + "\377\376\375\374\373\372" // 131360 + + // #3037 + "\377\376\375\374\373\372\371\370" + "false" + "\377\376\375" // 131376 + + // #3038 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 131392 + + // #3039 + "DefaultSemiTransparent" + "\377\376\375\374\373\372\371\370\367\366" // 131424+ + + // #3040 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 131504+ + + // #3041 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 131584+ + + // #3042 + "Effect" + "\377\376\375\374\373\372\371\370\367\366" // 131600 + + // #3043 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305\304\303\302" + "Value" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 131680+ + + // #3044 + "\377\376\375\374\373\372\371\370" + "0.7" + "\377\376\375\374\373" // 131696 + + // #3045 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 131728 + + // #3046 + "\377\376\375\374\373\372\371\370" + "ActiveValue" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 131760 + + // #3047 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 131824+ + + // #3048 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 131904+ + + // #3049 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Color" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 131936 + + // #3050 + "\377\376\375\374\373\372\371\370" + "169,156,255" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 131968 + + // #3051 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 131984 + + // #3052 + "ActiveColor" + "\377\376\375\374\373" // 132000 + + // #3053 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 132080+ + + // #3054 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 132160+ + + // #3055 + "\377\376\375\374" + "Color2" + "\377\376\375\374\373\372" // 132176 + + // #3056 + "\377\376\375\374\373\372\371\370" + "0,0,0" + "\377\376\375" // 132192 + + // #3057 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 132208 + + // #3058 + "ActiveColor2" + "\377\376\375\374" // 132224 + + // #3059 + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 132272+ + + // #3060 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 132352+ + + // #3061 + "\377\376\375\374\373\372\371\370\367\366\365" + "SemiTransparent" + "\377\376\375\374\373\372" // 132384 + + // #3062 + "\377\376\375\374\373\372\371\370" + "false" + "\377\376\375" // 132400 + + // #3063 + "\377\376\375\374\373\372\371\370\367" + "bool" + "\377\376\375" // 132416 + + // #3064 + "\377\376\375\374\373\372\371\370" + "ActiveSemiTransparent" + "\377\376\375" // 132448 + + // #3065 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 132528+ + + // #3066 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 132608+ + + // #3067 + "Effect" + "\377\376\375\374\373\372\371\370\367\366" // 132624 + + // #3068 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340\337\336\335\334\333\332\331\330\327\326\325\324\323\322\321\320\317\316\315\314\313\312\311\310\307\306\305\304\303\302" + "Value" + "\377\376\375\374\373\372\371\370\367\366\365\364\363" // 132704+ + + // #3069 + "1" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" // 132720 + + // #3070 + "\377\376\375\374\373\372\371\370\367\366\365\364" + "double" + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362" // 132752 + + // #3071 + "DisabledValue" + "\377\376\375" // 132768 + + // #3072 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 132848+ + + // #3073 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 132928+ + + // #3074 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361" + "Color" + "\377\376\375\374\373\372\371\370\367\366\365\364" // 132960 + + // #3075 + "34,202,0" + "\377\376\375\374\373\372\371\370" // 132976 + + // #3076 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 132992 + + // #3077 + "\377\376\375\374\373\372\371\370" + "DisabledColor" + "\377\376\375\374\373\372\371\370\367\366\365" // 133024+ + + // #3078 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 133104+ + + // #3079 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 133184+ + + // #3080 + "\377\376\375\374" + "Color2" + "\377\376\375\374\373\372" // 133200 + + // #3081 + "\377\376\375\374\373\372\371\370" + "0,0,0" + "\377\376\375" // 133216 + + // #3082 + "\377\376\375\374\373\372\371" + "QColor" + "\377\376\375" // 133232 + + // #3083 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350" + "DisabledColor2" + "\377\376\375\374\373\372\371\370\367\366" // 133280+ + + // #3084 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344\343\342\341\340" + "\42""%1\42"" - conversion from \42""%3\42"" to %2 failed" + "\377\376\375\374\373\372\371\370" // 133360+ + + // #3085 + "\377\376\375\374\373\372\371\370\367\366\365\364\363\362\361\360\357\356\355\354\353\352\351\350\347\346\345\344" + " (wrong format: expected '%1' items, read '%2')" + "\377\376\375\374\373" // 133440+ + + // #3086 |