Browse Source

more convenient startup setup. Also fix bug with repeat to here context menu

master
Nils 5 years ago
parent
commit
3870ad379a
  1. 5
      CHANGELOG
  2. 2
      engine/api.py
  3. 11
      engine/main.py
  4. 29
      engine/pattern.py
  5. 16
      qtgui/pattern_grid.py
  6. 502
      qtgui/resources.py

5
CHANGELOG

@ -1,8 +1,11 @@
2019-10-15 Version 1.4
Activate the first pattern for all three tracks on a new project to ease up starting
Set default drums track for new projects to use GM Drum note names and start with a good scale
Use Median Velocity for new notes, not average.
Remove global jack transport stop on normal program exit
Provide icons in all common sizes
Submenus now have OK and Cancel buttons, not only shortcuts.
Various bugfixes.
Various bugfixes and cosmetical changes.
2019-07-15 Version 1.3
Add "Invert Row" to pattern context menu, if clicked on a step.

2
engine/api.py

@ -152,7 +152,7 @@ class ClientCallbacks(Callbacks): #inherits from the templates api callbacks
def _trackMetaDataChanged(self, track):
"""a low cost function that should not trigger anything costly to redraw
but some text and simple widgets."""
export = track.export()
export = track.export()
for func in self.trackMetaDataChanged:
func(export)

11
engine/main.py

@ -58,10 +58,15 @@ class Data(template.engine.sequencer.Score):
self.subdivisions = 1
self.lastUsedNotenames = simpleNoteNames["English"] #The default value for new tracks/patterns. Changed each time the user picks a new representation via api.setNoteNames . noteNames are saved with the patterns.
self.addTrack(name="Melody A", color="#ffff00")
self.tracks[0].structure=set((0,)) #Already have the first pattern activated, so 'play' after startup already produces sounding notes. This is less confusing for a new user.
self.addTrack(name="Bass A", color="#00ff00")
#Create three tracks with their first pattern activated, so 'play' after startup already produces sounding notes. This is less confusing for a new user.
self.addTrack(name="Melody A", color="#ffff00")
self.addTrack(name="Bass A", color="#00ff00")
self.addTrack(name="Drums A", color="#ff5500")
self.tracks[0].structure=set((0,))
self.tracks[1].structure=set((0,))
self.tracks[2].structure=set((0,))
self.tracks[2].pattern.simpleNoteNames = simpleNoteNames["Drums GM"]
self.tracks[2].pattern.scale = (49, 53, 50, 45, 42, 39, 38, 36) #A pretty good starter drum set
self._processAfterInit()

29
engine/pattern.py

@ -23,6 +23,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#Standard Library Modules
from typing import List, Set, Dict, Tuple
from warnings import warn
from statistics import median
#Third Party Modules
from calfbox import cbox
@ -146,7 +147,15 @@ class Pattern(object):
result[i] = True
return result
def repeatFromStep(self, pitchindex, stepIndex):
def _getRowWithNoneFillers(self, pitchindex):
existingSteps = self.getRow(pitchindex)
result = [None] * self.parentTrack.parentData.howManyUnits
for st in existingSteps:
result[st["index"]] = st
return result
def _old_repeatFromStep(self, pitchindex, stepIndex):
"""Includes the given step.
Uses average velocities
"""
@ -165,6 +174,21 @@ class Pattern(object):
self._putRow(pitchindex, newRow)
def repeatFromStep(self, pitchindex, stepIndex):
"""Includes the given step.
Uses original velocities and scale factors
"""
originalRow = self._getRowWithNoneFillers(pitchindex)
toRepeatChunk = originalRow[:stepIndex+1]
numberOfRepeats, rest = divmod(self.parentTrack.parentData.howManyUnits, stepIndex+1)
newRow = []
for i in range(numberOfRepeats):
for st in toRepeatChunk:
if st:
s = st.copy()
s["index"] = len(toRepeatChunk)*i + s["index"]
newRow.append(s)
self._putRow(pitchindex, newRow)
def invertRow(self, pitchindex):
vel = self.averageVelocity
@ -215,7 +239,8 @@ class Pattern(object):
note["exceedsPlayback"] = False #This is set by buildPattern.
self.exportCache.append(note)
self.averageVelocity = int( sum((n["velocity"] for n in self.data)) / len(self.data) ) if self.data else DEFAULT_VELOCITY
#self.averageVelocity = int( sum((n["velocity"] for n in self.data)) / len(self.data) ) if self.data else DEFAULT_VELOCITY
self.averageVelocity = int(median(n["velocity"] for n in self.data)) if self.data else DEFAULT_VELOCITY
self._exportCacheVersion += 1 #used by build pattern for its cache hash
def buildPattern(self, scaleTransposition, halftoneTransposition, howManyUnits, whatTypeOfUnit, subdivisions):

16
qtgui/pattern_grid.py

@ -74,7 +74,7 @@ class PatternGrid(QtWidgets.QGraphicsScene):
self.scale = Scale(parentScene=self)
self.addItem(self.scale)
self.scale.setPos(0, SIZE_TOP_OFFSET)
self.scale.setPos(-20, SIZE_TOP_OFFSET)
velocityControlsProxy = self.addWidget(VelocityControls(parentScene=self))
velocityControlsProxy.setPos(0, 25) #we can't get the height of the track name properly. So it was trial and error...
@ -192,7 +192,7 @@ class PatternGrid(QtWidgets.QGraphicsScene):
to trigger a redraw even during the track change.
"""
if force or self.parentView.parentMainWindow.currentTrackId == exportDict["id"]:
if force or self.parentView.parentMainWindow.currentTrackId == exportDict["id"]:
self.trackName.setText(exportDict["sequencerInterface"]["name"])
self.trackName.show()
c = QtGui.QColor(exportDict["color"])
@ -310,7 +310,13 @@ class PatternGrid(QtWidgets.QGraphicsScene):
trackId = self.parentView.parentMainWindow.currentTrackId
potentialStep = self.itemAt(event.scenePos().x(), event.scenePos().y(), self.parentView.transform())
if not type(potentialStep) is Step:
potentialSteps = [st for st in self.items(event.scenePos()) if type(st) is Step]
#An over-long active step is stacked before the actual step. We need to either find the lowest
#or the one furthest to the right because active notes can't have negative duration
if potentialSteps:
potentialStep = max(potentialSteps, key=lambda ls: ls.column)
else:
potentialStep = None
listOfLabelsAndFunctions = [
@ -320,7 +326,7 @@ class PatternGrid(QtWidgets.QGraphicsScene):
]
if potentialStep:
listOfLabelsAndFunctions.insert(0, (QtCore.QCoreApplication.translate("EventContextMenu", "Repeat to here to fill Row"), lambda: api.patternRowRepeatFromStep(trackId, potentialStep.row, potentialStep.column)))
listOfLabelsAndFunctions.insert(0, (QtCore.QCoreApplication.translate("EventContextMenu", f"Repeat to step {potentialStep.column+1} incl. to fill Row"), lambda: api.patternRowRepeatFromStep(trackId, potentialStep.row, potentialStep.column)))
listOfLabelsAndFunctions.insert(0, (QtCore.QCoreApplication.translate("EventContextMenu", "Clear Row"), lambda: api.patternClearRow(trackId, potentialStep.row)))
listOfLabelsAndFunctions.insert(0, (QtCore.QCoreApplication.translate("EventContextMenu", "Invert Row"), lambda: api.patternInvertRow(trackId, potentialStep.row)))
@ -780,7 +786,7 @@ class PitchWidget(QtWidgets.QGraphicsProxyWidget):
self.label = QtWidgets.QLabel() #changed in spinBoxValueChanged
self.label.setText("")
self.label.setFixedSize(90, 18)
self.label.setFixedSize(110, 18)
self.label.setAlignment(QtCore.Qt.AlignRight | QtCore.Qt.AlignVCenter)
layout.addWidget(self.label)

502
qtgui/resources.py

@ -9,6 +9,231 @@
from PyQt5 import QtCore
qt_resource_data = b"\
\x00\x00\x02\xbb\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x26\x00\x00\x00\x1e\x08\x06\x00\x00\x00\x40\x14\x6c\x6e\
\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\x03\xb4\x00\x00\x03\xb4\
\x01\xd8\x39\x88\xbf\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\x0b\x74\x45\
\x58\x74\x54\x69\x74\x6c\x65\x00\x53\x68\x61\x70\x65\x26\xef\x99\
\x91\x00\x00\x02\x21\x49\x44\x41\x54\x58\x85\xcd\xd7\x3d\x68\x13\
\x71\x18\xc7\xf1\xdf\xf3\xbf\x88\x16\xdb\x26\xb1\x20\x22\x08\xf1\
\x42\x17\x4d\xd2\x2a\x75\x10\xba\x58\x70\x71\x89\x08\x82\x83\xae\
\x5d\xec\xe0\x26\xb8\x58\x9c\xc4\xd9\x0a\x8e\x22\x14\x37\x11\x71\
\xe9\xa0\xe0\x6b\xa0\x8b\xb9\x4b\xa7\x34\x97\x48\x41\x07\xb9\xe6\
\xce\x06\x94\x36\x77\x8f\x43\xcf\xe6\x4f\x68\x2f\x2f\x77\x97\xf8\
\x5d\x92\x70\x2f\xf9\xdc\x93\x67\x09\x69\x86\xf5\x74\x7b\x33\xbe\
\x30\x33\x43\x3b\x08\x98\x6e\x58\x97\x19\x58\xf1\x39\xa5\x94\x53\
\x13\xd9\xb5\x6a\xe3\x84\xc3\xcd\x1f\x7e\xf7\x12\x00\xe6\x0f\x1f\
\xfb\xf5\xb6\xb8\xbe\x75\x3c\x28\x0c\x00\xf9\x1f\x25\xf2\x5e\xfc\
\xcf\xf3\x60\x60\xf0\x2c\x09\xe7\xcb\xd7\xb2\x79\x36\x04\x5c\x28\
\x09\xe9\xbd\x2a\x14\xa5\xa0\x55\xeb\xf9\xa1\x69\xa4\x44\xdb\xe7\
\x51\x30\xbd\x2c\x56\xea\x8b\xcc\xdc\x71\xdc\x51\xd6\x0e\x03\x76\
\x57\xe0\x7e\xc9\xb0\x97\x3f\x6f\x6c\x8c\x0c\x5c\xe4\xb5\x1f\x0c\
\x00\xc0\x84\x1b\xa3\x3b\x63\x9f\xf4\x75\xf3\xd4\x20\x41\xff\x3a\
\x10\xe6\x75\x8e\x45\xac\x50\xaa\xd8\x17\x06\xa2\x91\xea\x04\x03\
\xc0\x27\x5d\xe2\xf7\xba\x61\xdf\x8a\x9e\xd3\xaa\x0b\x18\x00\xe0\
\x08\x83\x9f\x69\x15\xeb\x21\x33\x77\x7b\x4d\xa0\x7a\xf9\x12\x02\
\xe1\xae\x5e\xb3\x5f\x97\xcb\xe6\x78\x64\x22\xaf\xde\x9f\x9e\x71\
\xe5\xb7\xa2\x7c\x2c\xd6\xac\xd3\x11\x78\xf6\xea\xf7\x67\xc9\x92\
\x8b\xd5\x52\xad\x7e\x29\x54\x8d\x54\x90\x7d\x99\x70\x5d\x5a\xd1\
\x0c\xfb\x76\x68\x1a\xa9\x58\xf0\xeb\xf9\xb1\x66\x58\xb9\xed\xcd\
\xf8\x02\x60\x87\x82\x02\x82\x4d\x2c\xd2\x82\x4e\xac\x09\xd0\x9d\
\x9c\x1a\x5f\x02\x00\xdd\xb0\x42\x20\xed\x16\x04\x66\x0a\xc1\xd7\
\x33\xa9\xc4\xbb\xd0\x34\x52\xfd\xc2\x74\x16\xc8\x67\x52\xc9\x6a\
\xa8\x1a\xa9\x3e\x76\x8c\xdf\x8c\x38\xce\xec\x54\x2a\x11\x19\x0a\
\xe8\x6d\x62\x0c\xc6\xa3\xac\x9a\xb8\x47\x44\x6e\x64\x22\xaf\x6e\
\x61\x7f\x08\x34\x9f\x4d\xc7\x9f\x47\xaa\x91\xea\x02\x46\xdf\x05\
\xe3\x6a\x26\x1d\x5f\x8d\x9e\xd3\xaa\x13\xac\x10\x13\xb1\x6b\x67\
\x52\x47\x7d\xff\x6a\x45\xd1\x81\xcb\x4f\x8c\x17\x8d\x43\x5b\x73\
\xc3\x40\x01\xfb\x4f\x8c\x99\xf9\x41\x2e\x9d\x5c\x1c\x34\x46\xae\
\x1d\xd6\x00\xf1\xcd\x29\x35\xf9\x6a\x28\x1a\xa9\x16\x8c\x50\x71\
\x9b\x4e\x7e\x7a\x72\x62\x6d\x88\x9e\xbd\xbc\x1d\xa3\x0f\xcd\xa6\
\x72\xf1\x7f\x41\x01\x80\x20\xe0\x89\xf9\x6d\x7c\xee\xfc\xe4\xd8\
\xcf\x61\x63\xe4\xfe\x02\x9c\xf5\xa3\xbb\x96\xa3\x3a\x87\x00\x00\
\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x04\xfc\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x26\x00\x00\x00\x1e\x08\x06\x00\x00\x00\x40\x14\x6c\x6e\
\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\x03\xb4\x00\x00\x03\xb4\
\x01\xd8\x39\x88\xbf\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\x0b\x74\x45\
\x58\x74\x54\x69\x74\x6c\x65\x00\x53\x68\x61\x70\x65\x26\xef\x99\
\x91\x00\x00\x04\x62\x49\x44\x41\x54\x58\x85\xb5\x97\x5d\x4c\x5b\
\x75\x18\xc6\x9f\xf7\x9c\xf2\x3d\xd6\x76\xa0\x63\xe8\xc2\x5a\xac\
\x71\x94\x42\x34\xc4\xcc\x69\x08\xc4\x68\x62\x62\x30\x8e\x48\x30\
\x3a\xe3\xe2\x85\xde\xb8\x68\x8c\xba\xb9\x0b\x13\xbd\xf1\x13\x33\
\x2e\x4c\x8c\x66\x1a\x3f\x92\x05\x75\xd9\x84\xed\x82\xcc\x91\x90\
\xb9\xc4\x8c\x7d\x40\x01\x49\x18\x2d\x6c\x8e\x39\x07\x96\x02\x2b\
\x50\x7a\xce\xe3\x85\x80\xdd\xe9\x29\x3d\x94\xee\xb9\xeb\xfb\x7f\
\xde\xf7\xfd\x35\xff\xaf\xf3\x17\x64\x40\xfe\xc0\xec\x66\x4d\x5b\
\x28\x86\x6a\x2b\x50\x35\x4e\xce\xe4\xce\x8c\xef\xdc\xba\x75\x6e\
\x3d\x35\x25\x9d\xa4\xae\x2e\xda\x8a\xcb\xc2\xbb\x40\x3c\x4d\x41\
\x1d\x80\x12\x13\xdb\x65\x01\x3a\x00\x1c\xfd\xc3\x65\x3f\xd5\x24\
\xa2\xdd\x36\x30\x92\x4a\x5f\x20\xfc\xb2\x08\xde\x01\x70\xf7\x1a\
\x52\xfb\x85\xb2\xcf\x57\x6e\x3f\x9e\x71\xb0\xde\xd1\x29\x17\x74\
\x7e\x27\x90\x87\xd7\x00\x64\x6c\xf7\x4b\x9e\x16\xdb\xed\xf1\x14\
\x4d\x67\x04\xcc\x3f\x32\x55\x43\x41\x3b\xcc\xa7\x6c\x6d\x22\x07\
\x45\x97\x06\x9f\xc7\x31\xb2\x9a\x4d\x49\x80\x08\x86\xea\x7a\x7a\
\x98\xb5\xfc\x7b\x60\x6c\xa6\x82\x82\x5f\x33\x02\x05\x00\x22\x15\
\x54\x71\xf2\xfc\xf0\xcc\x1d\xab\xda\x8c\x81\xbe\xe0\xd4\x21\x10\
\x3e\x2a\x68\x12\xc1\x14\x74\x9c\x05\x51\x9e\x24\xff\x6f\x02\xdf\
\xaa\x0a\x4f\x50\xcf\x1a\xcc\xd5\x16\xe6\x22\x59\x6a\x91\xa2\x49\
\x05\x85\x0d\x00\x9e\x03\x50\x90\x24\xb7\x5b\x9d\xb3\x3f\xe6\xf5\
\x4a\xd4\x6c\xd0\x96\x24\xa9\x46\x74\x5c\x00\xf1\x3b\xc4\x14\x4a\
\x17\xe0\x53\x65\x2e\xfa\x5e\x2c\x27\x2f\x1f\x88\x6d\xf1\xb9\x37\
\x5c\x5f\x1a\x9b\x06\x10\x04\x70\x7c\x20\x38\xfb\xae\xc6\xc5\x8f\
\x01\x79\xde\xa4\x46\xad\x96\x1f\x7e\x0d\xc0\x47\x66\x00\x09\x53\
\x19\x27\x3b\x04\x8f\x9b\xc4\xa3\x24\x9a\x7c\x6e\xc7\x5b\x5e\xef\
\x9d\xb3\x36\xe8\x1b\x75\xc8\x6f\xfe\x91\xd0\x2e\xa3\xd1\xeb\xda\
\xf0\x57\x95\xdb\xb9\x5b\x80\x37\x4d\x3b\x10\xfb\x07\xae\x84\x37\
\xad\x15\xcc\x5c\x82\xbd\xd5\xe5\x8e\x9f\x0d\xd1\x02\x8a\xfc\xd4\
\x37\x32\xf5\x01\xc9\x84\x9a\x3e\xb7\xe3\x13\x40\x5a\x4c\xaa\x39\
\xb4\x45\xfd\xf5\xf5\x81\x11\x31\x08\x4e\x55\xb9\x1c\x5f\x24\x45\
\x16\xbc\xed\x0f\x86\x0f\xf7\x8c\x8f\xe7\x1b\x07\xd5\xb9\x8d\xfb\
\x01\x5c\x32\x49\x6b\x5c\x1f\x98\xc0\x06\xa2\xbe\x37\x10\x3a\x18\
\xbf\x6b\x4d\xf4\x4c\xf6\x7c\xfe\x99\xc1\x40\xa8\x2c\x3e\xe8\xf5\
\x4a\x94\xe0\xfb\x26\xfe\xed\x17\x47\xa6\xef\x4d\x1f\x6c\x09\x4f\
\x20\x7b\x73\x36\x85\x4f\x5f\x08\x86\xb6\xad\xe2\xab\xd6\x20\x3d\
\x7d\x81\x50\x6d\x7c\x30\x5f\xd3\x8f\x02\x48\xd8\x85\xa2\x68\x0f\
\x59\x01\x63\x2a\x3a\x02\x0f\xda\x28\x67\xfb\x47\x43\xf5\xab\x78\
\x8a\x01\xe9\xec\x0b\x86\x5e\x5c\x8e\x2d\x9d\xf8\x7d\x09\x10\xba\
\x94\x5a\x01\x4b\x75\x1b\x04\x08\xb6\x92\x78\x76\x7e\xc2\x71\x3a\
\x85\x37\x07\x94\xaf\x7b\x03\xa1\x83\x6d\xa4\xba\x54\x7e\xdc\x68\
\xa2\x30\x01\x2c\xd9\x39\x16\xaf\x08\x80\x33\x14\x76\x28\x9a\x7e\
\xc4\x77\x4f\xd1\x95\xf8\xc1\x81\x4b\x61\x0b\x25\xe2\x24\xb4\x25\
\xcc\x89\x28\x8b\x56\xc1\x02\x00\x4e\x12\x7a\x47\xbe\xe6\xec\xf4\
\x78\x64\x61\x6d\xdd\x57\xb4\x00\xe1\x2b\xd5\x2e\xe7\x37\x2b\x11\
\xe2\x2e\xa3\x89\xe4\xb5\x94\x60\xcc\x9b\x7f\xb5\xba\xa4\xe4\x66\
\x9a\x20\x2b\x12\x60\x82\x60\x63\x95\xcb\xd9\xbd\x1c\xfb\xef\x7e\
\xd4\x2a\x13\xbc\x94\xab\x29\xc1\x32\x01\x05\xa0\x57\x05\x9f\xaa\
\x70\x3b\xc7\xe2\x83\x59\xaa\xde\x4c\x40\x35\x78\x49\x3d\xd6\x6d\
\x88\xa5\x71\xf2\xa7\xd6\x8f\xd1\xdc\xc8\x4e\x23\xd4\xd0\xd0\x8d\
\x42\x82\x07\x12\xdc\x82\xf3\xd5\x9e\xa2\x3f\x6f\x27\x18\x41\x7c\
\xe8\x73\xd9\x9b\x6b\x4a\x4b\x23\xb7\x0c\x90\x12\xcd\xce\xfa\x0a\
\xc0\xe6\x04\x2e\xe2\xb0\x59\x31\x2b\xbb\xf2\x96\x06\xfe\xc0\x74\
\x0b\x04\xff\x54\xb9\xed\xf1\xa7\xf8\x4d\x21\x5f\xf0\x95\x3b\x8f\
\x18\x73\xba\xba\x68\xeb\x1f\x0d\xb7\x02\x68\x32\xf9\x2b\x57\x17\
\xf2\x22\x9f\x9b\xf5\xb2\xfc\x69\xdd\x46\xaa\xf7\x8d\x86\xbf\x04\
\xb1\x67\x29\xf5\x98\x68\x7c\x43\x17\x75\x46\x55\x62\x5b\x2a\xdd\
\xce\x5e\x63\xce\xc5\xd1\xd0\xfd\xaa\xae\xb4\x12\x7c\xc4\xb4\x39\
\xf9\x92\xaf\xdc\x79\x28\x6d\xb0\xe1\x61\xe6\xcc\xab\xe1\x1f\x08\
\x18\x2f\xdc\x28\xc1\x4e\x11\x69\x57\x84\xc3\x42\x84\x62\xba\x14\
\x29\x8a\x78\x49\x36\x00\xa8\x47\xf2\xe5\xd2\xe6\x73\xd9\x9b\x45\
\xc4\xf4\xa6\xb1\x04\xb6\xf4\x55\xbb\xc7\x8a\xd7\x92\x04\xe7\xa2\
\x39\x91\x5a\xe3\x5a\x8c\x97\xa5\xc5\x6f\x93\xac\x03\x10\x9c\xcb\
\x10\x56\x77\x2c\xa6\x3e\xb1\x1a\x14\x60\x11\xac\x62\x5b\xc1\x35\
\x35\x12\xad\x03\xf8\x3d\x2c\x5c\xf2\x49\xa4\x01\xd2\x32\x39\x66\
\x7f\xf4\x01\x4f\xe1\x8d\x54\xe6\x35\xbf\xc4\x7b\x83\xe1\x1d\x42\
\x7e\x06\x60\x87\xd5\x1c\x81\xb4\x2b\xaa\xb2\xcf\x5b\x56\x38\x68\
\x3d\x27\x4d\xf9\x47\x67\xb6\x53\xd7\x1b\x01\x3e\x09\xa0\x12\xff\
\xbf\x86\x74\x80\xd7\x49\x19\x12\xb0\x43\x74\x39\x96\xea\x0d\x99\
\x51\xb0\x78\x91\x14\xff\xe5\xb0\x43\x34\x5b\xf6\xc4\x58\xc1\x64\
\x7d\xbd\xc4\xd6\x5b\xf3\x5f\x2e\x0a\xbd\x45\xc2\xd5\x25\x47\x00\
\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x02\x90\
\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\x00\x00\x00\x00\x56\x11\x25\x28\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\
\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\
\x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\
\x62\x4b\x47\x44\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09\x70\x48\
\x59\x73\x00\x00\x01\xd4\x00\x00\x01\xd4\x01\x21\x2b\x29\x05\x00\
\x00\x00\x07\x74\x49\x4d\x45\x07\xe3\x09\x1d\x13\x2e\x09\x9f\xdc\
\x82\x1e\x00\x00\x01\x5e\x49\x44\x41\x54\x38\xcb\x6d\x93\xb1\x4e\
\xc3\x30\x10\x86\xff\x34\xa8\xe5\x05\x90\x18\x8a\x8c\x2a\x21\x65\
\x80\xb7\x8a\xf2\x00\x29\x29\xf4\x0d\x10\x73\xa6\x8c\x15\x69\x97\
\x76\xe9\xc4\x86\xaa\x34\x58\x28\x88\xa1\x03\x3c\x41\x85\x84\xd4\
\xa1\x3b\xf6\x31\xb8\x69\xec\x0b\x1e\xfd\x7d\xb2\xff\xf3\x9d\x3d\
\x82\xbd\xf4\xc8\x7f\xf0\x9c\x1d\x90\xbd\xf4\xdd\xdb\xfb\xad\x72\
\xb6\xc0\x38\x11\x33\x6c\x41\xc5\x15\x95\x25\xc9\x44\xff\x2f\xa8\
\xb8\xa2\x42\xf4\x57\xae\x01\xe7\xfc\x57\x01\x5c\xbc\x38\xb7\x80\
\x73\x6e\x1c\x85\x74\x41\x85\x30\x85\xf5\x57\x34\xcb\x98\xa0\xd2\
\x5d\x98\x0b\x00\xbd\x1e\x00\x31\x89\xf6\x99\xb6\x05\x15\xcf\xc3\
\x6d\x00\xa0\xbb\x7c\x3e\x05\x70\xf5\x1d\x4d\x0f\x49\x51\xe7\xcf\
\x0d\xdf\x6c\x8c\x31\xa9\x6b\x81\x9d\xaf\xbb\xfc\x3c\x3f\x33\xc6\
\x31\x29\x18\x07\x98\x01\xce\xb9\x81\x16\x67\x06\x86\x15\x95\x2e\
\x3f\x1a\xfd\x82\xe4\xa8\xe3\xff\xc2\xf3\x01\x00\x6c\x0e\x00\xbf\
\x83\x13\x05\x3d\x96\x24\x07\x00\xba\xcb\x2f\xf7\x8a\xcb\x15\x7d\
\x0c\x15\xa8\x65\x38\x9c\x40\xdc\x70\xb9\x79\x28\xdb\x60\xdc\x3c\
\xb5\x4e\x24\x3d\x5d\xdb\x4f\x1d\xe4\x54\xc5\xaa\x69\x96\x4e\xa6\
\xd1\xcf\x4d\xd3\xac\x60\x1b\xce\x0d\xaf\xdb\xad\xb3\x7d\x34\x69\
\xda\x9d\x87\xbb\x54\xb1\x81\xc9\x66\xb4\x1e\x98\x32\x45\x41\x8b\
\xb4\x3d\x72\x75\xd2\x26\x1f\x1f\xda\x83\xe1\x72\x7b\xec\x75\x22\
\x69\x3d\x10\x45\x9d\xbf\xfd\x71\x74\x22\xa9\x2c\x5d\xce\xbe\xde\
\x58\x92\x73\x3e\x17\x48\x8f\x25\xe3\xe4\xb9\xdf\x9f\xee\xd5\x63\
\xc7\xd9\xf9\x03\x41\xd2\x77\xb6\x8b\xc5\xa7\x42\x00\x00\x00\x25\
\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\
\x32\x30\x31\x39\x2d\x30\x39\x2d\x32\x39\x54\x31\x39\x3a\x34\x36\
\x3a\x30\x39\x2b\x30\x30\x3a\x30\x30\x31\xd3\xb3\x43\x00\x00\x00\
\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\
\x00\x32\x30\x31\x39\x2d\x30\x39\x2d\x32\x39\x54\x31\x39\x3a\x34\
\x36\x3a\x30\x39\x2b\x30\x30\x3a\x30\x30\x40\x8e\x0b\xff\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\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x03\x3c\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x26\x00\x00\x00\x1e\x08\x06\x00\x00\x00\x40\x14\x6c\x6e\
\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\x03\xb5\x00\x00\x03\xb5\
\x01\x0a\x7e\x6a\x5b\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\x0b\x74\x45\
\x58\x74\x54\x69\x74\x6c\x65\x00\x53\x68\x61\x70\x65\x26\xef\x99\
\x91\x00\x00\x02\xa2\x49\x44\x41\x54\x58\x85\xbd\x97\xcd\x4b\x54\
\x51\x18\x87\x9f\xf7\x5e\x23\xec\xeb\x8e\x4a\xa1\x60\xda\x28\xd6\
\xc2\x98\x89\xb2\x02\x8d\x42\x8a\x72\x61\x9b\x48\x6a\x59\x1b\x97\
\xd5\x4e\xff\x80\x36\x2e\x5a\xb4\x89\xa0\x8d\xb4\x49\x32\x22\xab\
\x85\x8b\x4a\x6a\xe1\xca\x42\x87\x8c\x4a\xfc\xca\x16\x42\x99\x73\
\x8b\x9a\x4a\xef\x7d\x5b\xe8\x84\x44\xcc\x39\x3a\x73\xfd\x2d\x67\
\x9e\xc3\x7d\xce\xef\x3d\x9c\x3b\x23\xa9\x89\xb4\x92\x23\xae\x14\
\x55\xd4\xc7\xb7\xcc\xe6\x62\x4c\x19\x1e\xff\x72\x44\x1c\xb7\x32\
\x19\xf7\x7a\x4c\xec\xc0\x80\x16\x95\x56\xa7\xaf\x39\x26\x50\x44\
\x24\x1f\xa9\xd4\x64\xba\xdd\x11\xe7\x99\x03\x3b\x4c\xec\xe8\x8c\
\x5f\x5a\x56\xed\xf7\x0b\x72\xa9\x28\x9f\x87\xe6\xca\xc0\x80\x16\
\x95\x55\xf9\x57\x51\x3a\x6c\xf8\xe1\xf1\xaf\xbb\x83\x85\xf0\x21\
\xb0\x07\x20\x12\xb1\xd1\x19\xbf\x34\x58\xf0\xef\x02\xc7\x6d\xf8\
\x91\x49\xbf\x45\x34\xec\x01\xbc\xec\x67\xc6\x51\xae\x36\x4b\x3b\
\xd7\x41\x7b\xa9\xf9\xcb\xa2\xfa\x78\xa5\x14\x14\xb8\xb1\xe5\x9d\
\xdf\x01\x62\x26\x76\x6c\x4c\x37\x66\x9c\xaf\x37\x51\xbd\xf0\xbf\
\xef\x0b\xd6\xd8\x8a\x9d\x1b\xa5\xde\x4c\x7d\xaf\xc8\xb8\xfe\x73\
\xe4\xff\x52\x50\x80\xc6\x4c\x3b\xff\x37\xa3\x93\xf3\xfb\x16\xc3\
\x85\x3e\xa0\x2a\x17\x97\x97\xd8\xab\xb1\x6f\xdb\x33\xae\x7f\x0f\
\x38\x6a\xc3\xa7\x26\xd2\x6d\x81\xd2\x0d\x6c\x32\xb1\x6b\x16\x7b\
\x3d\x31\x9f\x0c\x08\xfa\x80\x6a\xab\x05\xca\x09\xa0\x15\xb0\xba\
\x17\xd7\x74\xc6\x52\x13\xe9\xb6\x10\x19\x14\x5b\x29\x40\xd1\xd3\
\xb6\x52\xab\x16\x53\x55\x49\x4d\xa6\x3b\x80\x1e\x2c\xc6\x91\x4f\
\xac\x47\x39\x32\x3b\xbb\x39\x35\xe5\xdf\x16\xe5\x4c\x94\x42\xd9\
\x58\x89\x8d\x8c\xcd\x55\x4a\xc6\x7d\x80\x72\x20\x6a\xa1\x6c\x8c\
\xa3\x0c\x43\x1a\xc4\x75\x87\xd6\x53\x0a\x22\x78\x25\x15\x2a\x46\
\x31\xc7\x61\x48\x83\xa0\x01\xe1\xe5\x7a\x08\xfd\x7d\xae\x0d\x94\
\xac\x2b\xfb\xa8\xc5\x3f\x8f\xa9\x70\x3f\x6a\xa1\x6c\xac\x47\x99\
\x2c\x2f\xff\x9e\xd8\xe5\x9d\x45\xe8\x04\xc2\x08\x9d\x80\x55\x9e\
\x31\x11\xd1\x44\x3c\xd6\x05\x9c\x07\x7e\x44\xa3\xb4\x94\x35\x1d\
\xfe\x44\x4d\xac\xd7\x41\x1b\x15\xa6\x6d\xd7\x08\xf2\x08\xc8\xf9\
\xff\x22\x6f\x31\x80\xbd\x35\x25\x23\x41\xe0\x1e\x04\x5e\x58\x2d\
\x10\x9e\x00\xe7\xb0\x6c\x3a\xaf\xeb\x62\x7f\xdd\xd6\x4f\xc5\x81\
\x77\x12\x95\x6e\x1b\x3e\x51\x13\xeb\x75\x45\x9b\x80\x0f\x91\x8a\
\x01\xd4\xd5\xc9\xaf\x44\xad\x77\x51\x45\xaf\x00\x81\x89\xaf\x8f\
\x97\x0c\x2f\x06\x6e\x03\x86\xa6\x0b\x76\xc1\x26\xe3\x25\xd7\x55\
\xa4\x15\x48\x9b\x58\x9b\xa6\x0b\x7a\xf3\x27\xe3\x5e\x7f\xa8\xce\
\x61\xe0\xad\x89\x35\x35\x5d\xf0\x57\xd2\xbe\xda\x6d\xef\xdd\x0d\
\xd2\x04\x3c\xb5\xe1\x57\x34\xed\x47\x2a\x06\x50\xbf\xd3\xfb\x32\
\x37\xed\xb5\xa0\x74\xd9\xc9\x79\xfd\xa1\x3a\x87\x80\x77\x91\x8a\
\x01\x34\x37\xcb\x62\xa2\x36\xd6\x09\xb4\x03\xbf\x4d\xfc\x72\xd3\
\x8d\x2c\x37\x1d\xf9\xaf\x8b\x44\x4d\xec\x96\x88\x9e\xd2\x90\xcf\
\x26\x36\xdb\xb4\xc0\x8d\x3f\xdd\x96\xf1\x25\x4a\xd3\x97\xc3\x00\
\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x1e\x7c\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
@ -499,231 +724,6 @@ qt_resource_data = b"\
\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\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x03\x3c\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x26\x00\x00\x00\x1e\x08\x06\x00\x00\x00\x40\x14\x6c\x6e\
\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\x03\xb5\x00\x00\x03\xb5\
\x01\x0a\x7e\x6a\x5b\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\x0b\x74\x45\
\x58\x74\x54\x69\x74\x6c\x65\x00\x53\x68\x61\x70\x65\x26\xef\x99\
\x91\x00\x00\x02\xa2\x49\x44\x41\x54\x58\x85\xbd\x97\xcd\x4b\x54\
\x51\x18\x87\x9f\xf7\x5e\x23\xec\xeb\x8e\x4a\xa1\x60\xda\x28\xd6\
\xc2\x98\x89\xb2\x02\x8d\x42\x8a\x72\x61\x9b\x48\x6a\x59\x1b\x97\
\xd5\x4e\xff\x80\x36\x2e\x5a\xb4\x89\xa0\x8d\xb4\x49\x32\x22\xab\
\x85\x8b\x4a\x6a\xe1\xca\x42\x87\x8c\x4a\xfc\xca\x16\x42\x99\x73\
\x8b\x9a\x4a\xef\x7d\x5b\xe8\x84\x44\xcc\x39\x3a\x73\xfd\x2d\x67\
\x9e\xc3\x7d\xce\xef\x3d\x9c\x3b\x23\xa9\x89\xb4\x92\x23\xae\x14\
\x55\xd4\xc7\xb7\xcc\xe6\x62\x4c\x19\x1e\xff\x72\x44\x1c\xb7\x32\
\x19\xf7\x7a\x4c\xec\xc0\x80\x16\x95\x56\xa7\xaf\x39\x26\x50\x44\
\x24\x1f\xa9\xd4\x64\xba\xdd\x11\xe7\x99\x03\x3b\x4c\xec\xe8\x8c\
\x5f\x5a\x56\xed\xf7\x0b\x72\xa9\x28\x9f\x87\xe6\xca\xc0\x80\x16\
\x95\x55\xf9\x57\x51\x3a\x6c\xf8\xe1\xf1\xaf\xbb\x83\x85\xf0\x21\
\xb0\x07\x20\x12\xb1\xd1\x19\xbf\x34\x58\xf0\xef\x02\xc7\x6d\xf8\
\x91\x49\xbf\x45\x34\xec\x01\xbc\xec\x67\xc6\x51\xae\x36\x4b\x3b\
\xd7\x41\x7b\xa9\xf9\xcb\xa2\xfa\x78\xa5\x14\x14\xb8\xb1\xe5\x9d\
\xdf\x01\x62\x26\x76\x6c\x4c\x37\x66\x9c\xaf\x37\x51\xbd\xf0\xbf\
\xef\x0b\xd6\xd8\x8a\x9d\x1b\xa5\xde\x4c\x7d\xaf\xc8\xb8\xfe\x73\
\xe4\xff\x52\x50\x80\xc6\x4c\x3b\xff\x37\xa3\x93\xf3\xfb\x16\xc3\
\x85\x3e\xa0\x2a\x17\x97\x97\xd8\xab\xb1\x6f\xdb\x33\xae\x7f\x0f\
\x38\x6a\xc3\xa7\x26\xd2\x6d\x81\xd2\x0d\x6c\x32\xb1\x6b\x16\x7b\
\x3d\x31\x9f\x0c\x08\xfa\x80\x6a\xab\x05\xca\x09\xa0\x15\xb0\xba\
\x17\xd7\x74\xc6\x52\x13\xe9\xb6\x10\x19\x14\x5b\x29\x40\xd1\xd3\
\xb6\x52\xab\x16\x53\x55\x49\x4d\xa6\x3b\x80\x1e\x2c\xc6\x91\x4f\
\xac\x47\x39\x32\x3b\xbb\x39\x35\xe5\xdf\x16\xe5\x4c\x94\x42\xd9\
\x58\x89\x8d\x8c\xcd\x55\x4a\xc6\x7d\x80\x72\x20\x6a\xa1\x6c\x8c\
\xa3\x0c\x43\x1a\xc4\x75\x87\xd6\x53\x0a\x22\x78\x25\x15\x2a\x46\
\x31\xc7\x61\x48\x83\xa0\x01\xe1\xe5\x7a\x08\xfd\x7d\xae\x0d\x94\
\xac\x2b\xfb\xa8\xc5\x3f\x8f\xa9\x70\x3f\x6a\xa1\x6c\xac\x47\x99\
\x2c\x2f\xff\x9e\xd8\xe5\x9d\x45\xe8\x04\xc2\x08\x9d\x80\x55\x9e\
\x31\x11\xd1\x44\x3c\xd6\x05\x9c\x07\x7e\x44\xa3\xb4\x94\x35\x1d\
\xfe\x44\x4d\xac\xd7\x41\x1b\x15\xa6\x6d\xd7\x08\xf2\x08\xc8\xf9\
\xff\x22\x6f\x31\x80\xbd\x35\x25\x23\x41\xe0\x1e\x04\x5e\x58\x2d\
\x10\x9e\x00\xe7\xb0\x6c\x3a\xaf\xeb\x62\x7f\xdd\xd6\x4f\xc5\x81\
\x77\x12\x95\x6e\x1b\x3e\x51\x13\xeb\x75\x45\x9b\x80\x0f\x91\x8a\
\x01\xd4\xd5\xc9\xaf\x44\xad\x77\x51\x45\xaf\x00\x81\x89\xaf\x8f\
\x97\x0c\x2f\x06\x6e\x03\x86\xa6\x0b\x76\xc1\x26\xe3\x25\xd7\x55\
\xa4\x15\x48\x9b\x58\x9b\xa6\x0b\x7a\xf3\x27\xe3\x5e\x7f\xa8\xce\
\x61\xe0\xad\x89\x35\x35\x5d\xf0\x57\xd2\xbe\xda\x6d\xef\xdd\x0d\
\xd2\x04\x3c\xb5\xe1\x57\x34\xed\x47\x2a\x06\x50\xbf\xd3\xfb\x32\
\x37\xed\xb5\xa0\x74\xd9\xc9\x79\xfd\xa1\x3a\x87\x80\x77\x91\x8a\
\x01\x34\x37\xcb\x62\xa2\x36\xd6\x09\xb4\x03\xbf\x4d\xfc\x72\xd3\
\x8d\x2c\x37\x1d\xf9\xaf\x8b\x44\x4d\xec\x96\x88\x9e\xd2\x90\xcf\
\x26\x36\xdb\xb4\xc0\x8d\x3f\xdd\x96\xf1\x25\x4a\xd3\x97\xc3\x00\
\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x02\x90\
\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\x00\x00\x00\x00\x56\x11\x25\x28\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\
\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\
\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\
\x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\
\x62\x4b\x47\x44\x00\xff\x87\x8f\xcc\xbf\x00\x00\x00\x09\x70\x48\
\x59\x73\x00\x00\x01\xd4\x00\x00\x01\xd4\x01\x21\x2b\x29\x05\x00\
\x00\x00\x07\x74\x49\x4d\x45\x07\xe3\x09\x1d\x13\x2e\x09\x9f\xdc\
\x82\x1e\x00\x00\x01\x5e\x49\x44\x41\x54\x38\xcb\x6d\x93\xb1\x4e\
\xc3\x30\x10\x86\xff\x34\xa8\xe5\x05\x90\x18\x8a\x8c\x2a\x21\x65\
\x80\xb7\x8a\xf2\x00\x29\x29\xf4\x0d\x10\x73\xa6\x8c\x15\x69\x97\
\x76\xe9\xc4\x86\xaa\x34\x58\x28\x88\xa1\x03\x3c\x41\x85\x84\xd4\
\xa1\x3b\xf6\x31\xb8\x69\xec\x0b\x1e\xfd\x7d\xb2\xff\xf3\x9d\x3d\
\x82\xbd\xf4\xc8\x7f\xf0\x9c\x1d\x90\xbd\xf4\xdd\xdb\xfb\xad\x72\
\xb6\xc0\x38\x11\x33\x6c\x41\xc5\x15\x95\x25\xc9\x44\xff\x2f\xa8\
\xb8\xa2\x42\xf4\x57\xae\x01\xe7\xfc\x57\x01\x5c\xbc\x38\xb7\x80\
\x73\x6e\x1c\x85\x74\x41\x85\x30\x85\xf5\x57\x34\xcb\x98\xa0\xd2\
\x5d\x98\x0b\x00\xbd\x1e\x00\x31\x89\xf6\x99\xb6\x05\x15\xcf\xc3\
\x6d\x00\xa0\xbb\x7c\x3e\x05\x70\xf5\x1d\x4d\x0f\x49\x51\xe7\xcf\
\x0d\xdf\x6c\x8c\x31\xa9\x6b\x81\x9d\xaf\xbb\xfc\x3c\x3f\x33\xc6\
\x31\x29\x18\x07\x98\x01\xce\xb9\x81\x16\x67\x06\x86\x15\x95\x2e\
\x3f\x1a\xfd\x82\xe4\xa8\xe3\xff\xc2\xf3\x01\x00\x6c\x0e\x00\xbf\
\x83\x13\x05\x3d\x96\x24\x07\x00\xba\xcb\x2f\xf7\x8a\xcb\x15\x7d\
\x0c\x15\xa8\x65\x38\x9c\x40\xdc\x70\xb9\x79\x28\xdb\x60\xdc\x3c\
\xb5\x4e\x24\x3d\x5d\xdb\x4f\x1d\xe4\x54\xc5\xaa\x69\x96\x4e\xa6\
\xd1\xcf\x4d\xd3\xac\x60\x1b\xce\x0d\xaf\xdb\xad\xb3\x7d\x34\x69\
\xda\x9d\x87\xbb\x54\xb1\x81\xc9\x66\xb4\x1e\x98\x32\x45\x41\x8b\
\xb4\x3d\x72\x75\xd2\x26\x1f\x1f\xda\x83\xe1\x72\x7b\xec\x75\x22\
\x69\x3d\x10\x45\x9d\xbf\xfd\x71\x74\x22\xa9\x2c\x5d\xce\xbe\xde\
\x58\x92\x73\x3e\x17\x48\x8f\x25\xe3\xe4\xb9\xdf\x9f\xee\xd5\x63\
\xc7\xd9\xf9\x03\x41\xd2\x77\xb6\x8b\xc5\xa7\x42\x00\x00\x00\x25\
\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\
\x32\x30\x31\x39\x2d\x30\x39\x2d\x32\x39\x54\x31\x39\x3a\x34\x36\
\x3a\x30\x39\x2b\x30\x30\x3a\x30\x30\x31\xd3\xb3\x43\x00\x00\x00\
\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\
\x00\x32\x30\x31\x39\x2d\x30\x39\x2d\x32\x39\x54\x31\x39\x3a\x34\
\x36\x3a\x30\x39\x2b\x30\x30\x3a\x30\x30\x40\x8e\x0b\xff\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\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x02\xbb\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x26\x00\x00\x00\x1e\x08\x06\x00\x00\x00\x40\x14\x6c\x6e\
\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\x03\xb4\x00\x00\x03\xb4\
\x01\xd8\x39\x88\xbf\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\x0b\x74\x45\
\x58\x74\x54\x69\x74\x6c\x65\x00\x53\x68\x61\x70\x65\x26\xef\x99\
\x91\x00\x00\x02\x21\x49\x44\x41\x54\x58\x85\xcd\xd7\x3d\x68\x13\
\x71\x18\xc7\xf1\xdf\xf3\xbf\x88\x16\xdb\x26\xb1\x20\x22\x08\xf1\
\x42\x17\x4d\xd2\x2a\x75\x10\xba\x58\x70\x71\x89\x08\x82\x83\xae\
\x5d\xec\xe0\x26\xb8\x58\x9c\xc4\xd9\x0a\x8e\x22\x14\x37\x11\x71\
\xe9\xa0\xe0\x6b\xa0\x8b\xb9\x4b\xa7\x34\x97\x48\x41\x07\xb9\xe6\
\xce\x06\x94\x36\x77\x8f\x43\xcf\xe6\x4f\x68\x2f\x2f\x77\x97\xf8\
\x5d\x92\x70\x2f\xf9\xdc\x93\x67\x09\x69\x86\xf5\x74\x7b\x33\xbe\
\x30\x33\x43\x3b\x08\x98\x6e\x58\x97\x19\x58\xf1\x39\xa5\x94\x53\
\x13\xd9\xb5\x6a\xe3\x84\xc3\xcd\x1f\x7e\xf7\x12\x00\xe6\x0f\x1f\
\xfb\xf5\xb6\xb8\xbe\x75\x3c\x28\x0c\x00\xf9\x1f\x25\xf2\x5e\xfc\
\xcf\xf3\x60\x60\xf0\x2c\x09\xe7\xcb\xd7\xb2\x79\x36\x04\x5c\x28\
\x09\xe9\xbd\x2a\x14\xa5\xa0\x55\xeb\xf9\xa1\x69\xa4\x44\xdb\xe7\
\x51\x30\xbd\x2c\x56\xea\x8b\xcc\xdc\x71\xdc\x51\xd6\x0e\x03\x76\
\x57\xe0\x7e\xc9\xb0\x97\x3f\x6f\x6c\x8c\x0c\x5c\xe4\xb5\x1f\x0c\
\x00\xc0\x84\x1b\xa3\x3b\x63\x9f\xf4\x75\xf3\xd4\x20\x41\xff\x3a\
\x10\xe6\x75\x8e\x45\xac\x50\xaa\xd8\x17\x06\xa2\x91\xea\x04\x03\
\xc0\x27\x5d\xe2\xf7\xba\x61\xdf\x8a\x9e\xd3\xaa\x0b\x18\x00\xe0\
\x08\x83\x9f\x69\x15\xeb\x21\x33\x77\x7b\x4d\xa0\x7a\xf9\x12\x02\
\xe1\xae\x5e\xb3\x5f\x97\xcb\xe6\x78\x64\x22\xaf\xde\x9f\x9e\x71\
\xe5\xb7\xa2\x7c\x2c\xd6\xac\xd3\x11\x78\xf6\xea\xf7\x67\xc9\x92\
\x8b\xd5\x52\xad\x7e\x29\x54\x8d\x54\x90\x7d\x99\x70\x5d\x5a\xd1\
\x0c\xfb\x76\x68\x1a\xa9\x58\xf0\xeb\xf9\xb1\x66\x58\xb9\xed\xcd\
\xf8\x02\x60\x87\x82\x02\x82\x4d\x2c\xd2\x82\x4e\xac\x09\xd0\x9d\
\x9c\x1a\x5f\x02\x00\xdd\xb0\x42\x20\xed\x16\x04\x66\x0a\xc1\xd7\
\x33\xa9\xc4\xbb\xd0\x34\x52\xfd\xc2\x74\x16\xc8\x67\x52\xc9\x6a\
\xa8\x1a\xa9\x3e\x76\x8c\xdf\x8c\x38\xce\xec\x54\x2a\x11\x19\x0a\
\xe8\x6d\x62\x0c\xc6\xa3\xac\x9a\xb8\x47\x44\x6e\x64\x22\xaf\x6e\
\x61\x7f\x08\x34\x9f\x4d\xc7\x9f\x47\xaa\x91\xea\x02\x46\xdf\x05\
\xe3\x6a\x26\x1d\x5f\x8d\x9e\xd3\xaa\x13\xac\x10\x13\xb1\x6b\x67\
\x52\x47\x7d\xff\x6a\x45\xd1\x81\xcb\x4f\x8c\x17\x8d\x43\x5b\x73\
\xc3\x40\x01\xfb\x4f\x8c\x99\xf9\x41\x2e\x9d\x5c\x1c\x34\x46\xae\
\x1d\xd6\x00\xf1\xcd\x29\x35\xf9\x6a\x28\x1a\xa9\x16\x8c\x50\x71\
\x9b\x4e\x7e\x7a\x72\x62\x6d\x88\x9e\xbd\xbc\x1d\xa3\x0f\xcd\xa6\
\x72\xf1\x7f\x41\x01\x80\x20\xe0\x89\xf9\x6d\x7c\xee\xfc\xe4\xd8\
\xcf\x61\x63\xe4\xfe\x02\x9c\xf5\xa3\xbb\x96\xa3\x3a\x87\x00\x00\
\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x04\xfc\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x26\x00\x00\x00\x1e\x08\x06\x00\x00\x00\x40\x14\x6c\x6e\
\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\x03\xb4\x00\x00\x03\xb4\
\x01\xd8\x39\x88\xbf\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\x0b\x74\x45\
\x58\x74\x54\x69\x74\x6c\x65\x00\x53\x68\x61\x70\x65\x26\xef\x99\
\x91\x00\x00\x04\x62\x49\x44\x41\x54\x58\x85\xb5\x97\x5d\x4c\x5b\
\x75\x18\xc6\x9f\xf7\x9c\xf2\x3d\xd6\x76\xa0\x63\xe8\xc2\x5a\xac\
\x71\x94\x42\x34\xc4\xcc\x69\x08\xc4\x68\x62\x62\x30\x8e\x48\x30\
\x3a\xe3\xe2\x85\xde\xb8\x68\x8c\xba\xb9\x0b\x13\xbd\xf1\x13\x33\
\x2e\x4c\x8c\x66\x1a\x3f\x92\x05\x75\xd9\x84\xed\x82\xcc\x91\x90\
\xb9\xc4\x8c\x7d\x40\x01\x49\x18\x2d\x6c\x8e\x39\x07\x96\x02\x2b\
\x50\x7a\xce\xe3\x85\x80\xdd\xe9\x29\x3d\x94\xee\xb9\xeb\xfb\x7f\
\xde\xf7\xfd\x35\xff\xaf\xf3\x17\x64\x40\xfe\xc0\xec\x66\x4d\x5b\
\x28\x86\x6a\x2b\x50\x35\x4e\xce\xe4\xce\x8c\xef\xdc\xba\x75\x6e\
\x3d\x35\x25\x9d\xa4\xae\x2e\xda\x8a\xcb\xc2\xbb\x40\x3c\x4d\x41\
\x1d\x80\x12\x13\xdb\x65\x01\x3a\x00\x1c\xfd\xc3\x65\x3f\xd5\x24\
\xa2\xdd\x36\x30\x92\x4a\x5f\x20\xfc\xb2\x08\xde\x01\x70\xf7\x1a\
\x52\xfb\x85\xb2\xcf\x57\x6e\x3f\x9e\x71\xb0\xde\xd1\x29\x17\x74\
\x7e\x27\x90\x87\xd7\x00\x64\x6c\xf7\x4b\x9e\x16\xdb\xed\xf1\x14\
\x4d\x67\x04\xcc\x3f\x32\x55\x43\x41\x3b\xcc\xa7\x6c\x6d\x22\x07\
\x45\x97\x06\x9f\xc7\x31\xb2\x9a\x4d\x49\x80\x08\x86\xea\x7a\x7a\
\x98\xb5\xfc\x7b\x60\x6c\xa6\x82\x82\x5f\x33\x02\x05\x00\x22\x15\
\x54\x71\xf2\xfc\xf0\xcc\x1d\xab\xda\x8c\x81\xbe\xe0\xd4\x21\x10\
\x3e\x2a\x68\x12\xc1\x14\x74\x9c\x05\x51\x9e\x24\xff\x6f\x02\xdf\
\xaa\x0a\x4f\x50\xcf\x1a\xcc\xd5\x16\xe6\x22\x59\x6a\x91\xa2\x49\
\x05\x85\x0d\x00\x9e\x03\x50\x90\x24\xb7\x5b\x9d\xb3\x3f\xe6\xf5\
\x4a\xd4\x6c\xd0\x96\x24\xa9\x46\x74\x5c\x00\xf1\x3b\xc4\x14\x4a\
\x17\xe0\x53\x65\x2e\xfa\x5e\x2c\x27\x2f\x1f\x88\x6d\xf1\xb9\x37\
\x5c\x5f\x1a\x9b\x06\x10\x04\x70\x7c\x20\x38\xfb\xae\xc6\xc5\x8f\
\x01\x79\xde\xa4\x46\xad\x96\x1f\x7e\x0d\xc0\x47\x66\x00\x09\x53\
\x19\x27\x3b\x04\x8f\x9b\xc4\xa3\x24\x9a\x7c\x6e\xc7\x5b\x5e\xef\
\x9d\xb3\x36\xe8\x1b\x75\xc8\x6f\xfe\x91\xd0\x2e\xa3\xd1\xeb\xda\
\xf0\x57\x95\xdb\xb9\x5b\x80\x37\x4d\x3b\x10\xfb\x07\xae\x84\x37\
\xad\x15\xcc\x5c\x82\xbd\xd5\xe5\x8e\x9f\x0d\xd1\x02\x8a\xfc\xd4\
\x37\x32\xf5\x01\xc9\x84\x9a\x3e\xb7\xe3\x13\x40\x5a\x4c\xaa\x39\
\xb4\x45\xfd\xf5\xf5\x81\x11\x31\x08\x4e\x55\xb9\x1c\x5f\x24\x45\
\x16\xbc\xed\x0f\x86\x0f\xf7\x8c\x8f\xe7\x1b\x07\xd5\xb9\x8d\xfb\
\x01\x5c\x32\x49\x6b\x5c\x1f\x98\xc0\x06\xa2\xbe\x37\x10\x3a\x18\
\xbf\x6b\x4d\xf4\x4c\xf6\x7c\xfe\x99\xc1\x40\xa8\x2c\x3e\xe8\xf5\
\x4a\x94\xe0\xfb\x26\xfe\xed\x17\x47\xa6\xef\x4d\x1f\x6c\x09\x4f\
\x20\x7b\x73\x36\x85\x4f\x5f\x08\x86\xb6\xad\xe2\xab\xd6\x20\x3d\
\x7d\x81\x50\x6d\x7c\x30\x5f\xd3\x8f\x02\x48\xd8\x85\xa2\x68\x0f\
\x59\x01\x63\x2a\x3a\x02\x0f\xda\x28\x67\xfb\x47\x43\xf5\xab\x78\
\x8a\x01\xe9\xec\x0b\x86\x5e\x5c\x8e\x2d\x9d\xf8\x7d\x09\x10\xba\
\x94\x5a\x01\x4b\x75\x1b\x04\x08\xb6\x92\x78\x76\x7e\xc2\x71\x3a\
\x85\x37\x07\x94\xaf\x7b\x03\xa1\x83\x6d\xa4\xba\x54\x7e\xdc\x68\
\xa2\x30\x01\x2c\xd9\x39\x16\xaf\x08\x80\x33\x14\x76\x28\x9a\x7e\
\xc4\x77\x4f\xd1\x95\xf8\xc1\x81\x4b\x61\x0b\x25\xe2\x24\xb4\x25\
\xcc\x89\x28\x8b\x56\xc1\x02\x00\x4e\x12\x7a\x47\xbe\xe6\xec\xf4\
\x78\x64\x61\x6d\xdd\x57\xb4\x00\xe1\x2b\xd5\x2e\xe7\x37\x2b\x11\
\xe2\x2e\xa3\x89\xe4\xb5\x94\x60\xcc\x9b\x7f\xb5\xba\xa4\xe4\x66\
\x9a\x20\x2b\x12\x60\x82\x60\x63\x95\xcb\xd9\xbd\x1c\xfb\xef\x7e\
\xd4\x2a\x13\xbc\x94\xab\x29\xc1\x32\x01\x05\xa0\x57\x05\x9f\xaa\
\x70\x3b\xc7\xe2\x83\x59\xaa\xde\x4c\x40\x35\x78\x49\x3d\xd6\x6d\
\x88\xa5\x71\xf2\xa7\xd6\x8f\xd1\xdc\xc8\x4e\x23\xd4\xd0\xd0\x8d\
\x42\x82\x07\x12\xdc\x82\xf3\xd5\x9e\xa2\x3f\x6f\x27\x18\x41\x7c\
\xe8\x73\xd9\x9b\x6b\x4a\x4b\x23\xb7\x0c\x90\x12\xcd\xce\xfa\x0a\
\xc0\xe6\x04\x2e\xe2\xb0\x59\x31\x2b\xbb\xf2\x96\x06\xfe\xc0\x74\
\x0b\x04\xff\x54\xb9\xed\xf1\xa7\xf8\x4d\x21\x5f\xf0\x95\x3b\x8f\
\x18\x73\xba\xba\x68\xeb\x1f\x0d\xb7\x02\x68\x32\xf9\x2b\x57\x17\
\xf2\x22\x9f\x9b\xf5\xb2\xfc\x69\xdd\x46\xaa\xf7\x8d\x86\xbf\x04\
\xb1\x67\x29\xf5\x98\x68\x7c\x43\x17\x75\x46\x55\x62\x5b\x2a\xdd\
\xce\x5e\x63\xce\xc5\xd1\xd0\xfd\xaa\xae\xb4\x12\x7c\xc4\xb4\x39\
\xf9\x92\xaf\xdc\x79\x28\x6d\xb0\xe1\x61\xe6\xcc\xab\xe1\x1f\x08\
\x18\x2f\xdc\x28\xc1\x4e\x11\x69\x57\x84\xc3\x42\x84\x62\xba\x14\
\x29\x8a\x78\x49\x36\x00\xa8\x47\xf2\xe5\xd2\xe6\x73\xd9\x9b\x45\
\xc4\xf4\xa6\xb1\x04\xb6\xf4\x55\xbb\xc7\x8a\xd7\x92\x04\xe7\xa2\
\x39\x91\x5a\xe3\x5a\x8c\x97\xa5\xc5\x6f\x93\xac\x03\x10\x9c\xcb\
\x10\x56\x77\x2c\xa6\x3e\xb1\x1a\x14\x60\x11\xac\x62\x5b\xc1\x35\
\x35\x12\xad\x03\xf8\x3d\x2c\x5c\xf2\x49\xa4\x01\xd2\x32\x39\x66\
\x7f\xf4\x01\x4f\xe1\x8d\x54\xe6\x35\xbf\xc4\x7b\x83\xe1\x1d\x42\
\x7e\x06\x60\x87\xd5\x1c\x81\xb4\x2b\xaa\xb2\xcf\x5b\x56\x38\x68\
\x3d\x27\x4d\xf9\x47\x67\xb6\x53\xd7\x1b\x01\x3e\x09\xa0\x12\xff\
\xbf\x86\x74\x80\xd7\x49\x19\x12\xb0\x43\x74\x39\x96\xea\x0d\x99\
\x51\xb0\x78\x91\x14\xff\xe5\xb0\x43\x34\x5b\xf6\xc4\x58\xc1\x64\
\x7d\xbd\xc4\xd6\x5b\xf3\x5f\x2e\x0a\xbd\x45\xc2\xd5\x25\x47\x00\
\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x30\xff\
\x3c\
\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\
@ -1514,29 +1514,29 @@ qt_resource_data = b"\
qt_resource_name = b"\
\x00\x0d\
\x0b\x0f\xc0\xa7\
\x00\x61\
\x00\x62\x00\x6f\x00\x75\x00\x74\x00\x6c\x00\x6f\x00\x67\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x02\xc6\x5b\x87\
\x00\x70\
\x00\x6c\x00\x61\x00\x79\x00\x70\x00\x61\x00\x75\x00\x73\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x08\
\x06\x63\x59\x27\
\x00\x6c\
\x00\x6f\x00\x6f\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0b\
\x0a\xb8\x4e\xa7\
\x00\x66\
\x00\x61\x00\x76\x00\x69\x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0b\
\x08\x61\x82\x07\
\x00\x74\
\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x72\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0d\
\x0b\x0f\xc0\xa7\
\x00\x61\
\x00\x62\x00\x6f\x00\x75\x00\x74\x00\x6c\x00\x6f\x00\x67\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0c\
\x0d\xfc\x11\x13\
\x00\x74\
\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\
\x00\x0b\
\x0a\xb8\x4e\xa7\
\x00\x66\
\x00\x61\x00\x76\x00\x69\x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0d\
\x02\xc6\x5b\x87\
\x00\x70\
\x00\x6c\x00\x61\x00\x79\x00\x70\x00\x61\x00\x75\x00\x73\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x08\
\x06\x63\x59\x27\
\x00\x6c\
\x00\x6f\x00\x6f\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x05\
\x00\x6a\x85\x7d\
\x00\x64\
@ -1545,29 +1545,29 @@ qt_resource_name = b"\
qt_resource_struct_v1 = b"\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x06\x00\x00\x00\x01\
\x00\x00\x00\x76\x00\x00\x00\x00\x00\x01\x00\x00\x24\x54\
\x00\x00\x00\x96\x00\x00\x00\x00\x00\x01\x00\x00\x27\x13\
\x00\x00\x00\x20\x00\x00\x00\x00\x00\x01\x00\x00\x1e\x80\
\x00\x00\x00\x5a\x00\x00\x00\x00\x00\x01\x00\x00\x21\xc0\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
\x00\x00\x00\x3c\x00\x02\x00\x00\x00\x01\x00\x00\x00\x07\
\x00\x00\x00\x20\x00\x00\x00\x00\x00\x01\x00\x00\x02\xbf\
\x00\x00\x00\x52\x00\x00\x00\x00\x00\x01\x00\x00\x0a\x53\
\x00\x00\x00\x36\x00\x00\x00\x00\x00\x01\x00\x00\x07\xbf\
\x00\x00\x00\x6e\x00\x00\x00\x00\x00\x01\x00\x00\x0d\x93\
\x00\x00\x00\x8e\x00\x02\x00\x00\x00\x01\x00\x00\x00\x07\
\x00\x00\x00\xac\x00\x00\x00\x00\x00\x01\x00\x00\x2c\x13\
"
qt_resource_struct_v2 = b"\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x06\x00\x00\x00\x01\
\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x76\x00\x00\x00\x00\x00\x01\x00\x00\x24\x54\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
\x00\x00\x01\x6a\x84\x2e\x98\xc5\
\x00\x00\x00\x96\x00\x00\x00\x00\x00\x01\x00\x00\x27\x13\
\x00\x00\x00\x20\x00\x00\x00\x00\x00\x01\x00\x00\x02\xbf\
\x00\x00\x01\x6a\x84\x2e\x98\xc5\
\x00\x00\x00\x20\x00\x00\x00\x00\x00\x01\x00\x00\x1e\x80\
\x00\x00\x00\x52\x00\x00\x00\x00\x00\x01\x00\x00\x0a\x53\
\x00\x00\x01\x6a\x84\x2e\x98\xc5\
\x00\x00\x00\x5a\x00\x00\x00\x00\x00\x01\x00\x00\x21\xc0\
\x00\x00\x00\x36\x00\x00\x00\x00\x00\x01\x00\x00\x07\xbf\
\x00\x00\x01\x6d\x7e\x8f\x15\x22\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
\x00\x00\x00\x6e\x00\x00\x00\x00\x00\x01\x00\x00\x0d\x93\
\x00\x00\x01\x6d\x7e\x8e\xf8\x54\
\x00\x00\x00\x3c\x00\x02\x00\x00\x00\x01\x00\x00\x00\x07\
\x00\x00\x00\x8e\x00\x02\x00\x00\x00\x01\x00\x00\x00\x07\
\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\xac\x00\x00\x00\x00\x00\x01\x00\x00\x2c\x13\
\x00\x00\x01\x6b\xa7\xdd\xc9\x51\

Loading…
Cancel
Save