diff --git a/Makefile b/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..e7c7f17aca1884543f80586fb9dce0e352c7f719 --- /dev/null +++ b/Makefile @@ -0,0 +1,231 @@ +#/*************************************************************************** +# testclass +# +# testdescription +# ------------------- +# begin : 2017-07-17 +# git sha : $Format:%H$ +# copyright : (C) 2017 by Benjamin Jakimow +# email : benjamin.jakimow@geo.hu-berlin.de +# ***************************************************************************/ +# +#/*************************************************************************** +# * * +# * This program is free software; you can redistribute it and/or modify * +# * it under the terms of the GNU General Public License as published by * +# * the Free Software Foundation; either version 2 of the License, or * +# * (at your option) any later version. * +# * * +# ***************************************************************************/ + +################################################# +# Edit the following to match your sources lists +################################################# + + +#Add iso code for any locales you want to support here (space separated) +# default is no locales +# LOCALES = af +LOCALES = + +# If locales are enabled, set the name of the lrelease binary on your system. If +# you have trouble compiling the translations, you may have to specify the full path to +# lrelease +#LRELEASE = lrelease +#LRELEASE = lrelease-qt4 + + +# translation +SOURCES = \ + __init__.py \ + timeseriesviewer/main.py + +PLUGINNAME = HUBTimeSeriesViewer + +PY_FILES = \ + __init__.py + +UI_FILES = timeseriesviewer/ui/aboutdialog.ui \ + timeseriesviewer/ui/classificationscheme.ui \ + timeseriesviewer/ui/crosshairwidget.ui \ + timeseriesviewer/ui/debugstatus.ui + +EXTRAS = metadata.txt icon.png + +EXTRA_DIRS = + +COMPILED_RESOURCE_FILES = timeseriesviewer/ui/resources.py + +PEP8EXCLUDE=pydev,resources.py,conf.py,third_party,ui + + +################################################# +# Normally you would not need to edit below here +################################################# + +HELP = help/build/html + +PLUGIN_UPLOAD = $(c)/plugin_upload.py + +RESOURCE_SRC=$(shell grep '^ *<file' resources.qrc | sed 's@</file>@@g;s/.*>//g' | tr '\n' ' ') + +QGISDIR=.qgis2 + +default: compile + +compile: $(COMPILED_RESOURCE_FILES) + +%.py : %.qrc $(RESOURCES_SRC) + pyrcc4 -o $*.py $< + +%.qm : %.ts + $(LRELEASE) $< + +test: compile transcompile + @echo + @echo "----------------------" + @echo "Regression Test Suite" + @echo "----------------------" + + @# Preceding dash means that make will continue in case of errors + @-export PYTHONPATH=`pwd`:$(PYTHONPATH); \ + export QGIS_DEBUG=0; \ + export QGIS_LOG_FILE=/dev/null; \ + nosetests -v --with-id --with-coverage --cover-package=. \ + 3>&1 1>&2 2>&3 3>&- || true + @echo "----------------------" + @echo "If you get a 'no module named qgis.core error, try sourcing" + @echo "the helper script we have provided first then run make test." + @echo "e.g. source run-env-linux.sh <path to qgis install>; make test" + @echo "----------------------" + +deploy: compile doc transcompile + @echo + @echo "------------------------------------------" + @echo "Deploying plugin to your .qgis2 directory." + @echo "------------------------------------------" + # The deploy target only works on unix like operating system where + # the Python plugin directory is located at: + # $HOME/$(QGISDIR)/python/plugins + mkdir -p $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME) + cp -vf $(PY_FILES) $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME) + cp -vf $(UI_FILES) $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME) + cp -vf $(COMPILED_RESOURCE_FILES) $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME) + cp -vf $(EXTRAS) $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME) + cp -vfr i18n $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME) + #cp -vfr $(HELP) $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME)/help + # Copy extra directories if any + # (temporarily removed) + + +# The dclean target removes compiled python files from plugin directory +# also deletes any .git entry +dclean: + @echo + @echo "-----------------------------------" + @echo "Removing any compiled python files." + @echo "-----------------------------------" + find $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME) -iname "*.pyc" -delete + find $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME) -iname ".git" -prune -exec rm -Rf {} \; + + +derase: + @echo + @echo "-------------------------" + @echo "Removing deployed plugin." + @echo "-------------------------" + rm -Rf $(HOME)/$(QGISDIR)/python/plugins/$(PLUGINNAME) + +zip: deploy dclean + @echo + @echo "---------------------------" + @echo "Creating plugin zip bundle." + @echo "---------------------------" + # The zip target deploys the plugin and creates a zip file with the deployed + # content. You can then upload the zip file on http://plugins.qgis.org + rm -f $(PLUGINNAME).zip + cd $(HOME)/$(QGISDIR)/python/plugins; zip -9r $(CURDIR)/$(PLUGINNAME).zip $(PLUGINNAME) + +package: compile + # Create a zip package of the plugin named $(PLUGINNAME).zip. + # This requires use of git (your plugin development directory must be a + # git repository). + # To use, pass a valid commit or tag as follows: + # make package VERSION=Version_0.3.2 + @echo + @echo "------------------------------------" + @echo "Exporting plugin to zip package. " + @echo "------------------------------------" + rm -f $(PLUGINNAME).zip + git archive --prefix=$(PLUGINNAME)/ -o $(PLUGINNAME).zip $(VERSION) + echo "Created package: $(PLUGINNAME).zip" + +upload: zip + @echo + @echo "-------------------------------------" + @echo "Uploading plugin to QGIS Plugin repo." + @echo "-------------------------------------" + $(PLUGIN_UPLOAD) $(PLUGINNAME).zip + +transup: + @echo + @echo "------------------------------------------------" + @echo "Updating translation files with any new strings." + @echo "------------------------------------------------" + @chmod +x scripts/update-strings.sh + @scripts/update-strings.sh $(LOCALES) + +transcompile: + @echo + @echo "----------------------------------------" + @echo "Compiled translation files to .qm files." + @echo "----------------------------------------" + @chmod +x scripts/compile-strings.sh + @scripts/compile-strings.sh $(LRELEASE) $(LOCALES) + +transclean: + @echo + @echo "------------------------------------" + @echo "Removing compiled translation files." + @echo "------------------------------------" + rm -f i18n/*.qm + +clean: + @echo + @echo "------------------------------------" + @echo "Removing uic and rcc generated files" + @echo "------------------------------------" + rm $(COMPILED_UI_FILES) $(COMPILED_RESOURCE_FILES) + +doc: + @echo + @echo "------------------------------------" + @echo "Building documentation using sphinx." + @echo "------------------------------------" + cd help; make html + +pylint: + @echo + @echo "-----------------" + @echo "Pylint violations" + @echo "-----------------" + @pylint --reports=n --rcfile=pylintrc . || true + @echo + @echo "----------------------" + @echo "If you get a 'no module named qgis.core' error, try sourcing" + @echo "the helper script we have provided first then run make pylint." + @echo "e.g. source run-env-linux.sh <path to qgis install>; make pylint" + @echo "----------------------" + + +# Run pep8 style checking +#http://pypi.python.org/pypi/pep8 +pep8: + @echo + @echo "-----------" + @echo "PEP8 issues" + @echo "-----------" + @pep8 --repeat --ignore=E203,E121,E122,E123,E124,E125,E126,E127,E128 --exclude $(PEP8EXCLUDE) . || true + @echo "-----------" + @echo "Ignored in PEP8 check:" + @echo $(PEP8EXCLUDE) diff --git a/metadata.txt b/metadata.txt index 06aa7a2659cdc258053ba4d2366fda9debdc30d3..6ac9381e35b548ee6e0b6049d97cab5c21b30a66 100644 --- a/metadata.txt +++ b/metadata.txt @@ -1,16 +1,20 @@ [general] name=HUB TimeSeriesViewer description=A QGIS Plugin to visualize multi-sensor remote sensing time-series data. -category=Raster version=0.2 qgisMinimumVersion=2.18 author=Benjamin Jakimow, Geomatics Lab, Humboldt-Universität zu Berlin +about=The HUB TimeSeriesViewer is developed at Humboldt-Universität zu Berlin. Born in the SenseCarbon project, it was funded by the German Aerospace Centre (DLR) and granted by the Federal Ministry of Education and Research (BMBF, grant no. 50EE1254). Since 2017 it is developed under contract by the German Research Centre for Geosciences (GFZ) as part of the EnMAP Core Science Team activities (www.enmap.org), funded by DLR and granted by the Federal Ministry of Economic Affairs and Energy (BMWi, grant no. 50EE1529). email=benjamin.jakimow@geo.hu-berlin.de + icon=timeseriesviewer/ui/icons/icon.png + homepage=bitbucket.org/jakimowb/hub-timeseriesviewer tracker=bitbucket.org/jakimowb/hub-timeseriesviewer/issues repository=bitbucket.org/jakimowb/hub-timeseriesviewer -experimental=False +experimental=True deprecated=False -tags=remote sensing, raster, time series -about=The HUB TimeSeriesViewer is developed at Humboldt-Universität zu Berlin. Born in the SenseCarbon project, it was funded by the German Aerospace Centre (DLR) and granted by the Federal Ministry of Education and Research (BMBF, grant no. 50EE1254). Since 2017 it is developed under contract by the German Research Centre for Geosciences (GFZ) as part of the EnMAP Core Science Team activities (www.enmap.org), funded by DLR and granted by the Federal Ministry of Economic Affairs and Energy (BMWi, grant no. 50EE1529). \ No newline at end of file + +# Tags are comma separated with spaces allowed +tags=analysis, raster, remote sensing, time, labeling +category=Raster diff --git a/timeseriesviewer/mapcanvas.py b/timeseriesviewer/mapcanvas.py index 13f5201c2107ba3017a8e53168bd03d213b24577..8c041d3c694063620573759a9de26b8aff807d1b 100644 --- a/timeseriesviewer/mapcanvas.py +++ b/timeseriesviewer/mapcanvas.py @@ -212,9 +212,10 @@ class MapCanvas(QgsMapCanvas): def pixmap(self): """ Returns the current map image as pixmap - :return: + :return: QPixmap """ - return QPixmap(self.map().contentImage().copy()) + #return QPixmap(self.map().contentImage().copy()) + return QPixmap.grabWidget(self) diff --git a/timeseriesviewer/ui/resources.py b/timeseriesviewer/ui/resources.py index dc7d0d214d1ed2e0d78b0d5079ee257804adfd57..2e84686eaa76bd6fd0a5844f3629597f5f43ff2a 100644 --- a/timeseriesviewer/ui/resources.py +++ b/timeseriesviewer/ui/resources.py @@ -2,8 +2,7 @@ # Resource object code # -# Created: Fr 30. Jun 18:21:19 2017 -# by: The Resource Compiler for PyQt (Qt v4.8.5) +# Created by: The Resource Compiler for PyQt4 (Qt v4.8.6) # # WARNING! All changes made in this file will be lost! @@ -839,17 +838,141 @@ qt_resource_data = "\ \x70\x80\xfb\xff\x50\xb7\xdb\xdd\xc6\x73\xf4\x47\x9d\x30\xeb\x1f\ \x65\x38\x00\xc0\xbf\x6e\xa1\x3e\x9a\x1b\xb2\xf8\x71\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x00\x81\ -\x76\ -\x65\x72\x73\x69\x6f\x6e\x20\x68\x74\x74\x70\x73\x3a\x2f\x2f\x67\ -\x69\x74\x2d\x6c\x66\x73\x2e\x67\x69\x74\x68\x75\x62\x2e\x63\x6f\ -\x6d\x2f\x73\x70\x65\x63\x2f\x76\x31\x0a\x6f\x69\x64\x20\x73\x68\ -\x61\x32\x35\x36\x3a\x30\x61\x65\x31\x38\x39\x34\x32\x66\x36\x64\ -\x31\x31\x38\x62\x61\x35\x61\x31\x31\x65\x66\x34\x38\x34\x36\x38\ -\x39\x61\x36\x37\x37\x37\x63\x39\x39\x39\x63\x61\x30\x34\x65\x32\ -\x33\x30\x31\x37\x34\x31\x36\x37\x31\x39\x32\x30\x35\x31\x65\x37\ -\x65\x39\x33\x39\x63\x0a\x73\x69\x7a\x65\x20\x32\x31\x32\x32\x0a\ -\ +\x00\x00\x08\x4a\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\ +\x01\x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x07\xc7\x49\x44\ +\x41\x54\x58\x85\xe5\x97\x6b\x50\x54\xe7\x19\xc7\xff\xe7\x70\xce\ +\xee\x9e\xbd\xc3\x2e\xbb\xc0\x22\xb0\x88\x50\x2e\xcb\xba\x2c\x37\ +\x8d\x54\x90\x80\xdd\x00\xd6\x36\x16\x2d\xda\xd8\xb1\x9d\x76\x26\ +\x19\xa6\x6d\xec\x38\xb1\x71\xc6\x4b\xc7\xda\xc6\x69\xda\x7e\x48\ +\x93\xd1\x98\x54\x8b\x06\x84\x44\x9b\x9a\x60\xdb\x98\xa0\x34\xde\ +\x59\x15\x84\xa8\x0d\x2c\xac\xbb\x2c\x37\x97\xb3\xbb\xba\xf7\xdd\ +\xd3\x0f\x11\x82\x15\x15\xa7\xe6\x53\xfe\x33\xef\x87\xf3\x9c\xff\ +\xfb\x3e\xbf\x79\xde\xe7\xbc\xe7\x1c\xe0\xeb\x2e\x62\xb6\xa0\x36\ +\x51\x9b\xca\x11\x61\x03\x07\x52\xc1\x11\x5c\x30\x86\xe4\x86\xe2\ +\x54\xaa\x33\x5d\x5d\x5d\xa1\xaf\x1c\x20\x37\xf3\x1b\xeb\xd3\xe7\ +\xcf\x7f\xfd\x85\x9f\x37\x52\x32\xb9\x94\x0e\x47\x22\x51\xeb\xd0\ +\x90\xbf\xb9\xa9\xd9\x67\x1d\xbc\xb9\xef\x4a\xef\x95\x5f\x01\x88\ +\x3c\x29\x80\x98\xff\x0d\x08\x29\x91\x3b\xc8\x85\xf4\xe0\x38\x55\ +\x45\xe5\x32\x41\x5a\x5a\x3a\x91\x99\x99\x45\x7f\x77\xd5\xb3\xc2\ +\x5c\x5d\x4e\x71\xdf\x95\xab\x35\x49\xc9\x9a\xfd\x0e\x87\x23\xfa\ +\xa4\x20\x66\x55\x4a\x42\x4a\x8e\x21\xdf\x70\xbc\xb1\xb1\x91\xed\ +\x1f\xec\xe7\x58\x8f\x9b\x63\x3d\x6e\xee\xa3\x8f\x3f\x0a\x2e\xd4\ +\xe9\x5f\xfd\x4a\x93\xcf\x94\x36\x49\x9b\x95\x9f\xab\xbb\xf8\xb9\ +\xe5\x4b\x88\xba\x9a\xda\x09\xb5\x5a\x2d\x7a\x12\xeb\x53\x8f\x32\ +\x58\x86\x2d\xd7\x53\xc9\xd4\x5d\x83\x16\xcb\x3b\x4a\x65\x3c\x0d\ +\x00\xab\xd7\xad\x61\x7a\xae\x5c\x2d\x02\xd0\x01\x00\x95\x95\x95\ +\x15\x34\x4d\x2f\x9c\x9a\x13\x0a\x85\x2e\x9f\x38\x71\xe2\x93\xc7\ +\x02\x48\x4e\x4e\x66\x6c\x36\x9b\x6f\x36\x93\x44\x2c\xd2\xc5\x29\ +\x14\xf4\xb4\x57\x93\x2c\x88\x72\xd1\x14\x00\x30\x1a\x8d\x89\x85\ +\x85\x85\xcd\xf5\xf5\xf5\xaa\xa9\xfb\x87\x0f\x1f\x1e\x63\x59\x76\ +\x61\x57\x57\x97\xe3\x51\x00\x24\x00\xa4\x69\xd2\x16\xca\x24\xb2\ +\xc9\x82\x7c\xfd\xdf\xd3\x35\x9a\xcc\x99\x06\xa3\xd1\x48\x8b\xa4\ +\x92\x9f\xa6\xa5\xa5\x4d\xc7\xa2\x5c\x94\x54\x28\x14\x95\x00\x20\ +\x95\x4a\xcb\x74\x3a\x9d\x30\x23\x23\x03\x53\x43\xa7\xd3\x09\xa5\ +\x52\x69\x19\x00\xd4\xd5\xd5\x99\xea\xeb\xeb\xdf\x29\x2b\x2b\x8b\ +\x9f\x0d\x20\x06\x00\x94\xb4\xd2\x9b\x5b\x90\xfd\xfc\xeb\xfb\xf6\ +\xea\x59\x97\xfb\xb9\x90\x3f\xb0\x94\x47\xf0\x2f\xb9\x6e\xbb\xc6\ +\x55\x0a\xe5\x9b\xaf\xfc\x61\x77\x89\x46\x93\x3c\xfd\xc4\x04\x83\ +\x7e\x7c\x78\xec\x43\x5d\x55\x75\xd5\xaa\xe5\xcb\x97\x37\xac\x58\ +\xb1\x42\x46\x10\x04\x38\x8e\x03\xc7\x71\x48\x4f\x4f\xe7\x91\x24\ +\x59\xa5\x52\xa9\x1a\x0c\x06\x43\x43\x63\x63\x63\xa9\xd9\x6c\xae\ +\x91\xcb\xe5\xad\x56\xab\xd5\x7b\x1f\x80\xd3\xe7\x0c\x50\x14\x1d\ +\x5b\xba\xb8\xb4\x64\xdd\xfa\xf5\xc2\xba\x95\x75\x19\x77\xbc\x77\ +\xd6\x45\xc2\x91\x9f\x6d\xdd\xb1\xad\x78\xd1\xe2\xa7\xf8\x53\x13\ +\xfc\x01\x1f\x5c\xae\x5b\xf0\xfb\xfc\x44\x46\xfa\x02\x75\xc3\xda\ +\xb5\x0c\x41\x10\xf0\x78\x3c\x60\x59\x16\xd1\x68\x14\x7c\x3e\x1f\ +\x79\x79\x79\x82\xea\xea\x6a\xb5\xd1\x68\x14\x33\x0c\x83\xd2\xd2\ +\xd2\xf8\x4b\x97\x2e\xd5\xca\xe5\xf2\xc3\x33\x21\xa6\x0f\x22\xa3\ +\xd1\x48\x13\x11\x74\x1e\x68\x6e\x2a\x4e\xd2\x68\x66\x3d\x21\x23\ +\x91\x30\xec\xf6\x41\xf8\x03\x7e\x04\x03\x41\x6c\xdd\xbc\x1d\x0a\ +\x65\x3c\x52\x73\x8b\x70\x87\x13\x80\x23\x69\x20\x1a\x82\x90\x08\ +\xc0\x98\x9d\x82\x65\xe5\xdf\x04\x4d\x4f\xb7\x0e\x9c\x4e\x27\xb6\ +\x6c\xd9\xd2\xd2\xd2\xd2\xb2\xe6\x9e\x1e\x00\x80\xae\xae\xae\xd0\ +\x90\xdd\xfa\xf4\x0f\xd7\xfe\xa0\xf7\xb2\xd9\x1c\xe6\x38\xee\x9e\ +\xe4\xfe\x80\x0f\x36\x9b\x05\x3e\xbf\x0f\x91\x48\x04\x3e\xbf\x1f\ +\xa1\x90\x1f\xb7\x46\x06\x70\xf2\x44\x3b\x08\xb5\x1e\x4c\x6a\x09\ +\x18\xed\x12\x44\x53\x2a\xd0\x61\x01\xfe\xfc\x76\x33\x58\x96\x9d\ +\xde\x9a\xd6\xd6\xd6\x51\xbf\xdf\x7f\xe0\xbe\x2d\x98\x92\xd7\xeb\ +\x0d\x26\x24\x25\xbe\xd9\xfe\xfe\x07\xc2\xe3\xed\xc7\x33\x5d\x2e\ +\x36\x7c\xfd\xda\xb5\xd0\xa1\xbf\x36\x79\xcf\x9d\x39\x13\xd1\xa4\ +\x24\xf1\xa8\x18\x0a\xc1\x40\x10\xbb\x77\xbe\x02\x44\xfd\x18\xb2\ +\x4e\xe0\x7b\x35\xf3\xd1\xf1\xb7\x23\x90\x24\x66\x83\x91\xc6\x82\ +\x20\x08\xf0\xc4\x0a\xb8\x39\x09\x2c\x3d\x67\x91\x9f\xb3\x00\x24\ +\x49\xa2\xb9\xb9\x79\xa0\xa5\xa5\x65\xe3\x03\x01\x00\xc0\xe1\x70\ +\x44\x47\xc6\x46\xff\xd5\xdf\xdf\xff\x6a\x5f\x5f\x5f\xeb\xd9\x93\ +\x67\x9b\x1c\xe3\x23\xaf\x0d\x0d\x0c\x2a\xfe\xdd\x71\x5a\x4f\xd3\ +\x34\xf1\x5e\xdb\xbb\xf0\xb0\xe3\xb8\x79\xf3\x16\x7e\xb7\xb5\x0a\ +\xcf\xd6\x64\xe3\xa9\xa2\x44\xb4\xbc\xdd\x02\x82\x27\x83\x44\x95\ +\x02\x00\xa0\xf8\x42\xdc\xba\x13\x82\x38\x3c\x0e\x8d\x46\x03\x97\ +\xcb\xc5\xf7\x78\x3c\x76\x8d\x46\x73\xcb\x66\xb3\x79\x66\x05\x98\ +\x21\xce\xed\x76\x3b\x8b\x4a\x8b\xf2\x8a\x8a\x8a\x8e\x7d\xfb\x3b\ +\x2b\x0d\x2f\xfe\x72\x23\x7f\xcf\x1b\x7b\x30\x31\x62\xc3\xd8\xb8\ +\x1b\x7f\xdc\x59\x85\xb2\x45\xf3\x00\x00\x32\x29\x1f\xa6\x72\x2d\ +\xda\x8f\xfe\x13\xe3\x23\xe3\x50\xa4\xea\x00\x82\x00\x2d\x94\x83\ +\xb5\xdf\xc0\xc2\x9c\x0c\x64\x65\x65\x09\x24\x12\x49\x35\x8f\xc7\ +\xfb\x91\x48\x24\xba\x68\xb1\x58\x06\xc9\x87\x00\x00\x00\xf8\x7c\ +\x7e\xc1\xaa\x55\xab\x12\x4c\x26\x93\x98\x61\x18\x6c\xdb\xbe\x1d\ +\x11\x82\x87\x17\x9f\x2f\x44\x59\xa9\x06\x24\xc1\x81\x24\x39\x90\ +\x04\x07\x89\x84\xc2\x6b\x3b\x2b\x50\x9c\xec\xc0\x85\xe6\x1d\x08\ +\x05\xbc\x20\x08\x12\xee\x10\x0d\x9f\xcf\x07\x92\x24\x61\x32\x99\ +\xc4\x2b\x57\xae\x8c\x67\x18\xa6\xf0\x9e\x26\x7c\x98\xa6\x9a\x88\ +\xe3\x38\xc8\xe4\x32\x94\xd6\x6e\xc0\xfe\xa3\xa3\xb8\x78\x65\xe4\ +\x8b\xe4\x33\x46\x4c\x0c\xf0\x93\x86\x5c\xfc\x78\x85\x0a\xe7\xf6\ +\x6f\x86\x67\xc2\x8e\x60\x34\x06\xd1\x68\xf4\x9e\x75\xa6\x34\x27\ +\x80\x99\x10\x14\x45\x41\x22\x11\xa3\x60\xcd\x36\xbc\xfc\xfb\xbe\ +\x2f\x20\xee\x56\x21\x86\xe0\x10\x73\x17\xe4\x5b\xcb\xd2\xb0\x7b\ +\x73\x31\xfa\x8e\xee\xc2\xa4\xfd\x73\x50\x14\x75\x5f\x72\xe0\xe1\ +\x3d\x00\x00\x98\x37\x6f\x1e\xdf\xe9\x74\x3e\xc3\xb2\x2c\x97\x9e\ +\x9e\xce\xa3\x28\x0a\x03\x83\x43\xf0\x32\xc9\x50\x65\x2d\xc2\xc1\ +\xbd\xad\xc8\x9d\x2f\x84\x26\xf1\xee\xcb\x71\xc6\x09\xa2\x88\x13\ +\xa2\xaa\x2c\x15\xef\x1f\xe9\x80\xc7\xe3\x45\x6e\x5e\x1e\xda\xdb\ +\xdb\x6f\x77\x76\x76\xb2\x0e\x87\xe3\x4f\x03\x03\x03\x83\x8f\x04\ +\xb0\x58\x2c\x83\x24\x49\x1e\xea\xed\xed\xed\x01\x50\x99\x9d\x9d\ +\x2d\x90\x0b\x69\x74\x7d\x66\x05\x13\x9b\x04\x55\x66\x29\x9a\xf6\ +\xb4\x22\x67\x36\x08\x02\x10\x08\x28\x98\x9e\xce\xc0\xc7\x9f\x98\ +\xb1\xff\xc0\x7b\xa1\x73\xe7\xcf\xbf\x60\xb7\xdb\x37\x9d\x3a\x75\ +\xaa\x67\x4e\x15\x00\x00\x9b\xcd\xe6\x19\x1a\x1a\xea\x51\xab\xd5\ +\x0d\x15\x15\x15\x6a\x89\x44\x82\x31\x5b\x3f\x26\x42\x0c\xf8\x22\ +\xd9\x97\x10\x19\x42\x68\x12\x44\xf7\x54\x81\x20\x80\x18\x82\xc0\ +\xe2\x22\x0d\x02\x7e\x2f\x79\xfe\x82\x65\xc1\x84\x73\x72\x3f\xcb\ +\xb2\xb7\xe7\x0c\x00\x00\xb5\xb5\xb5\xcf\xe4\xe5\xe5\xad\xd5\xeb\ +\xf5\x62\x00\xc8\xce\x48\x81\xf5\xfa\x65\x8c\xdd\x06\x84\x32\x25\ +\x94\x19\x45\x38\xb8\xf7\x30\xf2\xb3\xc5\x48\x8a\x17\x82\x20\xee\ +\x72\xcc\xa8\x46\x4e\x56\x3c\x91\xb5\x40\x19\xff\xe9\x79\xfb\xea\ +\x28\xa7\xda\xeb\xf5\x8e\x07\xe7\x0c\xa0\xd3\xe9\x7e\xbd\x61\xc3\ +\x86\x12\x86\x61\xa6\x63\xfa\xec\x74\xc8\xc1\xc2\xfa\x9f\x5e\x04\ +\x02\x01\x88\xe7\xe5\xa3\xf9\x2f\x1f\x40\x9f\x23\x43\xa2\x4a\x38\ +\xed\x9b\x98\xf4\xe2\xa5\xdf\x9c\xc1\x5b\x87\x7a\x20\x93\x50\x91\ +\xcc\xf9\x4a\x7e\x4f\xaf\xf5\xaa\xcb\xc3\xf6\xcd\x19\x40\xa9\x54\ +\x9e\xec\xee\xee\x36\x19\x0c\x06\x95\x40\x20\x00\xc7\x71\x88\x46\ +\xa3\x88\x57\xc8\xb1\xd8\x90\x85\xe2\x2c\x35\x4a\xb2\x54\x58\xba\ +\x74\x29\x76\xec\x6a\x46\xce\x02\x31\x12\xee\x42\xbc\xfc\xdb\x0b\ +\xa8\xa8\x5e\x83\xd1\xf1\xf1\xcf\x3a\x4f\xf7\x11\x22\x86\x8a\xf4\ +\x5b\x5c\x7b\x5d\x9e\xc9\x9b\x73\x06\xb0\x5a\xad\xde\xb8\xb8\xb8\ +\xb6\xee\xee\xee\x9a\x82\x82\x82\xf8\xd6\xd6\xd6\xd1\x23\x47\x8e\ +\x0c\xb8\x5c\x2e\x9e\x56\xab\x65\x48\x92\x04\x4d\xd3\x10\x8b\xc5\ +\x30\x16\x96\x60\xd3\x96\x7d\x51\x7d\x6e\x2c\x91\xa0\x12\x62\x4f\ +\x53\x1f\x6c\x8e\xd1\xbe\x6e\x73\xef\x4b\x02\x3e\xf9\x7d\xfb\xb0\ +\x67\xe2\x7a\xff\xf5\x4d\xc0\x63\xf4\xc0\x0c\x88\x56\xb3\xd9\x9c\ +\x62\xb3\xd9\x76\xb4\xb5\xb5\x6d\xf4\xfb\xfd\x16\xb1\x58\x6c\xd2\ +\x6a\xb5\xbc\x29\xdf\xb9\x73\x67\x6f\x5f\x34\xf7\xfc\xe2\xd8\x3f\ +\xae\xe9\x8a\x0d\x6a\xa9\x5c\x4a\x45\x4e\x74\xf4\x91\xb1\xb1\xd4\ +\x6a\xb7\x3b\x10\xe3\x72\x79\x4d\x2e\x8f\xcb\x01\x3c\xe0\xcf\xe8\ +\x71\x64\x34\x1a\x13\x97\x2c\x59\x72\xd9\x64\x32\x4d\x7f\x13\xb6\ +\xb7\xb7\x8f\x9d\x3e\x7d\x5a\x3f\x3c\x3c\x49\xa9\x14\xf4\xa7\x8d\ +\x1b\xf4\x49\xac\x3b\x18\x39\xf8\xee\x35\xa7\xc7\x1d\x5e\x7d\xc3\ +\x72\xa3\x73\xca\xfb\x7f\x03\x00\x40\x79\x79\x79\x39\x45\x51\x86\ +\xa9\xeb\x70\x38\x7c\xa9\xa3\xa3\xa3\x03\x00\x92\x93\x93\xe3\x24\ +\x02\xd1\x73\xfe\x60\xd8\x19\x08\xfb\xda\x86\x87\x87\xbd\x0f\x5c\ +\xe8\x6b\xa9\xff\x02\x02\x6a\x4c\xc3\xef\xe2\xa2\x65\x00\x00\x00\ +\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x0e\x4d\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ @@ -8259,16 +8382,47 @@ qt_resource_data = "\ \x91\xe9\x0b\xb6\x9a\x89\x18\xc0\xc8\xc8\xf4\x85\x72\x27\x0d\x36\ \x00\x00\x95\x1f\x54\x72\xef\xf3\x31\x35\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ -\x00\x00\x00\x80\ -\x76\ -\x65\x72\x73\x69\x6f\x6e\x20\x68\x74\x74\x70\x73\x3a\x2f\x2f\x67\ -\x69\x74\x2d\x6c\x66\x73\x2e\x67\x69\x74\x68\x75\x62\x2e\x63\x6f\ -\x6d\x2f\x73\x70\x65\x63\x2f\x76\x31\x0a\x6f\x69\x64\x20\x73\x68\ -\x61\x32\x35\x36\x3a\x62\x31\x62\x37\x39\x66\x64\x34\x35\x62\x65\ -\x62\x39\x37\x33\x62\x66\x33\x63\x61\x31\x36\x31\x38\x32\x39\x39\ -\x66\x35\x39\x63\x36\x62\x62\x34\x30\x62\x66\x39\x63\x63\x30\x63\ -\x64\x36\x34\x37\x31\x61\x64\x31\x36\x61\x63\x66\x65\x66\x36\x62\ -\x37\x66\x64\x66\x32\x0a\x73\x69\x7a\x65\x20\x36\x32\x33\x0a\ +\x00\x00\x02\x6f\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x1c\x00\x00\x00\x1c\x08\x06\x00\x00\x00\x72\x0d\xdf\x94\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\ +\x01\x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\x11\x74\x45\ +\x58\x74\x54\x69\x74\x6c\x65\x00\x7a\x6f\x6f\x6d\x20\x31\x20\x74\ +\x6f\x20\x31\x42\x1b\x21\xc7\x00\x00\x00\x18\x74\x45\x58\x74\x41\ +\x75\x74\x68\x6f\x72\x00\x52\x6f\x62\x65\x72\x74\x20\x53\x7a\x63\ +\x7a\x65\x70\x61\x6e\x65\x6b\x5f\x56\xb1\x08\x00\x00\x00\x18\x74\ +\x45\x58\x74\x43\x72\x65\x61\x74\x69\x6f\x6e\x20\x54\x69\x6d\x65\ +\x00\x32\x30\x31\x31\x2d\x30\x33\x2d\x31\x31\x1d\xc9\x61\x9d\x00\ +\x00\x00\x52\x74\x45\x58\x74\x43\x6f\x70\x79\x72\x69\x67\x68\x74\ +\x00\x43\x43\x20\x41\x74\x74\x72\x69\x62\x75\x74\x69\x6f\x6e\x2d\ +\x53\x68\x61\x72\x65\x41\x6c\x69\x6b\x65\x20\x68\x74\x74\x70\x3a\ +\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\x65\x63\x6f\x6d\x6d\x6f\x6e\ +\x73\x2e\x6f\x72\x67\x2f\x6c\x69\x63\x65\x6e\x73\x65\x73\x2f\x62\ +\x79\x2d\x73\x61\x2f\x33\x2e\x30\x2f\x5e\x83\x5a\xbc\x00\x00\x01\ +\x29\x49\x44\x41\x54\x48\x89\xed\x95\xbd\x4a\x03\x41\x14\x46\xcf\ +\xdd\x8c\x2c\x86\x64\xc0\x74\x5a\x8b\xf8\x06\x8a\x9d\x5a\xe6\x01\ +\x24\x65\xf0\x41\xf2\x16\x96\x16\x36\x29\x2d\xb5\xb3\xd6\xca\x32\ +\x60\x25\x21\x21\x18\x0d\xb8\x91\x80\xb0\x9b\x6b\x93\x04\x41\xd4\ +\x99\x71\x59\x10\xf6\xab\xee\xcc\x9d\x6f\xce\x1d\xe6\x0f\x02\x34\ +\xb0\xb6\x33\xb0\xb6\x13\xe2\x8d\x42\x4c\x7f\x51\xe1\x40\x13\x6a\ +\x94\x38\x36\xa9\xea\x29\x70\x0c\xac\x2b\xdc\x19\x38\x13\x91\xd7\ +\xdc\x81\x52\xaf\xc7\x71\xb3\x79\x04\x8c\x57\x7d\xb0\x9f\xc1\x3d\ +\x70\x95\x2b\x50\x55\xe5\xa5\xdd\x3e\x88\x6a\xb5\x0d\x60\x3c\x87\ +\xa7\x08\xae\x2b\x70\x23\x22\xcf\xbf\xf9\xbd\x81\x29\x1c\x56\x1a\ +\x8d\xcd\x45\xf3\x72\x0d\x2e\x44\x24\x75\xf5\x7b\x01\x55\x55\x32\ +\x38\x01\xc8\x46\xa3\x47\x23\x72\xee\xe3\x07\xcf\x53\xfa\x0e\x3b\ +\xc0\x16\x40\xd6\xeb\x3d\xf8\xc2\xbc\x81\x31\xec\x2e\xe3\xf9\x64\ +\xf2\x16\x02\x14\xd7\x81\xaa\x7a\x0b\x6c\x2b\x54\x75\x3a\x35\xa2\ +\x3a\x13\x6b\x93\x45\x7a\x28\x22\x7b\x21\x05\xfc\x04\xec\xeb\xf7\ +\xea\xbb\xce\x53\xfc\x4b\xe3\xfa\x08\x6b\x92\x58\xb1\x16\x80\x59\ +\xb7\x0b\x40\xb5\xd5\x5a\xe5\x5c\xe7\x29\x7c\x85\xce\xfa\xbf\x7b\ +\xe8\x31\x76\xb8\x0c\x34\x49\x2c\xc0\xe7\x6b\x91\x67\x51\x5f\x54\ +\xfe\xf8\x25\xb0\x04\x96\x40\x2f\x7d\x00\xf6\x83\x8f\x99\xcf\xb4\ +\x64\x2a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x05\x71\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ @@ -8359,55 +8513,54 @@ qt_resource_data = "\ \xd0\xe9\x3e\x23\x45\xbd\xf4\x30\xe1\x00\xf0\x2f\xf5\x22\xd9\x5a\ \x64\x0c\x76\x10\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ -\x00\x00\x02\xe5\ +\x00\x00\x02\xd5\ \x3c\ \x73\x76\x67\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x34\x22\x20\ \x77\x69\x64\x74\x68\x3d\x22\x32\x34\x22\x20\x78\x6d\x6c\x6e\x73\ \x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\ -\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x3e\x0d\x0a\ -\x3c\x67\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x36\x65\x39\x37\ -\x63\x34\x22\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x74\ -\x72\x61\x6e\x73\x6c\x61\x74\x65\x28\x30\x20\x2d\x38\x29\x22\x3e\ -\x0d\x0a\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x6d\x32\x2e\x35\x20\ -\x31\x35\x2e\x35\x68\x31\x39\x76\x31\x34\x68\x2d\x31\x39\x7a\x22\ -\x20\x66\x69\x6c\x6c\x3d\x22\x23\x65\x36\x65\x36\x65\x36\x22\x2f\ -\x3e\x0d\x0a\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x6d\x32\x2e\x35\ -\x20\x31\x30\x2e\x35\x68\x31\x39\x76\x35\x68\x2d\x31\x39\x7a\x22\ -\x20\x66\x69\x6c\x6c\x3d\x22\x23\x62\x61\x64\x39\x65\x63\x22\x2f\ -\x3e\x0d\x0a\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x6d\x35\x20\x31\ -\x33\x68\x34\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\ -\x20\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3d\x22\x76\x69\x73\x69\x62\ -\x6c\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ -\x3d\x22\x32\x22\x2f\x3e\x0d\x0a\x3c\x70\x61\x74\x68\x20\x64\x3d\ -\x22\x6d\x31\x31\x20\x31\x33\x68\x37\x2e\x39\x39\x39\x39\x39\x39\ -\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x32\x22\x2f\x3e\ -\x0d\x0a\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x6d\x35\x20\x31\x37\ -\x2e\x35\x68\x34\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\ -\x22\x20\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3d\x22\x76\x69\x73\x69\ -\x62\x6c\x65\x22\x2f\x3e\x0d\x0a\x3c\x70\x61\x74\x68\x20\x64\x3d\ -\x22\x6d\x31\x31\x20\x31\x37\x2e\x35\x68\x37\x2e\x39\x39\x39\x39\ -\x39\x39\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x2f\ -\x3e\x0d\x0a\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x6d\x35\x20\x32\ -\x30\x2e\x35\x68\x34\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\ -\x65\x22\x20\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3d\x22\x76\x69\x73\ -\x69\x62\x6c\x65\x22\x2f\x3e\x0d\x0a\x3c\x70\x61\x74\x68\x20\x64\ -\x3d\x22\x6d\x31\x31\x20\x32\x30\x2e\x35\x68\x37\x2e\x39\x39\x39\ -\x39\x39\x39\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\ -\x2f\x3e\x0d\x0a\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x6d\x35\x20\ -\x32\x33\x2e\x35\x68\x34\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\ -\x6e\x65\x22\x20\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3d\x22\x76\x69\ -\x73\x69\x62\x6c\x65\x22\x2f\x3e\x0d\x0a\x3c\x70\x61\x74\x68\x20\ -\x64\x3d\x22\x6d\x31\x31\x20\x32\x33\x2e\x35\x68\x37\x2e\x39\x39\ -\x39\x39\x39\x39\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\ -\x22\x2f\x3e\x0d\x0a\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x6d\x35\ -\x20\x32\x36\x2e\x35\x68\x34\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\ -\x6f\x6e\x65\x22\x20\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3d\x22\x76\ -\x69\x73\x69\x62\x6c\x65\x22\x2f\x3e\x0d\x0a\x3c\x70\x61\x74\x68\ -\x20\x64\x3d\x22\x6d\x31\x31\x20\x32\x36\x2e\x35\x68\x37\x2e\x39\ -\x39\x39\x39\x39\x39\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\ -\x65\x22\x2f\x3e\x0d\x0a\x3c\x2f\x67\x3e\x0d\x0a\x3c\x2f\x73\x76\ -\x67\x3e\x0d\x0a\ +\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x3e\x0a\x3c\ +\x67\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x36\x65\x39\x37\x63\ +\x34\x22\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x74\x72\ +\x61\x6e\x73\x6c\x61\x74\x65\x28\x30\x20\x2d\x38\x29\x22\x3e\x0a\ +\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x6d\x32\x2e\x35\x20\x31\x35\ +\x2e\x35\x68\x31\x39\x76\x31\x34\x68\x2d\x31\x39\x7a\x22\x20\x66\ +\x69\x6c\x6c\x3d\x22\x23\x65\x36\x65\x36\x65\x36\x22\x2f\x3e\x0a\ +\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x6d\x32\x2e\x35\x20\x31\x30\ +\x2e\x35\x68\x31\x39\x76\x35\x68\x2d\x31\x39\x7a\x22\x20\x66\x69\ +\x6c\x6c\x3d\x22\x23\x62\x61\x64\x39\x65\x63\x22\x2f\x3e\x0a\x3c\ +\x70\x61\x74\x68\x20\x64\x3d\x22\x6d\x35\x20\x31\x33\x68\x34\x22\ +\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x6f\x76\x65\ +\x72\x66\x6c\x6f\x77\x3d\x22\x76\x69\x73\x69\x62\x6c\x65\x22\x20\ +\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x32\x22\ +\x2f\x3e\x0a\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x6d\x31\x31\x20\ +\x31\x33\x68\x37\x2e\x39\x39\x39\x39\x39\x39\x22\x20\x66\x69\x6c\ +\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3d\x22\x32\x22\x2f\x3e\x0a\x3c\x70\x61\x74\ +\x68\x20\x64\x3d\x22\x6d\x35\x20\x31\x37\x2e\x35\x68\x34\x22\x20\ +\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x6f\x76\x65\x72\ +\x66\x6c\x6f\x77\x3d\x22\x76\x69\x73\x69\x62\x6c\x65\x22\x2f\x3e\ +\x0a\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x6d\x31\x31\x20\x31\x37\ +\x2e\x35\x68\x37\x2e\x39\x39\x39\x39\x39\x39\x22\x20\x66\x69\x6c\ +\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x2f\x3e\x0a\x3c\x70\x61\x74\x68\ +\x20\x64\x3d\x22\x6d\x35\x20\x32\x30\x2e\x35\x68\x34\x22\x20\x66\ +\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x6f\x76\x65\x72\x66\ +\x6c\x6f\x77\x3d\x22\x76\x69\x73\x69\x62\x6c\x65\x22\x2f\x3e\x0a\ +\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x6d\x31\x31\x20\x32\x30\x2e\ +\x35\x68\x37\x2e\x39\x39\x39\x39\x39\x39\x22\x20\x66\x69\x6c\x6c\ +\x3d\x22\x6e\x6f\x6e\x65\x22\x2f\x3e\x0a\x3c\x70\x61\x74\x68\x20\ +\x64\x3d\x22\x6d\x35\x20\x32\x33\x2e\x35\x68\x34\x22\x20\x66\x69\ +\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x6f\x76\x65\x72\x66\x6c\ +\x6f\x77\x3d\x22\x76\x69\x73\x69\x62\x6c\x65\x22\x2f\x3e\x0a\x3c\ +\x70\x61\x74\x68\x20\x64\x3d\x22\x6d\x31\x31\x20\x32\x33\x2e\x35\ +\x68\x37\x2e\x39\x39\x39\x39\x39\x39\x22\x20\x66\x69\x6c\x6c\x3d\ +\x22\x6e\x6f\x6e\x65\x22\x2f\x3e\x0a\x3c\x70\x61\x74\x68\x20\x64\ +\x3d\x22\x6d\x35\x20\x32\x36\x2e\x35\x68\x34\x22\x20\x66\x69\x6c\ +\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x6f\x76\x65\x72\x66\x6c\x6f\ +\x77\x3d\x22\x76\x69\x73\x69\x62\x6c\x65\x22\x2f\x3e\x0a\x3c\x70\ +\x61\x74\x68\x20\x64\x3d\x22\x6d\x31\x31\x20\x32\x36\x2e\x35\x68\ +\x37\x2e\x39\x39\x39\x39\x39\x39\x22\x20\x66\x69\x6c\x6c\x3d\x22\ +\x6e\x6f\x6e\x65\x22\x2f\x3e\x0a\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\ +\x76\x67\x3e\x0a\ \x00\x00\x03\x31\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ @@ -8994,135 +9147,91 @@ qt_resource_data = "\ \xd2\x52\x8f\x00\xef\x5d\xed\x96\x34\x47\x33\xf2\x03\xd9\x89\xe5\ \x59\xb5\x32\x0a\xea\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ -\x00\x00\x07\xe6\ +\x00\x00\x05\x2e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ -\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ -\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\x00\x00\x00\ -\x09\x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\xdd\ -\x7e\xfc\x00\x00\x00\x18\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\ -\x72\x65\x00\x70\x61\x69\x6e\x74\x2e\x6e\x65\x74\x20\x34\x2e\x30\ -\x2e\x36\xfc\x8c\x63\xdf\x00\x00\x07\x57\x49\x44\x41\x54\x58\x47\ -\xb5\x95\x7b\x50\xd4\xd7\x15\xc7\x37\xed\x4c\x3a\x7d\x45\x9b\x36\ -\x9d\x24\xed\x34\x6d\x33\x9d\x69\xed\xe4\x9f\x4e\xd3\x34\xd3\x8e\ -\xd6\xc6\xd4\xb4\x1d\x1b\x5b\xd4\x98\x38\xd6\x86\xe0\xab\x82\x22\ -\x56\x7c\x85\x80\xc6\x36\xc6\x77\x8c\x24\xf5\x19\x22\x6b\x22\x51\ -\x42\x0c\x20\x0a\xca\x5b\x10\xe4\xbd\x2c\x0b\x0b\xec\x2e\xbb\x0b\ -\x0b\xcb\x2e\xbb\xec\xfb\x05\x9f\xde\xfd\x6d\x21\x06\x7f\xa6\xda\ -\x31\x7f\x7c\xf6\x7e\xcf\xf9\xdd\x73\xce\xef\x9e\x7b\x7f\x77\x15\ -\xc0\x1d\x63\xfe\xfe\x13\xe8\x15\xf7\x63\xb8\xe7\x3b\xf4\x7d\xf1\ -\xbb\xe8\x14\x5f\x61\x68\x5e\xbc\x78\x24\x3f\xff\xb3\x90\x75\x7e\ -\x16\xae\xa3\x4a\x51\x7c\x9a\x28\xfe\x10\x7d\x8a\x87\x31\x08\xf4\ -\x8a\x6f\x63\x9c\xfe\x28\x61\xa3\x59\x4c\x91\x8f\xbb\x15\xb2\xce\ -\x5b\x11\x6c\xef\xc4\xfc\xbd\xc7\x31\x3e\xf0\x53\xfa\xee\x7d\x44\ -\x14\x7f\x50\xbc\xc8\x83\x18\xbf\xf9\x30\xc6\x87\x14\x8c\x1e\xdc\ -\x28\xa6\xc9\xc7\xde\x0a\x59\xe7\xad\xb0\xce\x8f\xc7\xf2\xeb\xf9\ -\x0c\xfc\xfc\x0f\x98\x1f\x7d\x12\xd3\x23\x3f\xc1\xfc\xa3\x6f\x31\ -\xf0\xab\xfb\x18\x9c\xf7\x25\x86\x13\xa6\x13\x71\xdc\x59\x17\x64\ -\x9d\x72\x8c\x6c\x7d\x0d\xeb\x73\xab\xb1\x2e\x16\x2c\x58\x26\x98\ -\x27\xf4\x13\x0c\xc5\x3d\x80\x75\xc9\xbd\xd8\xd6\x7e\x19\xdb\x3a\ -\x05\xde\x4b\x1b\xc4\x74\xf9\x1c\x72\xc8\x3a\xa7\xe2\x2b\xae\x60\ -\xf8\xf9\x35\x38\x32\x76\x61\x4f\x49\x61\xe4\xe5\x95\x38\xb6\xbf\ -\xc0\xc8\xf6\xdf\xe1\xd8\xf1\x33\x46\xd2\xee\x67\x24\xe3\x1e\x1c\ -\xaf\x29\x70\xbe\x79\x1f\x63\xee\x7e\x11\x26\x9f\x6b\x2a\xb2\xce\ -\xa9\x58\x66\xfd\x05\xef\x85\x42\x46\xb6\x25\xe1\x3e\xbd\x0b\xd7\ -\xd1\x64\x5c\x27\xe2\x71\x2b\x97\xe0\xca\x9a\xc3\xe8\xd1\x19\x38\ -\x0f\x7d\x0d\xe7\x1b\xe2\x25\xf6\x28\xf0\xd7\xdc\x7e\x17\x64\x9d\ -\x37\x62\x5f\x97\x84\x37\xaf\x00\x77\x56\x06\xde\x82\x13\xb8\xcf\ -\x6c\xc4\x77\x79\x37\x9e\x8f\xfe\x2e\xec\x17\xf1\x9c\x8f\xc3\x9d\ -\xfb\x14\xae\xec\x1f\x33\x7a\x6c\x1a\xae\x23\x5f\xc0\xa3\x9c\x26\ -\x42\xe5\xf3\x4d\x45\xd6\x39\x81\xb7\xf0\x2c\x23\x9b\x57\x88\x96\ -\x5a\x70\xee\x5f\x4c\xa8\xb7\x14\x4f\xfe\x26\xfc\x75\x7b\xf1\x57\ -\xa5\xe3\x2b\x4d\xc4\x57\xb6\x4a\x74\x67\x3e\xde\xfc\xd9\x78\xf2\ -\x66\xe0\xf9\x60\x3a\x9e\x53\x0a\x42\xaa\xdb\xfb\x22\x64\x9d\x51\ -\x22\x36\x0b\xb6\xa4\x99\x8c\x87\xc2\xb8\xdf\x5f\x49\xb0\xe3\x32\ -\xbe\xaa\xed\x04\x55\xef\x89\xe2\xa9\x04\x5a\x0f\x0b\x3b\x59\xb4\ -\x3b\x05\x7f\x65\x3c\xfe\xb2\x67\xf1\x5f\x99\x85\xbf\x78\x06\xfe\ -\xc2\xaf\x13\x28\xfe\xaa\x48\x23\x9f\xfb\x46\x64\x9d\x51\x9c\xfb\ -\x16\x12\xb8\x9e\x4f\xc4\x65\xc2\x75\x72\x0e\xe3\xc2\xe9\xc9\x7d\ -\x86\x88\xbd\x03\xef\x95\xe5\xa2\x1b\x39\x04\xea\x36\x13\x6c\x49\ -\x27\xd8\xb4\x81\x40\xfd\x52\x82\xf5\x71\x04\xaf\xcd\x26\x54\xfb\ -\x18\x81\x52\xd1\x05\xdd\x36\x11\x25\x9f\x7f\x02\x59\xa7\xaf\x3c\ -\x53\x1c\xb0\x15\x42\x8a\xa2\xf9\xcb\x44\xb1\x22\xc2\x43\xf5\x78\ -\x4b\xe2\xc5\x77\xde\x29\x56\xbe\x5a\xdc\x7a\x79\x04\xdb\x76\x10\ -\x52\xbf\x42\x48\x93\x4e\xa8\x6d\x25\x61\xf5\x72\xc2\xaa\x3f\x13\ -\x68\x99\x89\xeb\xfa\x63\x58\xaf\xfd\x30\x9a\x42\xb6\xc6\x04\x37\ -\x39\x22\x56\x2d\xa3\xff\x16\xad\x0f\xb8\x88\xd8\xd4\xb8\xcf\xce\ -\x16\x6e\xf0\x55\xac\x26\xa4\x2f\x10\x85\x3f\x24\xd8\xbe\x47\x8c\ -\xd9\x84\x7a\xde\x22\xdc\x95\x4e\xb8\x2f\x53\x8c\x49\xe2\x45\x53\ -\xf0\x69\x96\xe1\x54\xcd\x67\xa8\xf5\x19\x7a\x6a\x7f\x80\x45\x97\ -\x1e\x0d\xbf\xa9\xce\x04\x37\x39\xdc\xca\xa7\x45\xa1\x52\x21\x11\ -\x2b\x5e\x46\x50\x9b\xc3\xf8\xf8\xb8\x38\x68\xb3\x18\x8f\x04\xc4\ -\xaa\x37\x13\x1e\xb8\x48\xd8\x90\x49\xa4\xff\x0c\x11\xc3\x4e\x31\ -\x1e\x25\xd8\xbb\x01\x8f\xe1\x55\x1c\xda\x44\x06\x35\xf1\xe8\x55\ -\x71\xb4\x37\xfd\x96\xba\xfa\xc7\xa3\xa9\x6e\xaa\x33\xc1\xa7\x0c\ -\x7f\xcd\x0e\x7c\xe5\xb1\xd3\x1b\xdd\x6b\xcf\xc7\x4f\xc5\xf4\x50\ -\x25\x81\xab\xcf\x47\x35\xc1\xeb\x0b\x18\xf3\x9a\x88\xe8\x33\x18\ -\xb3\x15\x11\xd0\xa7\x11\x1a\xfe\x08\x67\x77\x0a\x0e\x73\x26\x96\ -\xee\xf5\x18\xb4\xc9\x74\x76\x24\xd0\xd4\xb6\x88\xe2\xba\x5f\xa0\ -\xd2\xbf\x2e\xe5\x91\x63\x52\x84\xfb\xaf\x8a\x76\xcf\x14\x32\x66\ -\xfb\xab\x57\x88\x16\x67\x4b\x76\xb0\x25\x59\xb4\x59\x29\x75\x22\ -\xd4\x38\x57\xf2\x05\x7a\xd6\x32\xe6\xaa\x63\xb4\x6f\x37\x3e\x5b\ -\x3e\x96\x9e\x4d\xd8\x2c\x4a\x7a\xb5\x1b\xd0\xea\x5e\xa5\xa5\x33\ -\x99\x6a\xf5\x4b\x5c\x6a\x5d\x82\xb2\xee\x59\x9c\xbe\x01\x29\x6e\ -\x2a\x93\xc2\xf3\xe1\x6f\x88\x0c\xb7\x08\x29\x56\xec\xd4\x88\x4f\ -\x2a\x56\x28\x4a\xb0\xee\xf7\x92\x1e\xf3\xe9\xc4\xa1\x8b\x93\xb4\ -\x43\xf3\x57\x22\xde\x2e\x06\xf5\x3b\x71\xdb\x0a\xd1\x8b\xd1\x3a\ -\x94\x8b\x4a\x9b\x8a\xc6\x98\x49\x6d\x67\x0a\x57\x34\x5b\x39\xaf\ -\x4a\xe3\x50\xcd\x3a\x0a\xba\xce\x49\x71\x53\x91\x7e\x7c\x65\x09\ -\x04\x9a\x3e\x69\x53\xb0\x71\x95\xb4\xe2\xa8\x1e\xb3\x5d\x26\xdc\ -\xfe\x82\xa4\x83\xd6\x0f\xf0\x74\xaf\x93\xb4\xb9\x7d\x51\x6c\x34\ -\x1d\xc6\x6e\x3d\x4f\xaf\xf9\x24\xc6\x01\x25\xf5\x3d\x3b\x50\x9b\ -\xb3\xb9\xd8\x91\x41\x51\x57\x16\xa7\x5b\xdf\xe6\xed\x26\x25\x5b\ -\xab\x94\x0c\x7a\x1c\x52\xcc\x8d\x28\xbc\x97\x16\x8a\x7d\x5f\x3a\ -\xf9\x60\xcc\xdd\x45\xb0\x36\xb6\xe2\x28\xe1\xde\x54\xc2\x96\xe3\ -\x92\xed\xd4\xef\x60\xd4\x7c\x58\xd2\x5d\x6d\xb1\x4e\xe8\xcc\xc7\ -\x30\x98\x8f\x63\xb4\x95\xd1\xa2\xdf\x4d\xa3\xf9\x63\xea\x0d\xd9\ -\xe4\x76\xbc\xc7\x85\xee\x8b\x64\x36\xe5\x92\xd9\x52\xcd\xfa\xaa\ -\x0a\x0e\xb4\x6a\xa5\x98\x1b\x51\x78\xf3\x9f\xfc\x94\x33\xd4\xbe\ -\x52\x9c\xea\xd8\xea\xa3\xb8\x55\xf3\x88\x04\x62\xff\x6e\x26\x71\ -\xba\xdd\x8e\x0a\x49\x5f\x6f\x9d\x2f\x8d\x5d\xfd\xef\xd2\x69\x3e\ -\x82\xd5\x63\xa2\x50\x9d\x81\xc1\x69\xe2\x8c\xea\x24\xc5\x86\x36\ -\xde\xd7\x94\xb3\xbf\xb9\x91\xbd\xcd\x1a\xd6\xd7\xea\x58\x78\x79\ -\x00\xa3\x3b\x24\xc5\x4d\x30\x29\xa2\x8c\x7b\xb5\x84\x9a\xe7\x08\ -\x19\xb3\x03\x8e\x4a\x6c\x9a\xbf\x4d\xda\xea\xff\xae\x3a\x4a\x79\ -\xeb\x42\x49\x77\x58\x2e\x50\xde\x7d\x40\xd2\x87\xeb\xc4\x9f\x54\ -\x28\x40\x46\x4d\x0e\x1d\x76\x3b\x69\xd7\xea\x79\xb7\xcb\x46\x5a\ -\x83\x85\xe4\xab\xc3\xac\x29\xb7\x90\x56\x33\x28\xcd\x9d\x60\x52\ -\x44\x09\x76\x25\x88\x1b\x2f\x76\xf2\xa3\x0c\x68\x93\x18\xb1\x9c\ -\x92\x6c\xbf\xdf\x48\x43\xdb\xe2\xc9\x67\xe7\x9b\x63\xe7\xa2\xb1\ -\xbf\x82\xbc\x8e\x77\x24\xbd\xa5\x32\x9b\xb1\xb1\x10\x29\xd5\x0d\ -\xf4\x38\x47\x49\xa8\xec\xa7\xd8\xe4\x25\xa1\xcc\xc2\xc1\x46\x2b\ -\xeb\xcb\xcc\x2c\xc8\xed\xc6\x34\x1a\x90\xe6\x47\x99\x2c\x1e\x25\ -\xe2\x69\x17\xc3\x27\xb6\xb1\x67\xcb\xa4\x6d\xb4\x16\x52\xa5\x4e\ -\x90\x6c\xbb\xa7\x8f\xd3\x4d\xb1\x67\x6d\xe2\xe6\x8c\xee\x73\x54\ -\x27\x56\x54\x61\xf7\xb9\xf9\x57\xb3\x8d\x3c\xc3\x28\x07\x9a\x47\ -\xc8\xd2\x38\xd8\x56\x69\x26\x4b\x35\xcc\xca\x82\x5e\x32\x4a\x0d\ -\x6c\x29\xd6\x49\xf3\xa3\x4c\x16\xfb\x5f\x0c\x3a\x1b\xd0\x59\x2f\ -\x09\x89\xc2\xe0\xd0\xb1\xa7\x66\x9f\xa4\x1b\x87\x4c\xbc\x52\x2b\ -\xdd\x9c\x8a\xc4\xab\x7d\xd4\x0e\x79\x28\x15\xab\xfe\xc7\xd5\x21\ -\xba\x6c\x3e\x5e\x2a\xea\xe3\x4a\xaf\x83\x8d\x25\x06\x0e\x56\x1b\ -\xd9\x5f\xd5\xc7\x73\xa7\x5a\x30\x3b\xfd\x52\x8c\x6c\xb1\xdb\xa1\ -\xda\x1c\xeb\x56\xf3\xb0\x93\x17\xcb\x34\x92\xfe\x67\xa3\x9d\x63\ -\x6a\xa7\xa4\xff\x94\xdb\x23\x5d\x5c\x7f\x3c\xad\xc6\x28\x8a\x2d\ -\x3a\xad\xa2\xb2\xd7\xce\xf2\x1c\x15\x87\xca\x7a\x49\xcd\x8d\xc5\ -\xcb\x26\xbf\x53\x0e\xb4\xc5\xbe\x6f\x65\x87\x9d\x14\xb1\xcf\x51\ -\x3d\x37\x5b\x8d\x2b\x18\x21\xb5\x50\x4b\xb1\xd6\xce\xeb\x25\x3d\ -\x28\x1b\xfa\xd9\x78\xb6\x8d\x9c\xeb\x26\x96\xee\xad\xa0\xdf\xee\ -\x95\x4f\xf8\xff\xd2\x3a\xe4\x25\xe9\xa2\x5e\x48\x14\xab\xf2\x3a\ -\x29\xd7\x39\xb8\xa6\x1f\x61\xcd\xb9\x76\xf4\x56\x37\x4b\x8f\xd7\ -\xd3\xd8\x65\x25\xe5\x48\x2d\x25\xd5\x3a\x7e\x19\xf7\x8e\x7c\xa2\ -\xbb\xc1\xf1\x5a\x23\x29\x79\x1d\x42\xa2\x78\x7a\x5f\x25\x63\x62\ -\x3b\xe2\x77\x97\xa1\x1f\x74\xb1\x71\x67\x09\x2a\xcd\x10\x49\x6b\ -\x73\xe5\x83\xef\x16\x39\x0d\xb1\xed\x48\x7c\xb3\x9a\x16\x9d\x9d\ -\xc2\x92\x2e\x4e\xe4\x34\xd3\x70\xcd\xc0\xae\x9d\xc5\xd1\x67\xf2\ -\x81\x77\x9b\xfc\x2b\x5a\xf6\x1d\xad\x11\x12\x45\x4a\xe2\x39\x22\ -\x91\x31\xd2\x97\x9f\x61\x64\xd8\x2d\x1f\xf0\x79\x50\x5f\xdf\x27\ -\x06\x14\x87\x5e\x2e\xa0\xa3\xc9\x44\x7d\x91\x9a\x4d\x73\xdf\x92\ -\x9f\xfc\x79\x52\x27\x0a\x67\x6d\x2f\x12\x12\x16\x7e\x23\x95\xff\ -\x00\xe4\x38\x3c\x4b\x88\x6e\xe4\x39\x00\x00\x00\x00\x49\x45\x4e\ -\x44\xae\x42\x60\x82\ +\x00\x00\x1a\x00\x00\x00\x1a\x08\x06\x00\x00\x00\xa9\x4a\x4c\xce\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x12\x74\x00\x00\x12\x74\ +\x01\xde\x66\x1f\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x04\xab\x49\x44\ +\x41\x54\x48\x89\xbd\x96\x6d\x4c\x93\x57\x14\xc7\x7f\xe5\x69\x29\ +\x2d\xb4\x45\x5a\xe4\x75\xab\x08\x32\x05\x44\x90\x31\xc9\xc2\x9c\ +\x3a\xcc\xde\x20\x99\x8b\xcc\x0c\xb2\x6c\x51\xe2\xd8\x07\xb7\xb8\ +\x99\xbd\xc4\x45\xf1\x65\x89\xee\xc5\xe9\xa2\xcb\xe2\x64\xba\x45\ +\xb3\x25\xd3\x30\xe7\x66\xc6\xdc\x26\x6e\x99\x02\x0e\x45\x01\x1d\ +\x4c\x14\x46\xb0\xbc\xd4\x5a\x68\x69\x29\x6d\xe9\x3e\x94\x3e\xa5\ +\x2b\x56\x4d\x96\x9d\x4f\xf7\x39\xe7\xff\xfc\xff\xf7\x9e\x7b\xee\ +\x3d\x57\x32\x6b\x61\xb9\x87\x10\xa6\x8c\x52\xd7\x3f\x5c\x52\x5e\ +\x10\x0a\x73\xea\xd8\xa1\x7a\x9b\x75\x38\x24\x26\x2c\x54\xf0\xbf\ +\x34\xe9\x9d\x80\xa6\x47\x2b\xc8\xd2\xc7\x90\x10\xa3\x24\x4a\x21\ +\x03\xc0\x6a\x77\x62\x30\xd9\x68\xeb\x36\xdd\x91\x90\x24\x54\xea\ +\x0a\x72\x33\x78\xfb\x95\xe7\x2d\xe9\x29\x49\xaa\x50\x24\x1d\xd7\ +\x7a\x2d\x5b\x76\x1e\x50\x35\x34\x5f\xbe\x3b\x21\xa9\x54\x60\xfd\ +\x9a\xe7\x28\x7f\xaa\x28\xe8\x07\x87\xd3\x0d\x80\x5c\x26\x04\xc5\ +\x0e\xd5\x9c\xe0\x9d\xdd\x07\x71\xb9\xdc\x41\xb1\xa0\xd4\x49\xa5\ +\x02\x7b\xb7\xad\xa3\x30\x7f\xae\xe8\x6b\xed\x36\xd1\xf0\xe7\x00\ +\x1d\xbd\x66\x46\xc7\xbc\x24\x11\xe1\x02\xe9\x49\xd1\x2c\x98\x3d\ +\x9d\x2c\x7d\x0c\x00\xe5\xcb\x96\xa2\x4f\x8e\x67\xf5\x9b\xef\x07\ +\x89\x09\x5a\x7d\x76\xd5\x64\xc7\x96\xd7\x56\xf1\xf8\xe2\x05\x00\ +\x18\x6f\x0e\xf1\xd6\xbb\xfb\x2f\x9d\x33\x08\xb1\xfd\x66\x3b\x2e\ +\xb7\x7f\xf1\x2e\xb7\x87\x7e\xb3\x9d\x73\x57\x8c\xd4\x1e\x3f\x7e\ +\xe9\xfe\xec\x59\xb1\x4a\x45\x04\xf7\x26\xc5\xa1\x8b\xd1\x70\xf2\ +\xf4\xf9\x00\xa1\x80\xaa\x2b\x98\x9f\x41\x69\xf1\x22\x00\x06\x4d\ +\x43\x94\x56\x56\x71\xaa\xb1\x65\x38\x28\x0f\xff\xb2\xba\x86\x8b\ +\xc3\xa5\x95\x55\x0c\x9a\x86\x00\x58\x51\xb2\x84\x82\xdc\x8c\x00\ +\x8c\xa4\xa8\x62\xdb\x19\xdf\xc7\xbe\x4d\xab\xb2\xf4\x89\xba\x28\ +\x8f\xc7\xc3\xfa\x8f\x8e\xb4\x9d\x6d\xed\xb4\x80\xc4\xa8\x54\xa9\ +\x74\xa1\x84\x6c\x16\x8b\x11\x3c\xba\x07\xe6\xce\x54\x6f\x5d\xb3\ +\x3c\x43\x22\x91\xd0\x7d\xdd\x38\x52\xb1\xb1\xba\xc5\x87\x91\xce\ +\xc9\x2b\x2c\x00\x88\x8b\x56\xa0\x4f\xf4\xf2\x5d\xec\x32\x61\x95\ +\x27\x64\xce\xc9\x4b\x20\x2b\x39\xb2\x7d\xfe\xbd\x8a\xfb\xbe\x38\ +\x52\xcb\x0f\x75\x8d\x53\x0a\x2d\x2c\x2e\xab\x57\xaa\x34\x05\x16\ +\xa0\xa5\xcb\x44\x76\x8a\x16\x7d\xa2\x2e\x72\xd1\x23\x4b\x0b\xfa\ +\xcd\x76\xaf\x90\x0f\x9c\x39\xb1\xa1\x00\x8d\xed\x03\xe2\xf8\x89\ +\x05\xa9\x89\xc9\xb1\x2a\x72\x33\xd3\x18\x75\x8c\x51\x77\xa6\x39\ +\x64\x1a\x1b\x3b\x06\xc9\x4e\xd1\x8a\x9c\xfd\xe6\x5e\x60\xd2\x1e\ +\xe9\xd4\x11\x22\xf8\x6a\x9f\x45\x1c\xff\xde\xda\x33\x08\x20\x08\ +\x02\xbb\xaa\x5e\x26\x27\x23\x2d\xa4\x50\xa7\x61\x48\x1c\xeb\x34\ +\x7e\x4e\x51\x48\xa5\xf4\x9e\xf8\xf1\x71\x0f\xb6\x51\xa7\x08\x38\ +\xf1\x47\xd7\xc0\x9e\xcf\xbf\x01\x40\x11\x11\xce\xde\xed\xeb\x48\ +\xd5\x27\xde\x52\xc8\x36\xea\xc2\x3d\xee\xad\x4e\xf5\xc4\x2d\x02\ +\x93\x52\x67\x77\x78\xeb\x3e\x2c\x4c\x42\xb8\x4c\x10\x0f\x26\xc0\ +\xae\xcf\x0e\x13\xab\xd5\xf0\x4c\xf1\x62\xa2\xd5\x51\x54\xbf\xf7\ +\x06\xdf\xfd\x7c\x1a\x00\xeb\x88\x1d\x53\x58\xa4\x7c\x78\x62\x6e\ +\x32\xa9\x80\x10\x26\xf1\x72\x8e\xf9\x39\x44\xa1\xa1\x11\x87\xe8\ +\x8c\x9f\xa6\xa0\x7b\xc0\x1a\x30\xd3\x8d\x1f\xec\x27\x26\x5a\x4d\ +\x51\x61\x1e\x89\x71\x5a\x56\x97\x95\x88\xb1\xab\x06\xf3\xcc\x9d\ +\x47\xdb\x00\x48\x88\x51\x88\x7e\xb3\xd5\xcf\x29\xa6\xee\xaf\xeb\ +\xfe\xdc\xce\x9b\x19\x5c\xcd\xee\xf1\x71\x5e\xdd\xbc\x87\xa6\x96\ +\xf6\xa0\x98\xe1\x86\xc5\xee\x1b\xe7\x4c\xfa\x77\x32\xa7\xb8\xa2\ +\x2b\x86\x61\xac\x76\x27\x51\x0a\x19\x0f\x65\xc6\x73\xf2\x42\x2f\ +\x16\xbb\x7f\xaf\x00\x46\x1d\x63\xac\x5c\xb7\x1d\x5d\x4c\xb4\x7f\ +\x02\x6e\x37\x69\xf9\x8f\x76\x29\x55\x9a\x78\xb5\x32\x9c\xc2\xcc\ +\x78\xc0\x7b\xbb\x5f\x31\xf8\xcf\xba\xf4\xd7\x63\x87\xea\x7d\x1f\ +\x07\xa3\x6e\x26\x54\x96\x3d\xa9\x97\xcb\x04\xca\x1e\x8c\x1b\x5e\ +\xf9\xfa\x8e\xcb\xe1\x4a\xb5\x71\x61\x71\x59\x3d\x21\xac\xbd\xf9\ +\x8c\xd1\x6e\x35\x37\x54\x6f\x5f\x3b\x5b\x2e\x13\x34\x00\x07\x6b\ +\x7e\xec\xaa\x3b\xfa\x7d\x9f\x0f\x13\x70\x7b\xcb\x64\x52\x6a\x3e\ +\xdd\x4a\x7a\x4a\x32\x00\x3f\xfd\xd6\xc4\xe6\xdd\x5f\x9e\xcd\x59\ +\xbc\x2c\x3f\x94\x50\xf3\xc9\x9a\xb3\x1b\xd6\x3c\x9b\x5f\x54\x98\ +\xe7\x15\xee\xfc\x9b\xa7\x5f\xdc\x80\xd3\xe9\x12\x31\x41\x6d\x22\ +\x29\x3e\x96\xc3\x9f\x6c\x42\x3b\x4d\x0d\xc0\xc0\x8d\x21\x47\xed\ +\x85\x01\x79\x73\xa7\x11\xa7\x7b\x3c\x40\x40\x26\x84\x91\x93\xaa\ +\xe3\xb1\x79\xd3\x1d\xb1\x5a\x8d\x1c\xe0\xc6\xcd\x61\x96\x57\x6e\ +\xa4\xb7\x6f\x30\x00\x3b\x65\x3f\x4a\x9b\x91\xc4\xc7\x5b\xd7\x32\ +\xe3\x9e\x78\xd1\x37\xe6\x72\xd3\x69\xb0\x60\x9e\xa8\xce\xe8\x48\ +\x39\xa9\x09\x2a\xc2\xa5\xfe\xbe\xd4\xd5\xd3\xc7\x4b\xeb\x77\xd0\ +\xd9\x7d\x3d\x68\xd5\xb7\xec\xb0\xea\x28\x25\x6b\x2b\x4a\x59\x51\ +\xb2\xc4\x23\x95\x0a\x92\xa9\x30\x3e\x73\xb9\xdc\x9e\xaf\xbe\xfd\ +\x45\xf2\xe1\xbe\xaf\xb1\x8c\xd8\xa6\xc4\x84\x6c\xe5\x00\x99\x73\ +\xd2\xcf\x57\xac\x7a\x21\xd7\xf7\x66\x08\x97\x86\x4d\xac\x70\x1c\ +\x83\xc9\x46\x6b\xb7\x89\x7d\xd5\x07\xce\xb7\x5d\xee\xc8\x0d\xc5\ +\x73\xdb\xc7\xc9\xb5\x9e\x3e\x47\x6d\x53\x0f\xb5\x4d\x3d\x80\xb7\ +\x85\x4b\x24\x88\x9d\xd6\x87\xb9\x1d\xcf\x1d\xbd\x82\x26\xdb\xe4\ +\xab\xe9\x6e\xec\x7f\x7b\xd7\xfd\x03\x6c\xdc\xb6\x04\xed\x70\xfb\ +\x94\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x06\x08\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ @@ -9664,59 +9773,59 @@ qt_resource_struct = "\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\ \x00\x00\x00\x26\x00\x02\x00\x00\x00\x35\x00\x00\x00\x03\ -\x00\x00\x03\x9e\x00\x00\x00\x00\x00\x01\x00\x00\x96\x1e\ -\x00\x00\x05\xee\x00\x00\x00\x00\x00\x01\x00\x01\xff\x45\ +\x00\x00\x03\x9e\x00\x00\x00\x00\x00\x01\x00\x00\x9d\xe7\ +\x00\x00\x05\xee\x00\x00\x00\x00\x00\x01\x00\x02\x08\xfd\ \x00\x00\x01\x3c\x00\x00\x00\x00\x00\x01\x00\x00\x25\x40\ -\x00\x00\x04\x62\x00\x00\x00\x00\x00\x01\x00\x01\xbe\xec\ -\x00\x00\x07\x9c\x00\x00\x00\x00\x00\x01\x00\x02\x27\x04\ -\x00\x00\x06\x44\x00\x00\x00\x00\x00\x01\x00\x02\x07\xa3\ -\x00\x00\x05\xa0\x00\x00\x00\x00\x00\x01\x00\x01\xfc\x46\ -\x00\x00\x04\xca\x00\x00\x00\x00\x00\x01\x00\x01\xd7\xec\ -\x00\x00\x03\x52\x00\x00\x00\x00\x00\x01\x00\x00\x78\xa9\ -\x00\x00\x07\xe2\x00\x00\x00\x00\x00\x01\x00\x02\x32\xd4\ -\x00\x00\x06\xba\x00\x00\x00\x00\x00\x01\x00\x02\x12\x51\ -\x00\x00\x02\x46\x00\x00\x00\x00\x00\x01\x00\x00\x4a\x71\ +\x00\x00\x04\x62\x00\x00\x00\x00\x00\x01\x00\x01\xc6\xb5\ +\x00\x00\x07\x9c\x00\x00\x00\x00\x00\x01\x00\x02\x30\xac\ +\x00\x00\x06\x44\x00\x00\x00\x00\x00\x01\x00\x02\x11\x4b\ +\x00\x00\x05\xa0\x00\x00\x00\x00\x00\x01\x00\x02\x04\x0f\ +\x00\x00\x04\xca\x00\x00\x00\x00\x00\x01\x00\x01\xdf\xb5\ +\x00\x00\x03\x52\x00\x00\x00\x00\x00\x01\x00\x00\x80\x72\ +\x00\x00\x07\xe2\x00\x00\x00\x00\x00\x01\x00\x02\x39\xc4\ +\x00\x00\x06\xba\x00\x00\x00\x00\x00\x01\x00\x02\x1b\xf9\ +\x00\x00\x02\x46\x00\x00\x00\x00\x00\x01\x00\x00\x52\x3a\ \x00\x00\x00\x9a\x00\x00\x00\x00\x00\x01\x00\x00\x16\x1f\ \x00\x00\x01\x14\x00\x00\x00\x00\x00\x01\x00\x00\x1e\xd8\ -\x00\x00\x05\xce\x00\x00\x00\x00\x00\x01\x00\x01\xfe\xc1\ -\x00\x00\x03\xee\x00\x00\x00\x00\x00\x01\x00\x01\xb3\x09\ -\x00\x00\x02\x70\x00\x00\x00\x00\x00\x01\x00\x00\x4f\x65\ +\x00\x00\x05\xce\x00\x00\x00\x00\x00\x01\x00\x02\x06\x8a\ +\x00\x00\x03\xee\x00\x00\x00\x00\x00\x01\x00\x01\xba\xd2\ +\x00\x00\x02\x70\x00\x00\x00\x00\x00\x01\x00\x00\x57\x2e\ \x00\x00\x00\x62\x00\x00\x00\x00\x00\x01\x00\x00\x03\x30\ \x00\x00\x00\xe8\x00\x00\x00\x00\x00\x01\x00\x00\x1c\x1f\ -\x00\x00\x04\xec\x00\x00\x00\x00\x00\x01\x00\x01\xda\x16\ -\x00\x00\x07\x1e\x00\x00\x00\x00\x00\x01\x00\x02\x19\xfd\ -\x00\x00\x07\x46\x00\x00\x00\x00\x00\x01\x00\x02\x1e\x56\ -\x00\x00\x05\x6e\x00\x00\x00\x00\x00\x01\x00\x01\xf7\x23\ -\x00\x00\x08\x76\x00\x00\x00\x00\x00\x01\x00\x02\x3e\x8a\ -\x00\x00\x05\x5a\x00\x00\x00\x00\x00\x01\x00\x01\xf0\xcb\ -\x00\x00\x08\x3e\x00\x00\x00\x00\x00\x01\x00\x02\x3b\x84\ -\x00\x00\x02\xa6\x00\x00\x00\x00\x00\x01\x00\x00\x55\x99\ +\x00\x00\x04\xec\x00\x00\x00\x00\x00\x01\x00\x01\xe1\xdf\ +\x00\x00\x07\x1e\x00\x00\x00\x00\x00\x01\x00\x02\x23\xa5\ +\x00\x00\x07\x46\x00\x00\x00\x00\x00\x01\x00\x02\x27\xfe\ +\x00\x00\x05\x6e\x00\x00\x00\x00\x00\x01\x00\x01\xfe\xec\ +\x00\x00\x08\x76\x00\x00\x00\x00\x00\x01\x00\x02\x45\x7a\ +\x00\x00\x05\x5a\x00\x00\x00\x00\x00\x01\x00\x01\xf8\x94\ +\x00\x00\x08\x3e\x00\x00\x00\x00\x00\x01\x00\x02\x42\x74\ +\x00\x00\x02\xa6\x00\x00\x00\x00\x00\x01\x00\x00\x5d\x62\ \x00\x00\x00\x36\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x04\x40\x00\x00\x00\x00\x00\x01\x00\x01\xbb\x2e\ -\x00\x00\x01\xd4\x00\x00\x00\x00\x00\x01\x00\x00\x33\x03\ -\x00\x00\x08\x10\x00\x00\x00\x00\x00\x01\x00\x02\x38\xe0\ +\x00\x00\x04\x40\x00\x00\x00\x00\x00\x01\x00\x01\xc2\xf7\ +\x00\x00\x01\xd4\x00\x00\x00\x00\x00\x01\x00\x00\x3a\xcc\ +\x00\x00\x08\x10\x00\x00\x00\x00\x00\x01\x00\x02\x3f\xd0\ \x00\x00\x00\xbc\x00\x00\x00\x00\x00\x01\x00\x00\x17\x71\ -\x00\x00\x05\x1a\x00\x00\x00\x00\x00\x01\x00\x01\xdd\x44\ -\x00\x00\x03\xce\x00\x00\x00\x00\x00\x01\x00\x00\x9c\xb7\ -\x00\x00\x04\x1e\x00\x00\x00\x00\x00\x01\x00\x01\xb6\xca\ -\x00\x00\x07\xcc\x00\x00\x00\x00\x00\x01\x00\x02\x2a\xea\ +\x00\x00\x05\x1a\x00\x00\x00\x00\x00\x01\x00\x01\xe5\x0d\ +\x00\x00\x03\xce\x00\x00\x00\x00\x00\x01\x00\x00\xa4\x80\ +\x00\x00\x04\x1e\x00\x00\x00\x00\x00\x01\x00\x01\xbe\x93\ +\x00\x00\x07\xcc\x00\x00\x00\x00\x00\x01\x00\x02\x34\x92\ \x00\x00\x01\xba\x00\x00\x00\x00\x00\x01\x00\x00\x32\x7e\ \x00\x00\x00\x80\x00\x00\x00\x00\x00\x01\x00\x00\x12\xcd\ \x00\x00\x01\x56\x00\x00\x00\x00\x00\x01\x00\x00\x27\x7f\ -\x00\x00\x07\x74\x00\x00\x00\x00\x00\x01\x00\x02\x22\x0f\ -\x00\x00\x06\x16\x00\x00\x00\x00\x00\x01\x00\x02\x04\xba\ +\x00\x00\x07\x74\x00\x00\x00\x00\x00\x01\x00\x02\x2b\xb7\ +\x00\x00\x06\x16\x00\x00\x00\x00\x00\x01\x00\x02\x0e\x72\ \x00\x00\x01\x82\x00\x00\x00\x00\x00\x01\x00\x00\x2c\x40\ -\x00\x00\x06\x72\x00\x00\x00\x00\x00\x01\x00\x02\x0a\xd8\ -\x00\x00\x01\xf6\x00\x00\x00\x00\x00\x01\x00\x00\x41\x54\ -\x00\x00\x02\xec\x00\x00\x00\x00\x00\x01\x00\x00\x6c\xc4\ -\x00\x00\x06\x90\x00\x00\x00\x00\x00\x01\x00\x02\x10\xb5\ -\x00\x00\x04\xa0\x00\x00\x00\x00\x00\x01\x00\x01\xc9\x3f\ -\x00\x00\x06\xee\x00\x00\x00\x00\x00\x01\x00\x02\x14\x63\ -\x00\x00\x03\x22\x00\x00\x00\x00\x00\x01\x00\x00\x72\x83\ -\x00\x00\x02\xc2\x00\x00\x00\x00\x00\x01\x00\x00\x67\xbe\ -\x00\x00\x05\x3e\x00\x00\x00\x00\x00\x01\x00\x01\xeb\x0c\ -\x00\x00\x02\x20\x00\x00\x00\x00\x00\x01\x00\x00\x45\x67\ -\x00\x00\x03\x72\x00\x00\x00\x00\x00\x01\x00\x00\x8a\x8d\ +\x00\x00\x06\x72\x00\x00\x00\x00\x00\x01\x00\x02\x14\x80\ +\x00\x00\x01\xf6\x00\x00\x00\x00\x00\x01\x00\x00\x49\x1d\ +\x00\x00\x02\xec\x00\x00\x00\x00\x00\x01\x00\x00\x74\x8d\ +\x00\x00\x06\x90\x00\x00\x00\x00\x00\x01\x00\x02\x1a\x5d\ +\x00\x00\x04\xa0\x00\x00\x00\x00\x00\x01\x00\x01\xd1\x08\ +\x00\x00\x06\xee\x00\x00\x00\x00\x00\x01\x00\x02\x1e\x0b\ +\x00\x00\x03\x22\x00\x00\x00\x00\x00\x01\x00\x00\x7a\x4c\ +\x00\x00\x02\xc2\x00\x00\x00\x00\x00\x01\x00\x00\x6f\x87\ +\x00\x00\x05\x3e\x00\x00\x00\x00\x00\x01\x00\x01\xf2\xd5\ +\x00\x00\x02\x20\x00\x00\x00\x00\x00\x01\x00\x00\x4d\x30\ +\x00\x00\x03\x72\x00\x00\x00\x00\x00\x01\x00\x00\x92\x56\ " def qInitResources():