From 42096a19d90d9bd393b55ede197958902507760d Mon Sep 17 00:00:00 2001 From: yatenglg <767624851@qq.com> Date: Mon, 24 Apr 2023 21:45:38 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=9F=E8=83=BD=E6=B7=BB=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 + UpdateLog.md | 10 + annotation.py | 58 +- icons.qrc | 1 + icons_rc.py | 2953 +++++++++++++++++---------------- isat.yaml | 2 +- segment_any/gpu_resource.py | 36 + segment_any/segment_any.py | 8 +- ui/MainWindow.py | 17 +- ui/MainWindow.ui | 26 +- ui/en.ts | 238 +-- ui/label_dock.py | 14 +- ui/label_dock.ui | 18 +- ui/shortcut_dialog.py | 24 +- ui/shortcut_dialog.ui | 32 +- ui/zh_CN.qm | Bin 7780 -> 8065 bytes ui/zh_CN.ts | 240 +-- widgets/canvas.py | 12 +- widgets/labels_dock_widget.py | 12 + widgets/mainwindow.py | 42 +- 20 files changed, 2054 insertions(+), 1693 deletions(-) create mode 100644 UpdateLog.md create mode 100644 segment_any/gpu_resource.py diff --git a/README.md b/README.md index b6bcebe..e185ec0 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,10 @@ 集成[segment anything](https://github.com/facebookresearch/segment-anything),实现图片分割快速标注。 +**项目持续更新中,[更新日志](./UpdateLog.md),欢迎大家提出建议** + +演示视频:https://www.bilibili.com/video/BV1Lk4y1J7uB/ + [中文](README.md) [English](README-en.md) ## 特点 1. 集成segment anything,快速进行图像分割标注 diff --git a/UpdateLog.md b/UpdateLog.md new file mode 100644 index 0000000..316ec62 --- /dev/null +++ b/UpdateLog.md @@ -0,0 +1,10 @@ +# 20240424 + +- 添加了对labelme格式json的支持(只支持标注的多边形) + + **在进行修改之前,先备份一份!!!** + 现在可以打开并编辑之前用labeme生成的标注文件了,记得通过图层高低调整遮挡关系。 + 但最终保存还会以ISAT格式的json保存。 + +- 添加了显示/隐藏按钮(快捷键V),用于显示或隐藏所有多边形 +- 添加了 diff --git a/annotation.py b/annotation.py index 013681b..6b6a0bb 100644 --- a/annotation.py +++ b/annotation.py @@ -38,24 +38,46 @@ class Annotation: with open(self.label_path, 'r') as f: dataset = load(f) info = dataset.get('info', {}) - objects = dataset.get('objects', []) - - self.img_name = info.get('name', '') - self.width = info.get('width', 0) - self.height = info.get('height', 0) - self.depth = info.get('depth', 0) - self.note = info.get('note', '') - for obj in objects: - category = obj.get('category', 'unknow') - group = obj.get('group', '') - segmentation = obj.get('segmentation', []) - iscrowd = obj.get('iscrowd', 0) - note = obj.get('note', '') - area = obj.get('area', 0) - layer = obj.get('layer', 1) - bbox = obj.get('bbox', []) - obj = Object(category, group, segmentation, area, layer, bbox, iscrowd, note) - self.objects.append(obj) + description = info.get('description', '') + if description == 'ISAT': + # ISAT格式json + objects = dataset.get('objects', []) + self.img_name = info.get('name', '') + self.width = info.get('width', 0) + self.height = info.get('height', 0) + self.depth = info.get('depth', 0) + self.note = info.get('note', '') + for obj in objects: + category = obj.get('category', 'unknow') + group = obj.get('group', 0) + if group is None: group = 0 + segmentation = obj.get('segmentation', []) + iscrowd = obj.get('iscrowd', 0) + note = obj.get('note', '') + area = obj.get('area', 0) + layer = obj.get('layer', 2) + bbox = obj.get('bbox', []) + obj = Object(category, group, segmentation, area, layer, bbox, iscrowd, note) + self.objects.append(obj) + else: + # labelme格式json + shapes = dataset.get('shapes', {}) + for shape in shapes: + # 只加载多边形 + is_polygon = shape.get('shape_type', '') == 'polygon' + if not is_polygon: + continue + category = shape.get('label', 'unknow') + group = shape.get('group_id', 0) + if group is None: group = 0 + segmentation = shape.get('points', []) + iscrowd = shape.get('iscrowd', 0) + note = shape.get('note', '') + area = shape.get('area', 0) + layer = shape.get('layer', 2) + bbox = shape.get('bbox', []) + obj = Object(category, group, segmentation, area, layer, bbox, iscrowd, note) + self.objects.append(obj) def save_annotation(self): dataset = {} diff --git a/icons.qrc b/icons.qrc index 5012bf2..b390a4a 100644 --- a/icons.qrc +++ b/icons.qrc @@ -1,5 +1,6 @@ + icons/眼睛_eyes.svg icons/semantic.png icons/M_Favicon.ico icons/instance.png diff --git a/icons_rc.py b/icons_rc.py index a5559bc..6cdfb42 100644 --- a/icons_rc.py +++ b/icons_rc.py @@ -9,214 +9,6 @@ from PyQt5 import QtCore qt_resource_data = b"\ -\x00\x00\x02\xbf\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ -\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x34\x32\ -\x20\x37\x48\x36\x43\x34\x2e\x38\x39\x35\x34\x33\x20\x37\x20\x34\ -\x20\x37\x2e\x38\x39\x35\x34\x33\x20\x34\x20\x39\x56\x33\x39\x43\ -\x34\x20\x34\x30\x2e\x31\x30\x34\x36\x20\x34\x2e\x38\x39\x35\x34\ -\x33\x20\x34\x31\x20\x36\x20\x34\x31\x48\x34\x32\x43\x34\x33\x2e\ -\x31\x30\x34\x36\x20\x34\x31\x20\x34\x34\x20\x34\x30\x2e\x31\x30\ -\x34\x36\x20\x34\x34\x20\x33\x39\x56\x39\x43\x34\x34\x20\x37\x2e\ -\x38\x39\x35\x34\x33\x20\x34\x33\x2e\x31\x30\x34\x36\x20\x37\x20\ -\x34\x32\x20\x37\x5a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\ -\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\ -\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ -\x3d\x22\x33\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\ -\x31\x32\x20\x32\x30\x2e\x35\x37\x39\x39\x4c\x31\x36\x20\x31\x38\ -\x56\x33\x30\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\ -\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\ -\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\ -\x22\x4d\x33\x31\x20\x32\x30\x2e\x35\x37\x39\x39\x4c\x33\x35\x20\ -\x31\x38\x56\x33\x30\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\ -\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ -\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\ -\x64\x3d\x22\x4d\x32\x34\x20\x32\x30\x56\x32\x31\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\ -\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\ -\x73\x71\x75\x61\x72\x65\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\ -\x3d\x22\x4d\x32\x34\x20\x32\x37\x56\x32\x38\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\ -\x71\x75\x61\x72\x65\x22\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ -\x00\x00\x01\x33\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ -\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x34\x32\ -\x20\x36\x56\x34\x32\x4d\x31\x37\x20\x31\x39\x4c\x31\x32\x20\x32\ -\x34\x4d\x31\x32\x20\x32\x34\x4c\x31\x37\x20\x32\x39\x4d\x31\x32\ -\x20\x32\x34\x48\x33\x36\x4d\x33\x31\x20\x31\x39\x4c\x33\x36\x20\ -\x32\x34\x4d\x33\x36\x20\x32\x34\x4c\x33\x31\x20\x32\x39\x4d\x36\ -\x20\x36\x4c\x36\x20\x34\x32\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\ -\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\ -\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ -\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\x73\x76\ -\x67\x3e\ -\x00\x00\x02\xa9\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ -\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x31\ -\x20\x33\x38\x43\x33\x30\x2e\x33\x38\x38\x38\x20\x33\x38\x20\x33\ -\x38\x20\x33\x30\x2e\x33\x38\x38\x38\x20\x33\x38\x20\x32\x31\x43\ -\x33\x38\x20\x31\x31\x2e\x36\x31\x31\x32\x20\x33\x30\x2e\x33\x38\ -\x38\x38\x20\x34\x20\x32\x31\x20\x34\x43\x31\x31\x2e\x36\x31\x31\ -\x32\x20\x34\x20\x34\x20\x31\x31\x2e\x36\x31\x31\x32\x20\x34\x20\ -\x32\x31\x43\x34\x20\x33\x30\x2e\x33\x38\x38\x38\x20\x31\x31\x2e\ -\x36\x31\x31\x32\x20\x33\x38\x20\x32\x31\x20\x33\x38\x5a\x22\x20\ -\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\ -\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\ -\x4d\x32\x31\x20\x31\x35\x4c\x32\x31\x20\x32\x37\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\ -\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\ -\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\ -\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x35\x2e\x30\x31\ -\x35\x36\x20\x32\x31\x2e\x30\x31\x35\x36\x4c\x32\x37\x20\x32\x31\ -\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\ -\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ -\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\ -\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x33\ -\x33\x2e\x32\x32\x31\x36\x20\x33\x33\x2e\x32\x32\x31\x37\x4c\x34\ -\x31\x2e\x37\x30\x36\x39\x20\x34\x31\x2e\x37\x30\x37\x22\x20\x73\ -\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\ -\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\ -\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ -\x00\x00\x02\x4e\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ -\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x30\ -\x20\x34\x34\x48\x33\x38\x43\x33\x39\x2e\x31\x30\x34\x36\x20\x34\ -\x34\x20\x34\x30\x20\x34\x33\x2e\x31\x30\x34\x36\x20\x34\x30\x20\ -\x34\x32\x56\x31\x34\x48\x33\x30\x56\x34\x48\x31\x30\x43\x38\x2e\ -\x38\x39\x35\x34\x33\x20\x34\x20\x38\x20\x34\x2e\x38\x39\x35\x34\ -\x33\x20\x38\x20\x36\x56\x34\x32\x43\x38\x20\x34\x33\x2e\x31\x30\ -\x34\x36\x20\x38\x2e\x38\x39\x35\x34\x33\x20\x34\x34\x20\x31\x30\ -\x20\x34\x34\x5a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\ -\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\ -\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ -\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\ -\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x33\ -\x30\x20\x34\x4c\x34\x30\x20\x31\x34\x22\x20\x73\x74\x72\x6f\x6b\ -\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\ -\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\ -\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x31\x20\x33\x35\x4c\x33\x31\ -\x20\x32\x35\x4c\x32\x37\x20\x32\x31\x4c\x31\x37\x20\x33\x31\x56\ -\x33\x35\x48\x32\x31\x5a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\ -\x6e\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\ -\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\ -\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ -\x00\x00\x03\x57\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ -\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ -\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\ -\x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ -\xe7\x04\x13\x03\x14\x20\x67\x3f\x96\xef\x00\x00\x02\xe4\x49\x44\ -\x41\x54\x68\x43\xed\x58\x3b\x8b\x15\x31\x18\x3d\xd7\x07\xae\x95\ -\x62\x25\xb6\xa2\x8d\x0f\x2c\xc4\x46\x10\x41\x41\xf4\x07\x58\x59\ -\x89\x28\x58\x5a\x2c\xba\x6b\x71\x41\x57\xc4\xc2\xce\x42\xb9\x68\ -\x6f\x69\x23\x88\x8d\x62\x6f\x21\x82\x22\x5a\xa8\x20\x56\x6b\x25\ -\x17\x5f\xf1\x7c\x3b\xe6\x92\xc9\x24\x33\xc9\x24\xb3\xc3\xe2\x64\ -\x77\xd8\x9b\xef\x79\xce\x97\x2f\x99\xec\x05\x86\x31\x54\x60\xa8\ -\xc0\x50\x81\x3e\x2b\x30\x72\x25\xbf\x06\xec\x5c\x0f\x1c\x57\xc0\ -\x56\x97\xbe\x07\xd9\xf2\x3a\xe0\xe9\x15\xe0\x83\x9d\xbb\x42\x60\ -\x09\x38\x4b\xa3\x3b\x7c\xe6\x6c\xe3\x9e\xe7\x53\x82\xbd\xb8\x00\ -\x3c\x30\x71\x94\x08\x48\xe5\xc9\xf4\x35\x0d\x36\xf5\x0c\xd6\x97\ -\x7e\x4a\x7c\x7b\xcc\x95\xd8\x60\x5a\x52\x79\x4c\x83\x67\xfb\xbc\ -\x24\xbb\x27\xbe\x48\xab\x2c\x3f\xc1\x7c\x07\xf8\xcc\xfd\x61\x6b\ -\xf3\xef\x3d\x9d\xbf\x44\x80\xc2\x1d\x5a\x41\xf0\x8f\x16\x81\xf1\ -\x2a\x03\x75\xa6\x63\x5b\x4f\xa9\x10\x02\x32\x66\x18\x65\xc2\xa2\ -\xaf\xed\xb1\xe6\x09\xd8\x2d\x14\xb4\x1c\xdc\x1f\xfc\x2d\x06\x5b\ -\xad\x72\x92\x05\x05\xc9\x64\x14\xbd\x02\x26\x78\xc1\x60\xcf\x33\ -\xe1\x0a\x0e\x13\x45\xc0\x07\xd6\x27\x0f\x46\x91\x60\x18\x45\x20\ -\x21\x4f\x67\xae\xff\x17\x01\xdf\x86\xf5\xc9\x3b\x2b\xbb\x11\x38\ -\x7a\x05\x6c\xb0\xf6\xdc\x06\xcd\xfd\x41\x13\x25\xdb\x44\x3d\x04\ -\x78\x47\xcc\x3b\xa2\x09\x48\x7a\x01\xad\x9f\x26\x38\x23\x28\xbe\ -\xfd\x8b\x71\x1a\xea\xd7\x2d\x60\x7b\x93\x4f\x8c\xbe\x15\x81\xf0\ -\x04\x52\xf9\xf2\x98\x87\xfa\x72\x03\x38\x6c\xcb\xdb\xce\x5b\x11\ -\x18\xcb\x15\x44\x15\x3f\x2b\x9f\x9d\xa3\x0a\x5e\x9b\x2d\x40\xbd\ -\x90\x96\x2a\xda\xcb\xe9\x1c\x2c\xf4\x24\xf7\xfb\x0b\xe0\xb1\xc2\ -\x6f\x6d\x21\x9f\x29\xb3\xfe\xf1\xf1\x83\x37\x23\x4b\x7b\xdd\x04\ -\xb6\xf8\xb3\x35\x6b\xa2\x08\x48\xc5\x4c\xf0\x06\x89\x65\xde\x18\ -\xf7\x16\xf3\x30\xf0\xda\xf7\x32\xd4\xb7\x62\x93\x37\x83\x75\x59\ -\x04\x13\x18\xb3\xf2\x23\x85\xd9\x86\xb4\x83\x2d\x2a\xbc\x4a\x01\ -\xd2\xd6\x37\x88\x80\x80\x77\x55\xde\x26\x01\x95\x7a\xaf\x53\xea\ -\x36\xb0\xb9\x12\xb7\x46\xd0\x48\x20\x18\xbc\x4e\x92\x48\xe2\x12\ -\xd4\x77\x9e\x52\xbb\x6b\x30\x97\x54\xb5\x04\xa2\xc1\x67\x22\xc1\ -\x53\xea\x6d\x68\x4b\x79\x09\xf8\x36\x6c\x68\x65\xd2\xdb\x49\x32\ -\x29\x75\x17\xd8\x58\x97\xd3\x4b\x80\xdd\x7c\xaa\xce\x31\x48\x97\ -\xd8\x4e\x92\xe3\x02\xd4\x0f\x82\xf4\x7e\x3f\xe5\x25\x40\xdf\x83\ -\x41\x20\x9b\x8c\x32\x90\xe0\xd1\x77\xde\x97\xa6\x44\x20\xc7\x9b\ -\xd1\x99\x28\x9d\xc4\xec\x64\xb2\x2b\x5e\x9a\xb3\x6d\xf6\x39\x01\ -\xe4\x10\xa6\x93\xd0\x28\xf6\x9b\x70\x6c\x42\xdb\x0c\xe5\x9b\x1c\ -\xb8\x4b\x31\xda\x93\xf8\xac\xe3\xb0\x9d\x4c\x8c\xbe\x8b\xd8\x8a\ -\xf9\xd7\xec\x04\x24\x60\x3b\x12\xef\x7d\x58\xec\x15\xf0\xd9\xe5\ -\x95\xb7\x23\xe1\xc4\xd0\x0f\x81\xf6\x2b\x51\x21\x61\x7f\xb1\xf5\ -\xc9\xb0\x38\xb4\x34\xc2\xe3\x8a\x47\x56\x41\xf0\xdd\xe9\xa8\x4e\ -\x4b\x8f\x8f\x26\x84\x12\x01\xbe\xf2\x26\x3f\x81\x33\xff\x0c\xe4\ -\xe8\x3a\x99\x15\x6f\x86\x60\xdc\xc4\x13\x33\x4c\xa9\x85\xe6\x81\ -\x67\x14\xdc\xcf\x90\xa7\xab\x10\x93\xab\xc0\x73\x33\xb8\x73\x0d\ -\xaf\x03\x47\x48\xe4\x1c\x5f\x6c\xbb\xba\x42\x12\x13\x97\x20\xdf\ -\x49\xe5\x6d\xf0\x31\x31\x06\xdb\xa1\x02\x43\x05\x86\x0a\x74\x53\ -\x81\xbf\x22\x47\x9c\xdf\xb5\xb4\xa1\x9c\x00\x00\x00\x00\x49\x45\ -\x4e\x44\xae\x42\x60\x82\ \x00\x00\x02\x8d\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ @@ -260,985 +52,6 @@ qt_resource_data = b"\ \x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\ \x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\ \x74\x65\x72\x22\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ -\x00\x00\x03\x43\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ -\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x66\x69\x6c\x6c\x2d\x72\ -\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x20\x63\x6c\ -\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\ -\x22\x20\x64\x3d\x22\x4d\x35\x20\x31\x30\x43\x35\x20\x38\x2e\x38\ -\x39\x35\x34\x33\x20\x35\x2e\x38\x39\x35\x34\x33\x20\x38\x20\x37\ -\x20\x38\x4c\x34\x31\x20\x38\x43\x34\x32\x2e\x31\x30\x34\x36\x20\ -\x38\x20\x34\x33\x20\x38\x2e\x38\x39\x35\x34\x33\x20\x34\x33\x20\ -\x31\x30\x56\x33\x38\x43\x34\x33\x20\x33\x39\x2e\x31\x30\x34\x36\ -\x20\x34\x32\x2e\x31\x30\x34\x36\x20\x34\x30\x20\x34\x31\x20\x34\ -\x30\x48\x37\x43\x35\x2e\x38\x39\x35\x34\x33\x20\x34\x30\x20\x35\ -\x20\x33\x39\x2e\x31\x30\x34\x36\x20\x35\x20\x33\x38\x56\x31\x30\ -\x5a\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\ -\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ -\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\ -\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x66\x69\x6c\x6c\ -\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x20\ -\x63\x6c\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\ -\x64\x64\x22\x20\x64\x3d\x22\x4d\x31\x34\x2e\x35\x20\x31\x38\x43\ -\x31\x35\x2e\x33\x32\x38\x34\x20\x31\x38\x20\x31\x36\x20\x31\x37\ -\x2e\x33\x32\x38\x34\x20\x31\x36\x20\x31\x36\x2e\x35\x43\x31\x36\ -\x20\x31\x35\x2e\x36\x37\x31\x36\x20\x31\x35\x2e\x33\x32\x38\x34\ -\x20\x31\x35\x20\x31\x34\x2e\x35\x20\x31\x35\x43\x31\x33\x2e\x36\ -\x37\x31\x36\x20\x31\x35\x20\x31\x33\x20\x31\x35\x2e\x36\x37\x31\ -\x36\x20\x31\x33\x20\x31\x36\x2e\x35\x43\x31\x33\x20\x31\x37\x2e\ -\x33\x32\x38\x34\x20\x31\x33\x2e\x36\x37\x31\x36\x20\x31\x38\x20\ -\x31\x34\x2e\x35\x20\x31\x38\x5a\x22\x20\x73\x74\x72\x6f\x6b\x65\ -\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\ -\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\ -\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\ -\x74\x68\x20\x64\x3d\x22\x4d\x31\x35\x20\x32\x34\x4c\x32\x30\x20\ -\x32\x38\x4c\x32\x36\x20\x32\x31\x4c\x34\x33\x20\x33\x34\x56\x33\ -\x38\x43\x34\x33\x20\x33\x39\x2e\x31\x30\x34\x36\x20\x34\x32\x2e\ -\x31\x30\x34\x36\x20\x34\x30\x20\x34\x31\x20\x34\x30\x48\x37\x43\ -\x35\x2e\x38\x39\x35\x34\x33\x20\x34\x30\x20\x35\x20\x33\x39\x2e\ -\x31\x30\x34\x36\x20\x35\x20\x33\x38\x56\x33\x34\x4c\x31\x35\x20\ -\x32\x34\x5a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\ -\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\ -\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ -\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\x73\x76\ -\x67\x3e\ -\x00\x00\x02\x48\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ -\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x34\ -\x20\x34\x34\x43\x33\x35\x2e\x30\x34\x35\x37\x20\x34\x34\x20\x34\ -\x34\x20\x33\x35\x2e\x30\x34\x35\x37\x20\x34\x34\x20\x32\x34\x43\ -\x34\x34\x20\x31\x32\x2e\x39\x35\x34\x33\x20\x33\x35\x2e\x30\x34\ -\x35\x37\x20\x34\x20\x32\x34\x20\x34\x43\x31\x32\x2e\x39\x35\x34\ -\x33\x20\x34\x20\x34\x20\x31\x32\x2e\x39\x35\x34\x33\x20\x34\x20\ -\x32\x34\x43\x34\x20\x33\x35\x2e\x30\x34\x35\x37\x20\x31\x32\x2e\ -\x39\x35\x34\x33\x20\x34\x34\x20\x32\x34\x20\x34\x34\x5a\x22\x20\ -\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\ -\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\ -\x4d\x32\x39\x2e\x36\x35\x36\x37\x20\x31\x38\x2e\x33\x34\x33\x32\ -\x4c\x31\x38\x2e\x33\x34\x33\x20\x32\x39\x2e\x36\x35\x36\x39\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\ -\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\ -\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ -\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\ -\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x38\ -\x2e\x33\x34\x33\x33\x20\x31\x38\x2e\x33\x34\x33\x32\x4c\x32\x39\ -\x2e\x36\x35\x37\x20\x32\x39\x2e\x36\x35\x36\x39\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\ -\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\ -\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\ -\x3e\x3c\x2f\x73\x76\x67\x3e\ -\x00\x00\x01\x7a\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ -\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x37\x20\ -\x34\x32\x48\x34\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\ -\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ -\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\ -\x64\x3d\x22\x4d\x31\x31\x20\x32\x36\x2e\x37\x31\x39\x39\x56\x33\ -\x34\x48\x31\x38\x2e\x33\x31\x37\x32\x4c\x33\x39\x20\x31\x33\x2e\ -\x33\x30\x38\x31\x4c\x33\x31\x2e\x36\x39\x35\x31\x20\x36\x4c\x31\ -\x31\x20\x32\x36\x2e\x37\x31\x39\x39\x5a\x22\x20\x66\x69\x6c\x6c\ -\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\ -\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\ -\x22\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ -\x00\x00\x03\xca\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ -\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x36\x20\ -\x39\x43\x36\x20\x37\x2e\x33\x34\x33\x31\x35\x20\x37\x2e\x33\x34\ -\x33\x31\x35\x20\x36\x20\x39\x20\x36\x48\x33\x34\x2e\x32\x38\x31\ -\x34\x4c\x34\x32\x20\x31\x33\x2e\x32\x30\x36\x35\x56\x33\x39\x43\ -\x34\x32\x20\x34\x30\x2e\x36\x35\x36\x39\x20\x34\x30\x2e\x36\x35\ -\x36\x39\x20\x34\x32\x20\x33\x39\x20\x34\x32\x48\x39\x43\x37\x2e\ -\x33\x34\x33\x31\x35\x20\x34\x32\x20\x36\x20\x34\x30\x2e\x36\x35\ -\x36\x39\x20\x36\x20\x33\x39\x56\x39\x5a\x22\x20\x66\x69\x6c\x6c\ -\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\ -\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\ -\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x66\x69\x6c\x6c\x2d\x72\x75\ -\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x20\x63\x6c\x69\ -\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\ -\x20\x64\x3d\x22\x4d\x32\x34\x2e\x30\x30\x38\x33\x20\x36\x4c\x32\ -\x34\x20\x31\x33\x2e\x33\x38\x34\x36\x43\x32\x34\x20\x31\x33\x2e\ -\x37\x32\x34\x35\x20\x32\x33\x2e\x35\x35\x32\x33\x20\x31\x34\x20\ -\x32\x33\x20\x31\x34\x48\x31\x35\x43\x31\x34\x2e\x34\x34\x37\x37\ -\x20\x31\x34\x20\x31\x34\x20\x31\x33\x2e\x37\x32\x34\x35\x20\x31\ -\x34\x20\x31\x33\x2e\x33\x38\x34\x36\x4c\x31\x34\x20\x36\x22\x20\ -\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x2f\x3e\x3c\x70\x61\ -\x74\x68\x20\x64\x3d\x22\x4d\x32\x34\x2e\x30\x30\x38\x33\x20\x36\ -\x4c\x32\x34\x20\x31\x33\x2e\x33\x38\x34\x36\x43\x32\x34\x20\x31\ -\x33\x2e\x37\x32\x34\x35\x20\x32\x33\x2e\x35\x35\x32\x33\x20\x31\ -\x34\x20\x32\x33\x20\x31\x34\x48\x31\x35\x43\x31\x34\x2e\x34\x34\ -\x37\x37\x20\x31\x34\x20\x31\x34\x20\x31\x33\x2e\x37\x32\x34\x35\ -\x20\x31\x34\x20\x31\x33\x2e\x33\x38\x34\x36\x4c\x31\x34\x20\x36\ -\x48\x32\x34\x2e\x30\x30\x38\x33\x5a\x22\x20\x73\x74\x72\x6f\x6b\ -\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\ -\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\ -\x39\x20\x36\x48\x33\x34\x2e\x32\x38\x31\x34\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\ -\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\ -\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x34\x20\x32\x36\x48\ -\x33\x34\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\ -\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\ -\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\ -\x4d\x31\x34\x20\x33\x34\x48\x32\x34\x2e\x30\x30\x38\x33\x22\x20\ -\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\ -\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ -\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\ -\x22\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ -\x00\x00\x03\x06\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ -\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x66\x69\x6c\x6c\x2d\x72\ -\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x20\x63\x6c\ -\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\ -\x22\x20\x64\x3d\x22\x4d\x32\x34\x20\x34\x34\x43\x33\x35\x2e\x30\ -\x34\x35\x37\x20\x34\x34\x20\x34\x34\x20\x33\x35\x2e\x30\x34\x35\ -\x37\x20\x34\x34\x20\x32\x34\x43\x34\x34\x20\x31\x32\x2e\x39\x35\ -\x34\x33\x20\x33\x35\x2e\x30\x34\x35\x37\x20\x34\x20\x32\x34\x20\ -\x34\x43\x31\x32\x2e\x39\x35\x34\x33\x20\x34\x20\x34\x20\x31\x32\ -\x2e\x39\x35\x34\x33\x20\x34\x20\x32\x34\x43\x34\x20\x33\x35\x2e\ -\x30\x34\x35\x37\x20\x31\x32\x2e\x39\x35\x34\x33\x20\x34\x34\x20\ -\x32\x34\x20\x34\x34\x5a\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\ -\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\ -\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ -\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\ -\x20\x64\x3d\x22\x4d\x32\x34\x20\x32\x33\x43\x32\x36\x2e\x37\x36\ -\x31\x34\x20\x32\x33\x20\x32\x39\x20\x32\x30\x2e\x37\x36\x31\x34\ -\x20\x32\x39\x20\x31\x38\x43\x32\x39\x20\x31\x35\x2e\x32\x33\x38\ -\x36\x20\x32\x36\x2e\x37\x36\x31\x34\x20\x31\x33\x20\x32\x34\x20\ -\x31\x33\x43\x32\x31\x2e\x32\x33\x38\x36\x20\x31\x33\x20\x31\x39\ -\x20\x31\x35\x2e\x32\x33\x38\x36\x20\x31\x39\x20\x31\x38\x43\x31\ -\x39\x20\x32\x30\x2e\x37\x36\x31\x34\x20\x32\x31\x2e\x32\x33\x38\ -\x36\x20\x32\x33\x20\x32\x34\x20\x32\x33\x5a\x22\x20\x66\x69\x6c\ -\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\ -\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\ -\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x30\ -\x2e\x30\x32\x32\x20\x33\x38\x2e\x33\x33\x32\x43\x31\x30\x2e\x33\ -\x36\x35\x37\x20\x33\x33\x2e\x31\x32\x30\x36\x20\x31\x34\x2e\x37\ -\x30\x31\x36\x20\x32\x39\x20\x32\x30\x20\x32\x39\x48\x32\x38\x43\ -\x33\x33\x2e\x32\x39\x31\x34\x20\x32\x39\x20\x33\x37\x2e\x36\x32\ -\x32\x39\x20\x33\x33\x2e\x31\x30\x39\x37\x20\x33\x37\x2e\x39\x37\ -\x36\x37\x20\x33\x38\x2e\x33\x31\x31\x33\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\ -\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\ -\x2f\x73\x76\x67\x3e\ -\x00\x00\x01\xd7\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ -\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x34\ -\x2e\x30\x30\x38\x33\x20\x31\x34\x2e\x31\x30\x30\x36\x56\x34\x32\ -\x2e\x30\x30\x30\x31\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\ -\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ -\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\ -\x64\x3d\x22\x4d\x31\x32\x20\x32\x36\x4c\x32\x34\x20\x31\x34\x4c\ -\x33\x36\x20\x32\x36\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\ -\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ -\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\ -\x64\x3d\x22\x4d\x31\x32\x20\x36\x48\x33\x36\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\ -\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\ -\x3c\x2f\x73\x76\x67\x3e\ -\x00\x00\x02\x95\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ -\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x39\x20\ -\x31\x30\x56\x34\x34\x48\x33\x39\x56\x31\x30\x48\x39\x5a\x22\x20\ -\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\ -\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\ -\x4d\x32\x30\x20\x32\x30\x56\x33\x33\x22\x20\x73\x74\x72\x6f\x6b\ -\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\ -\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\ -\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x38\x20\x32\x30\x56\x33\x33\ -\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\ -\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ -\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\ -\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x34\ -\x20\x31\x30\x48\x34\x34\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\ -\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\ -\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ -\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\ -\x20\x64\x3d\x22\x4d\x31\x36\x20\x31\x30\x4c\x31\x39\x2e\x32\x38\ -\x39\x20\x34\x48\x32\x38\x2e\x37\x37\x37\x31\x4c\x33\x32\x20\x31\ -\x30\x48\x31\x36\x5a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\ -\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\ -\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ -\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\ -\x73\x76\x67\x3e\ -\x00\x00\x01\xe4\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ -\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x34\ -\x20\x31\x31\x4c\x34\x20\x32\x34\x4c\x31\x34\x20\x33\x37\x48\x34\ -\x34\x56\x31\x31\x48\x31\x34\x5a\x22\x20\x66\x69\x6c\x6c\x3d\x22\ -\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\ -\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\ -\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\ -\x3d\x22\x4d\x32\x31\x20\x31\x39\x4c\x33\x31\x20\x32\x39\x22\x20\ -\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\ -\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ -\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\ -\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x33\x31\x20\ -\x31\x39\x4c\x32\x31\x20\x32\x39\x22\x20\x73\x74\x72\x6f\x6b\x65\ -\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\ -\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\ -\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\x73\ -\x76\x67\x3e\ -\x00\x00\x01\x10\ -\x00\ -\x00\x04\x42\x78\x9c\xc5\x93\x51\x6e\x83\x30\x0c\x86\xaf\x62\x79\ -\xcf\x25\x29\xa0\x0a\x4d\x84\x4a\x7d\xe8\x09\xb6\x03\x54\x34\x40\ -\x36\x9a\x74\x21\x23\x70\xfb\x39\x1b\x74\xe3\x71\x5a\xc5\xa4\x48\ -\xb1\xad\xe8\xfb\x13\xfb\x4f\xbe\x1f\x2e\x2d\xf4\xd2\x76\xca\x68\ -\x81\xdb\x88\x23\x48\x5d\x9a\xb3\xd2\xb5\xc0\xe7\xa7\xe3\x26\xc3\ -\x7d\x91\x77\x7d\x0d\x5e\x9d\x5d\x23\x30\x89\x11\x1a\xa9\xea\xc6\ -\x7d\xc5\xbd\x92\xfe\x60\x06\x81\x1c\x38\xa4\x19\x2d\x84\x4a\xb5\ -\xad\x40\x6d\xb4\x44\x20\xbe\xee\x04\x36\xce\x5d\x1f\x19\xf3\xde\ -\x47\x3e\x89\x8c\xad\x59\xcc\x39\x67\x04\xc6\x22\x6f\x95\x96\x30\ -\x6c\x49\x3f\x45\x18\x69\x27\xc6\x10\x13\x3f\xa4\xf1\x67\xda\x39\ -\x6b\x5e\xa5\xc0\x07\xce\x77\x69\x55\xcd\x85\xcd\x7c\xab\x5b\x21\ -\xb0\xca\xd3\x55\x60\xf7\xf6\x7e\xb2\x12\xd9\xfa\xf8\x94\x2f\xf9\ -\x21\xff\x8b\x80\x95\xa5\x03\xea\x70\xb2\x23\x1e\xe1\x70\x9e\x45\ -\xf6\x3d\x0a\x0a\x2d\x1d\x89\x97\xcd\xff\x95\xea\x8b\x51\x64\x81\ -\x8b\x72\xd2\xfe\x54\x4d\xff\x43\x74\x7a\x6a\xd8\xd6\x7f\xeb\x5a\ -\xaa\x37\xe3\x04\x83\x8c\x93\x81\x86\xc9\x30\xe3\x64\xa0\xbb\x38\ -\x33\x5b\xf2\xb3\xfb\xe0\xc3\xef\x2d\x3e\x00\x2f\xe9\x4b\x1d\ -\x00\x00\x03\x09\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ -\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x35\x20\ -\x31\x30\x4c\x38\x20\x31\x33\x4c\x31\x34\x20\x37\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\ -\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\ -\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\ -\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x35\x20\x32\x34\x4c\ -\x38\x20\x32\x37\x4c\x31\x34\x20\x32\x31\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\ -\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\ -\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x35\x20\x33\x38\x4c\x38\x20\ -\x34\x31\x4c\x31\x34\x20\x33\x35\x22\x20\x73\x74\x72\x6f\x6b\x65\ -\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\ -\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\ -\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\ -\x74\x68\x20\x64\x3d\x22\x4d\x32\x31\x20\x32\x34\x48\x34\x33\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\ -\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\ -\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ -\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\ -\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x31\ -\x20\x33\x38\x48\x34\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\ -\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\ -\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ -\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\ -\x20\x64\x3d\x22\x4d\x32\x31\x20\x31\x30\x48\x34\x33\x22\x20\x73\ -\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\ -\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\ -\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ -\x00\x00\x02\xf5\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ -\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x34\x33\ -\x20\x32\x33\x56\x31\x34\x43\x34\x33\x20\x31\x32\x2e\x38\x39\x35\ -\x34\x20\x34\x32\x2e\x31\x30\x34\x36\x20\x31\x32\x20\x34\x31\x20\ -\x31\x32\x48\x32\x34\x4c\x31\x39\x20\x36\x48\x37\x43\x35\x2e\x38\ -\x39\x35\x34\x33\x20\x36\x20\x35\x20\x36\x2e\x38\x39\x35\x34\x33\ -\x20\x35\x20\x38\x56\x34\x30\x43\x35\x20\x34\x31\x2e\x31\x30\x34\ -\x36\x20\x35\x2e\x38\x39\x35\x34\x33\x20\x34\x32\x20\x37\x20\x34\ -\x32\x48\x32\x32\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\ -\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\ -\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\ -\x3d\x22\x4d\x32\x37\x20\x33\x31\x4c\x34\x31\x20\x33\x31\x22\x20\ -\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\ -\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ -\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\ -\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x37\x20\ -\x33\x37\x48\x34\x31\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\ -\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ -\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\ -\x64\x3d\x22\x4d\x34\x31\x20\x33\x31\x4c\x33\x36\x20\x32\x36\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\ -\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\ -\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ -\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\ -\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x33\x32\ -\x20\x34\x32\x4c\x32\x37\x20\x33\x37\x22\x20\x73\x74\x72\x6f\x6b\ -\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\ -\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\ -\x73\x76\x67\x3e\ -\x00\x00\x03\x2f\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ -\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ -\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\ -\x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ -\xe6\x0a\x19\x03\x13\x1b\x82\xa4\x64\xac\x00\x00\x02\xbc\x49\x44\ -\x41\x54\x68\x43\xed\x58\xbf\x6b\x14\x41\x18\x7d\xab\x06\x63\xa5\ -\x58\x89\x85\x4d\xd0\xc6\x1f\xa4\x10\x0b\x0b\x09\x28\x88\xfe\x01\ -\x56\x56\x22\x0a\x96\x16\x41\x93\x14\x07\x1a\x91\x14\xe9\x52\x44\ -\x0e\xed\x2d\x6d\x04\xb1\x31\x85\xad\x85\x04\x22\xa2\x45\x14\xc4\ -\x2a\x56\xe1\x88\x3f\xc6\x37\x7b\x3b\xcb\xec\x64\x67\x77\xe6\x76\ -\x99\xdd\x23\xfb\x85\x25\x37\xf3\x7d\x33\xdf\x7b\x6f\xbe\x99\x9d\ -\x3b\xa0\xb3\x4e\x81\x4e\x81\x4e\x81\x26\x15\x88\xf2\x92\x3f\x02\ -\xa6\xf6\x03\x57\x04\x70\x24\xcf\xdf\x40\xdf\xd6\x3e\xe0\xed\x43\ -\xe0\xab\x99\x7b\x17\x81\x45\xe0\x16\x83\x56\xf8\x4c\x9a\xc1\x0d\ -\xb7\x07\x04\x7b\x6f\x0e\x78\xa1\xe3\xc8\x10\x90\xca\x93\xe9\x3a\ -\x03\x0e\x36\x0c\xd6\x96\x7e\x40\x7c\xa7\xf5\x95\x38\xa0\x47\xd2\ -\x79\x59\x81\x67\xf9\x7c\x20\xbb\x37\xb6\x99\x02\xf7\x5f\x65\xbe\ -\x69\x3e\x93\xff\x58\xda\xfc\xff\x4c\xe5\xcf\x10\x60\xe7\x71\xe5\ -\x20\xf8\x57\xf3\x40\x2f\x30\xd0\xdc\x74\x2c\xeb\x01\x1d\x92\x80\ -\xb4\x14\xa3\x6c\x50\xf4\xf1\xb6\xb1\x27\x60\x96\x90\xd3\x72\x88\ -\xf7\xe0\x16\x19\x5a\x74\x11\xbb\x4e\x32\xa7\x49\x6a\x0a\xf2\x5e\ -\x81\x18\xfc\x26\xb3\x27\x8f\x4e\xa6\x26\x4c\x5e\xd3\x78\x11\x48\ -\xc1\xeb\x29\x48\xa4\x49\x12\x5e\x04\xbc\xa4\x09\x14\xbc\xb7\x08\ -\xc4\x1b\xf6\x84\x21\x2d\xdb\x4d\x6e\x64\xef\x15\x48\x49\x48\x22\ -\x0e\xe0\x79\x5c\x45\xdc\xf6\xf1\xdf\x4b\x80\x77\xc4\x7a\xcd\x9b\ -\x80\x4c\x2f\x49\xa8\xa7\x0c\x4e\x24\xc0\xb7\xff\xd0\x6e\x08\xfc\ -\x59\x02\x8e\x95\x8d\xf1\xf1\x8f\x44\xc0\x39\x81\xd4\xdd\xb0\x59\ -\x81\x1f\xf1\x7a\xd4\x64\x23\x11\xe8\xc9\x2b\x48\x52\x16\xf1\xe7\ -\x3c\x2b\x03\x49\x7f\x5c\x5e\x15\x2d\x3f\x79\xc1\xa4\x12\x70\x4f\ -\xe0\xaf\x0a\x91\x9f\xd9\x97\xfd\xe2\x53\x06\x3e\x19\x2c\xcb\xeb\ -\x29\x70\xb8\x20\x5d\xa9\xcb\x8b\x80\x54\x4c\x07\xaf\x91\xd8\xe2\ -\x8d\xf1\x4c\xdc\x76\x04\xaf\xc6\x3e\x10\xf8\xe5\x3b\x46\x67\xe5\ -\x4c\xa0\x47\xe5\xf5\x0d\x69\x4a\x33\x2f\xf0\xb1\x0a\x90\x51\xc7\ -\x3a\x11\x90\xe0\xf3\x94\x37\x49\x54\x6e\x73\xf5\x96\x81\x43\x3e\ -\xf3\x94\x12\x08\x06\x3e\x41\x7d\x5f\x60\xfb\x09\x70\xca\x95\x44\ -\x21\x81\xd0\xe0\x15\xe8\x39\x81\x4f\xae\x25\x65\x25\x60\xdb\xb0\ -\xae\xca\xd4\x12\xc7\x92\x5a\x05\x26\x8a\xe6\xb2\x12\xe0\x01\x7d\ -\xbd\x68\x60\x28\xdf\x5d\x81\x1d\x82\xb4\xfe\x3e\x65\x25\x40\x80\ -\xe7\x43\x81\x2c\xcb\xc3\xbb\xc8\x1d\x5b\x4c\x86\x40\x1d\x6f\x46\ -\x5b\xa2\x8a\xfd\xe9\xc9\x64\x2a\x9e\x69\xb3\x6c\xce\x56\x4c\x14\ -\x62\xf8\x39\x3d\x89\x49\xe8\xa8\xe6\xdc\x08\x81\xc6\x31\xc7\x77\ -\x15\xc7\x72\xd2\x31\x5a\x2e\x62\xc3\xe8\x9f\x8e\x93\x87\x08\xfb\ -\x62\x4b\x62\xae\x80\x2d\xae\xb5\xfd\x63\x4f\xc0\xfc\x61\xeb\x9b\ -\x26\xf5\x85\xc5\x08\xaf\x5b\x22\xfd\x8c\xc2\xc1\x83\x66\x53\xc7\ -\x94\x21\xc0\x57\x5e\xff\x37\x70\x33\x09\x90\x47\xd7\xb5\x96\x10\ -\x48\x61\x70\x13\xf7\x75\x4c\x99\x12\x9a\x05\xde\xb1\xe3\x79\xdb\ -\x40\x6b\x78\xfa\x0b\xc0\x9a\x8e\x2f\xf7\x2b\xdd\x63\xe0\x12\x89\ -\xdc\xe6\x8b\xed\x64\x1b\xc8\x10\xe4\x67\xa9\xbc\x09\xbe\x0d\xd8\ -\x3a\x0c\x9d\x02\x9d\x02\x7b\x5d\x81\xff\xd4\x3b\x9a\x8c\xa1\x62\ -\xf3\x6f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x03\x69\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ -\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x38\ -\x2e\x32\x38\x35\x37\x20\x33\x37\x48\x33\x39\x2e\x37\x31\x34\x33\ -\x4d\x34\x32\x20\x34\x32\x4c\x33\x39\x2e\x37\x31\x34\x33\x20\x33\ -\x37\x4c\x34\x32\x20\x34\x32\x5a\x4d\x32\x36\x20\x34\x32\x4c\x32\ -\x38\x2e\x32\x38\x35\x37\x20\x33\x37\x4c\x32\x36\x20\x34\x32\x5a\ -\x4d\x32\x38\x2e\x32\x38\x35\x37\x20\x33\x37\x4c\x33\x34\x20\x32\ -\x34\x4c\x33\x39\x2e\x37\x31\x34\x33\x20\x33\x37\x48\x32\x38\x2e\ -\x32\x38\x35\x37\x5a\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\ -\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ -\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\ -\x64\x3d\x22\x4d\x31\x36\x20\x36\x4c\x31\x37\x20\x39\x22\x20\x73\ -\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\ -\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\ -\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x36\x20\x31\x31\ -\x48\x32\x38\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\ -\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\ -\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\ -\x22\x4d\x31\x30\x20\x31\x36\x43\x31\x30\x20\x31\x36\x20\x31\x31\ -\x2e\x37\x38\x39\x35\x20\x32\x32\x2e\x32\x36\x30\x39\x20\x31\x36\ -\x2e\x32\x36\x33\x32\x20\x32\x35\x2e\x37\x33\x39\x31\x43\x32\x30\ -\x2e\x37\x33\x36\x38\x20\x32\x39\x2e\x32\x31\x37\x34\x20\x32\x38\ -\x20\x33\x32\x20\x32\x38\x20\x33\x32\x22\x20\x73\x74\x72\x6f\x6b\ -\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\ -\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\ -\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x34\x20\x31\x31\x43\x32\x34\ -\x20\x31\x31\x20\x32\x32\x2e\x32\x31\x30\x35\x20\x31\x39\x2e\x32\ -\x31\x37\x34\x20\x31\x37\x2e\x37\x33\x36\x38\x20\x32\x33\x2e\x37\ -\x38\x32\x36\x43\x31\x33\x2e\x32\x36\x33\x32\x20\x32\x38\x2e\x33\ -\x34\x37\x38\x20\x36\x20\x33\x32\x20\x36\x20\x33\x32\x22\x20\x73\ -\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\ -\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\ -\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ -\x00\x00\x02\x35\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ -\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x31\ -\x20\x33\x38\x43\x33\x30\x2e\x33\x38\x38\x38\x20\x33\x38\x20\x33\ -\x38\x20\x33\x30\x2e\x33\x38\x38\x38\x20\x33\x38\x20\x32\x31\x43\ -\x33\x38\x20\x31\x31\x2e\x36\x31\x31\x32\x20\x33\x30\x2e\x33\x38\ -\x38\x38\x20\x34\x20\x32\x31\x20\x34\x43\x31\x31\x2e\x36\x31\x31\ -\x32\x20\x34\x20\x34\x20\x31\x31\x2e\x36\x31\x31\x32\x20\x34\x20\ -\x32\x31\x43\x34\x20\x33\x30\x2e\x33\x38\x38\x38\x20\x31\x31\x2e\ -\x36\x31\x31\x32\x20\x33\x38\x20\x32\x31\x20\x33\x38\x5a\x22\x20\ -\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\ -\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\ -\x4d\x31\x35\x20\x32\x31\x4c\x32\x37\x20\x32\x31\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\ -\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\ -\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\ -\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x33\x33\x2e\x32\x32\ -\x31\x36\x20\x33\x33\x2e\x32\x32\x31\x37\x4c\x34\x31\x2e\x37\x30\ -\x36\x39\x20\x34\x31\x2e\x37\x30\x37\x22\x20\x73\x74\x72\x6f\x6b\ -\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\ -\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\ -\x73\x76\x67\x3e\ -\x00\x00\x02\x2b\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ -\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x39\ -\x20\x36\x48\x39\x43\x37\x2e\x33\x34\x33\x31\x35\x20\x36\x20\x36\ -\x20\x37\x2e\x33\x34\x33\x31\x35\x20\x36\x20\x39\x56\x33\x39\x43\ -\x36\x20\x34\x30\x2e\x36\x35\x36\x39\x20\x37\x2e\x33\x34\x33\x31\ -\x35\x20\x34\x32\x20\x39\x20\x34\x32\x48\x33\x39\x43\x34\x30\x2e\ -\x36\x35\x36\x39\x20\x34\x32\x20\x34\x32\x20\x34\x30\x2e\x36\x35\ -\x36\x39\x20\x34\x32\x20\x33\x39\x56\x32\x39\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\ -\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\ -\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x34\x32\x20\x31\x39\x4c\ -\x33\x38\x20\x37\x4c\x32\x36\x20\x31\x31\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\ -\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\ -\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x33\x38\x20\x37\x43\x33\x33\ -\x20\x32\x32\x20\x33\x30\x20\x32\x35\x20\x32\x30\x20\x32\x39\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\ -\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\ -\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ -\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\ -\x72\x22\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ -\x00\x00\x03\xee\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ -\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x38\x20\ -\x32\x38\x43\x31\x30\x2e\x32\x30\x39\x31\x20\x32\x38\x20\x31\x32\ -\x20\x32\x36\x2e\x32\x30\x39\x31\x20\x31\x32\x20\x32\x34\x43\x31\ -\x32\x20\x32\x31\x2e\x37\x39\x30\x39\x20\x31\x30\x2e\x32\x30\x39\ -\x31\x20\x32\x30\x20\x38\x20\x32\x30\x43\x35\x2e\x37\x39\x30\x38\ -\x36\x20\x32\x30\x20\x34\x20\x32\x31\x2e\x37\x39\x30\x39\x20\x34\ -\x20\x32\x34\x43\x34\x20\x32\x36\x2e\x32\x30\x39\x31\x20\x35\x2e\ -\x37\x39\x30\x38\x36\x20\x32\x38\x20\x38\x20\x32\x38\x5a\x22\x20\ -\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\ -\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\ -\x4d\x38\x20\x31\x32\x43\x39\x2e\x31\x30\x34\x35\x37\x20\x31\x32\ -\x20\x31\x30\x20\x31\x31\x2e\x31\x30\x34\x36\x20\x31\x30\x20\x31\ -\x30\x43\x31\x30\x20\x38\x2e\x38\x39\x35\x34\x33\x20\x39\x2e\x31\ -\x30\x34\x35\x37\x20\x38\x20\x38\x20\x38\x43\x36\x2e\x38\x39\x35\ -\x34\x33\x20\x38\x20\x36\x20\x38\x2e\x38\x39\x35\x34\x33\x20\x36\ -\x20\x31\x30\x43\x36\x20\x31\x31\x2e\x31\x30\x34\x36\x20\x36\x2e\ -\x38\x39\x35\x34\x33\x20\x31\x32\x20\x38\x20\x31\x32\x5a\x22\x20\ -\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\ -\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ -\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\ -\x20\x64\x3d\x22\x4d\x38\x20\x34\x30\x43\x39\x2e\x31\x30\x34\x35\ -\x37\x20\x34\x30\x20\x31\x30\x20\x33\x39\x2e\x31\x30\x34\x36\x20\ -\x31\x30\x20\x33\x38\x43\x31\x30\x20\x33\x36\x2e\x38\x39\x35\x34\ -\x20\x39\x2e\x31\x30\x34\x35\x37\x20\x33\x36\x20\x38\x20\x33\x36\ -\x43\x36\x2e\x38\x39\x35\x34\x33\x20\x33\x36\x20\x36\x20\x33\x36\ -\x2e\x38\x39\x35\x34\x20\x36\x20\x33\x38\x43\x36\x20\x33\x39\x2e\ -\x31\x30\x34\x36\x20\x36\x2e\x38\x39\x35\x34\x33\x20\x34\x30\x20\ -\x38\x20\x34\x30\x5a\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\ -\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\ -\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x30\x20\x32\ -\x34\x48\x34\x34\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\ -\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\ -\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\ -\x3d\x22\x4d\x32\x30\x20\x33\x38\x48\x34\x34\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\ -\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\ -\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x30\x20\x31\x30\x48\ -\x34\x34\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\ -\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\ -\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ -\x00\x00\x03\x3e\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ -\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x34\x30\ -\x20\x32\x33\x56\x31\x34\x4c\x33\x31\x20\x34\x48\x31\x30\x43\x38\ -\x2e\x38\x39\x35\x34\x33\x20\x34\x20\x38\x20\x34\x2e\x38\x39\x35\ -\x34\x33\x20\x38\x20\x36\x56\x34\x32\x43\x38\x20\x34\x33\x2e\x31\ -\x30\x34\x36\x20\x38\x2e\x38\x39\x35\x34\x33\x20\x34\x34\x20\x31\ -\x30\x20\x34\x34\x48\x32\x32\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\ -\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\ -\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ -\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\ -\x68\x20\x64\x3d\x22\x4d\x32\x37\x20\x33\x33\x48\x34\x31\x22\x20\ -\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\ -\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ -\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\ -\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x37\x20\ -\x33\x39\x48\x34\x31\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\ -\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ -\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\ -\x64\x3d\x22\x4d\x34\x31\x20\x33\x33\x4c\x33\x36\x20\x32\x38\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\ -\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\ -\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ -\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\ -\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x33\x32\ -\x20\x34\x34\x4c\x32\x37\x20\x33\x39\x22\x20\x73\x74\x72\x6f\x6b\ -\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\ -\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\ -\x61\x74\x68\x20\x64\x3d\x22\x4d\x33\x30\x20\x34\x56\x31\x34\x48\ -\x34\x30\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\ -\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\ -\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ -\x00\x00\x01\xd2\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ -\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x34\ -\x2e\x30\x30\x38\x33\x20\x33\x33\x2e\x38\x39\x39\x35\x56\x36\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\ -\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\ -\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ -\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\ -\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x33\x36\ -\x20\x32\x32\x4c\x32\x34\x20\x33\x34\x4c\x31\x32\x20\x32\x32\x22\ -\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\ -\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\ -\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ -\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\ -\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x33\x36\ -\x20\x34\x32\x48\x31\x32\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\ -\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\ -\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ -\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\x73\x76\x67\ -\x3e\ -\x00\x00\x06\x28\ -\x00\ -\x00\x15\xb6\x78\x9c\xed\x58\x4b\x6f\x1b\x55\x14\x3e\x1e\xcf\xd8\ -\x5e\x40\x95\xa2\x4a\x6c\x90\x1a\x81\x40\xdd\x20\xaa\x82\xd8\x20\ -\xa1\x6c\x40\x6c\x40\x65\xd1\x56\x6a\x41\x8a\xda\xc4\xb1\x13\x37\ -\x71\x92\x26\xe4\xe1\x24\xe3\x84\x1f\x90\x0a\xba\xa8\x5a\xa1\xb0\ -\x40\x42\x48\x88\x2c\x2a\xba\x01\xe1\x1d\x20\x2a\x6a\x21\x84\x8a\ -\x08\xf1\xf8\x11\xe7\x65\xd7\x93\xc4\x8f\x38\xb6\x7a\xf9\xce\x8c\ -\xc7\x8d\x5d\xdb\x6d\x61\xd1\x05\xb9\xd2\xa7\xf1\x3c\xce\x7c\xdf\ -\x39\xf7\xde\x73\xce\x98\xc8\x46\x12\xb5\xb7\x13\x8e\xed\x74\xec\ -\x30\xd1\x4b\x44\xd4\xd6\x66\x9e\x7b\x64\xa2\xf7\x70\xed\x18\xae\ -\xe1\x11\xea\x20\xf3\xba\x31\xda\xe8\x60\x1c\x8c\x83\xd1\x62\x14\ -\x54\x6a\x2f\xcd\x51\x07\x63\x4f\xa5\xe3\xff\xf5\x7d\x99\x31\x6a\ -\xcf\x8c\xc9\x1d\x8c\xec\x44\xf3\xf7\x31\x57\x69\x96\x42\x80\xa8\ -\x43\xf8\xdf\xe8\x58\xf5\xbb\xda\x37\x86\xe4\x50\xfa\x92\x5d\xdc\ -\x1d\xb1\x0b\xfd\x23\x49\xec\x4c\x48\x22\x1f\xb0\x69\x85\x80\x91\ -\x16\x6a\xb8\xf7\x82\xa4\x03\xa2\x14\x7c\x80\x9f\xa1\x97\xe7\xe8\ -\xe4\xa3\x72\x27\xfc\xca\xf1\xf5\x41\x59\xdf\x18\x94\xc5\xe6\x90\ -\x5c\xc3\x9f\x0b\xd8\x44\x7e\xca\x26\x10\xe7\xaa\x86\xa2\x6a\xf8\ -\x28\x98\x7f\xaf\x31\x3f\xeb\xd2\x1f\x25\x0e\x11\x3f\xb5\xad\xfa\ -\x15\x6d\x6d\x40\x11\xeb\x7e\x93\x3f\x33\x6a\xf1\xdb\x0c\xfe\xdd\ -\x19\x83\x47\xb3\x7c\xdf\x9d\xc6\x39\xf8\x8b\xa6\x06\xbd\x18\x24\ -\x75\x6f\x96\x3a\xeb\xe7\x03\xf7\xc2\x42\x6d\x9d\x45\x93\xfd\xf2\ -\x62\xb2\x5f\x11\x0c\xe6\x4f\x0d\xdb\x01\x79\x1e\x1a\x4e\x6e\x8f\ -\x4b\x61\xe6\x2f\x4c\x9b\x71\xe6\x98\xe2\xb7\xca\xfc\x0c\x83\x5f\ -\x25\x7f\xcd\xdc\xcc\xd1\x42\x8d\x06\x95\xe6\x9b\xc6\xbd\x57\xe9\ -\x4c\xf8\x1c\x82\xb1\x72\xd1\xd4\xb0\x31\xa4\x74\x5a\xf7\x33\xd0\ -\x0e\x7e\x9d\xfd\xaf\xc4\x54\xcd\x06\x28\x94\x0b\x10\xd6\x05\x89\ -\xc2\x14\x89\x7a\xff\xf8\x9c\xd7\xa0\xc5\xcf\xb6\xd9\x06\xf3\xc0\ -\x71\x8f\xf7\x39\xf4\x58\xaf\xc5\xef\x10\x49\xbf\xf2\x80\xd6\x5c\ -\x40\x5a\x28\x4c\xdb\x2c\x7f\x42\xcc\xbf\x33\x41\xc2\xd2\xd0\xc8\ -\x2f\x63\x6f\x04\xab\x73\x80\xf8\xd9\x42\xf5\xcf\xc4\xfa\x1c\x0b\ -\xcc\xcd\x88\x7a\x9d\x02\x5a\xb4\x46\xef\xca\x4d\x4b\x2a\xfb\xc0\ -\xb1\x66\xfe\x9d\x71\x03\x62\x1b\xe0\x63\xb3\xd8\x72\xac\x2c\x0d\ -\x46\x0c\xa6\xa8\x1a\xd7\xb8\xcf\xd5\xa1\x79\x9c\xc2\x00\xb8\x0d\ -\x7e\x5c\x6b\xc6\x9f\x87\xff\x16\xbf\x3e\x46\xa1\xcc\x08\xf8\xc7\ -\x48\xe8\xa3\xcd\xf9\x2b\x1a\xc2\x96\x86\xec\xa4\x54\xf5\x0f\xbc\ -\x4b\xcc\x1d\xe9\x31\x35\x44\x3c\xce\xa6\x6b\x64\x27\x00\x7e\xec\ -\xbf\xca\x3e\x0b\xa5\x47\x68\xfe\xee\x25\x12\xe9\x61\x93\x9f\xf3\ -\x55\x53\x7e\xec\xd9\x52\x25\x47\xb0\xfe\xad\x09\x49\x8d\xfb\x9c\ -\xdf\x44\xbd\x2e\xc3\xef\x0a\xbf\xce\x6b\xa1\x29\xff\xa4\x6d\x91\ -\xfd\xdf\x9d\x31\x34\x2c\x6c\xfa\xc9\x0f\x88\xd4\x20\x30\x04\xfe\ -\xe1\xd6\x79\x66\x17\xeb\xdf\xd2\x80\x7c\xb2\x15\xeb\x75\xde\x63\ -\x7e\x06\xfc\xc6\xfc\xbb\x3a\x5b\xd9\x67\x03\xb6\x30\x73\x1b\x6b\ -\x00\x73\x0a\xee\x8e\xb5\x7e\x12\xeb\x03\x24\xf8\x08\x1d\x4d\x63\ -\xc7\x83\xf7\x03\xd6\xa3\xc6\x73\xb0\x36\x20\x8b\xa8\xc7\x9c\x6f\ -\xe6\x5f\xf1\x39\x7f\x6f\x65\x6b\xec\xbf\x29\xd3\x77\x63\xfe\xe7\ -\xcc\x1c\xb8\x36\x40\x7a\xb2\x0f\xef\xbb\x48\x02\x47\xbd\xd5\x3b\ -\x78\xec\x20\x7f\x73\x2e\x8b\x7a\x1c\x15\x38\x0d\xac\xf8\x1c\x67\ -\x5a\xfa\x8e\x35\x6b\xc5\x9e\xf9\xad\xbd\x9e\xf0\xd2\x02\x20\x56\ -\x7a\x4d\xc4\x3c\xf7\xd7\x76\xa3\x01\x8d\x47\x63\x1e\x45\x44\x7b\ -\x94\xaa\x86\xa4\xcf\xf1\xd3\xc3\x74\xf3\xbe\xad\xfa\x1e\xa4\x45\ -\xeb\x7a\xdc\x43\x1d\x80\x60\x0d\x51\x37\x09\xfc\xd6\x22\x9d\xcd\ -\xd7\x90\xe6\xb6\x67\xa2\x3d\xb2\xc9\x0f\xac\xf8\x14\xb1\x3d\x21\ -\x8d\xb7\xe4\xc6\xda\xb5\xb8\x8d\x3c\x3b\x5b\xeb\x23\x7c\x0e\xc5\ -\x7a\x4c\xfe\x48\x97\x71\x5c\x68\xc8\xdd\x2d\x2d\x81\x5f\x68\x6e\ -\xd9\x00\xeb\xe0\xb9\xe0\x9c\xd6\x28\x2f\x5a\x83\x6b\x5c\xf1\x7e\ -\x8d\xd1\xea\xef\x47\xba\xe9\xb8\xd6\x6d\x72\xef\xc3\x62\xc4\x63\ -\xee\x47\xfc\x3e\x03\xee\x0c\x00\x5e\x86\xdd\xc0\xfa\x80\x74\x27\ -\x3b\x69\xe6\x6e\xec\x8d\x86\x35\x92\xf7\xd9\x3e\x6e\x51\x52\x6b\ -\xeb\x7f\x55\x43\x17\xa9\x75\xfc\x06\x34\x0b\xdd\xb6\x0a\x24\x03\ -\x31\x8f\xb4\xc4\x76\xc8\x9b\xe1\xfc\x94\x99\x17\xc1\xa1\x03\xaa\ -\xd1\x3f\x21\xc6\x80\x66\xd5\xf5\x4a\x7f\xd1\x72\x7f\x81\x6f\xa1\ -\x29\xbf\x01\x53\x43\xd4\x6d\x5b\xb2\x6c\x32\xc8\x37\xb9\x49\x0a\ -\x1b\x75\xbc\x59\xff\xc0\xb5\x63\xae\xf1\x9c\x36\xd0\xe0\x07\xf4\ -\xc6\xfc\x74\x0f\xbe\x5f\xaf\xb7\xe1\xbd\x5d\x9c\xae\xad\xd5\x75\ -\xfd\x8b\xfa\x28\xdc\x55\x0d\x58\xff\x15\x1d\x8b\xe0\x4c\x00\x4b\ -\xc0\xf5\xe5\x0b\x74\xb4\x95\x5d\xa5\x97\x9b\xaf\xf4\x2e\x21\xc4\ -\xdf\xcf\x3d\xed\xe3\x70\x1f\x8c\x83\xf1\x7f\x19\xfc\x3f\x09\x17\ -\x9a\x76\xda\xf7\x3f\x89\xfc\xc4\xe4\x3c\x74\xa0\x66\x4b\x8c\xc7\ -\x7d\x4e\x5c\x25\x05\x39\xf9\x1d\xe4\x84\xcb\xe5\x20\x7d\x0a\xbc\ -\x8b\xfb\x8e\x07\xec\x4e\x91\x1d\xdf\x6e\x6f\xa7\x2f\xc9\x97\xb7\ -\xc6\xa4\x2b\xf9\x49\x7a\x9f\x9f\x43\xaf\x74\x0a\x48\xc2\xbe\x0c\ -\x94\x80\x14\x72\x4b\x57\xbd\x96\xd5\x7e\xc7\x69\x7c\xf7\xac\xe1\ -\xbb\xb3\x8c\xef\x9d\x3d\xf4\x9a\x29\xe4\xa3\x0f\x91\x9b\xbf\x2d\ -\xce\x50\x11\xb5\x21\x58\x9e\xa5\x0f\x60\x7f\x07\xf6\x51\x1c\xdf\ -\xb0\x6c\xe3\x3e\xc7\xcb\xe8\x61\xfe\x58\x1d\x50\xf2\x9b\xc3\x72\ -\x70\x7b\xdc\xde\x8d\xba\x9a\xc6\x33\xdf\xe7\x26\x28\x8e\xef\x83\ -\x24\x6a\xdc\xf3\xfc\x2c\xf4\x9f\xc2\xf5\x2d\xbc\xef\x6b\x31\x4a\ -\x4f\x23\x5f\xba\xf0\x0d\xf0\x99\xf9\xfd\xe1\xbc\xc2\xe7\x69\x95\ -\x0e\xc1\xfe\x3b\xe4\xde\x15\xf4\xd9\x09\xf4\xd8\x89\xfc\x28\x3d\ -\x57\x89\x8f\x83\x6b\x11\xb4\x65\xf1\x0d\x76\x0e\x3d\xcc\x69\xf4\ -\xb0\x59\xe0\x76\xa2\xcf\xc9\x7f\xa9\xd1\x86\x4a\x4f\xc1\xfe\x06\ -\x38\x92\xe9\x21\xfa\x19\x3d\x72\x4a\x1f\xa1\x13\x96\xde\xdd\x39\ -\x7a\x91\x7b\xf2\xec\x94\xed\x4f\xf4\xa1\xcb\xe8\x7d\x77\x35\x8f\ -\xeb\xbc\x75\x7f\x5b\xa5\x23\xe8\xb7\x6e\x71\xed\x47\x6f\x79\x15\ -\xfd\x5d\x79\xdd\x47\x9e\xfd\xf1\xc2\xbd\xb3\x88\x55\x8e\x7b\xc8\ -\x98\xd7\x79\x33\xea\xa5\xc3\xd6\x3d\xd4\xb4\xd7\xc0\x9f\xc2\x33\ -\x9f\x27\xbd\x74\x32\xee\xa5\x2d\xf4\x46\x3f\x2c\x77\xd1\xb3\xd5\ -\x98\xb9\xed\x67\xd1\x8b\xe5\xe2\xbd\x4a\x69\x7d\x50\x71\xef\x9f\ -\xff\xc2\x8c\x34\x07\xdb\x6d\xcc\xdb\xb9\xbf\x2e\xd2\x21\xf4\x34\ -\x5f\xa1\xc7\x28\xa3\xa6\x5c\x8e\xb8\xe9\x18\x7a\x8e\xce\xa8\x5b\ -\x8a\xa1\x8f\x28\xa5\x86\xa4\x0c\x7a\x88\x9b\xf0\xe9\x05\xd8\xca\ -\xf0\xeb\x2d\xd8\xc6\x60\x7b\x03\xe7\xcf\xf0\x3b\x35\x37\x9d\x80\ -\xed\x6d\xa0\x8c\x5a\xb4\x09\x14\x50\x8b\xf7\xd0\x8f\x5c\x43\x7c\ -\xcf\x20\x8e\x7f\x23\x9e\xbf\xa2\xce\x7e\x89\xb9\x59\xc5\xef\xdf\ -\xf6\x3e\xa6\xd7\xf7\xfb\xbb\x7c\x9e\x5e\x81\x86\x4f\x60\x7b\x1b\ -\xf8\x91\x6b\x1c\xfb\x2c\x04\xd9\x50\xa7\xde\x44\xfd\xfa\x02\xdc\ -\xbf\x60\x8d\x5c\xc3\xfa\x78\xb5\xd1\xda\xbe\xe5\x26\x25\xe9\xa6\ -\x23\xf1\x0b\xf4\x8c\xe0\x6d\x5b\xbb\xee\x5d\xac\xb7\xd1\xda\x7e\ -\x92\xe3\x1f\x0b\x0c\xb3\x17\ -\x00\x00\x02\x7e\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ -\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x34\ -\x20\x34\x34\x43\x32\x39\x2e\x35\x32\x32\x38\x20\x34\x34\x20\x33\ -\x34\x2e\x35\x32\x32\x38\x20\x34\x31\x2e\x37\x36\x31\x34\x20\x33\ -\x38\x2e\x31\x34\x32\x31\x20\x33\x38\x2e\x31\x34\x32\x31\x43\x34\ -\x31\x2e\x37\x36\x31\x34\x20\x33\x34\x2e\x35\x32\x32\x38\x20\x34\ -\x34\x20\x32\x39\x2e\x35\x32\x32\x38\x20\x34\x34\x20\x32\x34\x43\ -\x34\x34\x20\x31\x38\x2e\x34\x37\x37\x32\x20\x34\x31\x2e\x37\x36\ -\x31\x34\x20\x31\x33\x2e\x34\x37\x37\x32\x20\x33\x38\x2e\x31\x34\ -\x32\x31\x20\x39\x2e\x38\x35\x37\x38\x36\x43\x33\x34\x2e\x35\x32\ -\x32\x38\x20\x36\x2e\x32\x33\x38\x35\x38\x20\x32\x39\x2e\x35\x32\ -\x32\x38\x20\x34\x20\x32\x34\x20\x34\x43\x31\x38\x2e\x34\x37\x37\ -\x32\x20\x34\x20\x31\x33\x2e\x34\x37\x37\x32\x20\x36\x2e\x32\x33\ -\x38\x35\x38\x20\x39\x2e\x38\x35\x37\x38\x36\x20\x39\x2e\x38\x35\ -\x37\x38\x36\x43\x36\x2e\x32\x33\x38\x35\x38\x20\x31\x33\x2e\x34\ -\x37\x37\x32\x20\x34\x20\x31\x38\x2e\x34\x37\x37\x32\x20\x34\x20\ -\x32\x34\x43\x34\x20\x32\x39\x2e\x35\x32\x32\x38\x20\x36\x2e\x32\ -\x33\x38\x35\x38\x20\x33\x34\x2e\x35\x32\x32\x38\x20\x39\x2e\x38\ -\x35\x37\x38\x36\x20\x33\x38\x2e\x31\x34\x32\x31\x43\x31\x33\x2e\ -\x34\x37\x37\x32\x20\x34\x31\x2e\x37\x36\x31\x34\x20\x31\x38\x2e\ -\x34\x37\x37\x32\x20\x34\x34\x20\x32\x34\x20\x34\x34\x5a\x22\x20\ -\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\ -\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\ -\x4d\x31\x36\x20\x32\x34\x4c\x32\x32\x20\x33\x30\x4c\x33\x34\x20\ -\x31\x38\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\ -\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\ -\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ -\x00\x00\x02\x2c\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ -\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x39\ -\x20\x36\x48\x39\x43\x37\x2e\x33\x34\x33\x31\x35\x20\x36\x20\x36\ -\x20\x37\x2e\x33\x34\x33\x31\x35\x20\x36\x20\x39\x56\x33\x39\x43\ -\x36\x20\x34\x30\x2e\x36\x35\x36\x39\x20\x37\x2e\x33\x34\x33\x31\ -\x35\x20\x34\x32\x20\x39\x20\x34\x32\x48\x33\x39\x43\x34\x30\x2e\ -\x36\x35\x36\x39\x20\x34\x32\x20\x34\x32\x20\x34\x30\x2e\x36\x35\ -\x36\x39\x20\x34\x32\x20\x33\x39\x56\x32\x39\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\ -\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\ -\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x38\x20\x31\x37\x4c\ -\x32\x32\x20\x32\x39\x4c\x33\x34\x20\x32\x35\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\ -\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\ -\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x32\x20\x32\x39\x43\ -\x32\x37\x20\x31\x34\x20\x33\x30\x20\x31\x31\x20\x34\x30\x20\x37\ -\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\ -\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\ -\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ -\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\ -\x65\x72\x22\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ \x00\x00\x03\xe2\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ @@ -1304,7 +117,7 @@ qt_resource_data = b"\ \x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ \x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\x73\x76\x67\ \x3e\ -\x00\x00\x01\xe3\ +\x00\x00\x02\x48\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ \x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ @@ -1314,30 +127,36 @@ qt_resource_data = b"\ \x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x66\x69\x6c\x6c\x2d\x72\ -\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x20\x63\x6c\ -\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\ -\x22\x20\x64\x3d\x22\x4d\x34\x20\x34\x30\x2e\x38\x33\x36\x31\x43\ -\x38\x2e\x38\x39\x33\x30\x37\x20\x33\x34\x2e\x38\x36\x33\x32\x20\ -\x31\x33\x2e\x32\x33\x38\x33\x20\x33\x31\x2e\x34\x37\x33\x39\x20\ -\x31\x37\x2e\x30\x33\x35\x36\x20\x33\x30\x2e\x36\x36\x38\x32\x43\ -\x32\x30\x2e\x38\x33\x32\x39\x20\x32\x39\x2e\x38\x36\x32\x35\x20\ -\x32\x34\x2e\x34\x34\x38\x33\x20\x32\x39\x2e\x37\x34\x30\x38\x20\ -\x32\x37\x2e\x38\x38\x31\x38\x20\x33\x30\x2e\x33\x30\x33\x56\x34\ -\x31\x4c\x34\x34\x20\x32\x33\x2e\x35\x34\x35\x33\x4c\x32\x37\x2e\ -\x38\x38\x31\x38\x20\x37\x56\x31\x37\x2e\x31\x36\x37\x43\x32\x31\ -\x2e\x35\x33\x33\x33\x20\x31\x37\x2e\x32\x31\x37\x32\x20\x31\x36\ -\x2e\x31\x33\x36\x32\x20\x31\x39\x2e\x34\x39\x34\x38\x20\x31\x31\ -\x2e\x36\x39\x30\x35\x20\x32\x34\x43\x37\x2e\x32\x34\x34\x37\x34\ -\x20\x32\x38\x2e\x35\x30\x35\x32\x20\x34\x2e\x36\x38\x31\x32\x36\ -\x20\x33\x34\x2e\x31\x31\x37\x32\x20\x34\x20\x34\x30\x2e\x38\x33\ -\x36\x31\x5a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\ +\x76\x67\x22\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x34\ +\x20\x34\x34\x43\x33\x35\x2e\x30\x34\x35\x37\x20\x34\x34\x20\x34\ +\x34\x20\x33\x35\x2e\x30\x34\x35\x37\x20\x34\x34\x20\x32\x34\x43\ +\x34\x34\x20\x31\x32\x2e\x39\x35\x34\x33\x20\x33\x35\x2e\x30\x34\ +\x35\x37\x20\x34\x20\x32\x34\x20\x34\x43\x31\x32\x2e\x39\x35\x34\ +\x33\x20\x34\x20\x34\x20\x31\x32\x2e\x39\x35\x34\x33\x20\x34\x20\ +\x32\x34\x43\x34\x20\x33\x35\x2e\x30\x34\x35\x37\x20\x31\x32\x2e\ +\x39\x35\x34\x33\x20\x34\x34\x20\x32\x34\x20\x34\x34\x5a\x22\x20\ +\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\ +\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\ +\x4d\x32\x39\x2e\x36\x35\x36\x37\x20\x31\x38\x2e\x33\x34\x33\x32\ +\x4c\x31\x38\x2e\x33\x34\x33\x20\x32\x39\x2e\x36\x35\x36\x39\x22\ \x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\ \x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\ -\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ -\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\x73\x76\ -\x67\x3e\ -\x00\x00\x01\xc6\ +\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ +\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\ +\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x38\ +\x2e\x33\x34\x33\x33\x20\x31\x38\x2e\x33\x34\x33\x32\x4c\x32\x39\ +\x2e\x36\x35\x37\x20\x32\x39\x2e\x36\x35\x36\x39\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\ +\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\ +\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\ +\x3e\x3c\x2f\x73\x76\x67\x3e\ +\x00\x00\x03\x69\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ \x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ @@ -1347,27 +166,239 @@ qt_resource_data = b"\ \x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x34\x20\ -\x39\x56\x34\x31\x4c\x39\x20\x32\x31\x48\x33\x39\x2e\x35\x56\x31\ -\x35\x43\x33\x39\x2e\x35\x20\x31\x33\x2e\x38\x39\x35\x34\x20\x33\ -\x38\x2e\x36\x30\x34\x36\x20\x31\x33\x20\x33\x37\x2e\x35\x20\x31\ -\x33\x48\x32\x34\x4c\x31\x39\x20\x37\x48\x36\x43\x34\x2e\x38\x39\ -\x35\x34\x33\x20\x37\x20\x34\x20\x37\x2e\x38\x39\x35\x34\x33\x20\ -\x34\x20\x39\x5a\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\ +\x76\x67\x22\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x38\ +\x2e\x32\x38\x35\x37\x20\x33\x37\x48\x33\x39\x2e\x37\x31\x34\x33\ +\x4d\x34\x32\x20\x34\x32\x4c\x33\x39\x2e\x37\x31\x34\x33\x20\x33\ +\x37\x4c\x34\x32\x20\x34\x32\x5a\x4d\x32\x36\x20\x34\x32\x4c\x32\ +\x38\x2e\x32\x38\x35\x37\x20\x33\x37\x4c\x32\x36\x20\x34\x32\x5a\ +\x4d\x32\x38\x2e\x32\x38\x35\x37\x20\x33\x37\x4c\x33\x34\x20\x32\ +\x34\x4c\x33\x39\x2e\x37\x31\x34\x33\x20\x33\x37\x48\x32\x38\x2e\ +\x32\x38\x35\x37\x5a\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\ +\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ +\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\ +\x64\x3d\x22\x4d\x31\x36\x20\x36\x4c\x31\x37\x20\x39\x22\x20\x73\ +\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\ +\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\ +\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\ +\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x36\x20\x31\x31\ +\x48\x32\x38\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\ +\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ +\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\ +\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\ +\x22\x4d\x31\x30\x20\x31\x36\x43\x31\x30\x20\x31\x36\x20\x31\x31\ +\x2e\x37\x38\x39\x35\x20\x32\x32\x2e\x32\x36\x30\x39\x20\x31\x36\ +\x2e\x32\x36\x33\x32\x20\x32\x35\x2e\x37\x33\x39\x31\x43\x32\x30\ +\x2e\x37\x33\x36\x38\x20\x32\x39\x2e\x32\x31\x37\x34\x20\x32\x38\ +\x20\x33\x32\x20\x32\x38\x20\x33\x32\x22\x20\x73\x74\x72\x6f\x6b\ +\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\ +\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\ +\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x34\x20\x31\x31\x43\x32\x34\ +\x20\x31\x31\x20\x32\x32\x2e\x32\x31\x30\x35\x20\x31\x39\x2e\x32\ +\x31\x37\x34\x20\x31\x37\x2e\x37\x33\x36\x38\x20\x32\x33\x2e\x37\ +\x38\x32\x36\x43\x31\x33\x2e\x32\x36\x33\x32\x20\x32\x38\x2e\x33\ +\x34\x37\x38\x20\x36\x20\x33\x32\x20\x36\x20\x33\x32\x22\x20\x73\ +\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\ +\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\ +\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\ +\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ +\x00\x00\x03\xca\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x36\x20\ +\x39\x43\x36\x20\x37\x2e\x33\x34\x33\x31\x35\x20\x37\x2e\x33\x34\ +\x33\x31\x35\x20\x36\x20\x39\x20\x36\x48\x33\x34\x2e\x32\x38\x31\ +\x34\x4c\x34\x32\x20\x31\x33\x2e\x32\x30\x36\x35\x56\x33\x39\x43\ +\x34\x32\x20\x34\x30\x2e\x36\x35\x36\x39\x20\x34\x30\x2e\x36\x35\ +\x36\x39\x20\x34\x32\x20\x33\x39\x20\x34\x32\x48\x39\x43\x37\x2e\ +\x33\x34\x33\x31\x35\x20\x34\x32\x20\x36\x20\x34\x30\x2e\x36\x35\ +\x36\x39\x20\x36\x20\x33\x39\x56\x39\x5a\x22\x20\x66\x69\x6c\x6c\ +\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\ +\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\ +\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x66\x69\x6c\x6c\x2d\x72\x75\ +\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x20\x63\x6c\x69\ +\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\ +\x20\x64\x3d\x22\x4d\x32\x34\x2e\x30\x30\x38\x33\x20\x36\x4c\x32\ +\x34\x20\x31\x33\x2e\x33\x38\x34\x36\x43\x32\x34\x20\x31\x33\x2e\ +\x37\x32\x34\x35\x20\x32\x33\x2e\x35\x35\x32\x33\x20\x31\x34\x20\ +\x32\x33\x20\x31\x34\x48\x31\x35\x43\x31\x34\x2e\x34\x34\x37\x37\ +\x20\x31\x34\x20\x31\x34\x20\x31\x33\x2e\x37\x32\x34\x35\x20\x31\ +\x34\x20\x31\x33\x2e\x33\x38\x34\x36\x4c\x31\x34\x20\x36\x22\x20\ +\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x2f\x3e\x3c\x70\x61\ +\x74\x68\x20\x64\x3d\x22\x4d\x32\x34\x2e\x30\x30\x38\x33\x20\x36\ +\x4c\x32\x34\x20\x31\x33\x2e\x33\x38\x34\x36\x43\x32\x34\x20\x31\ +\x33\x2e\x37\x32\x34\x35\x20\x32\x33\x2e\x35\x35\x32\x33\x20\x31\ +\x34\x20\x32\x33\x20\x31\x34\x48\x31\x35\x43\x31\x34\x2e\x34\x34\ +\x37\x37\x20\x31\x34\x20\x31\x34\x20\x31\x33\x2e\x37\x32\x34\x35\ +\x20\x31\x34\x20\x31\x33\x2e\x33\x38\x34\x36\x4c\x31\x34\x20\x36\ +\x48\x32\x34\x2e\x30\x30\x38\x33\x5a\x22\x20\x73\x74\x72\x6f\x6b\ +\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\ +\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\ +\x39\x20\x36\x48\x33\x34\x2e\x32\x38\x31\x34\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\ +\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\ +\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x34\x20\x32\x36\x48\ +\x33\x34\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\ +\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\ +\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\ +\x4d\x31\x34\x20\x33\x34\x48\x32\x34\x2e\x30\x30\x38\x33\x22\x20\ +\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\ +\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ +\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\ +\x22\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ +\x00\x00\x02\x95\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x39\x20\ +\x31\x30\x56\x34\x34\x48\x33\x39\x56\x31\x30\x48\x39\x5a\x22\x20\ +\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\ +\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\ +\x4d\x32\x30\x20\x32\x30\x56\x33\x33\x22\x20\x73\x74\x72\x6f\x6b\ +\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\ +\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\ +\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x38\x20\x32\x30\x56\x33\x33\ +\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\ +\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ +\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\ +\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x34\ +\x20\x31\x30\x48\x34\x34\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\ +\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\ +\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ +\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\ +\x20\x64\x3d\x22\x4d\x31\x36\x20\x31\x30\x4c\x31\x39\x2e\x32\x38\ +\x39\x20\x34\x48\x32\x38\x2e\x37\x37\x37\x31\x4c\x33\x32\x20\x31\ +\x30\x48\x31\x36\x5a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\ +\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\ +\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ +\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\ +\x73\x76\x67\x3e\ +\x00\x00\x02\xbf\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x34\x32\ +\x20\x37\x48\x36\x43\x34\x2e\x38\x39\x35\x34\x33\x20\x37\x20\x34\ +\x20\x37\x2e\x38\x39\x35\x34\x33\x20\x34\x20\x39\x56\x33\x39\x43\ +\x34\x20\x34\x30\x2e\x31\x30\x34\x36\x20\x34\x2e\x38\x39\x35\x34\ +\x33\x20\x34\x31\x20\x36\x20\x34\x31\x48\x34\x32\x43\x34\x33\x2e\ +\x31\x30\x34\x36\x20\x34\x31\x20\x34\x34\x20\x34\x30\x2e\x31\x30\ +\x34\x36\x20\x34\x34\x20\x33\x39\x56\x39\x43\x34\x34\x20\x37\x2e\ +\x38\x39\x35\x34\x33\x20\x34\x33\x2e\x31\x30\x34\x36\x20\x37\x20\ +\x34\x32\x20\x37\x5a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\ +\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\ +\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ +\x3d\x22\x33\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\ +\x31\x32\x20\x32\x30\x2e\x35\x37\x39\x39\x4c\x31\x36\x20\x31\x38\ +\x56\x33\x30\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\ +\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ +\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\ +\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\ +\x22\x4d\x33\x31\x20\x32\x30\x2e\x35\x37\x39\x39\x4c\x33\x35\x20\ +\x31\x38\x56\x33\x30\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\ +\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ +\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\ +\x64\x3d\x22\x4d\x32\x34\x20\x32\x30\x56\x32\x31\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\ +\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\ +\x73\x71\x75\x61\x72\x65\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\ +\x3d\x22\x4d\x32\x34\x20\x32\x37\x56\x32\x38\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\ +\x71\x75\x61\x72\x65\x22\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ +\x00\x00\x01\xe4\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x34\ +\x20\x31\x31\x4c\x34\x20\x32\x34\x4c\x31\x34\x20\x33\x37\x48\x34\ +\x34\x56\x31\x31\x48\x31\x34\x5a\x22\x20\x66\x69\x6c\x6c\x3d\x22\ +\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\ \x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ \x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ \x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\ \x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\ \x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\ -\x3d\x22\x4d\x34\x30\x20\x34\x31\x4c\x34\x34\x20\x32\x31\x48\x38\ -\x2e\x38\x31\x32\x35\x4c\x34\x20\x34\x31\x48\x34\x30\x5a\x22\x20\ -\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\ -\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\ -\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\ -\x2f\x73\x76\x67\x3e\ +\x3d\x22\x4d\x32\x31\x20\x31\x39\x4c\x33\x31\x20\x32\x39\x22\x20\ +\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\ +\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ +\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\ +\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x33\x31\x20\ +\x31\x39\x4c\x32\x31\x20\x32\x39\x22\x20\x73\x74\x72\x6f\x6b\x65\ +\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\ +\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\ +\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\x73\ +\x76\x67\x3e\ \x00\x00\x01\xe4\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ @@ -1494,6 +525,175 @@ qt_resource_data = b"\ \x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ \x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\x73\x76\ \x67\x3e\ +\x00\x00\x01\xd7\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x34\ +\x2e\x30\x30\x38\x33\x20\x31\x34\x2e\x31\x30\x30\x36\x56\x34\x32\ +\x2e\x30\x30\x30\x31\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\ +\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ +\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\ +\x64\x3d\x22\x4d\x31\x32\x20\x32\x36\x4c\x32\x34\x20\x31\x34\x4c\ +\x33\x36\x20\x32\x36\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\ +\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ +\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\ +\x64\x3d\x22\x4d\x31\x32\x20\x36\x48\x33\x36\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\ +\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\ +\x3c\x2f\x73\x76\x67\x3e\ +\x00\x00\x02\xa9\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x31\ +\x20\x33\x38\x43\x33\x30\x2e\x33\x38\x38\x38\x20\x33\x38\x20\x33\ +\x38\x20\x33\x30\x2e\x33\x38\x38\x38\x20\x33\x38\x20\x32\x31\x43\ +\x33\x38\x20\x31\x31\x2e\x36\x31\x31\x32\x20\x33\x30\x2e\x33\x38\ +\x38\x38\x20\x34\x20\x32\x31\x20\x34\x43\x31\x31\x2e\x36\x31\x31\ +\x32\x20\x34\x20\x34\x20\x31\x31\x2e\x36\x31\x31\x32\x20\x34\x20\ +\x32\x31\x43\x34\x20\x33\x30\x2e\x33\x38\x38\x38\x20\x31\x31\x2e\ +\x36\x31\x31\x32\x20\x33\x38\x20\x32\x31\x20\x33\x38\x5a\x22\x20\ +\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\ +\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\ +\x4d\x32\x31\x20\x31\x35\x4c\x32\x31\x20\x32\x37\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\ +\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\ +\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\ +\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x35\x2e\x30\x31\ +\x35\x36\x20\x32\x31\x2e\x30\x31\x35\x36\x4c\x32\x37\x20\x32\x31\ +\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\ +\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ +\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\ +\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x33\ +\x33\x2e\x32\x32\x31\x36\x20\x33\x33\x2e\x32\x32\x31\x37\x4c\x34\ +\x31\x2e\x37\x30\x36\x39\x20\x34\x31\x2e\x37\x30\x37\x22\x20\x73\ +\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\ +\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\ +\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\ +\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ +\x00\x00\x01\x33\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x34\x32\ +\x20\x36\x56\x34\x32\x4d\x31\x37\x20\x31\x39\x4c\x31\x32\x20\x32\ +\x34\x4d\x31\x32\x20\x32\x34\x4c\x31\x37\x20\x32\x39\x4d\x31\x32\ +\x20\x32\x34\x48\x33\x36\x4d\x33\x31\x20\x31\x39\x4c\x33\x36\x20\ +\x32\x34\x4d\x33\x36\x20\x32\x34\x4c\x33\x31\x20\x32\x39\x4d\x36\ +\x20\x36\x4c\x36\x20\x34\x32\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\ +\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\ +\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ +\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\x73\x76\ +\x67\x3e\ +\x00\x00\x01\xe3\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x66\x69\x6c\x6c\x2d\x72\ +\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x20\x63\x6c\ +\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\ +\x22\x20\x64\x3d\x22\x4d\x34\x20\x34\x30\x2e\x38\x33\x36\x31\x43\ +\x38\x2e\x38\x39\x33\x30\x37\x20\x33\x34\x2e\x38\x36\x33\x32\x20\ +\x31\x33\x2e\x32\x33\x38\x33\x20\x33\x31\x2e\x34\x37\x33\x39\x20\ +\x31\x37\x2e\x30\x33\x35\x36\x20\x33\x30\x2e\x36\x36\x38\x32\x43\ +\x32\x30\x2e\x38\x33\x32\x39\x20\x32\x39\x2e\x38\x36\x32\x35\x20\ +\x32\x34\x2e\x34\x34\x38\x33\x20\x32\x39\x2e\x37\x34\x30\x38\x20\ +\x32\x37\x2e\x38\x38\x31\x38\x20\x33\x30\x2e\x33\x30\x33\x56\x34\ +\x31\x4c\x34\x34\x20\x32\x33\x2e\x35\x34\x35\x33\x4c\x32\x37\x2e\ +\x38\x38\x31\x38\x20\x37\x56\x31\x37\x2e\x31\x36\x37\x43\x32\x31\ +\x2e\x35\x33\x33\x33\x20\x31\x37\x2e\x32\x31\x37\x32\x20\x31\x36\ +\x2e\x31\x33\x36\x32\x20\x31\x39\x2e\x34\x39\x34\x38\x20\x31\x31\ +\x2e\x36\x39\x30\x35\x20\x32\x34\x43\x37\x2e\x32\x34\x34\x37\x34\ +\x20\x32\x38\x2e\x35\x30\x35\x32\x20\x34\x2e\x36\x38\x31\x32\x36\ +\x20\x33\x34\x2e\x31\x31\x37\x32\x20\x34\x20\x34\x30\x2e\x38\x33\ +\x36\x31\x5a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\ +\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\ +\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ +\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\x73\x76\ +\x67\x3e\ +\x00\x00\x02\x2c\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x39\ +\x20\x36\x48\x39\x43\x37\x2e\x33\x34\x33\x31\x35\x20\x36\x20\x36\ +\x20\x37\x2e\x33\x34\x33\x31\x35\x20\x36\x20\x39\x56\x33\x39\x43\ +\x36\x20\x34\x30\x2e\x36\x35\x36\x39\x20\x37\x2e\x33\x34\x33\x31\ +\x35\x20\x34\x32\x20\x39\x20\x34\x32\x48\x33\x39\x43\x34\x30\x2e\ +\x36\x35\x36\x39\x20\x34\x32\x20\x34\x32\x20\x34\x30\x2e\x36\x35\ +\x36\x39\x20\x34\x32\x20\x33\x39\x56\x32\x39\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\ +\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\ +\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x38\x20\x31\x37\x4c\ +\x32\x32\x20\x32\x39\x4c\x33\x34\x20\x32\x35\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\ +\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\ +\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x32\x20\x32\x39\x43\ +\x32\x37\x20\x31\x34\x20\x33\x30\x20\x31\x31\x20\x34\x30\x20\x37\ +\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\ +\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ +\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\ +\x65\x72\x22\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ \x00\x00\x02\x71\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ @@ -1536,6 +736,862 @@ qt_resource_data = b"\ \x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\ \x22\x73\x71\x75\x61\x72\x65\x22\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ \ +\x00\x00\x03\x5b\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x32\x34\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x34\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x66\x69\x6c\x6c\x2d\x72\ +\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x20\x63\x6c\ +\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\ +\x22\x20\x64\x3d\x22\x4d\x32\x34\x20\x34\x31\x43\x33\x33\x2e\x39\ +\x34\x31\x31\x20\x34\x31\x20\x34\x32\x20\x33\x32\x2e\x36\x37\x38\ +\x20\x34\x32\x20\x32\x37\x43\x34\x32\x20\x32\x31\x2e\x33\x32\x32\ +\x20\x33\x33\x2e\x39\x34\x31\x31\x20\x31\x33\x20\x32\x34\x20\x31\ +\x33\x43\x31\x34\x2e\x30\x35\x38\x39\x20\x31\x33\x20\x36\x20\x32\ +\x31\x2e\x33\x32\x37\x38\x20\x36\x20\x32\x37\x43\x36\x20\x33\x32\ +\x2e\x36\x37\x32\x32\x20\x31\x34\x2e\x30\x35\x38\x39\x20\x34\x31\ +\x20\x32\x34\x20\x34\x31\x5a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\ +\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\ +\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ +\x74\x68\x3d\x22\x34\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x72\x6f\x75\x6e\x64\x22\x2f\x3e\ +\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x34\x20\x33\x33\x43\ +\x32\x37\x2e\x33\x31\x33\x37\x20\x33\x33\x20\x33\x30\x20\x33\x30\ +\x2e\x33\x31\x33\x37\x20\x33\x30\x20\x32\x37\x43\x33\x30\x20\x32\ +\x33\x2e\x36\x38\x36\x33\x20\x32\x37\x2e\x33\x31\x33\x37\x20\x32\ +\x31\x20\x32\x34\x20\x32\x31\x43\x32\x30\x2e\x36\x38\x36\x33\x20\ +\x32\x31\x20\x31\x38\x20\x32\x33\x2e\x36\x38\x36\x33\x20\x31\x38\ +\x20\x32\x37\x43\x31\x38\x20\x33\x30\x2e\x33\x31\x33\x37\x20\x32\ +\x30\x2e\x36\x38\x36\x33\x20\x33\x33\x20\x32\x34\x20\x33\x33\x5a\ +\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\ +\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x34\x22\x20\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\ +\x22\x72\x6f\x75\x6e\x64\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\ +\x3d\x22\x4d\x31\x33\x2e\x32\x36\x33\x37\x20\x31\x31\x2e\x32\x36\ +\x36\x31\x4c\x31\x35\x2e\x38\x35\x38\x32\x20\x31\x34\x2e\x38\x38\ +\x36\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\ +\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3d\x22\x34\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x63\x61\x70\x3d\x22\x72\x6f\x75\x6e\x64\x22\x2f\x3e\x3c\x70\ +\x61\x74\x68\x20\x64\x3d\x22\x4d\x33\x35\x2e\x36\x32\x35\x20\x31\ +\x31\x2e\x37\x31\x30\x34\x4c\x33\x33\x2e\x30\x33\x30\x34\x20\x31\ +\x35\x2e\x33\x33\x30\x37\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\ +\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3d\x22\x34\x22\x20\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x72\x6f\x75\x6e\x64\x22\ +\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x34\x2e\x30\ +\x30\x38\x38\x20\x37\x56\x31\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\ +\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x34\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x72\x6f\x75\x6e\ +\x64\x22\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ +\x00\x00\x02\x2b\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x39\ +\x20\x36\x48\x39\x43\x37\x2e\x33\x34\x33\x31\x35\x20\x36\x20\x36\ +\x20\x37\x2e\x33\x34\x33\x31\x35\x20\x36\x20\x39\x56\x33\x39\x43\ +\x36\x20\x34\x30\x2e\x36\x35\x36\x39\x20\x37\x2e\x33\x34\x33\x31\ +\x35\x20\x34\x32\x20\x39\x20\x34\x32\x48\x33\x39\x43\x34\x30\x2e\ +\x36\x35\x36\x39\x20\x34\x32\x20\x34\x32\x20\x34\x30\x2e\x36\x35\ +\x36\x39\x20\x34\x32\x20\x33\x39\x56\x32\x39\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\ +\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\ +\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x34\x32\x20\x31\x39\x4c\ +\x33\x38\x20\x37\x4c\x32\x36\x20\x31\x31\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\ +\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\ +\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x33\x38\x20\x37\x43\x33\x33\ +\x20\x32\x32\x20\x33\x30\x20\x32\x35\x20\x32\x30\x20\x32\x39\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\ +\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\ +\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ +\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\ +\x72\x22\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ +\x00\x00\x02\x7e\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x34\ +\x20\x34\x34\x43\x32\x39\x2e\x35\x32\x32\x38\x20\x34\x34\x20\x33\ +\x34\x2e\x35\x32\x32\x38\x20\x34\x31\x2e\x37\x36\x31\x34\x20\x33\ +\x38\x2e\x31\x34\x32\x31\x20\x33\x38\x2e\x31\x34\x32\x31\x43\x34\ +\x31\x2e\x37\x36\x31\x34\x20\x33\x34\x2e\x35\x32\x32\x38\x20\x34\ +\x34\x20\x32\x39\x2e\x35\x32\x32\x38\x20\x34\x34\x20\x32\x34\x43\ +\x34\x34\x20\x31\x38\x2e\x34\x37\x37\x32\x20\x34\x31\x2e\x37\x36\ +\x31\x34\x20\x31\x33\x2e\x34\x37\x37\x32\x20\x33\x38\x2e\x31\x34\ +\x32\x31\x20\x39\x2e\x38\x35\x37\x38\x36\x43\x33\x34\x2e\x35\x32\ +\x32\x38\x20\x36\x2e\x32\x33\x38\x35\x38\x20\x32\x39\x2e\x35\x32\ +\x32\x38\x20\x34\x20\x32\x34\x20\x34\x43\x31\x38\x2e\x34\x37\x37\ +\x32\x20\x34\x20\x31\x33\x2e\x34\x37\x37\x32\x20\x36\x2e\x32\x33\ +\x38\x35\x38\x20\x39\x2e\x38\x35\x37\x38\x36\x20\x39\x2e\x38\x35\ +\x37\x38\x36\x43\x36\x2e\x32\x33\x38\x35\x38\x20\x31\x33\x2e\x34\ +\x37\x37\x32\x20\x34\x20\x31\x38\x2e\x34\x37\x37\x32\x20\x34\x20\ +\x32\x34\x43\x34\x20\x32\x39\x2e\x35\x32\x32\x38\x20\x36\x2e\x32\ +\x33\x38\x35\x38\x20\x33\x34\x2e\x35\x32\x32\x38\x20\x39\x2e\x38\ +\x35\x37\x38\x36\x20\x33\x38\x2e\x31\x34\x32\x31\x43\x31\x33\x2e\ +\x34\x37\x37\x32\x20\x34\x31\x2e\x37\x36\x31\x34\x20\x31\x38\x2e\ +\x34\x37\x37\x32\x20\x34\x34\x20\x32\x34\x20\x34\x34\x5a\x22\x20\ +\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\ +\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\ +\x4d\x31\x36\x20\x32\x34\x4c\x32\x32\x20\x33\x30\x4c\x33\x34\x20\ +\x31\x38\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\ +\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\ +\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ +\x00\x00\x03\x3e\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x34\x30\ +\x20\x32\x33\x56\x31\x34\x4c\x33\x31\x20\x34\x48\x31\x30\x43\x38\ +\x2e\x38\x39\x35\x34\x33\x20\x34\x20\x38\x20\x34\x2e\x38\x39\x35\ +\x34\x33\x20\x38\x20\x36\x56\x34\x32\x43\x38\x20\x34\x33\x2e\x31\ +\x30\x34\x36\x20\x38\x2e\x38\x39\x35\x34\x33\x20\x34\x34\x20\x31\ +\x30\x20\x34\x34\x48\x32\x32\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\ +\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\ +\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ +\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\ +\x68\x20\x64\x3d\x22\x4d\x32\x37\x20\x33\x33\x48\x34\x31\x22\x20\ +\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\ +\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ +\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\ +\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x37\x20\ +\x33\x39\x48\x34\x31\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\ +\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ +\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\ +\x64\x3d\x22\x4d\x34\x31\x20\x33\x33\x4c\x33\x36\x20\x32\x38\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\ +\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\ +\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ +\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\ +\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x33\x32\ +\x20\x34\x34\x4c\x32\x37\x20\x33\x39\x22\x20\x73\x74\x72\x6f\x6b\ +\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\ +\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\ +\x61\x74\x68\x20\x64\x3d\x22\x4d\x33\x30\x20\x34\x56\x31\x34\x48\ +\x34\x30\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\ +\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\ +\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ +\x00\x00\x02\xf5\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x34\x33\ +\x20\x32\x33\x56\x31\x34\x43\x34\x33\x20\x31\x32\x2e\x38\x39\x35\ +\x34\x20\x34\x32\x2e\x31\x30\x34\x36\x20\x31\x32\x20\x34\x31\x20\ +\x31\x32\x48\x32\x34\x4c\x31\x39\x20\x36\x48\x37\x43\x35\x2e\x38\ +\x39\x35\x34\x33\x20\x36\x20\x35\x20\x36\x2e\x38\x39\x35\x34\x33\ +\x20\x35\x20\x38\x56\x34\x30\x43\x35\x20\x34\x31\x2e\x31\x30\x34\ +\x36\x20\x35\x2e\x38\x39\x35\x34\x33\x20\x34\x32\x20\x37\x20\x34\ +\x32\x48\x32\x32\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\ +\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ +\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\ +\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\ +\x3d\x22\x4d\x32\x37\x20\x33\x31\x4c\x34\x31\x20\x33\x31\x22\x20\ +\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\ +\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ +\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\ +\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x37\x20\ +\x33\x37\x48\x34\x31\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\ +\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ +\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\ +\x64\x3d\x22\x4d\x34\x31\x20\x33\x31\x4c\x33\x36\x20\x32\x36\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\ +\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\ +\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ +\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\ +\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x33\x32\ +\x20\x34\x32\x4c\x32\x37\x20\x33\x37\x22\x20\x73\x74\x72\x6f\x6b\ +\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\ +\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\ +\x73\x76\x67\x3e\ +\x00\x00\x03\x57\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\ +\x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ +\xe7\x04\x13\x03\x14\x20\x67\x3f\x96\xef\x00\x00\x02\xe4\x49\x44\ +\x41\x54\x68\x43\xed\x58\x3b\x8b\x15\x31\x18\x3d\xd7\x07\xae\x95\ +\x62\x25\xb6\xa2\x8d\x0f\x2c\xc4\x46\x10\x41\x41\xf4\x07\x58\x59\ +\x89\x28\x58\x5a\x2c\xba\x6b\x71\x41\x57\xc4\xc2\xce\x42\xb9\x68\ +\x6f\x69\x23\x88\x8d\x62\x6f\x21\x82\x22\x5a\xa8\x20\x56\x6b\x25\ +\x17\x5f\xf1\x7c\x3b\xe6\x92\xc9\x24\x33\xc9\x24\xb3\xc3\xe2\x64\ +\x77\xd8\x9b\xef\x79\xce\x97\x2f\x99\xec\x05\x86\x31\x54\x60\xa8\ +\xc0\x50\x81\x3e\x2b\x30\x72\x25\xbf\x06\xec\x5c\x0f\x1c\x57\xc0\ +\x56\x97\xbe\x07\xd9\xf2\x3a\xe0\xe9\x15\xe0\x83\x9d\xbb\x42\x60\ +\x09\x38\x4b\xa3\x3b\x7c\xe6\x6c\xe3\x9e\xe7\x53\x82\xbd\xb8\x00\ +\x3c\x30\x71\x94\x08\x48\xe5\xc9\xf4\x35\x0d\x36\xf5\x0c\xd6\x97\ +\x7e\x4a\x7c\x7b\xcc\x95\xd8\x60\x5a\x52\x79\x4c\x83\x67\xfb\xbc\ +\x24\xbb\x27\xbe\x48\xab\x2c\x3f\xc1\x7c\x07\xf8\xcc\xfd\x61\x6b\ +\xf3\xef\x3d\x9d\xbf\x44\x80\xc2\x1d\x5a\x41\xf0\x8f\x16\x81\xf1\ +\x2a\x03\x75\xa6\x63\x5b\x4f\xa9\x10\x02\x32\x66\x18\x65\xc2\xa2\ +\xaf\xed\xb1\xe6\x09\xd8\x2d\x14\xb4\x1c\xdc\x1f\xfc\x2d\x06\x5b\ +\xad\x72\x92\x05\x05\xc9\x64\x14\xbd\x02\x26\x78\xc1\x60\xcf\x33\ +\xe1\x0a\x0e\x13\x45\xc0\x07\xd6\x27\x0f\x46\x91\x60\x18\x45\x20\ +\x21\x4f\x67\xae\xff\x17\x01\xdf\x86\xf5\xc9\x3b\x2b\xbb\x11\x38\ +\x7a\x05\x6c\xb0\xf6\xdc\x06\xcd\xfd\x41\x13\x25\xdb\x44\x3d\x04\ +\x78\x47\xcc\x3b\xa2\x09\x48\x7a\x01\xad\x9f\x26\x38\x23\x28\xbe\ +\xfd\x8b\x71\x1a\xea\xd7\x2d\x60\x7b\x93\x4f\x8c\xbe\x15\x81\xf0\ +\x04\x52\xf9\xf2\x98\x87\xfa\x72\x03\x38\x6c\xcb\xdb\xce\x5b\x11\ +\x18\xcb\x15\x44\x15\x3f\x2b\x9f\x9d\xa3\x0a\x5e\x9b\x2d\x40\xbd\ +\x90\x96\x2a\xda\xcb\xe9\x1c\x2c\xf4\x24\xf7\xfb\x0b\xe0\xb1\xc2\ +\x6f\x6d\x21\x9f\x29\xb3\xfe\xf1\xf1\x83\x37\x23\x4b\x7b\xdd\x04\ +\xb6\xf8\xb3\x35\x6b\xa2\x08\x48\xc5\x4c\xf0\x06\x89\x65\xde\x18\ +\xf7\x16\xf3\x30\xf0\xda\xf7\x32\xd4\xb7\x62\x93\x37\x83\x75\x59\ +\x04\x13\x18\xb3\xf2\x23\x85\xd9\x86\xb4\x83\x2d\x2a\xbc\x4a\x01\ +\xd2\xd6\x37\x88\x80\x80\x77\x55\xde\x26\x01\x95\x7a\xaf\x53\xea\ +\x36\xb0\xb9\x12\xb7\x46\xd0\x48\x20\x18\xbc\x4e\x92\x48\xe2\x12\ +\xd4\x77\x9e\x52\xbb\x6b\x30\x97\x54\xb5\x04\xa2\xc1\x67\x22\xc1\ +\x53\xea\x6d\x68\x4b\x79\x09\xf8\x36\x6c\x68\x65\xd2\xdb\x49\x32\ +\x29\x75\x17\xd8\x58\x97\xd3\x4b\x80\xdd\x7c\xaa\xce\x31\x48\x97\ +\xd8\x4e\x92\xe3\x02\xd4\x0f\x82\xf4\x7e\x3f\xe5\x25\x40\xdf\x83\ +\x41\x20\x9b\x8c\x32\x90\xe0\xd1\x77\xde\x97\xa6\x44\x20\xc7\x9b\ +\xd1\x99\x28\x9d\xc4\xec\x64\xb2\x2b\x5e\x9a\xb3\x6d\xf6\x39\x01\ +\xe4\x10\xa6\x93\xd0\x28\xf6\x9b\x70\x6c\x42\xdb\x0c\xe5\x9b\x1c\ +\xb8\x4b\x31\xda\x93\xf8\xac\xe3\xb0\x9d\x4c\x8c\xbe\x8b\xd8\x8a\ +\xf9\xd7\xec\x04\x24\x60\x3b\x12\xef\x7d\x58\xec\x15\xf0\xd9\xe5\ +\x95\xb7\x23\xe1\xc4\xd0\x0f\x81\xf6\x2b\x51\x21\x61\x7f\xb1\xf5\ +\xc9\xb0\x38\xb4\x34\xc2\xe3\x8a\x47\x56\x41\xf0\xdd\xe9\xa8\x4e\ +\x4b\x8f\x8f\x26\x84\x12\x01\xbe\xf2\x26\x3f\x81\x33\xff\x0c\xe4\ +\xe8\x3a\x99\x15\x6f\x86\x60\xdc\xc4\x13\x33\x4c\xa9\x85\xe6\x81\ +\x67\x14\xdc\xcf\x90\xa7\xab\x10\x93\xab\xc0\x73\x33\xb8\x73\x0d\ +\xaf\x03\x47\x48\xe4\x1c\x5f\x6c\xbb\xba\x42\x12\x13\x97\x20\xdf\ +\x49\xe5\x6d\xf0\x31\x31\x06\xdb\xa1\x02\x43\x05\x86\x0a\x74\x53\ +\x81\xbf\x22\x47\x9c\xdf\xb5\xb4\xa1\x9c\x00\x00\x00\x00\x49\x45\ +\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x01\xd2\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x34\ +\x2e\x30\x30\x38\x33\x20\x33\x33\x2e\x38\x39\x39\x35\x56\x36\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\ +\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\ +\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ +\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\ +\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x33\x36\ +\x20\x32\x32\x4c\x32\x34\x20\x33\x34\x4c\x31\x32\x20\x32\x32\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\ +\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\ +\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ +\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\ +\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x33\x36\ +\x20\x34\x32\x48\x31\x32\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\ +\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\ +\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ +\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\x73\x76\x67\ +\x3e\ +\x00\x00\x03\xee\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x38\x20\ +\x32\x38\x43\x31\x30\x2e\x32\x30\x39\x31\x20\x32\x38\x20\x31\x32\ +\x20\x32\x36\x2e\x32\x30\x39\x31\x20\x31\x32\x20\x32\x34\x43\x31\ +\x32\x20\x32\x31\x2e\x37\x39\x30\x39\x20\x31\x30\x2e\x32\x30\x39\ +\x31\x20\x32\x30\x20\x38\x20\x32\x30\x43\x35\x2e\x37\x39\x30\x38\ +\x36\x20\x32\x30\x20\x34\x20\x32\x31\x2e\x37\x39\x30\x39\x20\x34\ +\x20\x32\x34\x43\x34\x20\x32\x36\x2e\x32\x30\x39\x31\x20\x35\x2e\ +\x37\x39\x30\x38\x36\x20\x32\x38\x20\x38\x20\x32\x38\x5a\x22\x20\ +\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\ +\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\ +\x4d\x38\x20\x31\x32\x43\x39\x2e\x31\x30\x34\x35\x37\x20\x31\x32\ +\x20\x31\x30\x20\x31\x31\x2e\x31\x30\x34\x36\x20\x31\x30\x20\x31\ +\x30\x43\x31\x30\x20\x38\x2e\x38\x39\x35\x34\x33\x20\x39\x2e\x31\ +\x30\x34\x35\x37\x20\x38\x20\x38\x20\x38\x43\x36\x2e\x38\x39\x35\ +\x34\x33\x20\x38\x20\x36\x20\x38\x2e\x38\x39\x35\x34\x33\x20\x36\ +\x20\x31\x30\x43\x36\x20\x31\x31\x2e\x31\x30\x34\x36\x20\x36\x2e\ +\x38\x39\x35\x34\x33\x20\x31\x32\x20\x38\x20\x31\x32\x5a\x22\x20\ +\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\ +\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ +\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\ +\x20\x64\x3d\x22\x4d\x38\x20\x34\x30\x43\x39\x2e\x31\x30\x34\x35\ +\x37\x20\x34\x30\x20\x31\x30\x20\x33\x39\x2e\x31\x30\x34\x36\x20\ +\x31\x30\x20\x33\x38\x43\x31\x30\x20\x33\x36\x2e\x38\x39\x35\x34\ +\x20\x39\x2e\x31\x30\x34\x35\x37\x20\x33\x36\x20\x38\x20\x33\x36\ +\x43\x36\x2e\x38\x39\x35\x34\x33\x20\x33\x36\x20\x36\x20\x33\x36\ +\x2e\x38\x39\x35\x34\x20\x36\x20\x33\x38\x43\x36\x20\x33\x39\x2e\ +\x31\x30\x34\x36\x20\x36\x2e\x38\x39\x35\x34\x33\x20\x34\x30\x20\ +\x38\x20\x34\x30\x5a\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\ +\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\ +\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x30\x20\x32\ +\x34\x48\x34\x34\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\ +\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ +\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\ +\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\ +\x3d\x22\x4d\x32\x30\x20\x33\x38\x48\x34\x34\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\ +\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\ +\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x30\x20\x31\x30\x48\ +\x34\x34\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\ +\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\ +\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ +\x00\x00\x03\x2f\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\ +\x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ +\xe6\x0a\x19\x03\x13\x1b\x82\xa4\x64\xac\x00\x00\x02\xbc\x49\x44\ +\x41\x54\x68\x43\xed\x58\xbf\x6b\x14\x41\x18\x7d\xab\x06\x63\xa5\ +\x58\x89\x85\x4d\xd0\xc6\x1f\xa4\x10\x0b\x0b\x09\x28\x88\xfe\x01\ +\x56\x56\x22\x0a\x96\x16\x41\x93\x14\x07\x1a\x91\x14\xe9\x52\x44\ +\x0e\xed\x2d\x6d\x04\xb1\x31\x85\xad\x85\x04\x22\xa2\x45\x14\xc4\ +\x2a\x56\xe1\x88\x3f\xc6\x37\x7b\x3b\xcb\xec\x64\x67\x77\xe6\x76\ +\x99\xdd\x23\xfb\x85\x25\x37\xf3\x7d\x33\xdf\x7b\x6f\xbe\x99\x9d\ +\x3b\xa0\xb3\x4e\x81\x4e\x81\x4e\x81\x26\x15\x88\xf2\x92\x3f\x02\ +\xa6\xf6\x03\x57\x04\x70\x24\xcf\xdf\x40\xdf\xd6\x3e\xe0\xed\x43\ +\xe0\xab\x99\x7b\x17\x81\x45\xe0\x16\x83\x56\xf8\x4c\x9a\xc1\x0d\ +\xb7\x07\x04\x7b\x6f\x0e\x78\xa1\xe3\xc8\x10\x90\xca\x93\xe9\x3a\ +\x03\x0e\x36\x0c\xd6\x96\x7e\x40\x7c\xa7\xf5\x95\x38\xa0\x47\xd2\ +\x79\x59\x81\x67\xf9\x7c\x20\xbb\x37\xb6\x99\x02\xf7\x5f\x65\xbe\ +\x69\x3e\x93\xff\x58\xda\xfc\xff\x4c\xe5\xcf\x10\x60\xe7\x71\xe5\ +\x20\xf8\x57\xf3\x40\x2f\x30\xd0\xdc\x74\x2c\xeb\x01\x1d\x92\x80\ +\xb4\x14\xa3\x6c\x50\xf4\xf1\xb6\xb1\x27\x60\x96\x90\xd3\x72\x88\ +\xf7\xe0\x16\x19\x5a\x74\x11\xbb\x4e\x32\xa7\x49\x6a\x0a\xf2\x5e\ +\x81\x18\xfc\x26\xb3\x27\x8f\x4e\xa6\x26\x4c\x5e\xd3\x78\x11\x48\ +\xc1\xeb\x29\x48\xa4\x49\x12\x5e\x04\xbc\xa4\x09\x14\xbc\xb7\x08\ +\xc4\x1b\xf6\x84\x21\x2d\xdb\x4d\x6e\x64\xef\x15\x48\x49\x48\x22\ +\x0e\xe0\x79\x5c\x45\xdc\xf6\xf1\xdf\x4b\x80\x77\xc4\x7a\xcd\x9b\ +\x80\x4c\x2f\x49\xa8\xa7\x0c\x4e\x24\xc0\xb7\xff\xd0\x6e\x08\xfc\ +\x59\x02\x8e\x95\x8d\xf1\xf1\x8f\x44\xc0\x39\x81\xd4\xdd\xb0\x59\ +\x81\x1f\xf1\x7a\xd4\x64\x23\x11\xe8\xc9\x2b\x48\x52\x16\xf1\xe7\ +\x3c\x2b\x03\x49\x7f\x5c\x5e\x15\x2d\x3f\x79\xc1\xa4\x12\x70\x4f\ +\xe0\xaf\x0a\x91\x9f\xd9\x97\xfd\xe2\x53\x06\x3e\x19\x2c\xcb\xeb\ +\x29\x70\xb8\x20\x5d\xa9\xcb\x8b\x80\x54\x4c\x07\xaf\x91\xd8\xe2\ +\x8d\xf1\x4c\xdc\x76\x04\xaf\xc6\x3e\x10\xf8\xe5\x3b\x46\x67\xe5\ +\x4c\xa0\x47\xe5\xf5\x0d\x69\x4a\x33\x2f\xf0\xb1\x0a\x90\x51\xc7\ +\x3a\x11\x90\xe0\xf3\x94\x37\x49\x54\x6e\x73\xf5\x96\x81\x43\x3e\ +\xf3\x94\x12\x08\x06\x3e\x41\x7d\x5f\x60\xfb\x09\x70\xca\x95\x44\ +\x21\x81\xd0\xe0\x15\xe8\x39\x81\x4f\xae\x25\x65\x25\x60\xdb\xb0\ +\xae\xca\xd4\x12\xc7\x92\x5a\x05\x26\x8a\xe6\xb2\x12\xe0\x01\x7d\ +\xbd\x68\x60\x28\xdf\x5d\x81\x1d\x82\xb4\xfe\x3e\x65\x25\x40\x80\ +\xe7\x43\x81\x2c\xcb\xc3\xbb\xc8\x1d\x5b\x4c\x86\x40\x1d\x6f\x46\ +\x5b\xa2\x8a\xfd\xe9\xc9\x64\x2a\x9e\x69\xb3\x6c\xce\x56\x4c\x14\ +\x62\xf8\x39\x3d\x89\x49\xe8\xa8\xe6\xdc\x08\x81\xc6\x31\xc7\x77\ +\x15\xc7\x72\xd2\x31\x5a\x2e\x62\xc3\xe8\x9f\x8e\x93\x87\x08\xfb\ +\x62\x4b\x62\xae\x80\x2d\xae\xb5\xfd\x63\x4f\xc0\xfc\x61\xeb\x9b\ +\x26\xf5\x85\xc5\x08\xaf\x5b\x22\xfd\x8c\xc2\xc1\x83\x66\x53\xc7\ +\x94\x21\xc0\x57\x5e\xff\x37\x70\x33\x09\x90\x47\xd7\xb5\x96\x10\ +\x48\x61\x70\x13\xf7\x75\x4c\x99\x12\x9a\x05\xde\xb1\xe3\x79\xdb\ +\x40\x6b\x78\xfa\x0b\xc0\x9a\x8e\x2f\xf7\x2b\xdd\x63\xe0\x12\x89\ +\xdc\xe6\x8b\xed\x64\x1b\xc8\x10\xe4\x67\xa9\xbc\x09\xbe\x0d\xd8\ +\x3a\x0c\x9d\x02\x9d\x02\x7b\x5d\x81\xff\xd4\x3b\x9a\x8c\xa1\x62\ +\xf3\x6f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x01\xc6\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x34\x20\ +\x39\x56\x34\x31\x4c\x39\x20\x32\x31\x48\x33\x39\x2e\x35\x56\x31\ +\x35\x43\x33\x39\x2e\x35\x20\x31\x33\x2e\x38\x39\x35\x34\x20\x33\ +\x38\x2e\x36\x30\x34\x36\x20\x31\x33\x20\x33\x37\x2e\x35\x20\x31\ +\x33\x48\x32\x34\x4c\x31\x39\x20\x37\x48\x36\x43\x34\x2e\x38\x39\ +\x35\x34\x33\x20\x37\x20\x34\x20\x37\x2e\x38\x39\x35\x34\x33\x20\ +\x34\x20\x39\x5a\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\ +\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ +\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\ +\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\ +\x3d\x22\x4d\x34\x30\x20\x34\x31\x4c\x34\x34\x20\x32\x31\x48\x38\ +\x2e\x38\x31\x32\x35\x4c\x34\x20\x34\x31\x48\x34\x30\x5a\x22\x20\ +\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\ +\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\ +\x2f\x73\x76\x67\x3e\ +\x00\x00\x02\x4e\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x30\ +\x20\x34\x34\x48\x33\x38\x43\x33\x39\x2e\x31\x30\x34\x36\x20\x34\ +\x34\x20\x34\x30\x20\x34\x33\x2e\x31\x30\x34\x36\x20\x34\x30\x20\ +\x34\x32\x56\x31\x34\x48\x33\x30\x56\x34\x48\x31\x30\x43\x38\x2e\ +\x38\x39\x35\x34\x33\x20\x34\x20\x38\x20\x34\x2e\x38\x39\x35\x34\ +\x33\x20\x38\x20\x36\x56\x34\x32\x43\x38\x20\x34\x33\x2e\x31\x30\ +\x34\x36\x20\x38\x2e\x38\x39\x35\x34\x33\x20\x34\x34\x20\x31\x30\ +\x20\x34\x34\x5a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\ +\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\ +\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ +\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\ +\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x33\ +\x30\x20\x34\x4c\x34\x30\x20\x31\x34\x22\x20\x73\x74\x72\x6f\x6b\ +\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\ +\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\ +\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x31\x20\x33\x35\x4c\x33\x31\ +\x20\x32\x35\x4c\x32\x37\x20\x32\x31\x4c\x31\x37\x20\x33\x31\x56\ +\x33\x35\x48\x32\x31\x5a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\ +\x6e\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\ +\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\ +\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ +\x00\x00\x06\x28\ +\x00\ +\x00\x15\xb6\x78\x9c\xed\x58\x4b\x6f\x1b\x55\x14\x3e\x1e\xcf\xd8\ +\x5e\x40\x95\xa2\x4a\x6c\x90\x1a\x81\x40\xdd\x20\xaa\x82\xd8\x20\ +\xa1\x6c\x40\x6c\x40\x65\xd1\x56\x6a\x41\x8a\xda\xc4\xb1\x13\x37\ +\x71\x92\x26\xe4\xe1\x24\xe3\x84\x1f\x90\x0a\xba\xa8\x5a\xa1\xb0\ +\x40\x42\x48\x88\x2c\x2a\xba\x01\xe1\x1d\x20\x2a\x6a\x21\x84\x8a\ +\x08\xf1\xf8\x11\xe7\x65\xd7\x93\xc4\x8f\x38\xb6\x7a\xf9\xce\x8c\ +\xc7\x8d\x5d\xdb\x6d\x61\xd1\x05\xb9\xd2\xa7\xf1\x3c\xce\x7c\xdf\ +\x39\xf7\xde\x73\xce\x98\xc8\x46\x12\xb5\xb7\x13\x8e\xed\x74\xec\ +\x30\xd1\x4b\x44\xd4\xd6\x66\x9e\x7b\x64\xa2\xf7\x70\xed\x18\xae\ +\xe1\x11\xea\x20\xf3\xba\x31\xda\xe8\x60\x1c\x8c\x83\xd1\x62\x14\ +\x54\x6a\x2f\xcd\x51\x07\x63\x4f\xa5\xe3\xff\xf5\x7d\x99\x31\x6a\ +\xcf\x8c\xc9\x1d\x8c\xec\x44\xf3\xf7\x31\x57\x69\x96\x42\x80\xa8\ +\x43\xf8\xdf\xe8\x58\xf5\xbb\xda\x37\x86\xe4\x50\xfa\x92\x5d\xdc\ +\x1d\xb1\x0b\xfd\x23\x49\xec\x4c\x48\x22\x1f\xb0\x69\x85\x80\x91\ +\x16\x6a\xb8\xf7\x82\xa4\x03\xa2\x14\x7c\x80\x9f\xa1\x97\xe7\xe8\ +\xe4\xa3\x72\x27\xfc\xca\xf1\xf5\x41\x59\xdf\x18\x94\xc5\xe6\x90\ +\x5c\xc3\x9f\x0b\xd8\x44\x7e\xca\x26\x10\xe7\xaa\x86\xa2\x6a\xf8\ +\x28\x98\x7f\xaf\x31\x3f\xeb\xd2\x1f\x25\x0e\x11\x3f\xb5\xad\xfa\ +\x15\x6d\x6d\x40\x11\xeb\x7e\x93\x3f\x33\x6a\xf1\xdb\x0c\xfe\xdd\ +\x19\x83\x47\xb3\x7c\xdf\x9d\xc6\x39\xf8\x8b\xa6\x06\xbd\x18\x24\ +\x75\x6f\x96\x3a\xeb\xe7\x03\xf7\xc2\x42\x6d\x9d\x45\x93\xfd\xf2\ +\x62\xb2\x5f\x11\x0c\xe6\x4f\x0d\xdb\x01\x79\x1e\x1a\x4e\x6e\x8f\ +\x4b\x61\xe6\x2f\x4c\x9b\x71\xe6\x98\xe2\xb7\xca\xfc\x0c\x83\x5f\ +\x25\x7f\xcd\xdc\xcc\xd1\x42\x8d\x06\x95\xe6\x9b\xc6\xbd\x57\xe9\ +\x4c\xf8\x1c\x82\xb1\x72\xd1\xd4\xb0\x31\xa4\x74\x5a\xf7\x33\xd0\ +\x0e\x7e\x9d\xfd\xaf\xc4\x54\xcd\x06\x28\x94\x0b\x10\xd6\x05\x89\ +\xc2\x14\x89\x7a\xff\xf8\x9c\xd7\xa0\xc5\xcf\xb6\xd9\x06\xf3\xc0\ +\x71\x8f\xf7\x39\xf4\x58\xaf\xc5\xef\x10\x49\xbf\xf2\x80\xd6\x5c\ +\x40\x5a\x28\x4c\xdb\x2c\x7f\x42\xcc\xbf\x33\x41\xc2\xd2\xd0\xc8\ +\x2f\x63\x6f\x04\xab\x73\x80\xf8\xd9\x42\xf5\xcf\xc4\xfa\x1c\x0b\ +\xcc\xcd\x88\x7a\x9d\x02\x5a\xb4\x46\xef\xca\x4d\x4b\x2a\xfb\xc0\ +\xb1\x66\xfe\x9d\x71\x03\x62\x1b\xe0\x63\xb3\xd8\x72\xac\x2c\x0d\ +\x46\x0c\xa6\xa8\x1a\xd7\xb8\xcf\xd5\xa1\x79\x9c\xc2\x00\xb8\x0d\ +\x7e\x5c\x6b\xc6\x9f\x87\xff\x16\xbf\x3e\x46\xa1\xcc\x08\xf8\xc7\ +\x48\xe8\xa3\xcd\xf9\x2b\x1a\xc2\x96\x86\xec\xa4\x54\xf5\x0f\xbc\ +\x4b\xcc\x1d\xe9\x31\x35\x44\x3c\xce\xa6\x6b\x64\x27\x00\x7e\xec\ +\xbf\xca\x3e\x0b\xa5\x47\x68\xfe\xee\x25\x12\xe9\x61\x93\x9f\xf3\ +\x55\x53\x7e\xec\xd9\x52\x25\x47\xb0\xfe\xad\x09\x49\x8d\xfb\x9c\ +\xdf\x44\xbd\x2e\xc3\xef\x0a\xbf\xce\x6b\xa1\x29\xff\xa4\x6d\x91\ +\xfd\xdf\x9d\x31\x34\x2c\x6c\xfa\xc9\x0f\x88\xd4\x20\x30\x04\xfe\ +\xe1\xd6\x79\x66\x17\xeb\xdf\xd2\x80\x7c\xb2\x15\xeb\x75\xde\x63\ +\x7e\x06\xfc\xc6\xfc\xbb\x3a\x5b\xd9\x67\x03\xb6\x30\x73\x1b\x6b\ +\x00\x73\x0a\xee\x8e\xb5\x7e\x12\xeb\x03\x24\xf8\x08\x1d\x4d\x63\ +\xc7\x83\xf7\x03\xd6\xa3\xc6\x73\xb0\x36\x20\x8b\xa8\xc7\x9c\x6f\ +\xe6\x5f\xf1\x39\x7f\x6f\x65\x6b\xec\xbf\x29\xd3\x77\x63\xfe\xe7\ +\xcc\x1c\xb8\x36\x40\x7a\xb2\x0f\xef\xbb\x48\x02\x47\xbd\xd5\x3b\ +\x78\xec\x20\x7f\x73\x2e\x8b\x7a\x1c\x15\x38\x0d\xac\xf8\x1c\x67\ +\x5a\xfa\x8e\x35\x6b\xc5\x9e\xf9\xad\xbd\x9e\xf0\xd2\x02\x20\x56\ +\x7a\x4d\xc4\x3c\xf7\xd7\x76\xa3\x01\x8d\x47\x63\x1e\x45\x44\x7b\ +\x94\xaa\x86\xa4\xcf\xf1\xd3\xc3\x74\xf3\xbe\xad\xfa\x1e\xa4\x45\ +\xeb\x7a\xdc\x43\x1d\x80\x60\x0d\x51\x37\x09\xfc\xd6\x22\x9d\xcd\ +\xd7\x90\xe6\xb6\x67\xa2\x3d\xb2\xc9\x0f\xac\xf8\x14\xb1\x3d\x21\ +\x8d\xb7\xe4\xc6\xda\xb5\xb8\x8d\x3c\x3b\x5b\xeb\x23\x7c\x0e\xc5\ +\x7a\x4c\xfe\x48\x97\x71\x5c\x68\xc8\xdd\x2d\x2d\x81\x5f\x68\x6e\ +\xd9\x00\xeb\xe0\xb9\xe0\x9c\xd6\x28\x2f\x5a\x83\x6b\x5c\xf1\x7e\ +\x8d\xd1\xea\xef\x47\xba\xe9\xb8\xd6\x6d\x72\xef\xc3\x62\xc4\x63\ +\xee\x47\xfc\x3e\x03\xee\x0c\x00\x5e\x86\xdd\xc0\xfa\x80\x74\x27\ +\x3b\x69\xe6\x6e\xec\x8d\x86\x35\x92\xf7\xd9\x3e\x6e\x51\x52\x6b\ +\xeb\x7f\x55\x43\x17\xa9\x75\xfc\x06\x34\x0b\xdd\xb6\x0a\x24\x03\ +\x31\x8f\xb4\xc4\x76\xc8\x9b\xe1\xfc\x94\x99\x17\xc1\xa1\x03\xaa\ +\xd1\x3f\x21\xc6\x80\x66\xd5\xf5\x4a\x7f\xd1\x72\x7f\x81\x6f\xa1\ +\x29\xbf\x01\x53\x43\xd4\x6d\x5b\xb2\x6c\x32\xc8\x37\xb9\x49\x0a\ +\x1b\x75\xbc\x59\xff\xc0\xb5\x63\xae\xf1\x9c\x36\xd0\xe0\x07\xf4\ +\xc6\xfc\x74\x0f\xbe\x5f\xaf\xb7\xe1\xbd\x5d\x9c\xae\xad\xd5\x75\ +\xfd\x8b\xfa\x28\xdc\x55\x0d\x58\xff\x15\x1d\x8b\xe0\x4c\x00\x4b\ +\xc0\xf5\xe5\x0b\x74\xb4\x95\x5d\xa5\x97\x9b\xaf\xf4\x2e\x21\xc4\ +\xdf\xcf\x3d\xed\xe3\x70\x1f\x8c\x83\xf1\x7f\x19\xfc\x3f\x09\x17\ +\x9a\x76\xda\xf7\x3f\x89\xfc\xc4\xe4\x3c\x74\xa0\x66\x4b\x8c\xc7\ +\x7d\x4e\x5c\x25\x05\x39\xf9\x1d\xe4\x84\xcb\xe5\x20\x7d\x0a\xbc\ +\x8b\xfb\x8e\x07\xec\x4e\x91\x1d\xdf\x6e\x6f\xa7\x2f\xc9\x97\xb7\ +\xc6\xa4\x2b\xf9\x49\x7a\x9f\x9f\x43\xaf\x74\x0a\x48\xc2\xbe\x0c\ +\x94\x80\x14\x72\x4b\x57\xbd\x96\xd5\x7e\xc7\x69\x7c\xf7\xac\xe1\ +\xbb\xb3\x8c\xef\x9d\x3d\xf4\x9a\x29\xe4\xa3\x0f\x91\x9b\xbf\x2d\ +\xce\x50\x11\xb5\x21\x58\x9e\xa5\x0f\x60\x7f\x07\xf6\x51\x1c\xdf\ +\xb0\x6c\xe3\x3e\xc7\xcb\xe8\x61\xfe\x58\x1d\x50\xf2\x9b\xc3\x72\ +\x70\x7b\xdc\xde\x8d\xba\x9a\xc6\x33\xdf\xe7\x26\x28\x8e\xef\x83\ +\x24\x6a\xdc\xf3\xfc\x2c\xf4\x9f\xc2\xf5\x2d\xbc\xef\x6b\x31\x4a\ +\x4f\x23\x5f\xba\xf0\x0d\xf0\x99\xf9\xfd\xe1\xbc\xc2\xe7\x69\x95\ +\x0e\xc1\xfe\x3b\xe4\xde\x15\xf4\xd9\x09\xf4\xd8\x89\xfc\x28\x3d\ +\x57\x89\x8f\x83\x6b\x11\xb4\x65\xf1\x0d\x76\x0e\x3d\xcc\x69\xf4\ +\xb0\x59\xe0\x76\xa2\xcf\xc9\x7f\xa9\xd1\x86\x4a\x4f\xc1\xfe\x06\ +\x38\x92\xe9\x21\xfa\x19\x3d\x72\x4a\x1f\xa1\x13\x96\xde\xdd\x39\ +\x7a\x91\x7b\xf2\xec\x94\xed\x4f\xf4\xa1\xcb\xe8\x7d\x77\x35\x8f\ +\xeb\xbc\x75\x7f\x5b\xa5\x23\xe8\xb7\x6e\x71\xed\x47\x6f\x79\x15\ +\xfd\x5d\x79\xdd\x47\x9e\xfd\xf1\xc2\xbd\xb3\x88\x55\x8e\x7b\xc8\ +\x98\xd7\x79\x33\xea\xa5\xc3\xd6\x3d\xd4\xb4\xd7\xc0\x9f\xc2\x33\ +\x9f\x27\xbd\x74\x32\xee\xa5\x2d\xf4\x46\x3f\x2c\x77\xd1\xb3\xd5\ +\x98\xb9\xed\x67\xd1\x8b\xe5\xe2\xbd\x4a\x69\x7d\x50\x71\xef\x9f\ +\xff\xc2\x8c\x34\x07\xdb\x6d\xcc\xdb\xb9\xbf\x2e\xd2\x21\xf4\x34\ +\x5f\xa1\xc7\x28\xa3\xa6\x5c\x8e\xb8\xe9\x18\x7a\x8e\xce\xa8\x5b\ +\x8a\xa1\x8f\x28\xa5\x86\xa4\x0c\x7a\x88\x9b\xf0\xe9\x05\xd8\xca\ +\xf0\xeb\x2d\xd8\xc6\x60\x7b\x03\xe7\xcf\xf0\x3b\x35\x37\x9d\x80\ +\xed\x6d\xa0\x8c\x5a\xb4\x09\x14\x50\x8b\xf7\xd0\x8f\x5c\x43\x7c\ +\xcf\x20\x8e\x7f\x23\x9e\xbf\xa2\xce\x7e\x89\xb9\x59\xc5\xef\xdf\ +\xf6\x3e\xa6\xd7\xf7\xfb\xbb\x7c\x9e\x5e\x81\x86\x4f\x60\x7b\x1b\ +\xf8\x91\x6b\x1c\xfb\x2c\x04\xd9\x50\xa7\xde\x44\xfd\xfa\x02\xdc\ +\xbf\x60\x8d\x5c\xc3\xfa\x78\xb5\xd1\xda\xbe\xe5\x26\x25\xe9\xa6\ +\x23\xf1\x0b\xf4\x8c\xe0\x6d\x5b\xbb\xee\x5d\xac\xb7\xd1\xda\x7e\ +\x92\xe3\x1f\x0b\x0c\xb3\x17\ +\x00\x00\x02\x35\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x31\ +\x20\x33\x38\x43\x33\x30\x2e\x33\x38\x38\x38\x20\x33\x38\x20\x33\ +\x38\x20\x33\x30\x2e\x33\x38\x38\x38\x20\x33\x38\x20\x32\x31\x43\ +\x33\x38\x20\x31\x31\x2e\x36\x31\x31\x32\x20\x33\x30\x2e\x33\x38\ +\x38\x38\x20\x34\x20\x32\x31\x20\x34\x43\x31\x31\x2e\x36\x31\x31\ +\x32\x20\x34\x20\x34\x20\x31\x31\x2e\x36\x31\x31\x32\x20\x34\x20\ +\x32\x31\x43\x34\x20\x33\x30\x2e\x33\x38\x38\x38\x20\x31\x31\x2e\ +\x36\x31\x31\x32\x20\x33\x38\x20\x32\x31\x20\x33\x38\x5a\x22\x20\ +\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\ +\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\ +\x4d\x31\x35\x20\x32\x31\x4c\x32\x37\x20\x32\x31\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\ +\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\ +\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\ +\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x33\x33\x2e\x32\x32\ +\x31\x36\x20\x33\x33\x2e\x32\x32\x31\x37\x4c\x34\x31\x2e\x37\x30\ +\x36\x39\x20\x34\x31\x2e\x37\x30\x37\x22\x20\x73\x74\x72\x6f\x6b\ +\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\ +\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\ +\x73\x76\x67\x3e\ +\x00\x00\x03\x06\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x66\x69\x6c\x6c\x2d\x72\ +\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x20\x63\x6c\ +\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\ +\x22\x20\x64\x3d\x22\x4d\x32\x34\x20\x34\x34\x43\x33\x35\x2e\x30\ +\x34\x35\x37\x20\x34\x34\x20\x34\x34\x20\x33\x35\x2e\x30\x34\x35\ +\x37\x20\x34\x34\x20\x32\x34\x43\x34\x34\x20\x31\x32\x2e\x39\x35\ +\x34\x33\x20\x33\x35\x2e\x30\x34\x35\x37\x20\x34\x20\x32\x34\x20\ +\x34\x43\x31\x32\x2e\x39\x35\x34\x33\x20\x34\x20\x34\x20\x31\x32\ +\x2e\x39\x35\x34\x33\x20\x34\x20\x32\x34\x43\x34\x20\x33\x35\x2e\ +\x30\x34\x35\x37\x20\x31\x32\x2e\x39\x35\x34\x33\x20\x34\x34\x20\ +\x32\x34\x20\x34\x34\x5a\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\ +\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\ +\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ +\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\ +\x20\x64\x3d\x22\x4d\x32\x34\x20\x32\x33\x43\x32\x36\x2e\x37\x36\ +\x31\x34\x20\x32\x33\x20\x32\x39\x20\x32\x30\x2e\x37\x36\x31\x34\ +\x20\x32\x39\x20\x31\x38\x43\x32\x39\x20\x31\x35\x2e\x32\x33\x38\ +\x36\x20\x32\x36\x2e\x37\x36\x31\x34\x20\x31\x33\x20\x32\x34\x20\ +\x31\x33\x43\x32\x31\x2e\x32\x33\x38\x36\x20\x31\x33\x20\x31\x39\ +\x20\x31\x35\x2e\x32\x33\x38\x36\x20\x31\x39\x20\x31\x38\x43\x31\ +\x39\x20\x32\x30\x2e\x37\x36\x31\x34\x20\x32\x31\x2e\x32\x33\x38\ +\x36\x20\x32\x33\x20\x32\x34\x20\x32\x33\x5a\x22\x20\x66\x69\x6c\ +\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\ +\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\ +\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x30\ +\x2e\x30\x32\x32\x20\x33\x38\x2e\x33\x33\x32\x43\x31\x30\x2e\x33\ +\x36\x35\x37\x20\x33\x33\x2e\x31\x32\x30\x36\x20\x31\x34\x2e\x37\ +\x30\x31\x36\x20\x32\x39\x20\x32\x30\x20\x32\x39\x48\x32\x38\x43\ +\x33\x33\x2e\x32\x39\x31\x34\x20\x32\x39\x20\x33\x37\x2e\x36\x32\ +\x32\x39\x20\x33\x33\x2e\x31\x30\x39\x37\x20\x33\x37\x2e\x39\x37\ +\x36\x37\x20\x33\x38\x2e\x33\x31\x31\x33\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\ +\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\ +\x2f\x73\x76\x67\x3e\ +\x00\x00\x01\x10\ +\x00\ +\x00\x04\x42\x78\x9c\xc5\x93\x51\x6e\x83\x30\x0c\x86\xaf\x62\x79\ +\xcf\x25\x29\xa0\x0a\x4d\x84\x4a\x7d\xe8\x09\xb6\x03\x54\x34\x40\ +\x36\x9a\x74\x21\x23\x70\xfb\x39\x1b\x74\xe3\x71\x5a\xc5\xa4\x48\ +\xb1\xad\xe8\xfb\x13\xfb\x4f\xbe\x1f\x2e\x2d\xf4\xd2\x76\xca\x68\ +\x81\xdb\x88\x23\x48\x5d\x9a\xb3\xd2\xb5\xc0\xe7\xa7\xe3\x26\xc3\ +\x7d\x91\x77\x7d\x0d\x5e\x9d\x5d\x23\x30\x89\x11\x1a\xa9\xea\xc6\ +\x7d\xc5\xbd\x92\xfe\x60\x06\x81\x1c\x38\xa4\x19\x2d\x84\x4a\xb5\ +\xad\x40\x6d\xb4\x44\x20\xbe\xee\x04\x36\xce\x5d\x1f\x19\xf3\xde\ +\x47\x3e\x89\x8c\xad\x59\xcc\x39\x67\x04\xc6\x22\x6f\x95\x96\x30\ +\x6c\x49\x3f\x45\x18\x69\x27\xc6\x10\x13\x3f\xa4\xf1\x67\xda\x39\ +\x6b\x5e\xa5\xc0\x07\xce\x77\x69\x55\xcd\x85\xcd\x7c\xab\x5b\x21\ +\xb0\xca\xd3\x55\x60\xf7\xf6\x7e\xb2\x12\xd9\xfa\xf8\x94\x2f\xf9\ +\x21\xff\x8b\x80\x95\xa5\x03\xea\x70\xb2\x23\x1e\xe1\x70\x9e\x45\ +\xf6\x3d\x0a\x0a\x2d\x1d\x89\x97\xcd\xff\x95\xea\x8b\x51\x64\x81\ +\x8b\x72\xd2\xfe\x54\x4d\xff\x43\x74\x7a\x6a\xd8\xd6\x7f\xeb\x5a\ +\xaa\x37\xe3\x04\x83\x8c\x93\x81\x86\xc9\x30\xe3\x64\xa0\xbb\x38\ +\x33\x5b\xf2\xb3\xfb\xe0\xc3\xef\x2d\x3e\x00\x2f\xe9\x4b\x1d\ +\x00\x00\x03\x09\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x35\x20\ +\x31\x30\x4c\x38\x20\x31\x33\x4c\x31\x34\x20\x37\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\ +\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\ +\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\ +\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x35\x20\x32\x34\x4c\ +\x38\x20\x32\x37\x4c\x31\x34\x20\x32\x31\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\ +\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\ +\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x35\x20\x33\x38\x4c\x38\x20\ +\x34\x31\x4c\x31\x34\x20\x33\x35\x22\x20\x73\x74\x72\x6f\x6b\x65\ +\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\ +\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\ +\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\ +\x74\x68\x20\x64\x3d\x22\x4d\x32\x31\x20\x32\x34\x48\x34\x33\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\ +\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\ +\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ +\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\ +\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x32\x31\ +\x20\x33\x38\x48\x34\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\ +\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\ +\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ +\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\ +\x20\x64\x3d\x22\x4d\x32\x31\x20\x31\x30\x48\x34\x33\x22\x20\x73\ +\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\ +\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\ +\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\ +\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ +\x00\x00\x01\x7a\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x37\x20\ +\x34\x32\x48\x34\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\ +\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ +\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\ +\x64\x3d\x22\x4d\x31\x31\x20\x32\x36\x2e\x37\x31\x39\x39\x56\x33\ +\x34\x48\x31\x38\x2e\x33\x31\x37\x32\x4c\x33\x39\x20\x31\x33\x2e\ +\x33\x30\x38\x31\x4c\x33\x31\x2e\x36\x39\x35\x31\x20\x36\x4c\x31\ +\x31\x20\x32\x36\x2e\x37\x31\x39\x39\x5a\x22\x20\x66\x69\x6c\x6c\ +\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\ +\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\ +\x22\x2f\x3e\x3c\x2f\x73\x76\x67\x3e\ +\x00\x00\x03\x43\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x3c\x73\x76\x67\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x34\x38\ +\x20\x34\x38\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\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\x3c\x70\x61\x74\x68\x20\x66\x69\x6c\x6c\x2d\x72\ +\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x20\x63\x6c\ +\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\ +\x22\x20\x64\x3d\x22\x4d\x35\x20\x31\x30\x43\x35\x20\x38\x2e\x38\ +\x39\x35\x34\x33\x20\x35\x2e\x38\x39\x35\x34\x33\x20\x38\x20\x37\ +\x20\x38\x4c\x34\x31\x20\x38\x43\x34\x32\x2e\x31\x30\x34\x36\x20\ +\x38\x20\x34\x33\x20\x38\x2e\x38\x39\x35\x34\x33\x20\x34\x33\x20\ +\x31\x30\x56\x33\x38\x43\x34\x33\x20\x33\x39\x2e\x31\x30\x34\x36\ +\x20\x34\x32\x2e\x31\x30\x34\x36\x20\x34\x30\x20\x34\x31\x20\x34\ +\x30\x48\x37\x43\x35\x2e\x38\x39\x35\x34\x33\x20\x34\x30\x20\x35\ +\x20\x33\x39\x2e\x31\x30\x34\x36\x20\x35\x20\x33\x38\x56\x31\x30\ +\x5a\x22\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\ +\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ +\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x63\x61\x70\x3d\x22\x73\x71\x75\x61\x72\x65\x22\x20\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3d\x22\x6d\x69\ +\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\x74\x68\x20\x66\x69\x6c\x6c\ +\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\x64\x64\x22\x20\ +\x63\x6c\x69\x70\x2d\x72\x75\x6c\x65\x3d\x22\x65\x76\x65\x6e\x6f\ +\x64\x64\x22\x20\x64\x3d\x22\x4d\x31\x34\x2e\x35\x20\x31\x38\x43\ +\x31\x35\x2e\x33\x32\x38\x34\x20\x31\x38\x20\x31\x36\x20\x31\x37\ +\x2e\x33\x32\x38\x34\x20\x31\x36\x20\x31\x36\x2e\x35\x43\x31\x36\ +\x20\x31\x35\x2e\x36\x37\x31\x36\x20\x31\x35\x2e\x33\x32\x38\x34\ +\x20\x31\x35\x20\x31\x34\x2e\x35\x20\x31\x35\x43\x31\x33\x2e\x36\ +\x37\x31\x36\x20\x31\x35\x20\x31\x33\x20\x31\x35\x2e\x36\x37\x31\ +\x36\x20\x31\x33\x20\x31\x36\x2e\x35\x43\x31\x33\x20\x31\x37\x2e\ +\x33\x32\x38\x34\x20\x31\x33\x2e\x36\x37\x31\x36\x20\x31\x38\x20\ +\x31\x34\x2e\x35\x20\x31\x38\x5a\x22\x20\x73\x74\x72\x6f\x6b\x65\ +\x3d\x22\x23\x30\x30\x36\x34\x66\x66\x22\x20\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\x33\x22\x20\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3d\x22\x73\x71\x75\x61\ +\x72\x65\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\ +\x6f\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x70\x61\ +\x74\x68\x20\x64\x3d\x22\x4d\x31\x35\x20\x32\x34\x4c\x32\x30\x20\ +\x32\x38\x4c\x32\x36\x20\x32\x31\x4c\x34\x33\x20\x33\x34\x56\x33\ +\x38\x43\x34\x33\x20\x33\x39\x2e\x31\x30\x34\x36\x20\x34\x32\x2e\ +\x31\x30\x34\x36\x20\x34\x30\x20\x34\x31\x20\x34\x30\x48\x37\x43\ +\x35\x2e\x38\x39\x35\x34\x33\x20\x34\x30\x20\x35\x20\x33\x39\x2e\ +\x31\x30\x34\x36\x20\x35\x20\x33\x38\x56\x33\x34\x4c\x31\x35\x20\ +\x32\x34\x5a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\ +\x20\x73\x74\x72\x6f\x6b\x65\x3d\x22\x23\x30\x30\x36\x34\x66\x66\ +\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3d\x22\ +\x33\x22\x20\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ +\x69\x6e\x3d\x22\x6d\x69\x74\x65\x72\x22\x2f\x3e\x3c\x2f\x73\x76\ +\x67\x3e\ " qt_resource_name = b"\ @@ -1547,137 +1603,41 @@ qt_resource_name = b"\ \x00\x6f\xa6\x53\ \x00\x69\ \x00\x63\x00\x6f\x00\x6e\x00\x73\ -\x00\x12\ -\x01\xac\xf2\xe7\ -\x4e\x00\ -\x5b\xf9\x4e\x00\x00\x5f\x00\x6f\x00\x6e\x00\x65\x00\x2d\x00\x74\x00\x6f\x00\x2d\x00\x6f\x00\x6e\x00\x65\x00\x2e\x00\x73\x00\x76\ -\x00\x67\ -\x00\x10\ -\x05\x64\x2c\x67\ -\x51\x68\ -\x5b\xbd\x00\x5f\x00\x66\x00\x75\x00\x6c\x00\x6c\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x0e\ -\x09\x39\xda\xe7\ -\x65\x3e\ -\x59\x27\x00\x5f\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x00\x2d\x00\x69\x00\x6e\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x15\ -\x0b\x6d\xc7\x27\ -\x7f\x16\ -\x8f\x91\x65\x87\x4e\xf6\x00\x5f\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x2d\x00\x65\x00\x64\x00\x69\x00\x74\x00\x69\x00\x6e\x00\x67\ -\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x0c\ -\x0a\x9f\x02\x47\ -\x00\x69\ -\x00\x6e\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x0f\x37\x8d\x07\ \x5f\x00\ \x51\x73\x00\x5f\x00\x70\x00\x6f\x00\x77\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x0a\ -\x09\xe7\x20\x07\ -\x71\x67\ -\x72\x47\x00\x5f\x00\x70\x00\x69\x00\x63\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x10\ -\x00\xa1\xff\xa7\ -\x51\x73\ -\x95\xed\x00\x5f\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x2d\x00\x6f\x00\x6e\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x0b\ -\x0b\x19\xb3\x87\ -\x7f\x16\ -\x8f\x91\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x0b\ -\x03\xe5\x96\xa7\ -\x4f\xdd\ -\x5b\x58\x00\x5f\x00\x73\x00\x61\x00\x76\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x09\ -\x06\xe6\xa9\x87\ -\x62\x11\ -\x76\x84\x00\x5f\x00\x6d\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x0e\ -\x02\xb9\x42\x87\ -\x53\xbb\ -\x98\x76\x90\xe8\x00\x5f\x00\x74\x00\x6f\x00\x2d\x00\x74\x00\x6f\x00\x70\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x0d\ -\x01\xee\x64\x87\ -\x52\x20\ -\x96\x64\x00\x5f\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x11\ -\x05\xa5\x86\x27\ -\x52\x20\ -\x96\x64\x00\x5f\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x2d\x00\x74\x00\x77\x00\x6f\x00\x2e\x00\x73\x00\x76\x00\x67\ -\ -\x00\x0d\ -\x04\x8d\xa3\x67\ -\x95\x1a\ -\x70\xb9\x00\x5f\x00\x61\x00\x6e\x00\x63\x00\x68\x00\x6f\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x0b\ -\x05\x9c\x97\xc7\ -\x52\x17\ -\x88\x68\x00\x5f\x00\x6c\x00\x69\x00\x73\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x20\ -\x0d\x45\x1a\xe7\ -\x8f\x6c\ -\x63\x62\x65\x87\x4e\xf6\x59\x39\x00\x31\x00\x5f\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\x65\x00\x72\x00\x2d\x00\x63\x00\x6f\x00\x6e\ -\x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x2d\x00\x6f\x00\x6e\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x0c\ -\x05\xce\x27\xe7\ -\x00\x73\ -\x00\x65\x00\x6d\x00\x61\x00\x6e\x00\x74\x00\x69\x00\x63\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x10\ -\x0d\x82\xeb\x67\ -\x7f\xfb\ -\x8b\xd1\x00\x5f\x00\x74\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x6c\x00\x61\x00\x74\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x0f\ -\x0a\xf8\x43\x87\ -\x7f\x29\ -\x5c\x0f\x00\x5f\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x00\x2d\x00\x6f\x00\x75\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x16\ -\x04\xf6\x11\xe7\ -\x4f\x20\ -\x51\xfa\x00\x33\x00\x5f\x00\x65\x00\x66\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x74\x00\x68\x00\x72\x00\x65\ -\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x12\ -\x08\x89\x84\xe7\ -\x52\x17\ -\x88\x68\x00\x5f\x00\x6c\x00\x69\x00\x73\x00\x74\x00\x2d\x00\x6d\x00\x69\x00\x64\x00\x64\x00\x6c\x00\x65\x00\x2e\x00\x73\x00\x76\ -\x00\x67\ -\x00\x1d\ -\x05\xba\x83\xc7\ -\x8f\x6c\ -\x63\x62\x65\x87\x4e\xf6\x00\x31\x00\x5f\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x2d\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\ -\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x2d\x00\x6f\x00\x6e\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x11\ -\x04\x4f\x8c\xc7\ -\x53\xbb\ -\x5e\x95\x90\xe8\x00\x5f\x00\x74\x00\x6f\x00\x2d\x00\x62\x00\x6f\x00\x74\x00\x74\x00\x6f\x00\x6d\x00\x2e\x00\x73\x00\x76\x00\x67\ -\ -\x00\x0d\ -\x00\x58\x57\x5f\ -\x00\x4d\ -\x00\x5f\x00\x46\x00\x61\x00\x76\x00\x69\x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x69\x00\x63\x00\x6f\ -\x00\x10\ -\x0d\xe5\xef\x87\ -\x68\x21\ -\x9a\x8c\x00\x5f\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x2d\x00\x6f\x00\x6e\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x16\ -\x07\xf2\xb9\xe7\ -\x4f\x20\ -\x51\x65\x00\x33\x00\x5f\x00\x61\x00\x66\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x74\x00\x68\x00\x72\x00\x65\ -\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x13\ \x0b\x6d\xc3\x67\ \x95\x2e\ \x76\xd8\x00\x5f\x00\x6b\x00\x65\x00\x79\x00\x62\x00\x6f\x00\x61\x00\x72\x00\x64\x00\x2d\x00\x6f\x00\x6e\x00\x65\x00\x2e\x00\x73\ \x00\x76\x00\x67\ -\x00\x0c\ -\x06\x3a\xda\x87\ -\x4e\x0b\ -\x4e\x00\x6b\x65\x00\x5f\x00\x6e\x00\x65\x00\x78\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x15\ -\x0c\x16\xe9\x47\ -\x65\x87\ -\x4e\xf6\x59\x39\x00\x2d\x5f\x00\x00\x5f\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\x65\x00\x72\x00\x2d\x00\x6f\x00\x70\x00\x65\x00\x6e\ -\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x10\ +\x00\xa1\xff\xa7\ +\x51\x73\ +\x95\xed\x00\x5f\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x2d\x00\x6f\x00\x6e\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x10\ +\x0d\x82\xeb\x67\ +\x7f\xfb\ +\x8b\xd1\x00\x5f\x00\x74\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x6c\x00\x61\x00\x74\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0b\ +\x03\xe5\x96\xa7\ +\x4f\xdd\ +\x5b\x58\x00\x5f\x00\x73\x00\x61\x00\x76\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0d\ +\x01\xee\x64\x87\ +\x52\x20\ +\x96\x64\x00\x5f\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x12\ +\x01\xac\xf2\xe7\ +\x4e\x00\ +\x5b\xf9\x4e\x00\x00\x5f\x00\x6f\x00\x6e\x00\x65\x00\x2d\x00\x74\x00\x6f\x00\x2d\x00\x6f\x00\x6e\x00\x65\x00\x2e\x00\x73\x00\x76\ +\x00\x67\ +\x00\x11\ +\x05\xa5\x86\x27\ +\x52\x20\ +\x96\x64\x00\x5f\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x2d\x00\x74\x00\x77\x00\x6f\x00\x2e\x00\x73\x00\x76\x00\x67\ +\ \x00\x0c\ \x0d\x33\x25\x07\ \x4e\x0a\ @@ -1687,50 +1647,151 @@ qt_resource_name = b"\ \x8b\xbe\ \x7f\x6e\x00\x5f\x00\x73\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x2d\x00\x74\x00\x77\x00\x6f\x00\x2e\x00\x73\x00\x76\ \x00\x67\ +\x00\x0e\ +\x02\xb9\x42\x87\ +\x53\xbb\ +\x98\x76\x90\xe8\x00\x5f\x00\x74\x00\x6f\x00\x2d\x00\x74\x00\x6f\x00\x70\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0e\ +\x09\x39\xda\xe7\ +\x65\x3e\ +\x59\x27\x00\x5f\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x00\x2d\x00\x69\x00\x6e\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x10\ +\x05\x64\x2c\x67\ +\x51\x68\ +\x5b\xbd\x00\x5f\x00\x66\x00\x75\x00\x6c\x00\x6c\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0c\ +\x06\x3a\xda\x87\ +\x4e\x0b\ +\x4e\x00\x6b\x65\x00\x5f\x00\x6e\x00\x65\x00\x78\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x16\ +\x07\xf2\xb9\xe7\ +\x4f\x20\ +\x51\x65\x00\x33\x00\x5f\x00\x61\x00\x66\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x74\x00\x68\x00\x72\x00\x65\ +\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x11\ \x03\x40\xb4\x67\ \x4f\xdd\ \x5b\x58\x78\x6c\x76\xd8\x00\x5f\x00\x73\x00\x61\x00\x76\x00\x65\x00\x2d\x00\x6f\x00\x6e\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ \ +\x00\x0b\ +\x02\xa2\x70\xa7\ +\x77\x3c\ +\x77\x5b\x00\x5f\x00\x65\x00\x79\x00\x65\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x16\ +\x04\xf6\x11\xe7\ +\x4f\x20\ +\x51\xfa\x00\x33\x00\x5f\x00\x65\x00\x66\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x74\x00\x68\x00\x72\x00\x65\ +\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x10\ +\x0d\xe5\xef\x87\ +\x68\x21\ +\x9a\x8c\x00\x5f\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x2d\x00\x6f\x00\x6e\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x1d\ +\x05\xba\x83\xc7\ +\x8f\x6c\ +\x63\x62\x65\x87\x4e\xf6\x00\x31\x00\x5f\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x2d\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\ +\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x2d\x00\x6f\x00\x6e\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x20\ +\x0d\x45\x1a\xe7\ +\x8f\x6c\ +\x63\x62\x65\x87\x4e\xf6\x59\x39\x00\x31\x00\x5f\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\x65\x00\x72\x00\x2d\x00\x63\x00\x6f\x00\x6e\ +\x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x2d\x00\x6f\x00\x6e\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0c\ +\x0a\x9f\x02\x47\ +\x00\x69\ +\x00\x6e\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x11\ +\x04\x4f\x8c\xc7\ +\x53\xbb\ +\x5e\x95\x90\xe8\x00\x5f\x00\x74\x00\x6f\x00\x2d\x00\x62\x00\x6f\x00\x74\x00\x74\x00\x6f\x00\x6d\x00\x2e\x00\x73\x00\x76\x00\x67\ +\ +\x00\x12\ +\x08\x89\x84\xe7\ +\x52\x17\ +\x88\x68\x00\x5f\x00\x6c\x00\x69\x00\x73\x00\x74\x00\x2d\x00\x6d\x00\x69\x00\x64\x00\x64\x00\x6c\x00\x65\x00\x2e\x00\x73\x00\x76\ +\x00\x67\ +\x00\x0c\ +\x05\xce\x27\xe7\ +\x00\x73\ +\x00\x65\x00\x6d\x00\x61\x00\x6e\x00\x74\x00\x69\x00\x63\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x15\ +\x0c\x16\xe9\x47\ +\x65\x87\ +\x4e\xf6\x59\x39\x00\x2d\x5f\x00\x00\x5f\x00\x66\x00\x6f\x00\x6c\x00\x64\x00\x65\x00\x72\x00\x2d\x00\x6f\x00\x70\x00\x65\x00\x6e\ +\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x15\ +\x0b\x6d\xc7\x27\ +\x7f\x16\ +\x8f\x91\x65\x87\x4e\xf6\x00\x5f\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x2d\x00\x65\x00\x64\x00\x69\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0d\ +\x00\x58\x57\x5f\ +\x00\x4d\ +\x00\x5f\x00\x46\x00\x61\x00\x76\x00\x69\x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x69\x00\x63\x00\x6f\ +\x00\x0f\ +\x0a\xf8\x43\x87\ +\x7f\x29\ +\x5c\x0f\x00\x5f\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x00\x2d\x00\x6f\x00\x75\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x09\ +\x06\xe6\xa9\x87\ +\x62\x11\ +\x76\x84\x00\x5f\x00\x6d\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0d\ +\x04\x8d\xa3\x67\ +\x95\x1a\ +\x70\xb9\x00\x5f\x00\x61\x00\x6e\x00\x63\x00\x68\x00\x6f\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0b\ +\x05\x9c\x97\xc7\ +\x52\x17\ +\x88\x68\x00\x5f\x00\x6c\x00\x69\x00\x73\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0b\ +\x0b\x19\xb3\x87\ +\x7f\x16\ +\x8f\x91\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0a\ +\x09\xe7\x20\x07\ +\x71\x67\ +\x72\x47\x00\x5f\x00\x70\x00\x69\x00\x63\x00\x2e\x00\x73\x00\x76\x00\x67\ " qt_resource_struct_v1 = b"\ \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\x0e\x00\x02\x00\x00\x00\x21\x00\x00\x00\x03\ -\x00\x00\x03\xa4\x00\x01\x00\x00\x00\x01\x00\x00\x3e\x56\ -\x00\x00\x01\x16\x00\x00\x00\x00\x00\x01\x00\x00\x12\x2c\ +\x00\x00\x00\x0e\x00\x02\x00\x00\x00\x22\x00\x00\x00\x03\ +\x00\x00\x04\x54\x00\x01\x00\x00\x00\x01\x00\x00\x49\xd9\ +\x00\x00\x00\x68\x00\x00\x00\x00\x00\x01\x00\x00\x06\x77\ +\x00\x00\x00\xf0\x00\x00\x00\x00\x00\x01\x00\x00\x12\x97\ +\x00\x00\x00\xd0\x00\x00\x00\x00\x00\x01\x00\x00\x0f\xfe\ +\x00\x00\x01\x60\x00\x00\x00\x00\x00\x01\x00\x00\x19\x2a\ +\x00\x00\x02\x6c\x00\x00\x00\x00\x00\x01\x00\x00\x2b\x1c\ +\x00\x00\x01\x8a\x00\x00\x00\x00\x00\x01\x00\x00\x1e\xd1\ +\x00\x00\x02\x44\x00\x00\x00\x00\x00\x01\x00\x00\x28\xa7\ +\x00\x00\x00\xb4\x00\x00\x00\x00\x00\x01\x00\x00\x0c\x30\ +\x00\x00\x03\x84\x00\x00\x00\x00\x00\x01\x00\x00\x3c\xc2\ +\x00\x00\x04\xb0\x00\x01\x00\x00\x00\x01\x00\x00\x55\x48\ +\x00\x00\x02\x88\x00\x00\x00\x00\x00\x01\x00\x00\x2e\x7b\ +\x00\x00\x01\xce\x00\x00\x00\x00\x00\x01\x00\x00\x23\x59\ +\x00\x00\x04\xd0\x00\x00\x00\x00\x00\x01\x00\x00\x56\x5c\ +\x00\x00\x01\x1a\x00\x00\x00\x00\x00\x01\x00\x00\x15\x5a\ +\x00\x00\x02\xe0\x00\x00\x00\x00\x00\x01\x00\x00\x33\x2c\ +\x00\x00\x03\xd6\x00\x00\x00\x00\x00\x01\x00\x00\x42\x8a\ +\x00\x00\x01\xf4\x00\x00\x00\x00\x00\x01\x00\x00\x24\x90\ +\x00\x00\x04\x98\x00\x00\x00\x00\x00\x01\x00\x00\x52\x3e\ +\x00\x00\x02\x12\x00\x00\x00\x00\x00\x01\x00\x00\x26\x77\ +\x00\x00\x03\xac\x00\x00\x00\x00\x00\x01\x00\x00\x3e\x98\ +\x00\x00\x01\xac\x00\x00\x00\x00\x00\x01\x00\x00\x20\xac\ +\x00\x00\x05\x08\x00\x00\x00\x00\x00\x01\x00\x00\x5a\xe7\ +\x00\x00\x03\x66\x00\x00\x00\x00\x00\x01\x00\x00\x39\x67\ +\x00\x00\x04\x74\x00\x00\x00\x00\x00\x01\x00\x00\x50\x05\ +\x00\x00\x04\xec\x00\x00\x00\x00\x00\x01\x00\x00\x59\x69\ +\x00\x00\x00\x3c\x00\x00\x00\x00\x00\x01\x00\x00\x02\x91\ +\x00\x00\x04\x24\x00\x00\x00\x00\x00\x01\x00\x00\x47\x87\ +\x00\x00\x03\xf4\x00\x00\x00\x00\x00\x01\x00\x00\x45\xbd\ +\x00\x00\x01\x42\x00\x00\x00\x00\x00\x01\x00\x00\x17\x42\ +\x00\x00\x03\x20\x00\x00\x00\x00\x00\x01\x00\x00\x36\x6e\ +\x00\x00\x00\x8e\x00\x00\x00\x00\x00\x01\x00\x00\x08\xc3\ +\x00\x00\x02\xba\x00\x00\x00\x00\x00\x01\x00\x00\x30\xaa\ \x00\x00\x00\x1e\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x01\xae\x00\x00\x00\x00\x00\x01\x00\x00\x1e\xa9\ -\x00\x00\x04\xb4\x00\x00\x00\x00\x00\x01\x00\x00\x52\xb3\ -\x00\x00\x01\x8c\x00\x00\x00\x00\x00\x01\x00\x00\x1c\xce\ -\x00\x00\x04\xde\x00\x00\x00\x00\x00\x01\x00\x00\x58\x5a\ -\x00\x00\x01\x58\x00\x00\x00\x00\x00\x01\x00\x00\x15\xf6\ -\x00\x00\x03\x7c\x00\x00\x00\x00\x00\x01\x00\x00\x3c\x80\ -\x00\x00\x01\xf6\x00\x01\x00\x00\x00\x01\x00\x00\x23\x2a\ -\x00\x00\x02\xe0\x00\x00\x00\x00\x00\x01\x00\x00\x33\x1d\ -\x00\x00\x00\x48\x00\x00\x00\x00\x00\x01\x00\x00\x02\xc3\ -\x00\x00\x02\x16\x00\x00\x00\x00\x00\x01\x00\x00\x24\x3e\ -\x00\x00\x01\xce\x00\x00\x00\x00\x00\x01\x00\x00\x21\x42\ -\x00\x00\x03\x3c\x00\x00\x00\x00\x00\x01\x00\x00\x39\x3e\ -\x00\x00\x02\x78\x00\x00\x00\x00\x00\x01\x00\x00\x2a\x44\ -\x00\x00\x04\x48\x00\x00\x00\x00\x00\x01\x00\x00\x4d\x1a\ -\x00\x00\x01\x74\x00\x00\x00\x00\x00\x01\x00\x00\x19\xc4\ -\x00\x00\x03\xea\x00\x00\x00\x00\x00\x01\x00\x00\x47\x04\ -\x00\x00\x03\x12\x00\x00\x00\x00\x00\x01\x00\x00\x35\x4c\ -\x00\x00\x00\x6e\x00\x00\x00\x00\x00\x01\x00\x00\x03\xfa\ -\x00\x00\x00\xfc\x00\x00\x00\x00\x00\x01\x00\x00\x0e\xe5\ -\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x01\x00\x00\x08\xf9\ -\x00\x00\x02\xbc\x00\x00\x00\x00\x00\x01\x00\x00\x30\xe4\ -\x00\x00\x01\x3c\x00\x00\x00\x00\x00\x01\x00\x00\x14\x78\ -\x00\x00\x04\x1c\x00\x00\x00\x00\x00\x01\x00\x00\x49\x34\ -\x00\x00\x00\x90\x00\x00\x00\x00\x00\x01\x00\x00\x06\xa7\ -\x00\x00\x04\x66\x00\x00\x00\x00\x00\x01\x00\x00\x4f\x01\ -\x00\x00\x04\x96\x00\x00\x00\x00\x00\x01\x00\x00\x50\xcb\ -\x00\x00\x02\x32\x00\x00\x00\x00\x00\x01\x00\x00\x27\x4b\ -\x00\x00\x02\x96\x00\x00\x00\x00\x00\x01\x00\x00\x2d\x77\ -\x00\x00\x03\xc4\x00\x00\x00\x00\x00\x01\x00\x00\x44\x82\ -\x00\x00\x00\xde\x00\x00\x00\x00\x00\x01\x00\x00\x0c\x54\ " qt_resource_struct_v2 = b"\ @@ -1738,74 +1799,76 @@ qt_resource_struct_v2 = b"\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\ \x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x0e\x00\x02\x00\x00\x00\x21\x00\x00\x00\x03\ +\x00\x00\x00\x0e\x00\x02\x00\x00\x00\x22\x00\x00\x00\x03\ \x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x03\xa4\x00\x01\x00\x00\x00\x01\x00\x00\x3e\x56\ -\x00\x00\x01\x87\x97\x2b\x5f\xbb\ -\x00\x00\x01\x16\x00\x00\x00\x00\x00\x01\x00\x00\x12\x2c\ +\x00\x00\x04\x54\x00\x01\x00\x00\x00\x01\x00\x00\x49\xd9\ +\x00\x00\x01\x87\x97\x2b\x5c\x30\ +\x00\x00\x00\x68\x00\x00\x00\x00\x00\x01\x00\x00\x06\x77\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x00\xf0\x00\x00\x00\x00\x00\x01\x00\x00\x12\x97\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x00\xd0\x00\x00\x00\x00\x00\x01\x00\x00\x0f\xfe\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x01\x60\x00\x00\x00\x00\x00\x01\x00\x00\x19\x2a\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x02\x6c\x00\x00\x00\x00\x00\x01\x00\x00\x2b\x1c\ +\x00\x00\x01\x87\xb3\x6d\x66\x1a\ +\x00\x00\x01\x8a\x00\x00\x00\x00\x00\x01\x00\x00\x1e\xd1\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x02\x44\x00\x00\x00\x00\x00\x01\x00\x00\x28\xa7\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x00\xb4\x00\x00\x00\x00\x00\x01\x00\x00\x0c\x30\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x03\x84\x00\x00\x00\x00\x00\x01\x00\x00\x3c\xc2\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x04\xb0\x00\x01\x00\x00\x00\x01\x00\x00\x55\x48\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x02\x88\x00\x00\x00\x00\x00\x01\x00\x00\x2e\x7b\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x01\xce\x00\x00\x00\x00\x00\x01\x00\x00\x23\x59\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x04\xd0\x00\x00\x00\x00\x00\x01\x00\x00\x56\x5c\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x01\x1a\x00\x00\x00\x00\x00\x01\x00\x00\x15\x5a\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x02\xe0\x00\x00\x00\x00\x00\x01\x00\x00\x33\x2c\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x03\xd6\x00\x00\x00\x00\x00\x01\x00\x00\x42\x8a\ +\x00\x00\x01\x84\x0d\x26\xf2\x18\ +\x00\x00\x01\xf4\x00\x00\x00\x00\x00\x01\x00\x00\x24\x90\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x04\x98\x00\x00\x00\x00\x00\x01\x00\x00\x52\x3e\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x02\x12\x00\x00\x00\x00\x00\x01\x00\x00\x26\x77\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x03\xac\x00\x00\x00\x00\x00\x01\x00\x00\x3e\x98\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x01\xac\x00\x00\x00\x00\x00\x01\x00\x00\x20\xac\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x05\x08\x00\x00\x00\x00\x00\x01\x00\x00\x5a\xe7\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x03\x66\x00\x00\x00\x00\x00\x01\x00\x00\x39\x67\ +\x00\x00\x01\x87\x97\x87\x30\x00\ +\x00\x00\x04\x74\x00\x00\x00\x00\x00\x01\x00\x00\x50\x05\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x04\xec\x00\x00\x00\x00\x00\x01\x00\x00\x59\x69\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x00\x3c\x00\x00\x00\x00\x00\x01\x00\x00\x02\x91\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x04\x24\x00\x00\x00\x00\x00\x01\x00\x00\x47\x87\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x03\xf4\x00\x00\x00\x00\x00\x01\x00\x00\x45\xbd\ +\x00\x00\x01\x87\x97\xe8\xe7\xa0\ +\x00\x00\x01\x42\x00\x00\x00\x00\x00\x01\x00\x00\x17\x42\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x03\x20\x00\x00\x00\x00\x00\x01\x00\x00\x36\x6e\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x00\x8e\x00\x00\x00\x00\x00\x01\x00\x00\x08\xc3\ +\x00\x00\x01\x87\x95\xe0\x3e\x90\ +\x00\x00\x02\xba\x00\x00\x00\x00\x00\x01\x00\x00\x30\xaa\ \x00\x00\x01\x87\x95\xe0\x3e\x90\ \x00\x00\x00\x1e\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x01\xae\x00\x00\x00\x00\x00\x01\x00\x00\x1e\xa9\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x04\xb4\x00\x00\x00\x00\x00\x01\x00\x00\x52\xb3\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x01\x8c\x00\x00\x00\x00\x00\x01\x00\x00\x1c\xce\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x04\xde\x00\x00\x00\x00\x00\x01\x00\x00\x58\x5a\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x01\x58\x00\x00\x00\x00\x00\x01\x00\x00\x15\xf6\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x03\x7c\x00\x00\x00\x00\x00\x01\x00\x00\x3c\x80\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x01\xf6\x00\x01\x00\x00\x00\x01\x00\x00\x23\x2a\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x02\xe0\x00\x00\x00\x00\x00\x01\x00\x00\x33\x1d\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x00\x48\x00\x00\x00\x00\x00\x01\x00\x00\x02\xc3\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x02\x16\x00\x00\x00\x00\x00\x01\x00\x00\x24\x3e\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x01\xce\x00\x00\x00\x00\x00\x01\x00\x00\x21\x42\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x03\x3c\x00\x00\x00\x00\x00\x01\x00\x00\x39\x3e\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x02\x78\x00\x00\x00\x00\x00\x01\x00\x00\x2a\x44\ -\x00\x00\x01\x84\x0d\x26\xf2\x18\ -\x00\x00\x04\x48\x00\x00\x00\x00\x00\x01\x00\x00\x4d\x1a\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x01\x74\x00\x00\x00\x00\x00\x01\x00\x00\x19\xc4\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x03\xea\x00\x00\x00\x00\x00\x01\x00\x00\x47\x04\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x03\x12\x00\x00\x00\x00\x00\x01\x00\x00\x35\x4c\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x00\x6e\x00\x00\x00\x00\x00\x01\x00\x00\x03\xfa\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x00\xfc\x00\x00\x00\x00\x00\x01\x00\x00\x0e\xe5\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x01\x00\x00\x08\xf9\ -\x00\x00\x01\x87\x97\x87\x31\xdf\ -\x00\x00\x02\xbc\x00\x00\x00\x00\x00\x01\x00\x00\x30\xe4\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x01\x3c\x00\x00\x00\x00\x00\x01\x00\x00\x14\x78\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x04\x1c\x00\x00\x00\x00\x00\x01\x00\x00\x49\x34\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x00\x90\x00\x00\x00\x00\x00\x01\x00\x00\x06\xa7\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x04\x66\x00\x00\x00\x00\x00\x01\x00\x00\x4f\x01\ -\x00\x00\x01\x87\x97\xe8\xe9\x66\ -\x00\x00\x04\x96\x00\x00\x00\x00\x00\x01\x00\x00\x50\xcb\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x02\x32\x00\x00\x00\x00\x00\x01\x00\x00\x27\x4b\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x02\x96\x00\x00\x00\x00\x00\x01\x00\x00\x2d\x77\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x03\xc4\x00\x00\x00\x00\x00\x01\x00\x00\x44\x82\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ -\x00\x00\x00\xde\x00\x00\x00\x00\x00\x01\x00\x00\x0c\x54\ -\x00\x00\x01\x87\x95\xe0\x3e\x90\ " qt_version = [int(v) for v in QtCore.qVersion().split('.')] diff --git a/isat.yaml b/isat.yaml index 9376fac..f5f0b9a 100644 --- a/isat.yaml +++ b/isat.yaml @@ -19,4 +19,4 @@ label: name: cake - color: '#5c3566' name: fence -language: zh +language: en diff --git a/segment_any/gpu_resource.py b/segment_any/gpu_resource.py new file mode 100644 index 0000000..1dfa950 --- /dev/null +++ b/segment_any/gpu_resource.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +# @Author : LG + +from PyQt5.QtCore import QThread, pyqtSignal +import os + + +class GPUResource_Thread(QThread): + message = pyqtSignal(str) + + def __init__(self): + super(GPUResource_Thread, self).__init__() + self.gpu_id = None + self.callback = None + + self.keep = True + try: + r = os.popen('nvidia-smi -q -d MEMORY -i 0 | grep Total').readline() + self.total = r.split(':')[-1].strip().split(' ')[0] + except Exception as e: + print(e) + self.total = 'none' + + def run(self): + while True: + r = os.popen('nvidia-smi -q -d MEMORY -i 0 | grep Used').readline() + used = r.split(':')[-1].strip().split(' ')[0] + self.message.emit("cuda: {}/{}MiB".format(used, self.total)) + + def __del__(self): + self.message.emit("Ground filter thread | Wait for thread to exit.") + self.wait() + self.message.emit("Ground filter thread | Thread exited.") + + def set_callback(self, callback): + self.callback = callback \ No newline at end of file diff --git a/segment_any/segment_any.py b/segment_any/segment_any.py index 0a04e5f..adb4218 100644 --- a/segment_any/segment_any.py +++ b/segment_any/segment_any.py @@ -17,18 +17,20 @@ class SegAny: else: raise ValueError('The checkpoint named {} is not supported.'.format(checkpoint)) - device = 'cuda' if torch.cuda.is_available() else 'cpu' + self.device = 'cuda' if torch.cuda.is_available() else 'cpu' sam = sam_model_registry[model_type](checkpoint=checkpoint) - sam.to(device=device) + sam.to(device=self.device) self.predictor = SamPredictor(sam) self.image = None def set_image(self, image): + self.predictor.set_image(image) def reset_image(self): self.predictor.reset_image() self.image = None + torch.cuda.empty_cache() def predict(self, input_point, input_label): input_point = np.array(input_point) @@ -46,5 +48,5 @@ class SegAny: mask_input=mask_input[None, :, :], multimask_output=False, ) - print('masks: {}'.format(masks)) + torch.cuda.empty_cache() return masks diff --git a/ui/MainWindow.py b/ui/MainWindow.py index 89c9517..ae5dc2e 100644 --- a/ui/MainWindow.py +++ b/ui/MainWindow.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Form implementation generated from reading ui file '/home/super/PycharmProjects/ISAT_with_segment_anything/ui/MainWindow.ui' +# Form implementation generated from reading ui file 'MainWindow.ui' # # Created by: PyQt5 UI code generator 5.15.7 # @@ -32,7 +32,7 @@ class Ui_MainWindow(object): MainWindow.setCentralWidget(self.centralwidget) self.menubar = QtWidgets.QMenuBar(MainWindow) self.menubar.setEnabled(True) - self.menubar.setGeometry(QtCore.QRect(0, 0, 1280, 24)) + self.menubar.setGeometry(QtCore.QRect(0, 0, 1280, 25)) font = QtGui.QFont() font.setFamily("Times New Roman") font.setPointSize(12) @@ -93,7 +93,7 @@ class Ui_MainWindow(object): self.toolBar.setObjectName("toolBar") MainWindow.addToolBar(QtCore.Qt.TopToolBarArea, self.toolBar) self.info_dock = QtWidgets.QDockWidget(MainWindow) - self.info_dock.setMinimumSize(QtCore.QSize(80, 38)) + self.info_dock.setMinimumSize(QtCore.QSize(85, 43)) self.info_dock.setFeatures(QtWidgets.QDockWidget.AllDockWidgetFeatures) self.info_dock.setObjectName("info_dock") self.dockWidgetContents_2 = QtWidgets.QWidget() @@ -101,7 +101,7 @@ class Ui_MainWindow(object): self.info_dock.setWidget(self.dockWidgetContents_2) MainWindow.addDockWidget(QtCore.Qt.DockWidgetArea(2), self.info_dock) self.labels_dock = QtWidgets.QDockWidget(MainWindow) - self.labels_dock.setMinimumSize(QtCore.QSize(80, 38)) + self.labels_dock.setMinimumSize(QtCore.QSize(85, 43)) self.labels_dock.setFeatures(QtWidgets.QDockWidget.AllDockWidgetFeatures) self.labels_dock.setObjectName("labels_dock") self.dockWidgetContents_3 = QtWidgets.QWidget() @@ -250,6 +250,11 @@ class Ui_MainWindow(object): icon23.addPixmap(QtGui.QPixmap(":/icon/icons/锚点_anchor.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.actionPolygon.setIcon(icon23) self.actionPolygon.setObjectName("actionPolygon") + self.actionVisible = QtWidgets.QAction(MainWindow) + icon24 = QtGui.QIcon() + icon24.addPixmap(QtGui.QPixmap(":/icon/icons/眼睛_eyes.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.actionVisible.setIcon(icon24) + self.actionVisible.setObjectName("actionVisible") self.menuFile.addAction(self.actionOpen_dir) self.menuFile.addAction(self.actionSave_dir) self.menuFile.addSeparator() @@ -308,6 +313,7 @@ class Ui_MainWindow(object): self.toolBar.addAction(self.actionZoom_out) self.toolBar.addAction(self.actionFit_wiondow) self.toolBar.addAction(self.actionBit_map) + self.toolBar.addAction(self.actionVisible) self.retranslateUi(MainWindow) QtCore.QMetaObject.connectSlotsByName(MainWindow) @@ -397,4 +403,7 @@ class Ui_MainWindow(object): self.actionPolygon.setToolTip(_translate("MainWindow", "Draw polygon")) self.actionPolygon.setStatusTip(_translate("MainWindow", "Accurately annotate by drawing polygon. ")) self.actionPolygon.setShortcut(_translate("MainWindow", "C")) + self.actionVisible.setText(_translate("MainWindow", "Visible")) + self.actionVisible.setStatusTip(_translate("MainWindow", "Visible")) + self.actionVisible.setShortcut(_translate("MainWindow", "V")) import icons_rc diff --git a/ui/MainWindow.ui b/ui/MainWindow.ui index 9b350da..c5bffe4 100644 --- a/ui/MainWindow.ui +++ b/ui/MainWindow.ui @@ -57,7 +57,7 @@ 0 0 1280 - 24 + 25 @@ -234,12 +234,13 @@ + - 80 - 38 + 85 + 43 @@ -256,8 +257,8 @@ - 80 - 38 + 85 + 43 @@ -683,6 +684,21 @@ C + + + + :/icon/icons/眼睛_eyes.svg:/icon/icons/眼睛_eyes.svg + + + Visible + + + Visible + + + V + + diff --git a/ui/en.ts b/ui/en.ts index ec94158..7030c08 100644 --- a/ui/en.ts +++ b/ui/en.ts @@ -94,72 +94,72 @@ - + help - + E - + Del - + S - + Save annotation - + T - + Delete polygon - + B - + Next image - + D - + A - + Bit map - + Space - + F @@ -225,75 +225,90 @@ http://www.yatenglg.cn/isat - + Shortcut - + Prior image - + To top - + To bottom - + Zoom fit - + Draw polygon - + Segment anything - + Q - + Backspace - + Z - + Annotate finish - + Annotate cancel - + Esc + + + C + + + + + Polygons Visible + + + + + V + + Form - + Form @@ -337,388 +352,403 @@ http://www.yatenglg.cn/isat Jump to the image. + + + Visible + + MainWindow - + ISAT - + File - + View - + Help - + Tools - + Edit - + toolBar - + Info - + Labels - + Files - + Zoom in - + Zoom out - + Fit window - + F - + Setting - + Exit - + Save - + S - + Prev image - + A - + Next image - + D - + About - + C - + Delete - + Delete polygon - + Del - + Bit map - + Space - + Edit polygon - + E - + To top - + Move polygon to top layer - + T - + To bottom - + Move polygon to bottom layer - + B - + Label converter - + Convert annotations to png image. - + Laguage - + Images dir - + Open images dir. - + Zoom in. - + Zoom out. - + Fit window. - + Setting. - + Exit. - + Label dir - + Open label dir. - + Save annotation. - + Prev image. - + Next image. - + Shortcut - + Segment anything - + Quick annotate using Segment anything. - + Q - + Delete polygon. - + Show instance or segmeent state. - + Edit polygon attribute. - + Move polygon to top layer. - + Move polygon to bottom layer. - + 中文 - + English - + Backspace - + Backspace. - + Z - + Cancel - + Annotate canceled - + Annotate canceled. - + Esc - + Finish - + Annotate finished - + Annotate finished. - + Polygon - + Draw polygon - + Accurately annotate by drawing polygon. + + + Visible + + + + + V + + diff --git a/ui/label_dock.py b/ui/label_dock.py index 2f829de..bf08096 100644 --- a/ui/label_dock.py +++ b/ui/label_dock.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Form implementation generated from reading ui file '/home/super/PycharmProjects/ISAT/ui/label_dock.ui' +# Form implementation generated from reading ui file '/home/super/PycharmProjects/ISAT_with_segment_anything/ui/label_dock.ui' # # Created by: PyQt5 UI code generator 5.15.7 # @@ -14,11 +14,20 @@ from PyQt5 import QtCore, QtGui, QtWidgets class Ui_Form(object): def setupUi(self, Form): Form.setObjectName("Form") - Form.resize(250, 304) + Form.resize(250, 302) self.verticalLayout = QtWidgets.QVBoxLayout(Form) self.verticalLayout.setContentsMargins(2, 2, 2, 2) self.verticalLayout.setSpacing(0) self.verticalLayout.setObjectName("verticalLayout") + self.widget = QtWidgets.QWidget(Form) + self.widget.setObjectName("widget") + self.horizontalLayout = QtWidgets.QHBoxLayout(self.widget) + self.horizontalLayout.setContentsMargins(-1, -1, -1, 0) + self.horizontalLayout.setObjectName("horizontalLayout") + self.checkBox_visible = QtWidgets.QCheckBox(self.widget) + self.checkBox_visible.setObjectName("checkBox_visible") + self.horizontalLayout.addWidget(self.checkBox_visible) + self.verticalLayout.addWidget(self.widget) self.listWidget = QtWidgets.QListWidget(Form) self.listWidget.setObjectName("listWidget") self.verticalLayout.addWidget(self.listWidget) @@ -29,3 +38,4 @@ class Ui_Form(object): def retranslateUi(self, Form): _translate = QtCore.QCoreApplication.translate Form.setWindowTitle(_translate("Form", "Form")) + self.checkBox_visible.setText(_translate("Form", "Visible")) diff --git a/ui/label_dock.ui b/ui/label_dock.ui index 3aaf6d4..140b909 100644 --- a/ui/label_dock.ui +++ b/ui/label_dock.ui @@ -7,7 +7,7 @@ 0 0 250 - 304 + 302 @@ -29,6 +29,22 @@ 2 + + + + + 0 + + + + + Visible + + + + + + diff --git a/ui/shortcut_dialog.py b/ui/shortcut_dialog.py index f6b95cc..fe56a62 100644 --- a/ui/shortcut_dialog.py +++ b/ui/shortcut_dialog.py @@ -56,6 +56,7 @@ class Ui_Dialog(object): self.label_20 = QtWidgets.QLabel(self.widget_2) self.label_20.setMaximumSize(QtCore.QSize(80, 16777215)) font = QtGui.QFont() + font.setFamily("Times New Roman") font.setPointSize(12) self.label_20.setFont(font) self.label_20.setStyleSheet("color: rgb(133, 0, 0);") @@ -64,6 +65,7 @@ class Ui_Dialog(object): self.label_19 = QtWidgets.QLabel(self.widget_2) self.label_19.setMaximumSize(QtCore.QSize(80, 16777215)) font = QtGui.QFont() + font.setFamily("Times New Roman") font.setPointSize(12) self.label_19.setFont(font) self.label_19.setStyleSheet("color: rgb(133, 0, 0);") @@ -72,6 +74,7 @@ class Ui_Dialog(object): self.label_17 = QtWidgets.QLabel(self.widget_2) self.label_17.setMaximumSize(QtCore.QSize(80, 16777215)) font = QtGui.QFont() + font.setFamily("Times New Roman") font.setPointSize(12) self.label_17.setFont(font) self.label_17.setStyleSheet("color: rgb(133, 0, 0);") @@ -80,6 +83,7 @@ class Ui_Dialog(object): self.label_15 = QtWidgets.QLabel(self.widget_2) self.label_15.setMaximumSize(QtCore.QSize(80, 16777215)) font = QtGui.QFont() + font.setFamily("Times New Roman") font.setPointSize(12) self.label_15.setFont(font) self.label_15.setStyleSheet("color: rgb(133, 0, 0);") @@ -88,6 +92,7 @@ class Ui_Dialog(object): self.label_7 = QtWidgets.QLabel(self.widget_2) self.label_7.setMaximumSize(QtCore.QSize(80, 16777215)) font = QtGui.QFont() + font.setFamily("Times New Roman") font.setPointSize(12) self.label_7.setFont(font) self.label_7.setStyleSheet("color: rgb(133, 0, 0);") @@ -108,6 +113,7 @@ class Ui_Dialog(object): self.label_18 = QtWidgets.QLabel(self.widget_2) self.label_18.setMaximumSize(QtCore.QSize(80, 16777215)) font = QtGui.QFont() + font.setFamily("Times New Roman") font.setPointSize(12) self.label_18.setFont(font) self.label_18.setStyleSheet("color: rgb(133, 0, 0);") @@ -128,6 +134,7 @@ class Ui_Dialog(object): self.label_16 = QtWidgets.QLabel(self.widget_2) self.label_16.setMaximumSize(QtCore.QSize(80, 16777215)) font = QtGui.QFont() + font.setFamily("Times New Roman") font.setPointSize(12) self.label_16.setFont(font) self.label_16.setStyleSheet("color: rgb(133, 0, 0);") @@ -142,6 +149,7 @@ class Ui_Dialog(object): self.label_21 = QtWidgets.QLabel(self.widget_2) self.label_21.setMaximumSize(QtCore.QSize(80, 16777215)) font = QtGui.QFont() + font.setFamily("Times New Roman") font.setPointSize(12) self.label_21.setFont(font) self.label_21.setStyleSheet("color: rgb(133, 0, 0);") @@ -168,6 +176,7 @@ class Ui_Dialog(object): self.label_13 = QtWidgets.QLabel(self.widget_2) self.label_13.setMaximumSize(QtCore.QSize(80, 16777215)) font = QtGui.QFont() + font.setFamily("Times New Roman") font.setPointSize(12) self.label_13.setFont(font) self.label_13.setStyleSheet("color: rgb(133, 0, 0);") @@ -176,6 +185,7 @@ class Ui_Dialog(object): self.label_12 = QtWidgets.QLabel(self.widget_2) self.label_12.setMaximumSize(QtCore.QSize(80, 16777215)) font = QtGui.QFont() + font.setFamily("Times New Roman") font.setPointSize(12) self.label_12.setFont(font) self.label_12.setStyleSheet("color: rgb(133, 0, 0);") @@ -195,6 +205,7 @@ class Ui_Dialog(object): self.gridLayout.addWidget(self.label_22, 2, 0, 1, 1) self.label_23 = QtWidgets.QLabel(self.widget_2) font = QtGui.QFont() + font.setFamily("Times New Roman") font.setPointSize(12) self.label_23.setFont(font) self.label_23.setStyleSheet("color: rgb(133, 0, 0);") @@ -202,6 +213,7 @@ class Ui_Dialog(object): self.gridLayout.addWidget(self.label_23, 2, 1, 1, 1) self.label_25 = QtWidgets.QLabel(self.widget_2) font = QtGui.QFont() + font.setFamily("Times New Roman") font.setPointSize(12) self.label_25.setFont(font) self.label_25.setStyleSheet("color: rgb(133, 0, 0);") @@ -221,6 +233,7 @@ class Ui_Dialog(object): self.gridLayout.addWidget(self.label_26, 3, 0, 1, 1) self.label_27 = QtWidgets.QLabel(self.widget_2) font = QtGui.QFont() + font.setFamily("Times New Roman") font.setPointSize(12) self.label_27.setFont(font) self.label_27.setStyleSheet("color: rgb(133, 0, 0);") @@ -232,6 +245,13 @@ class Ui_Dialog(object): self.label_8.setFont(font) self.label_8.setObjectName("label_8") self.gridLayout.addWidget(self.label_8, 5, 0, 1, 1) + self.label_28 = QtWidgets.QLabel(self.widget_2) + self.label_28.setObjectName("label_28") + self.gridLayout.addWidget(self.label_28, 3, 2, 1, 1) + self.label_29 = QtWidgets.QLabel(self.widget_2) + self.label_29.setStyleSheet("color: rgb(133, 0, 0);") + self.label_29.setObjectName("label_29") + self.gridLayout.addWidget(self.label_29, 3, 3, 1, 1) self.verticalLayout.addWidget(self.widget_2) self.retranslateUi(Dialog) @@ -248,7 +268,7 @@ class Ui_Dialog(object): self.label_7.setText(_translate("Dialog", "A")) self.label_2.setText(_translate("Dialog", "Prior image")) self.label_10.setText(_translate("Dialog", "Save annotation")) - self.label_18.setText(_translate("Dialog", "E")) + self.label_18.setText(_translate("Dialog", "C")) self.label_5.setText(_translate("Dialog", "Draw polygon")) self.label_14.setText(_translate("Dialog", "Bit map")) self.label_16.setText(_translate("Dialog", "Space")) @@ -267,4 +287,6 @@ class Ui_Dialog(object): self.label_26.setText(_translate("Dialog", "Annotate cancel")) self.label_27.setText(_translate("Dialog", "Esc")) self.label_8.setText(_translate("Dialog", "To top")) + self.label_28.setText(_translate("Dialog", "Polygons Visible")) + self.label_29.setText(_translate("Dialog", "V")) import icons_rc diff --git a/ui/shortcut_dialog.ui b/ui/shortcut_dialog.ui index c525f0d..2efafc5 100644 --- a/ui/shortcut_dialog.ui +++ b/ui/shortcut_dialog.ui @@ -93,6 +93,7 @@ + Times New Roman 12 @@ -114,6 +115,7 @@ + Times New Roman 12 @@ -135,6 +137,7 @@ + Times New Roman 12 @@ -156,6 +159,7 @@ + Times New Roman 12 @@ -177,6 +181,7 @@ + Times New Roman 12 @@ -222,6 +227,7 @@ + Times New Roman 12 @@ -229,7 +235,7 @@ color: rgb(133, 0, 0); - E + C @@ -267,6 +273,7 @@ + Times New Roman 12 @@ -300,6 +307,7 @@ + Times New Roman 12 @@ -357,6 +365,7 @@ + Times New Roman 12 @@ -378,6 +387,7 @@ + Times New Roman 12 @@ -417,6 +427,7 @@ + Times New Roman 12 @@ -432,6 +443,7 @@ + Times New Roman 12 @@ -471,6 +483,7 @@ + Times New Roman 12 @@ -494,6 +507,23 @@ + + + + Polygons Visible + + + + + + + color: rgb(133, 0, 0); + + + V + + + diff --git a/ui/zh_CN.qm b/ui/zh_CN.qm index e6d7e8958fdfc1e994f23d3d053ddf27b6db6e9d..bd6862dacb4b50b02bf380e19cb72d2f536e6a88 100644 GIT binary patch delta 1374 zcmaKqe@xV69LGO*_k4ff_j_<09KSAX$x3o!xtfrJ3Q;i?6JiNXoC(N}0g6Cm>p){` zqWn5TTI!G{r8y(cv@q~mCF_@{v1Y_@kd7#HKq#7ydf%RZTi@-w*YiA|-|y$SzN{v( z(cx|*qFDU?4^;jFpTi%?sr7-+6PZFd_03=s_SKw*04^soM{ycmU^4bSoVKsP6+{+) zJ}~eh@I@k_m(v~c5*BGV7~~9@0Mm)YY0l7QFoQ_S;tcaQn~8lTXIKZ(>Mv068BXI0 z(Hal-zi z2hWhu`VEoON2umf=Z&&8i%9gLu#8OUej8;{~VLweNRX3o}AzCw8j6yTC)(jN_ zb7;eBXq5d#nR)MEz$<>bi9(AhD|ZPJOO)qNC=JmzeacV)e})Eq zmb(uYp)u8Rzub+5c^?*_t==+McL)ykEbfC(aV7PvG>E#(+_P_uJz{q00Q_BI;jU;Dn$PJN z6q|csx84+6M%Tj6;0)~&PfyJuUzB*Z3weTdal9xVdH<2vCe(G*Np88R9@51~k3GPn zQc9&)=U@o-N#6yH;f`MBbZ(P|-jgtCw=^pHFRjM;+iKql45B@y4mYDQ;f^M} zP>jZ=v_$;?{Cl)qc^V2+im$Dr=#F;PUo$B9QJwl zvKo`8K{HHAo)T-6*Cl>vi3!*k-tc+$mfVD@c#3UltnHVPheZ4V>r0BN@=A)!=4IrU zqSo>s<9rVLMw7~wsvC0ioZ{|J(}Z;p4sNHIKZb^`&I?ZKXhU5|L$0$9ZVgm~J5 KqP!bicGJHoQcB1G delta 1207 zcmXAo2~1R16o${tyKkAd4GgnDW2uQ+ml~xtjm0Wx3tADyWfBr>#6%GRYex!VL*g50 zO|&jmMhR701Fv9&|LL9N<-6yedzSy)I~y|Z zOx@wO0z@DMX5Xp=)`3It$A5q{nPV;S|+z{-OoCzjT z@fw_;L#!P!&Y8qI!GttoS4V*j#D3idfqRJET~3sEkk~(IWKm)biL8^zl|o|u&qUsj zN$fmJlw3;^4v^A9v+90A6Yp?pIrKqQI_!R${b?^I6QtZnt5G1I=Gsq#=V;+NG|D1W zP`n$0syThvXz_|k$XiOq@qBU#t*lD7u((Vm@kDYTRhE8%4o7mTF?wcJV1&bLMNhs# z;BU6izs@F7{r2^djcB;X-Z*p`^I7NGT?o9vuFkKAvd1iD zG@_vsB8%^{<>KhAP~>VAzgm-p{R*+AdMOn5a3;?XpBlK9l*QtUH!%seS#n*^Ao6re ziv}toc$-vcm7?<$K`JbBV`I2f80dnXCY4o>LSqW2dzw^x5`KNYR2Q3z0ujz+k94$e z2nlPXNGtNV1JeCfQ*dQlWwr!`lOD>-&h40JL>@DUx1{_lFB`(XXM}tq=`QlvWb6Nh z_oDp!UKx+#Rr&Vq!${Ptl;wGFFi&Z7BZ2NwI?~IbG^m`}u>?v;iP06@{Q+g*c?TvH zaY&y;VHa>38ICuup^(1Gv1&LPSBe~MHIIn2a>vDH9}17>^uDmvaT9wH_!g)Br&@IB zF#AY>G4U1}wOIHL1l-UwY!KqMn)G>T-EiE~s~*51{-U?raL_l>m{Ng} z`qmreO-SgS&X?MRaIV^I3s2Xxh42yQyJqN?i-pY8 V5uvEd3{BU?(C&o9(8kok{{Yn?9O?i7 diff --git a/ui/zh_CN.ts b/ui/zh_CN.ts index 867d027..d6c1a9a 100644 --- a/ui/zh_CN.ts +++ b/ui/zh_CN.ts @@ -99,7 +99,7 @@ 转换 - + help 帮助 @@ -119,7 +119,7 @@ 多边形置于底层 - + E @@ -134,27 +134,27 @@ 多边形置于顶层 - + Del - + S - + Save annotation 保存标注文件 - + T - + Delete polygon 删除多边形 @@ -164,7 +164,7 @@ 编辑多边形 - + B @@ -174,12 +174,12 @@ 文件 - + Next image 下一张图片 - + D @@ -189,7 +189,7 @@ 上一张图片 - + A @@ -214,17 +214,17 @@ 视图 - + Bit map 位图 - + Space - + F @@ -336,7 +336,7 @@ ISAT with Segment anything. - ISAT集成Segment anything. + ISAT集成Segment anything. @@ -350,75 +350,90 @@ http://www.yatenglg.cn/isat 添加新类别 - + Shortcut 快捷键 - + Prior image 上一张图片 - + To top 置顶 - + To bottom 置底 - + Zoom fit 适应窗口 - + Draw polygon 绘制多边形 - + Segment anything - + Q - + Backspace 回退 - + Z - + Annotate finish 标注完成 - + Annotate cancel 标注取消 - + Esc + + + C + + + + + Polygons Visible + 多边形显示/隐藏 + + + + V + + Form - + Form @@ -462,56 +477,61 @@ http://www.yatenglg.cn/isat Jump to the image. 跳转到指定图片. + + + Visible + 显示/隐藏 + MainWindow - + ISAT ISAT 图片分割标注工具 - + File 文件 - + View 视图 - + Help 帮助 - + Tools 工具 - + Edit 编辑 - + toolBar 工具栏 - + Info 图片信息 - + Labels 标签列表 - + Files 文件列表 @@ -526,32 +546,32 @@ http://www.yatenglg.cn/isat 打开图片文件夹 - + Zoom in 放大 - + Zoom out 缩小 - + Fit window 适应窗口 - + F - + Setting 设置 - + Exit 退出 @@ -561,12 +581,12 @@ http://www.yatenglg.cn/isat 标签保存位置 - + Save 保存 - + S @@ -576,12 +596,12 @@ http://www.yatenglg.cn/isat 上一张 - + Prev image 上一张图片 - + A @@ -591,17 +611,17 @@ http://www.yatenglg.cn/isat 下一张 - + Next image 下一张图片 - + D - + About 关于 @@ -616,92 +636,92 @@ http://www.yatenglg.cn/isat 创建多边形 - + C - + Delete 删除 - + Delete polygon 删除多边形 - + Del - + Bit map 位图 - + Space - + Edit polygon 编辑多边形 - + E - + To top 置顶 - + Move polygon to top layer 移动多边形到顶层 - + T - + To bottom 置底 - + Move polygon to bottom layer 移动多边形到底层 - + B - + Label converter 标注文件转换器 - + Convert annotations to png image. 将ISAT标注文件转换为png图片. - + Laguage 语言 - + Shortcut 快捷键 @@ -711,52 +731,52 @@ http://www.yatenglg.cn/isat 中文 - + English - + 中文 - + Images dir 图片文件夹 - + Open images dir. 打开图片文件夹. - + Zoom in. 放大. - + Zoom out. 缩小. - + Fit window. 适应窗口. - + Label dir 标签文件夹 - + Open label dir. 打开标签文件夹. - + Save annotation. 保存. @@ -771,7 +791,7 @@ http://www.yatenglg.cn/isat 打开上一张图片. - + Next image. 下一张图片. @@ -781,124 +801,134 @@ http://www.yatenglg.cn/isat 打开下一张图片. - + Delete polygon. 删除多边形. - + Show instance or segmeent state. 显示语义与实例结果. - + Edit polygon attribute. 编辑多边形属性. - + Move polygon to top layer. 将多边形移动到最上层. - + Move polygon to bottom layer. 将多边形移动到最下层. - + Setting. 设置. - + Exit. 退出. - + Prev image. 前一张图片. - + Segment anything - + Quick annotate using Segment anything. 使用Segment anything进行快速标注. - + Q - + Backspace 回退 - + Backspace. 回退. - + Z - + Cancel 取消 - + Annotate canceled 标注取消 - + Annotate canceled. 标注取消. - + Esc - + Finish 完成 - + Annotate finished 标注完成 - + Annotate finished. 标注完成. - + Polygon 多边形 - + Draw polygon 绘制多边形 - + Accurately annotate by drawing polygon. 通过手动绘制多边形,进行精细标注. + + + Visible + 显示/隐藏 + + + + V + + diff --git a/widgets/canvas.py b/widgets/canvas.py index 4c3a54d..947c432 100644 --- a/widgets/canvas.py +++ b/widgets/canvas.py @@ -342,7 +342,17 @@ class AnnotationScene(QtWidgets.QGraphicsScene): # 状态栏,显示当前坐标 if self.image_data is not None: x, y = round(pos.x()), round(pos.y()) - self.mainwindow.labelCoordinates.setText('({}, {}) [{}]'.format(x, y, self.image_data[y-1][x-1])) + self.mainwindow.labelCoord.setText('xy: ({:>4d},{:>4d})'.format(x, y)) + + data = self.image_data[y-1][x-1] + if self.image_data.ndim == 2: + self.mainwindow.labelData.setText('pix: [{:^3d}]'.format(data)) + elif self.image_data.ndim == 3: + if len(data) == 3: + self.mainwindow.labelData.setText('rgb: [{:>3d},{:>3d},{:>3d}]'.format(data[0], data[1], data[2])) + else: + self.mainwindow.labelData.setText('pix: [{}]'.format(data)) + super(AnnotationScene, self).mouseMoveEvent(event) def update_mask(self): diff --git a/widgets/labels_dock_widget.py b/widgets/labels_dock_widget.py index d2a0258..8166b31 100644 --- a/widgets/labels_dock_widget.py +++ b/widgets/labels_dock_widget.py @@ -14,6 +14,7 @@ class LabelsDockWidget(QtWidgets.QWidget, Ui_Form): self.polygon_item_dict = {} self.listWidget.itemSelectionChanged.connect(self.set_polygon_selected) + self.checkBox_visible.stateChanged.connect(self.set_all_polygon_visible) self.listWidget.setContextMenuPolicy(QtCore.Qt.ContextMenuPolicy.CustomContextMenu) self.listWidget.customContextMenuRequested.connect( @@ -32,6 +33,7 @@ class LabelsDockWidget(QtWidgets.QWidget, Ui_Form): check_box = QtWidgets.QCheckBox() check_box.setFixedWidth(20) check_box.setChecked(polygon.isVisible()) + check_box.setObjectName('check_box') check_box.stateChanged.connect(functools.partial(self.set_polygon_show, polygon)) layout.addWidget(check_box) @@ -62,6 +64,7 @@ class LabelsDockWidget(QtWidgets.QWidget, Ui_Form): def update_listwidget(self): self.listWidget.clear() self.polygon_item_dict.clear() + self.checkBox_visible.setChecked(True) for polygon in self.mainwindow.polygons: item, item_widget = self.generate_item_and_itemwidget(polygon) @@ -102,3 +105,12 @@ class LabelsDockWidget(QtWidgets.QWidget, Ui_Form): for vertex in polygon.vertexs: vertex.setVisible(self.sender().checkState()) polygon.setVisible(self.sender().checkState()) + + def set_all_polygon_visible(self, visible:bool=None): + visible = self.checkBox_visible.isChecked() if visible is None else visible + for index in range(self.listWidget.count()): + item = self.listWidget.item(index) + widget = self.listWidget.itemWidget(item) + check_box = widget.findChild(QtWidgets.QCheckBox, 'check_box') + check_box.setChecked(visible) + self.checkBox_visible.setChecked(visible) diff --git a/widgets/mainwindow.py b/widgets/mainwindow.py index 535b446..b8fc838 100644 --- a/widgets/mainwindow.py +++ b/widgets/mainwindow.py @@ -19,6 +19,7 @@ from annotation import Object, Annotation from widgets.polygon import Polygon import os from PIL import Image +import functools import imgviz from segment_any.segment_any import SegAny import icons_rc @@ -70,6 +71,17 @@ class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow): QtWidgets.QMessageBox.warning(self, 'Warning', 'The checkpoint of [Segment anything] not existed. If you want use quick annotate, please download from {}'.format('https://github.com/facebookresearch/segment-anything#model-checkpoints')) self.use_segment_anything = False + if self.use_segment_anything: + if self.segany.device != 'cpu': + from segment_any.gpu_resource import GPUResource_Thread + self.gpu_resource_thread = GPUResource_Thread() + self.gpu_resource_thread.message.connect(self.labelGPUResource.setText) + self.gpu_resource_thread.start() + else: + self.labelGPUResource.setText('cpu') + else: + self.labelGPUResource.setText('segment anything unused.') + def init_ui(self): self.setting_dialog = SettingDialog(parent=self, mainwindow=self) @@ -100,8 +112,20 @@ class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow): self.shortcut_dialog = ShortcutDialog(self) self.about_dialog = AboutDialog(self) - self.labelCoordinates = QtWidgets.QLabel('') - self.statusbar.addPermanentWidget(self.labelCoordinates) + self.labelGPUResource = QtWidgets.QLabel('') + self.labelGPUResource.setAlignment(QtCore.Qt.AlignmentFlag.AlignRight) + self.labelGPUResource.setFixedWidth(180) + self.statusbar.addPermanentWidget(self.labelGPUResource) + + self.labelCoord = QtWidgets.QLabel('') + self.labelCoord.setAlignment(QtCore.Qt.AlignmentFlag.AlignRight) + self.labelCoord.setFixedWidth(150) + self.statusbar.addPermanentWidget(self.labelCoord) + + self.labelData = QtWidgets.QLabel('') + self.labelData.setAlignment(QtCore.Qt.AlignmentFlag.AlignRight) + self.labelData.setFixedWidth(150) + self.statusbar.addPermanentWidget(self.labelData) self.trans = QtCore.QTranslator() @@ -347,6 +371,7 @@ class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow): del self.current_label.objects[index] def change_bit_map(self): + self.set_labels_visible(True) if self.scene.mode == STATUSMode.CREATE: self.scene.cancel_draw() if self.map_mode == MAPMode.LABEL: @@ -359,8 +384,10 @@ class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow): polygon.color.setAlpha(255) polygon.setBrush(polygon.color) self.labels_dock_widget.listWidget.setEnabled(False) + self.labels_dock_widget.checkBox_visible.setEnabled(False) self.actionSegment_anything.setEnabled(False) self.actionPolygon.setEnabled(False) + self.actionVisible.setEnabled(False) self.map_mode = MAPMode.SEMANTIC semantic_icon = QtGui.QIcon() semantic_icon.addPixmap(QtGui.QPixmap(":/icon/icons/semantic.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) @@ -380,8 +407,10 @@ class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow): polygon.color.setAlpha(255) polygon.setBrush(polygon.color) self.labels_dock_widget.listWidget.setEnabled(False) + self.labels_dock_widget.checkBox_visible.setEnabled(False) self.actionSegment_anything.setEnabled(False) self.actionPolygon.setEnabled(False) + self.actionVisible.setEnabled(False) self.map_mode = MAPMode.INSTANCE instance_icon = QtGui.QIcon() instance_icon.addPixmap(QtGui.QPixmap(":/icon/icons/instance.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) @@ -398,8 +427,10 @@ class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow): polygon.color.setAlpha(polygon.nohover_alpha) polygon.setBrush(polygon.color) self.labels_dock_widget.listWidget.setEnabled(True) + self.labels_dock_widget.checkBox_visible.setEnabled(True) self.actionSegment_anything.setEnabled(self.use_segment_anything) self.actionPolygon.setEnabled(True) + self.actionVisible.setEnabled(True) self.map_mode = MAPMode.LABEL label_icon = QtGui.QIcon() label_icon.addPixmap(QtGui.QPixmap(":/icon/icons/照片_pic.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) @@ -407,6 +438,12 @@ class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow): else: pass + def set_labels_visible(self, visible=None): + if visible is None: + visible = not self.labels_dock_widget.checkBox_visible.isChecked() + self.labels_dock_widget.checkBox_visible.setChecked(visible) + self.labels_dock_widget.set_all_polygon_visible(visible) + def label_converter(self): self.convert_dialog.reset_gui() self.convert_dialog.show() @@ -450,6 +487,7 @@ class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow): self.actionZoom_out.triggered.connect(self.view.zoom_out) self.actionFit_wiondow.triggered.connect(self.view.zoomfit) self.actionBit_map.triggered.connect(self.change_bit_map) + self.actionVisible.triggered.connect(functools.partial(self.set_labels_visible, None)) self.actionConverter.triggered.connect(self.label_converter)