aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/ListView
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlvisual/ListView')
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/basic1.qml30
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/basic2.qml34
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/basic3.qml32
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/basic4.qml36
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/basic1.0.pngbin948 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/basic1.qml11
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/basic2.0.pngbin948 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/basic2.qml11
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/basic3.0.pngbin948 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/basic3.qml11
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/basic4.0.pngbin948 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/basic4.qml11
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/enforcerange.0.pngbin680 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/enforcerange.1.pngbin680 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/enforcerange.2.pngbin704 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/enforcerange.3.pngbin695 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/enforcerange.4.pngbin680 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/enforcerange.5.pngbin710 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/enforcerange.6.pngbin705 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/enforcerange.qml2119
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/itemlist.0.pngbin976 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/itemlist.1.pngbin976 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/itemlist.2.pngbin986 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/itemlist.3.pngbin977 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/itemlist.4.pngbin977 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/itemlist.5.pngbin977 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/itemlist.6.pngbin990 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/itemlist.7.pngbin976 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/itemlist.qml2203
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/listview.0.pngbin1525 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/listview.1.pngbin1647 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/listview.2.pngbin1584 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/listview.3.pngbin1648 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/listview.4.pngbin1613 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/listview.5.pngbin1663 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/listview.6.pngbin1666 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/listview.7.pngbin1579 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/listview.8.pngbin1579 -> 0 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/data/listview.qml2227
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/enforcerange.qml31
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/itemlist.qml40
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/listview.qml86
42 files changed, 0 insertions, 6882 deletions
diff --git a/tests/auto/declarative/qmlvisual/ListView/basic1.qml b/tests/auto/declarative/qmlvisual/ListView/basic1.qml
deleted file mode 100644
index 8c1b56e5dd..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/basic1.qml
+++ /dev/null
@@ -1,30 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- color: "blue"
- width: 200
- height: 300
- id: page
- ListView {
- anchors.fill: parent
- delegate: Rectangle {
- color: "red"
- width: 100
- height: 100
- Rectangle {
- anchors.centerIn: parent
- width: 60
- height: 60
- color: name
- }
- }
- model: ListModel {
- ListElement {
- name: "palegoldenrod"
- }
- ListElement {
- name: "lightsteelblue"
- }
- }
- }
-}
diff --git a/tests/auto/declarative/qmlvisual/ListView/basic2.qml b/tests/auto/declarative/qmlvisual/ListView/basic2.qml
deleted file mode 100644
index 9d26c737eb..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/basic2.qml
+++ /dev/null
@@ -1,34 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- color: "blue"
- width: 200
- height: 300
- id: page
- Component {
- id: delegate
- Rectangle {
- color: "red"
- width: 100
- height: 100
- Rectangle {
- anchors.centerIn: parent
- width: 60
- height: 60
- color: name
- }
- }
- }
- ListView {
- anchors.fill: parent
- delegate: delegate
- model: ListModel {
- ListElement {
- name: "palegoldenrod"
- }
- ListElement {
- name: "lightsteelblue"
- }
- }
- }
-}
diff --git a/tests/auto/declarative/qmlvisual/ListView/basic3.qml b/tests/auto/declarative/qmlvisual/ListView/basic3.qml
deleted file mode 100644
index 982df9a68a..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/basic3.qml
+++ /dev/null
@@ -1,32 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- color: "blue"
- width: 200
- height: 300
- id: page
- ListModel {
- id: model
- ListElement {
- name: "palegoldenrod"
- }
- ListElement {
- name: "lightsteelblue"
- }
- }
- ListView {
- anchors.fill: parent
- model: model
- delegate: Rectangle {
- color: "red"
- width: 100
- height: 100
- Rectangle {
- anchors.centerIn: parent
- width: 60
- height: 60
- color: name
- }
- }
- }
-}
diff --git a/tests/auto/declarative/qmlvisual/ListView/basic4.qml b/tests/auto/declarative/qmlvisual/ListView/basic4.qml
deleted file mode 100644
index 2c5d1e3eae..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/basic4.qml
+++ /dev/null
@@ -1,36 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- color: "blue"
- width: 200
- height: 300
- id: page
- ListModel {
- id: model
- ListElement {
- name: "palegoldenrod"
- }
- ListElement {
- name: "lightsteelblue"
- }
- }
- Component {
- id: delegate
- Rectangle {
- color: "red"
- width: 100
- height: 100
- Rectangle {
- anchors.centerIn: parent
- width: 60
- height: 60
- color: name
- }
- }
- }
- ListView {
- anchors.fill: parent
- model: model
- delegate: delegate
- }
-}
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic1.0.png b/tests/auto/declarative/qmlvisual/ListView/data/basic1.0.png
deleted file mode 100644
index 049d9c8d6f..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/basic1.0.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic1.qml b/tests/auto/declarative/qmlvisual/ListView/data/basic1.qml
deleted file mode 100644
index aad4858ca4..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/basic1.qml
+++ /dev/null
@@ -1,11 +0,0 @@
-import Qt.VisualTest 4.7
-
-VisualTest {
- Frame {
- msec: 0
- }
- Frame {
- msec: 16
- image: "basic1.0.png"
- }
-}
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic2.0.png b/tests/auto/declarative/qmlvisual/ListView/data/basic2.0.png
deleted file mode 100644
index 049d9c8d6f..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/basic2.0.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic2.qml b/tests/auto/declarative/qmlvisual/ListView/data/basic2.qml
deleted file mode 100644
index 373ad27cb3..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/basic2.qml
+++ /dev/null
@@ -1,11 +0,0 @@
-import Qt.VisualTest 4.7
-
-VisualTest {
- Frame {
- msec: 0
- }
- Frame {
- msec: 16
- image: "basic2.0.png"
- }
-}
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic3.0.png b/tests/auto/declarative/qmlvisual/ListView/data/basic3.0.png
deleted file mode 100644
index 049d9c8d6f..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/basic3.0.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic3.qml b/tests/auto/declarative/qmlvisual/ListView/data/basic3.qml
deleted file mode 100644
index f5dbf65a43..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/basic3.qml
+++ /dev/null
@@ -1,11 +0,0 @@
-import Qt.VisualTest 4.7
-
-VisualTest {
- Frame {
- msec: 0
- }
- Frame {
- msec: 16
- image: "basic3.0.png"
- }
-}
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic4.0.png b/tests/auto/declarative/qmlvisual/ListView/data/basic4.0.png
deleted file mode 100644
index 049d9c8d6f..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/basic4.0.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic4.qml b/tests/auto/declarative/qmlvisual/ListView/data/basic4.qml
deleted file mode 100644
index 5e494d13a7..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/basic4.qml
+++ /dev/null
@@ -1,11 +0,0 @@
-import Qt.VisualTest 4.7
-
-VisualTest {
- Frame {
- msec: 0
- }
- Frame {
- msec: 16
- image: "basic4.0.png"
- }
-}
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.0.png b/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.0.png
deleted file mode 100644
index 5c0b6a6a72..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.0.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.1.png b/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.1.png
deleted file mode 100644
index 5c0b6a6a72..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.1.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.2.png b/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.2.png
deleted file mode 100644
index 304aed8b34..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.2.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.3.png b/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.3.png
deleted file mode 100644
index 4abc58e03a..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.3.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.4.png b/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.4.png
deleted file mode 100644
index 5c0b6a6a72..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.4.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.5.png b/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.5.png
deleted file mode 100644
index 8d421afa38..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.5.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.6.png b/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.6.png
deleted file mode 100644
index 81ea1ff41a..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.6.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.qml b/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.qml
deleted file mode 100644
index de3f49c813..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.qml
+++ /dev/null
@@ -1,2119 +0,0 @@
-import Qt.VisualTest 4.7
-
-VisualTest {
- Frame {
- msec: 0
- }
- Frame {
- msec: 16
- image: "enforcerange.0.png"
- }
- Frame {
- msec: 32
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 48
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 64
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 80
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 96
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 112
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 128
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 144
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 160
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 176
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 192
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 208
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 224
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 240
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 256
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 272
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 288
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 304
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 320
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 336
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 352
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 368
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 384
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 400
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 416
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 432
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 448
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 464
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 480
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 496
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 512
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 528
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 544
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 560
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 576
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 592
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 608
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 624
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 640
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 656
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 672
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 688
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 704
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 720
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 736
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 752
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 768
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 784
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 800
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 816
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 832
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 848
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 864
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 880
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 896
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 912
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 928
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 944
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 960
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 976
- image: "enforcerange.1.png"
- }
- Frame {
- msec: 992
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 1008
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 1024
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 1040
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 1056
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 1072
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 1088
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 1104
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 1120
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 1136
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 1152
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 1168
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 1184
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 1200
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Mouse {
- type: 2
- button: 1
- buttons: 1
- x: 77; y: 157
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 1216
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 1232
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 1248
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 77; y: 156
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 1264
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 77; y: 154
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 76; y: 151
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 1280
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 75; y: 144
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 74; y: 136
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 1296
- hash: "c7667b5af9f2ee912abe5879266cb1e0"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 73; y: 131
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 72; y: 122
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 1312
- hash: "1e762d6ffe1ceb53046d7953645d02d5"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 71; y: 118
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 71; y: 111
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 1328
- hash: "0d2b7130a84a8efac1cf4fe8a1768231"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 71; y: 108
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 71; y: 102
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 1344
- hash: "6ef2715c3fd26d50d26fb740afa6dece"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 71; y: 98
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 71; y: 92
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 3
- button: 1
- buttons: 0
- x: 71; y: 92
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 1360
- hash: "f489b6f951281ff9a981ec046ca5b17d"
- }
- Frame {
- msec: 1376
- hash: "fd6e7d7db7c4571ee606269fb9680ed9"
- }
- Frame {
- msec: 1392
- hash: "398a238f59a2edf07870b624b914c81d"
- }
- Frame {
- msec: 1408
- hash: "fdce64faab7e7e31a229adda47924cd1"
- }
- Frame {
- msec: 1424
- hash: "8d474956331fdd0c35beb13a06b7c557"
- }
- Frame {
- msec: 1440
- hash: "f89fed6f7fa07a8320f07a1e68240a7e"
- }
- Frame {
- msec: 1456
- hash: "940b70f15082ff138579892bb6f20ce9"
- }
- Frame {
- msec: 1472
- hash: "35ab744ce2a91567dbbd769f9486f870"
- }
- Frame {
- msec: 1488
- hash: "6b2d32b8f1df871c2c014af8b5d87329"
- }
- Frame {
- msec: 1504
- hash: "edf3b33b80cca53999779555f9cd6162"
- }
- Frame {
- msec: 1520
- hash: "180f3cc4ea5ff5b6f9e8be0294732d4e"
- }
- Frame {
- msec: 1536
- hash: "28e9ca60a873910380b2d22d6b3df565"
- }
- Frame {
- msec: 1552
- hash: "3bb1e8d69f171f09eb4c6f9914fc9576"
- }
- Frame {
- msec: 1568
- hash: "0501da09be444df6cee4b19617290317"
- }
- Frame {
- msec: 1584
- hash: "8ce1ac0163b0353167488aff2879e841"
- }
- Frame {
- msec: 1600
- hash: "18e53bf6337cf6590fc3c73c00469d8e"
- }
- Frame {
- msec: 1616
- hash: "0c31ede980d07069f4977d5753d00ddf"
- }
- Frame {
- msec: 1632
- hash: "0a854a54176c24f0ebbb6cb747dc0ab7"
- }
- Frame {
- msec: 1648
- hash: "8dba1ebca6f00b7a64a6982fb8c28c50"
- }
- Frame {
- msec: 1664
- hash: "8d273efc36ba722af4d044e6552c9dcb"
- }
- Frame {
- msec: 1680
- hash: "674b07dc5b99bf2da93c40d42dc9023d"
- }
- Frame {
- msec: 1696
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 1712
- hash: "b64810845a97bedf6fe11c043457c197"
- }
- Frame {
- msec: 1728
- hash: "87aaa82b96131fed8822e57e226162a0"
- }
- Frame {
- msec: 1744
- hash: "7eb75e8e83874d52448a7dbf6a0ad29c"
- }
- Frame {
- msec: 1760
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 1776
- hash: "81110f17d191f9795a2c57d136e86550"
- }
- Frame {
- msec: 1792
- hash: "090a76cf068a5041ff993f21e6ebd087"
- }
- Frame {
- msec: 1808
- hash: "30eb157c89ad0aeb17fd0012afb9246b"
- }
- Frame {
- msec: 1824
- hash: "6b317b59e1b0f5b17a6d7d96e745f576"
- }
- Frame {
- msec: 1840
- hash: "f9fc8467c6dbcb00d1f41a57b550193c"
- }
- Frame {
- msec: 1856
- hash: "744227adbdd31be2920a232ea0dbc85d"
- }
- Frame {
- msec: 1872
- hash: "d4b370ff8c3b66fc8a616dd9b944abd1"
- }
- Frame {
- msec: 1888
- hash: "674b07dc5b99bf2da93c40d42dc9023d"
- }
- Frame {
- msec: 1904
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 1920
- hash: "b64810845a97bedf6fe11c043457c197"
- }
- Frame {
- msec: 1936
- image: "enforcerange.2.png"
- }
- Frame {
- msec: 1952
- hash: "87aaa82b96131fed8822e57e226162a0"
- }
- Frame {
- msec: 1968
- hash: "70b475e88060ead84d05f0ba1b47c139"
- }
- Frame {
- msec: 1984
- hash: "7eb75e8e83874d52448a7dbf6a0ad29c"
- }
- Frame {
- msec: 2000
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 2016
- hash: "81110f17d191f9795a2c57d136e86550"
- }
- Frame {
- msec: 2032
- hash: "090a76cf068a5041ff993f21e6ebd087"
- }
- Frame {
- msec: 2048
- hash: "090a76cf068a5041ff993f21e6ebd087"
- }
- Frame {
- msec: 2064
- hash: "30eb157c89ad0aeb17fd0012afb9246b"
- }
- Frame {
- msec: 2080
- hash: "6b317b59e1b0f5b17a6d7d96e745f576"
- }
- Frame {
- msec: 2096
- hash: "f9fc8467c6dbcb00d1f41a57b550193c"
- }
- Frame {
- msec: 2112
- hash: "f9fc8467c6dbcb00d1f41a57b550193c"
- }
- Frame {
- msec: 2128
- hash: "711274e9b6811b4662ac29d813574fb6"
- }
- Frame {
- msec: 2144
- hash: "744227adbdd31be2920a232ea0dbc85d"
- }
- Frame {
- msec: 2160
- hash: "744227adbdd31be2920a232ea0dbc85d"
- }
- Frame {
- msec: 2176
- hash: "d4b370ff8c3b66fc8a616dd9b944abd1"
- }
- Frame {
- msec: 2192
- hash: "d4b370ff8c3b66fc8a616dd9b944abd1"
- }
- Frame {
- msec: 2208
- hash: "674b07dc5b99bf2da93c40d42dc9023d"
- }
- Frame {
- msec: 2224
- hash: "674b07dc5b99bf2da93c40d42dc9023d"
- }
- Frame {
- msec: 2240
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 2256
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 2272
- hash: "b64810845a97bedf6fe11c043457c197"
- }
- Frame {
- msec: 2288
- hash: "b64810845a97bedf6fe11c043457c197"
- }
- Frame {
- msec: 2304
- hash: "87aaa82b96131fed8822e57e226162a0"
- }
- Frame {
- msec: 2320
- hash: "87aaa82b96131fed8822e57e226162a0"
- }
- Frame {
- msec: 2336
- hash: "87aaa82b96131fed8822e57e226162a0"
- }
- Frame {
- msec: 2352
- hash: "70b475e88060ead84d05f0ba1b47c139"
- }
- Frame {
- msec: 2368
- hash: "70b475e88060ead84d05f0ba1b47c139"
- }
- Frame {
- msec: 2384
- hash: "70b475e88060ead84d05f0ba1b47c139"
- }
- Frame {
- msec: 2400
- hash: "7eb75e8e83874d52448a7dbf6a0ad29c"
- }
- Frame {
- msec: 2416
- hash: "7eb75e8e83874d52448a7dbf6a0ad29c"
- }
- Frame {
- msec: 2432
- hash: "7eb75e8e83874d52448a7dbf6a0ad29c"
- }
- Frame {
- msec: 2448
- hash: "7eb75e8e83874d52448a7dbf6a0ad29c"
- }
- Frame {
- msec: 2464
- hash: "7eb75e8e83874d52448a7dbf6a0ad29c"
- }
- Frame {
- msec: 2480
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 2496
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 2512
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 2528
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 2544
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 2560
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 2576
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 2592
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 2608
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 2624
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 2640
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 2656
- hash: "7eb75e8e83874d52448a7dbf6a0ad29c"
- }
- Frame {
- msec: 2672
- hash: "7eb75e8e83874d52448a7dbf6a0ad29c"
- }
- Frame {
- msec: 2688
- hash: "7eb75e8e83874d52448a7dbf6a0ad29c"
- }
- Frame {
- msec: 2704
- hash: "70b475e88060ead84d05f0ba1b47c139"
- }
- Frame {
- msec: 2720
- hash: "70b475e88060ead84d05f0ba1b47c139"
- }
- Frame {
- msec: 2736
- hash: "87aaa82b96131fed8822e57e226162a0"
- }
- Frame {
- msec: 2752
- hash: "87aaa82b96131fed8822e57e226162a0"
- }
- Frame {
- msec: 2768
- hash: "b64810845a97bedf6fe11c043457c197"
- }
- Frame {
- msec: 2784
- hash: "b64810845a97bedf6fe11c043457c197"
- }
- Frame {
- msec: 2800
- hash: "b64810845a97bedf6fe11c043457c197"
- }
- Frame {
- msec: 2816
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 2832
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 2848
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 2864
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 2880
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 2896
- image: "enforcerange.3.png"
- }
- Frame {
- msec: 2912
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 2928
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 2944
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 2960
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 2976
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 2992
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 3008
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 3024
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Mouse {
- type: 2
- button: 1
- buttons: 1
- x: 82; y: 39
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3040
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 3056
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 82; y: 40
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3072
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 82; y: 42
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 81; y: 44
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3088
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 81; y: 47
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 81; y: 55
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3104
- hash: "89016574205e00cf42723446d6a3437e"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 81; y: 60
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 81; y: 69
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3120
- hash: "e2db9b1ae5c4be51a548834a7776da1f"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 80; y: 75
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 80; y: 87
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3136
- hash: "fcfad57224192065782a77ad3398d0d1"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 80; y: 93
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 80; y: 107
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3152
- hash: "bae4fc0fc2d33008ebe827ece94af196"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 84; y: 130
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 88; y: 144
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3168
- hash: "569581944bf18c8165f72c60bdbf1011"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 96; y: 161
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 3
- button: 1
- buttons: 0
- x: 96; y: 161
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3184
- hash: "613ff94a26bfaa9a4dc94fcbf6c3eb57"
- }
- Frame {
- msec: 3200
- hash: "a63f8e6b194f900acb1b7a332f9fb9ae"
- }
- Frame {
- msec: 3216
- hash: "6c04761cc86d28112c16f692cda58ba4"
- }
- Frame {
- msec: 3232
- hash: "544275da3f7e2ccaedc8c521bf17f59b"
- }
- Frame {
- msec: 3248
- hash: "52831480eb69184341b12ffb09ace736"
- }
- Frame {
- msec: 3264
- hash: "52831480eb69184341b12ffb09ace736"
- }
- Frame {
- msec: 3280
- hash: "52831480eb69184341b12ffb09ace736"
- }
- Frame {
- msec: 3296
- hash: "58f2b900bc335424fc70eaaeb23ceb56"
- }
- Frame {
- msec: 3312
- hash: "58f2b900bc335424fc70eaaeb23ceb56"
- }
- Frame {
- msec: 3328
- hash: "544275da3f7e2ccaedc8c521bf17f59b"
- }
- Frame {
- msec: 3344
- hash: "df9fef370c2f6ff300b20fc24b5b9e34"
- }
- Frame {
- msec: 3360
- hash: "0662898d246e5ff6981610d32e2b8375"
- }
- Frame {
- msec: 3376
- hash: "6c04761cc86d28112c16f692cda58ba4"
- }
- Frame {
- msec: 3392
- hash: "82b31c8e8794ce3a9a6a635ef93b29b3"
- }
- Frame {
- msec: 3408
- hash: "388658b5e03f3853e93173bd9501b77b"
- }
- Frame {
- msec: 3424
- hash: "cf1856e961e6b8277a82c03ace5ba864"
- }
- Frame {
- msec: 3440
- hash: "e1d022cc1b41098baffe49925b20678f"
- }
- Frame {
- msec: 3456
- hash: "a63f8e6b194f900acb1b7a332f9fb9ae"
- }
- Frame {
- msec: 3472
- hash: "044c3712a6a5f6a973defe85643c8d02"
- }
- Frame {
- msec: 3488
- hash: "044c3712a6a5f6a973defe85643c8d02"
- }
- Frame {
- msec: 3504
- hash: "e4fe2f1a81a4a4806f4155807f285a2d"
- }
- Frame {
- msec: 3520
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3536
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3552
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3568
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3584
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3600
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3616
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3632
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3648
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3664
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3680
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3696
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3712
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3728
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3744
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3760
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3776
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3792
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3808
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3824
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3840
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3856
- image: "enforcerange.4.png"
- }
- Frame {
- msec: 3872
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3888
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3904
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3920
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3936
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3952
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3968
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 3984
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 4000
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 4016
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Frame {
- msec: 4032
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Mouse {
- type: 2
- button: 1
- buttons: 1
- x: 105; y: 169
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4048
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 106; y: 168
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 106; y: 167
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4064
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 106; y: 164
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 106; y: 163
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4080
- hash: "19c43fcf2875769c9a15f1ce317a0f1e"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 106; y: 162
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 106; y: 160
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4096
- hash: "331164730fb7ccf37dc08ddc26c0e182"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 107; y: 157
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 107; y: 156
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4112
- hash: "73e27ff972eefc421bc65897ad8b9a11"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 108; y: 152
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 109; y: 148
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4128
- hash: "c5e903fd827f8f1ec060dcb9a925bf6d"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 109; y: 145
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 3
- button: 1
- buttons: 0
- x: 109; y: 145
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4144
- hash: "74d4357dff4d6e00c5ae9ea0c34f1010"
- }
- Frame {
- msec: 4160
- hash: "790274ee21ba257b84671a6fb19c142f"
- }
- Frame {
- msec: 4176
- hash: "65ccc26f20be484fefa8ea25a7daf825"
- }
- Frame {
- msec: 4192
- hash: "e435e2fbba7f0f6a65b9fecf07893eb0"
- }
- Frame {
- msec: 4208
- hash: "6a994a18a9331731d5fca50dce2b9cff"
- }
- Frame {
- msec: 4224
- hash: "9fc4405cddc06310215969a4583b2353"
- }
- Frame {
- msec: 4240
- hash: "0d2b7130a84a8efac1cf4fe8a1768231"
- }
- Frame {
- msec: 4256
- hash: "791db15db47090e1af299e5b32e53918"
- }
- Frame {
- msec: 4272
- hash: "0ec6cf7a6ed9a073d2ce8f9e534e2ee5"
- }
- Frame {
- msec: 4288
- hash: "c7b358f51a9500ca4958d266de5307e6"
- }
- Frame {
- msec: 4304
- hash: "d24d00e4cd1ea3aaacf202e2fdf1eaa0"
- }
- Frame {
- msec: 4320
- hash: "169f1a7a933d84071c449132a3c2745e"
- }
- Frame {
- msec: 4336
- hash: "b6bf9c15ed40d6e862f693155c884035"
- }
- Frame {
- msec: 4352
- hash: "8639955aa7a03f54d50d7e9051a4b997"
- }
- Frame {
- msec: 4368
- hash: "411bc9a9aedbfb75f3122eaea6be0c16"
- }
- Frame {
- msec: 4384
- hash: "827094da86716daf69386af2c8d4027a"
- }
- Frame {
- msec: 4400
- hash: "ddddd5457e4a54ca5e7415dc2c7eabe5"
- }
- Frame {
- msec: 4416
- hash: "632a5756af20083504fb1faaa019dd48"
- }
- Frame {
- msec: 4432
- hash: "0cc2901b1b25412f13865887a8c9d13e"
- }
- Frame {
- msec: 4448
- hash: "4c8a9473eb9843634340d70f8eab9487"
- }
- Frame {
- msec: 4464
- hash: "398a238f59a2edf07870b624b914c81d"
- }
- Frame {
- msec: 4480
- hash: "a7c282235e9166b900ea2ff68800a5f5"
- }
- Frame {
- msec: 4496
- hash: "bae4fc0fc2d33008ebe827ece94af196"
- }
- Frame {
- msec: 4512
- hash: "45e0670a2b4c18b847a3c7870539b962"
- }
- Frame {
- msec: 4528
- hash: "8d474956331fdd0c35beb13a06b7c557"
- }
- Frame {
- msec: 4544
- hash: "5d5bdffc30d90fd5b061c6fcf24c2599"
- }
- Frame {
- msec: 4560
- hash: "15721b103981f5fe40b5dfe7d65c5b38"
- }
- Frame {
- msec: 4576
- hash: "940b70f15082ff138579892bb6f20ce9"
- }
- Frame {
- msec: 4592
- hash: "5137ea98fd291a4b967fb66d93253a37"
- }
- Frame {
- msec: 4608
- hash: "35ab744ce2a91567dbbd769f9486f870"
- }
- Frame {
- msec: 4624
- hash: "d5c55c00b07735e5d7c02dfa99ef2f45"
- }
- Frame {
- msec: 4640
- hash: "6b2d32b8f1df871c2c014af8b5d87329"
- }
- Frame {
- msec: 4656
- hash: "edf3b33b80cca53999779555f9cd6162"
- }
- Frame {
- msec: 4672
- hash: "180f3cc4ea5ff5b6f9e8be0294732d4e"
- }
- Frame {
- msec: 4688
- hash: "9b99a1b0c0bb0ce37655d92854ee4d19"
- }
- Frame {
- msec: 4704
- hash: "28e9ca60a873910380b2d22d6b3df565"
- }
- Mouse {
- type: 2
- button: 1
- buttons: 1
- x: 109; y: 131
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4720
- hash: "28e9ca60a873910380b2d22d6b3df565"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 109; y: 126
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 109; y: 124
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4736
- hash: "18e53bf6337cf6590fc3c73c00469d8e"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 109; y: 115
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 109; y: 110
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4752
- hash: "81110f17d191f9795a2c57d136e86550"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 108; y: 99
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 106; y: 85
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4768
- hash: "b64810845a97bedf6fe11c043457c197"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 105; y: 74
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 103; y: 60
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4784
- hash: "711274e9b6811b4662ac29d813574fb6"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 102; y: 54
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 100; y: 40
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 3
- button: 1
- buttons: 0
- x: 100; y: 40
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4800
- hash: "da5a30a6f9f40fbb5e2b150965be8ac0"
- }
- Frame {
- msec: 4816
- image: "enforcerange.5.png"
- }
- Frame {
- msec: 4832
- hash: "090a76cf068a5041ff993f21e6ebd087"
- }
- Frame {
- msec: 4848
- hash: "6b317b59e1b0f5b17a6d7d96e745f576"
- }
- Frame {
- msec: 4864
- hash: "744227adbdd31be2920a232ea0dbc85d"
- }
- Frame {
- msec: 4880
- hash: "674b07dc5b99bf2da93c40d42dc9023d"
- }
- Frame {
- msec: 4896
- hash: "b64810845a97bedf6fe11c043457c197"
- }
- Frame {
- msec: 4912
- hash: "7eb75e8e83874d52448a7dbf6a0ad29c"
- }
- Frame {
- msec: 4928
- hash: "81110f17d191f9795a2c57d136e86550"
- }
- Frame {
- msec: 4944
- hash: "30eb157c89ad0aeb17fd0012afb9246b"
- }
- Frame {
- msec: 4960
- hash: "f9fc8467c6dbcb00d1f41a57b550193c"
- }
- Frame {
- msec: 4976
- hash: "711274e9b6811b4662ac29d813574fb6"
- }
- Frame {
- msec: 4992
- hash: "d4b370ff8c3b66fc8a616dd9b944abd1"
- }
- Frame {
- msec: 5008
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 5024
- hash: "87aaa82b96131fed8822e57e226162a0"
- }
- Frame {
- msec: 5040
- hash: "70b475e88060ead84d05f0ba1b47c139"
- }
- Frame {
- msec: 5056
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 5072
- hash: "81110f17d191f9795a2c57d136e86550"
- }
- Frame {
- msec: 5088
- hash: "30eb157c89ad0aeb17fd0012afb9246b"
- }
- Frame {
- msec: 5104
- hash: "6b317b59e1b0f5b17a6d7d96e745f576"
- }
- Frame {
- msec: 5120
- hash: "711274e9b6811b4662ac29d813574fb6"
- }
- Frame {
- msec: 5136
- hash: "744227adbdd31be2920a232ea0dbc85d"
- }
- Frame {
- msec: 5152
- hash: "674b07dc5b99bf2da93c40d42dc9023d"
- }
- Frame {
- msec: 5168
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 5184
- hash: "b64810845a97bedf6fe11c043457c197"
- }
- Frame {
- msec: 5200
- hash: "87aaa82b96131fed8822e57e226162a0"
- }
- Frame {
- msec: 5216
- hash: "7eb75e8e83874d52448a7dbf6a0ad29c"
- }
- Frame {
- msec: 5232
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 5248
- hash: "81110f17d191f9795a2c57d136e86550"
- }
- Frame {
- msec: 5264
- hash: "090a76cf068a5041ff993f21e6ebd087"
- }
- Frame {
- msec: 5280
- hash: "30eb157c89ad0aeb17fd0012afb9246b"
- }
- Frame {
- msec: 5296
- hash: "6b317b59e1b0f5b17a6d7d96e745f576"
- }
- Frame {
- msec: 5312
- hash: "f9fc8467c6dbcb00d1f41a57b550193c"
- }
- Frame {
- msec: 5328
- hash: "744227adbdd31be2920a232ea0dbc85d"
- }
- Frame {
- msec: 5344
- hash: "d4b370ff8c3b66fc8a616dd9b944abd1"
- }
- Frame {
- msec: 5360
- hash: "674b07dc5b99bf2da93c40d42dc9023d"
- }
- Frame {
- msec: 5376
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 5392
- hash: "b64810845a97bedf6fe11c043457c197"
- }
- Frame {
- msec: 5408
- hash: "b64810845a97bedf6fe11c043457c197"
- }
- Frame {
- msec: 5424
- hash: "87aaa82b96131fed8822e57e226162a0"
- }
- Frame {
- msec: 5440
- hash: "70b475e88060ead84d05f0ba1b47c139"
- }
- Frame {
- msec: 5456
- hash: "7eb75e8e83874d52448a7dbf6a0ad29c"
- }
- Frame {
- msec: 5472
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 5488
- hash: "81110f17d191f9795a2c57d136e86550"
- }
- Frame {
- msec: 5504
- hash: "090a76cf068a5041ff993f21e6ebd087"
- }
- Frame {
- msec: 5520
- hash: "090a76cf068a5041ff993f21e6ebd087"
- }
- Frame {
- msec: 5536
- hash: "30eb157c89ad0aeb17fd0012afb9246b"
- }
- Frame {
- msec: 5552
- hash: "6b317b59e1b0f5b17a6d7d96e745f576"
- }
- Frame {
- msec: 5568
- hash: "f9fc8467c6dbcb00d1f41a57b550193c"
- }
- Frame {
- msec: 5584
- hash: "f9fc8467c6dbcb00d1f41a57b550193c"
- }
- Frame {
- msec: 5600
- hash: "711274e9b6811b4662ac29d813574fb6"
- }
- Frame {
- msec: 5616
- hash: "744227adbdd31be2920a232ea0dbc85d"
- }
- Frame {
- msec: 5632
- hash: "744227adbdd31be2920a232ea0dbc85d"
- }
- Frame {
- msec: 5648
- hash: "d4b370ff8c3b66fc8a616dd9b944abd1"
- }
- Frame {
- msec: 5664
- hash: "d4b370ff8c3b66fc8a616dd9b944abd1"
- }
- Frame {
- msec: 5680
- hash: "674b07dc5b99bf2da93c40d42dc9023d"
- }
- Frame {
- msec: 5696
- hash: "674b07dc5b99bf2da93c40d42dc9023d"
- }
- Frame {
- msec: 5712
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 5728
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 5744
- hash: "b64810845a97bedf6fe11c043457c197"
- }
- Frame {
- msec: 5760
- hash: "b64810845a97bedf6fe11c043457c197"
- }
- Frame {
- msec: 5776
- image: "enforcerange.6.png"
- }
- Frame {
- msec: 5792
- hash: "87aaa82b96131fed8822e57e226162a0"
- }
- Frame {
- msec: 5808
- hash: "87aaa82b96131fed8822e57e226162a0"
- }
- Frame {
- msec: 5824
- hash: "70b475e88060ead84d05f0ba1b47c139"
- }
- Frame {
- msec: 5840
- hash: "70b475e88060ead84d05f0ba1b47c139"
- }
- Frame {
- msec: 5856
- hash: "70b475e88060ead84d05f0ba1b47c139"
- }
- Frame {
- msec: 5872
- hash: "7eb75e8e83874d52448a7dbf6a0ad29c"
- }
- Frame {
- msec: 5888
- hash: "7eb75e8e83874d52448a7dbf6a0ad29c"
- }
- Frame {
- msec: 5904
- hash: "7eb75e8e83874d52448a7dbf6a0ad29c"
- }
- Frame {
- msec: 5920
- hash: "7eb75e8e83874d52448a7dbf6a0ad29c"
- }
- Frame {
- msec: 5936
- hash: "7eb75e8e83874d52448a7dbf6a0ad29c"
- }
- Frame {
- msec: 5952
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 5968
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 5984
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 6000
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 6016
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 6032
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 6048
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 6064
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 6080
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 6096
- hash: "b061ee3784fbd4a287758ffd100a623e"
- }
- Frame {
- msec: 6112
- hash: "7eb75e8e83874d52448a7dbf6a0ad29c"
- }
- Frame {
- msec: 6128
- hash: "7eb75e8e83874d52448a7dbf6a0ad29c"
- }
- Frame {
- msec: 6144
- hash: "7eb75e8e83874d52448a7dbf6a0ad29c"
- }
- Frame {
- msec: 6160
- hash: "70b475e88060ead84d05f0ba1b47c139"
- }
- Frame {
- msec: 6176
- hash: "70b475e88060ead84d05f0ba1b47c139"
- }
- Frame {
- msec: 6192
- hash: "87aaa82b96131fed8822e57e226162a0"
- }
- Frame {
- msec: 6208
- hash: "87aaa82b96131fed8822e57e226162a0"
- }
- Frame {
- msec: 6224
- hash: "87aaa82b96131fed8822e57e226162a0"
- }
- Frame {
- msec: 6240
- hash: "b64810845a97bedf6fe11c043457c197"
- }
- Frame {
- msec: 6256
- hash: "b64810845a97bedf6fe11c043457c197"
- }
- Frame {
- msec: 6272
- hash: "b64810845a97bedf6fe11c043457c197"
- }
- Frame {
- msec: 6288
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6304
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6320
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6336
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6352
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6368
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6384
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6400
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6416
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6432
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6448
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6464
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6480
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6496
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6512
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6528
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6544
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6560
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6576
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6592
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6608
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6624
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6640
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
- Frame {
- msec: 6656
- hash: "a4ff6c6c43697808f9ad7387d152cef3"
- }
-}
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.0.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.0.png
deleted file mode 100644
index 75d2089cda..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.0.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.1.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.1.png
deleted file mode 100644
index 75d2089cda..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.1.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.2.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.2.png
deleted file mode 100644
index bc7dc2c489..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.2.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.3.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.3.png
deleted file mode 100644
index def378f40d..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.3.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.4.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.4.png
deleted file mode 100644
index e23b9033c8..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.4.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.5.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.5.png
deleted file mode 100644
index def378f40d..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.5.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.6.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.6.png
deleted file mode 100644
index b81e713aec..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.6.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.7.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.7.png
deleted file mode 100644
index 75d2089cda..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.7.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.qml b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.qml
deleted file mode 100644
index 6438e425b5..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.qml
+++ /dev/null
@@ -1,2203 +0,0 @@
-import Qt.VisualTest 4.7
-
-VisualTest {
- Frame {
- msec: 0
- }
- Frame {
- msec: 16
- image: "itemlist.0.png"
- }
- Frame {
- msec: 32
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 48
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 64
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 80
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 96
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 112
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 128
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 144
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 160
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 176
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 192
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 208
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 224
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 240
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 256
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 272
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 288
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 304
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 320
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 336
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 352
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 368
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 384
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 400
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 416
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 432
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 448
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 464
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 480
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 496
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 512
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 528
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 544
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 560
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 576
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 592
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 608
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 624
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 640
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 656
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 672
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 688
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 704
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 720
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 736
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 752
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 768
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 784
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 800
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 816
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 832
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 848
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 864
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 880
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 896
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 912
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 928
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 944
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 960
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 976
- image: "itemlist.1.png"
- }
- Frame {
- msec: 992
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1008
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1024
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1040
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1056
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1072
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1088
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1104
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1120
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1136
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1152
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1168
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1184
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1200
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1216
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1232
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1248
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1264
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1280
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1296
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1312
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1328
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1344
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1360
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1376
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1392
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1408
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1424
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1440
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1456
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1472
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1488
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1504
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1520
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1536
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1552
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1568
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1584
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1600
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1616
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1632
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 1648
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Mouse {
- type: 2
- button: 1
- buttons: 1
- x: 192; y: 111
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 1664
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 191; y: 111
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 1680
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 190; y: 112
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 187; y: 113
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 1696
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 184; y: 113
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 180; y: 113
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 1712
- hash: "b6e433a23282a50db2e165a2447ba3f6"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 174; y: 114
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 167; y: 115
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 1728
- hash: "68d443f16c16821ffc9ca68b17c76034"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 160; y: 117
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 1744
- hash: "04b9041c6f10969889d92e94785c7e88"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 140; y: 121
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 132; y: 122
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 1760
- hash: "64b902fe7ab4d89ef0c7b760974e3488"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 114; y: 126
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 98; y: 132
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 1776
- hash: "c2125b59e00f1a1c189c778c44fe39b0"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 91; y: 132
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 3
- button: 1
- buttons: 0
- x: 91; y: 132
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 1792
- hash: "c78175071f2e95649d529b9e1cf045b2"
- }
- Frame {
- msec: 1808
- hash: "ca8ef2c2a7b06e55899b1b63208e257d"
- }
- Frame {
- msec: 1824
- hash: "b54957726e6257956b63e1d7ebbc96e4"
- }
- Frame {
- msec: 1840
- hash: "48847db78ddde75bb96edf01c52c3400"
- }
- Frame {
- msec: 1856
- hash: "48dab5cd1feedf1b5dd67390d6f40fda"
- }
- Frame {
- msec: 1872
- hash: "fe32013c245091b577d0e38eea05705d"
- }
- Frame {
- msec: 1888
- hash: "e4b6e31029c1ea26405537c6d2304b72"
- }
- Frame {
- msec: 1904
- hash: "b5fc9ab0a96ef526e6eb1c022f26c6a7"
- }
- Frame {
- msec: 1920
- hash: "75ab445a739fb2415e20e8997b043656"
- }
- Frame {
- msec: 1936
- image: "itemlist.2.png"
- }
- Frame {
- msec: 1952
- hash: "1bce9b85235e9a1a472c079dfec70ec5"
- }
- Frame {
- msec: 1968
- hash: "98e707a3e39a5f7bd4a101c2ed83535c"
- }
- Frame {
- msec: 1984
- hash: "f73470027601a0c1a2382d5ded9e5fa6"
- }
- Frame {
- msec: 2000
- hash: "d917b18a47b4e90821cba8987492cd1f"
- }
- Frame {
- msec: 2016
- hash: "fa526c5ef57eaa210fb4d03b72c35b69"
- }
- Frame {
- msec: 2032
- hash: "15cbc226b032d5a97199735ea7a1408b"
- }
- Frame {
- msec: 2048
- hash: "6ffd2b79cf0e941a59e74bc6f9025bcb"
- }
- Frame {
- msec: 2064
- hash: "c009924bfa30153f22ab168b539494e9"
- }
- Frame {
- msec: 2080
- hash: "0525908c0302ada989e28990bac3f2ca"
- }
- Frame {
- msec: 2096
- hash: "75c1295ef99680784b2e11fb88fa1423"
- }
- Frame {
- msec: 2112
- hash: "53064c1938f08a55603a99b0db225174"
- }
- Frame {
- msec: 2128
- hash: "99d9e58697736198e0a00443d237e85b"
- }
- Frame {
- msec: 2144
- hash: "6c1e860aef983367365d53f5849ad441"
- }
- Frame {
- msec: 2160
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2176
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2192
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2208
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2224
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2240
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2256
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2272
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2288
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2304
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2320
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2336
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2352
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2368
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2384
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2400
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2416
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2432
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2448
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2464
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2480
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2496
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2512
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2528
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2544
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2560
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2576
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2592
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2608
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2624
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2640
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2656
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2672
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2688
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2704
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2720
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2736
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2752
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2768
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2784
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2800
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2816
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2832
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2848
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2864
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Mouse {
- type: 2
- button: 1
- buttons: 1
- x: 181; y: 104
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 2880
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 2896
- image: "itemlist.3.png"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 179; y: 105
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 177; y: 106
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 2912
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 174; y: 108
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 170; y: 110
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 2928
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 166; y: 112
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 160; y: 115
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 2944
- hash: "52af1b81022e8572b9123461d123197f"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 154; y: 117
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 140; y: 123
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 2960
- hash: "e1390ad02ae7a6e757df4a7af9032167"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 124; y: 127
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 3
- button: 1
- buttons: 0
- x: 124; y: 127
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 2976
- hash: "bf57f309378c956dfd70aa79a7dd97c5"
- }
- Frame {
- msec: 2992
- hash: "408b59b96ecad0541ecbb97262c2567b"
- }
- Frame {
- msec: 3008
- hash: "c52f691a0a6cf155118bdfea2dfea623"
- }
- Frame {
- msec: 3024
- hash: "9aabf0500b1272375f5f6db1bd1d7b04"
- }
- Frame {
- msec: 3040
- hash: "2e92065ca9425d1645d69c1734804518"
- }
- Frame {
- msec: 3056
- hash: "c73b2e430a0e96a660aa4447697e5adf"
- }
- Frame {
- msec: 3072
- hash: "875560b509215a869d1cad8a05f38850"
- }
- Frame {
- msec: 3088
- hash: "fd8e51cca3432f6edcf949857737095f"
- }
- Frame {
- msec: 3104
- hash: "aa5d4e65932b3ec2f5549079dfc7718d"
- }
- Frame {
- msec: 3120
- hash: "f811f3c6b022730dd68ebd7b1659ea40"
- }
- Frame {
- msec: 3136
- hash: "e51a2e41972cfc3df46a7d4375024d80"
- }
- Frame {
- msec: 3152
- hash: "275f3594a0e2cc4b6717f9f336e7e1b6"
- }
- Frame {
- msec: 3168
- hash: "9229054bb70662b12a4f7e45ac5b7a90"
- }
- Frame {
- msec: 3184
- hash: "89ff346eca0b71cad3b04a2cb8064fb0"
- }
- Frame {
- msec: 3200
- hash: "94e6ecb87a7efca6344d6d63a1e3829f"
- }
- Frame {
- msec: 3216
- hash: "bc5eb6b0eeae316ddd0b308da2cc32e2"
- }
- Frame {
- msec: 3232
- hash: "240081760f0cf2f02be4d6d2600d2bbc"
- }
- Frame {
- msec: 3248
- hash: "69b335aeb81fc2ae6173f2ec5cdc4c55"
- }
- Frame {
- msec: 3264
- hash: "10d481e57cc8cd694500d9ed6ae1f8bb"
- }
- Frame {
- msec: 3280
- hash: "6b21f71d0bedef4bbcb445a13f61e7a3"
- }
- Frame {
- msec: 3296
- hash: "aa94ebdbb4b8423aff28c95daff0baf5"
- }
- Frame {
- msec: 3312
- hash: "5f6708f615654c459f5749676fc09016"
- }
- Frame {
- msec: 3328
- hash: "8ef246d322446e7f0848b99495f89e2b"
- }
- Frame {
- msec: 3344
- hash: "c3b219bdd7710427d134402a8d3e6429"
- }
- Frame {
- msec: 3360
- hash: "3b2e2d957585fb44a7165186a146892c"
- }
- Frame {
- msec: 3376
- hash: "124da0099a7dd6fbf6dfd0ecfb09638c"
- }
- Frame {
- msec: 3392
- hash: "e4dacafba5ab5f8db53f08cef458cf42"
- }
- Frame {
- msec: 3408
- hash: "b554512bac0766063870c5b3acb1d24f"
- }
- Frame {
- msec: 3424
- hash: "bb5ea2a238920a8486263bc7450edfb4"
- }
- Frame {
- msec: 3440
- hash: "bb5ea2a238920a8486263bc7450edfb4"
- }
- Frame {
- msec: 3456
- hash: "bb5ea2a238920a8486263bc7450edfb4"
- }
- Frame {
- msec: 3472
- hash: "b554512bac0766063870c5b3acb1d24f"
- }
- Frame {
- msec: 3488
- hash: "b554512bac0766063870c5b3acb1d24f"
- }
- Frame {
- msec: 3504
- hash: "e4dacafba5ab5f8db53f08cef458cf42"
- }
- Frame {
- msec: 3520
- hash: "de7f3c83f37cc89c87009626c72e7642"
- }
- Frame {
- msec: 3536
- hash: "124da0099a7dd6fbf6dfd0ecfb09638c"
- }
- Frame {
- msec: 3552
- hash: "40204fdb7a84b86f1380224908092354"
- }
- Frame {
- msec: 3568
- hash: "ff93c3290b7d9a9743cc11d41a112a0a"
- }
- Frame {
- msec: 3584
- hash: "c3b219bdd7710427d134402a8d3e6429"
- }
- Frame {
- msec: 3600
- hash: "56e2f6b2ac103caf7ada3b56c19622c2"
- }
- Frame {
- msec: 3616
- hash: "8ef246d322446e7f0848b99495f89e2b"
- }
- Frame {
- msec: 3632
- hash: "8eb6d69d9833d0fbf87f951f489b71fe"
- }
- Frame {
- msec: 3648
- hash: "17deb6b26fc9d27d5194995c102da4ac"
- }
- Frame {
- msec: 3664
- hash: "5f6708f615654c459f5749676fc09016"
- }
- Frame {
- msec: 3680
- hash: "1734205ea5e7539b47d80c5a93ec74aa"
- }
- Frame {
- msec: 3696
- hash: "1734205ea5e7539b47d80c5a93ec74aa"
- }
- Frame {
- msec: 3712
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 3728
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 3744
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 3760
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 3776
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 3792
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 3808
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 3824
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 3840
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 3856
- image: "itemlist.4.png"
- }
- Frame {
- msec: 3872
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 3888
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 3904
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 3920
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 3936
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 3952
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 3968
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 3984
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 4000
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 4016
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 4032
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 4048
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 4064
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 4080
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Frame {
- msec: 4096
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Mouse {
- type: 2
- button: 1
- buttons: 1
- x: 31; y: 137
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4112
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 32; y: 137
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4128
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 33; y: 136
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 36; y: 135
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4144
- hash: "88143ff6c278a5433b314b551b7b8b1d"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 40; y: 134
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 46; y: 132
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4160
- hash: "f619097356671f6eb54d3b1c481e709d"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 64; y: 130
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4176
- hash: "240081760f0cf2f02be4d6d2600d2bbc"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 86; y: 126
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 110; y: 118
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 3
- button: 1
- buttons: 0
- x: 110; y: 118
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4192
- hash: "3b85c1739fdf3933d8cb0b2eaf22e6e3"
- }
- Frame {
- msec: 4208
- hash: "f811f3c6b022730dd68ebd7b1659ea40"
- }
- Frame {
- msec: 4224
- hash: "2e97a74eb9ddb1c9613c89e2d78db018"
- }
- Frame {
- msec: 4240
- hash: "7b7f5daf5eaf047e69d04b5bcb73240c"
- }
- Frame {
- msec: 4256
- hash: "1af58a2f44f1f613712d4df85e38356d"
- }
- Frame {
- msec: 4272
- hash: "1bbdda445cec7f95a189c15d7e3c77b8"
- }
- Frame {
- msec: 4288
- hash: "91d8bcfebff29d2caf526b4012daaf46"
- }
- Frame {
- msec: 4304
- hash: "71ec8c363ca6a6f7556afb70faccffe6"
- }
- Frame {
- msec: 4320
- hash: "303ebc28d09a49de52cb1adaa03872dd"
- }
- Frame {
- msec: 4336
- hash: "9402e86bf4ffa62c60b02531a3735275"
- }
- Frame {
- msec: 4352
- hash: "5652de6fb2e107d41c0c5aeacf5a3055"
- }
- Frame {
- msec: 4368
- hash: "b6a2ade6565a86b1f8e369b02e0b93f9"
- }
- Frame {
- msec: 4384
- hash: "30dd35e0b9ffa846f3cfc39edcbae511"
- }
- Frame {
- msec: 4400
- hash: "401975fb4c9a48953aec25adb593eec4"
- }
- Frame {
- msec: 4416
- hash: "71f9039c7aa9c8dc6d1de4561b1d5537"
- }
- Frame {
- msec: 4432
- hash: "e1390ad02ae7a6e757df4a7af9032167"
- }
- Frame {
- msec: 4448
- hash: "53a26f00bd49b8a9c065be99f9402d9c"
- }
- Frame {
- msec: 4464
- hash: "b6e515e9a27af23b895f5024a41ce7b3"
- }
- Frame {
- msec: 4480
- hash: "85d143505d56f53c629358b37ad11581"
- }
- Frame {
- msec: 4496
- hash: "de5cbdd848a07b78f9c5eb510cca2d3e"
- }
- Frame {
- msec: 4512
- hash: "0ad7411316031e22034c14e81ca3a806"
- }
- Frame {
- msec: 4528
- hash: "32bef6f5005ad94e29ff59165958fbdc"
- }
- Frame {
- msec: 4544
- hash: "87758dd311f91193bf1e3536c2f58525"
- }
- Frame {
- msec: 4560
- hash: "d4c34ed49317c6692d71681fcd9842b6"
- }
- Frame {
- msec: 4576
- hash: "abaa235bb946a8abaddd52981d632c2d"
- }
- Frame {
- msec: 4592
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4608
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4624
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4640
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4656
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4672
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4688
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4704
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4720
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4736
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4752
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4768
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4784
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4800
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4816
- image: "itemlist.5.png"
- }
- Frame {
- msec: 4832
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4848
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4864
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4880
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4896
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4912
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4928
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4944
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4960
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4976
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 4992
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 5008
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 5024
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 5040
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 5056
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 5072
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 5088
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 5104
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 5120
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 5136
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 5152
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 5168
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 5184
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 5200
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 5216
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Frame {
- msec: 5232
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Mouse {
- type: 2
- button: 1
- buttons: 1
- x: 17; y: 120
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 5248
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 19; y: 120
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 21; y: 120
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 5264
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 24; y: 119
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 28; y: 119
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 5280
- hash: "99f9988040a389576cb6420b5391f768"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 35; y: 119
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 44; y: 119
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 5296
- hash: "6ffd2b79cf0e941a59e74bc6f9025bcb"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 70; y: 119
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 96; y: 117
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 3
- button: 1
- buttons: 0
- x: 96; y: 117
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 5312
- hash: "4aa05d978267325ae00cb45e310a2f01"
- }
- Frame {
- msec: 5328
- hash: "b5717b311259c77a0210e26ab99dd401"
- }
- Frame {
- msec: 5344
- hash: "9b3fde82278fa2f0caaf64cf23bb6530"
- }
- Frame {
- msec: 5360
- hash: "e7795610115593e78bb32f7bcc0ae2eb"
- }
- Frame {
- msec: 5376
- hash: "0dc7c4c161e0b3c3d176e5e6bc08a805"
- }
- Frame {
- msec: 5392
- hash: "7c2b0307c4040d8d9e88425b3bf3fb70"
- }
- Frame {
- msec: 5408
- hash: "06ce7db518da042e04dd3f79b7220974"
- }
- Frame {
- msec: 5424
- hash: "7aeec517e845c1c5012ed63be6bbd006"
- }
- Frame {
- msec: 5440
- hash: "53e9d5a0098f2e91bbea45360b876607"
- }
- Frame {
- msec: 5456
- hash: "22a6c7f3dcb5a36592909783b2466c8d"
- }
- Frame {
- msec: 5472
- hash: "9d8da9199efebb95f56e5d4ebc9a585e"
- }
- Frame {
- msec: 5488
- hash: "c553400402f233a6246be4e544b433ae"
- }
- Frame {
- msec: 5504
- hash: "c2e41a54c03340832db93f6f88393f00"
- }
- Frame {
- msec: 5520
- hash: "3622a619a99c939e96636a86c4428ba3"
- }
- Frame {
- msec: 5536
- hash: "e65d5e6c756e750e6d98096fe211465c"
- }
- Frame {
- msec: 5552
- hash: "cabd6d30b1f4e42b38b73803aae6d5be"
- }
- Frame {
- msec: 5568
- hash: "68d443f16c16821ffc9ca68b17c76034"
- }
- Frame {
- msec: 5584
- hash: "a68b1bc6c2963ee92c3a45f500667b3b"
- }
- Frame {
- msec: 5600
- hash: "805319ac7ca842feb3649e92f8b5b72f"
- }
- Frame {
- msec: 5616
- hash: "fd8d3f5688b1806998c6087e18c6c730"
- }
- Frame {
- msec: 5632
- hash: "b135c8c9975f4d45d2054cf31d0b1fe1"
- }
- Frame {
- msec: 5648
- hash: "40382f644935dc4e99353fa29c3e0b21"
- }
- Frame {
- msec: 5664
- hash: "aa32e4c20c6a43c4ef7991a9418e57fe"
- }
- Frame {
- msec: 5680
- hash: "b8db9180b4ad15fdbd25a4e974512f92"
- }
- Frame {
- msec: 5696
- hash: "127871a98123b7bd44f4c38f27cbc836"
- }
- Frame {
- msec: 5712
- hash: "35fe67a91e50f8ebc896451b39cb8f1c"
- }
- Frame {
- msec: 5728
- hash: "35fe67a91e50f8ebc896451b39cb8f1c"
- }
- Frame {
- msec: 5744
- hash: "0b7fc796f818bddcada99e9981f1cce0"
- }
- Frame {
- msec: 5760
- hash: "35fe67a91e50f8ebc896451b39cb8f1c"
- }
- Frame {
- msec: 5776
- image: "itemlist.6.png"
- }
- Frame {
- msec: 5792
- hash: "35fe67a91e50f8ebc896451b39cb8f1c"
- }
- Frame {
- msec: 5808
- hash: "2311ce1a83a43619ab7ce537a2b948e1"
- }
- Frame {
- msec: 5824
- hash: "2311ce1a83a43619ab7ce537a2b948e1"
- }
- Frame {
- msec: 5840
- hash: "127871a98123b7bd44f4c38f27cbc836"
- }
- Frame {
- msec: 5856
- hash: "b8db9180b4ad15fdbd25a4e974512f92"
- }
- Frame {
- msec: 5872
- hash: "65af7a4a4aea5a983ea3fb9324e74256"
- }
- Frame {
- msec: 5888
- hash: "aa32e4c20c6a43c4ef7991a9418e57fe"
- }
- Frame {
- msec: 5904
- hash: "b3e92eb4cfe548b92ac526066dfc7d23"
- }
- Frame {
- msec: 5920
- hash: "39fcad34db24d591e24c8ae1c7094d5b"
- }
- Frame {
- msec: 5936
- hash: "165b91b850bcb8dd1d9b1eaa6f81be57"
- }
- Frame {
- msec: 5952
- hash: "f34d2248999f5f51210064315d631f60"
- }
- Frame {
- msec: 5968
- hash: "f34d2248999f5f51210064315d631f60"
- }
- Frame {
- msec: 5984
- hash: "b135c8c9975f4d45d2054cf31d0b1fe1"
- }
- Frame {
- msec: 6000
- hash: "b135c8c9975f4d45d2054cf31d0b1fe1"
- }
- Frame {
- msec: 6016
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6032
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6048
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6064
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6080
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6096
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6112
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6128
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6144
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6160
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6176
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6192
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6208
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6224
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6240
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6256
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6272
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6288
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6304
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6320
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6336
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6352
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6368
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6384
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6400
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6416
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6432
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6448
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6464
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6480
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6496
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6512
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6528
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6544
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6560
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6576
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6592
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6608
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6624
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6640
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6656
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6672
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6688
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6704
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6720
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6736
- image: "itemlist.7.png"
- }
- Frame {
- msec: 6752
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6768
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6784
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6800
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6816
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6832
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6848
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6864
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6880
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6896
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6912
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6928
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6944
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6960
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6976
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 6992
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 7008
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 7024
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 7040
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 7056
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 7072
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 7088
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 7104
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 7120
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 7136
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 7152
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 7168
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 7184
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 7200
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 7216
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 7232
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 7248
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 7264
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 7280
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 7296
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
- Frame {
- msec: 7312
- hash: "bf47cc398a702dd17c8efebb3d2f8073"
- }
-}
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.0.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.0.png
deleted file mode 100644
index 71926d71d4..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/listview.0.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.1.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.1.png
deleted file mode 100644
index 80f82e4178..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/listview.1.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.2.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.2.png
deleted file mode 100644
index 61501bb17e..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/listview.2.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.3.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.3.png
deleted file mode 100644
index 51c4eb137c..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/listview.3.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.4.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.4.png
deleted file mode 100644
index 81e00ed6bf..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/listview.4.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.5.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.5.png
deleted file mode 100644
index d1f06fa03e..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/listview.5.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.6.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.6.png
deleted file mode 100644
index 9e6e29c62a..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/listview.6.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.7.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.7.png
deleted file mode 100644
index 9e7bd6eb31..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/listview.7.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.8.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.8.png
deleted file mode 100644
index 9e7bd6eb31..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/listview.8.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.qml b/tests/auto/declarative/qmlvisual/ListView/data/listview.qml
deleted file mode 100644
index b1ffe8f5a8..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/data/listview.qml
+++ /dev/null
@@ -1,2227 +0,0 @@
-import Qt.VisualTest 4.7
-
-VisualTest {
- Frame {
- msec: 0
- }
- Frame {
- msec: 16
- image: "listview.0.png"
- }
- Frame {
- msec: 32
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 48
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 64
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 80
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 96
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 112
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 128
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 144
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 160
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 176
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 192
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 208
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 224
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 240
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 256
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 272
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 288
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 304
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 320
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 336
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 352
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 368
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 384
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 400
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 416
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Key {
- type: 6
- key: 16777237
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 432
- hash: "3b88645092be28037fca4a6034f5b2f7"
- }
- Frame {
- msec: 448
- hash: "435ac0668ad4d0e196eb040d385053cb"
- }
- Frame {
- msec: 464
- hash: "e9532fe1acc1c27a2119e6dde3e01637"
- }
- Frame {
- msec: 480
- hash: "9c757feaf5a8d1e88c659fca97e3b7b2"
- }
- Key {
- type: 7
- key: 16777237
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 496
- hash: "ccc7785a45a41615db01580835a4638e"
- }
- Frame {
- msec: 512
- hash: "11ad92022bcd5d3fbd28ffb9f51c69eb"
- }
- Frame {
- msec: 528
- hash: "a8a94e1f95216864c368b8c3d0ae682b"
- }
- Frame {
- msec: 544
- hash: "d83e213d35e7fcff2580b4e197547f24"
- }
- Frame {
- msec: 560
- hash: "9e5a57fabdc443e395cacbaf6e0c9bef"
- }
- Frame {
- msec: 576
- hash: "9e5a57fabdc443e395cacbaf6e0c9bef"
- }
- Frame {
- msec: 592
- hash: "9e5a57fabdc443e395cacbaf6e0c9bef"
- }
- Frame {
- msec: 608
- hash: "9e5a57fabdc443e395cacbaf6e0c9bef"
- }
- Key {
- type: 6
- key: 16777237
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 624
- hash: "9e5a57fabdc443e395cacbaf6e0c9bef"
- }
- Frame {
- msec: 640
- hash: "0e9c577fa86d9b3734da0d50040624e0"
- }
- Frame {
- msec: 656
- hash: "834cf83f0f8d613191cac775b5737664"
- }
- Frame {
- msec: 672
- hash: "495ea7650b2ae45f9afd7f9f6ecdd793"
- }
- Frame {
- msec: 688
- hash: "55c761ccee6543bb3b9564bb813df58e"
- }
- Frame {
- msec: 704
- hash: "e29e5f86cb3b1fb5ec77fde696024812"
- }
- Key {
- type: 7
- key: 16777237
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 720
- hash: "f24b7d5a8f5ab03460505d6203269d1b"
- }
- Frame {
- msec: 736
- hash: "893473965efe9e0540b197cbaa3f765d"
- }
- Frame {
- msec: 752
- hash: "a541b7be2f370f948048b2101b037ab7"
- }
- Frame {
- msec: 768
- hash: "a541b7be2f370f948048b2101b037ab7"
- }
- Key {
- type: 6
- key: 16777237
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 784
- hash: "da065f1e72883a45241630b96ee5b1f8"
- }
- Frame {
- msec: 800
- hash: "e97f78604c0c6d468c8dd225642e2ebd"
- }
- Frame {
- msec: 816
- hash: "7b9d4b14eedfa4ff10dd7e3747c4a7f5"
- }
- Frame {
- msec: 832
- hash: "6d55ba6287c720614854d36bb681a9f3"
- }
- Key {
- type: 7
- key: 16777237
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 848
- hash: "3e7a44811f59bfb81de2f4f884a7af17"
- }
- Frame {
- msec: 864
- hash: "101113a7723b9d09275f66152b82142f"
- }
- Frame {
- msec: 880
- hash: "0044e068522f912630868476f8bf49f8"
- }
- Frame {
- msec: 896
- hash: "92065f9f170ee09abf67f0d0c7a1b6ba"
- }
- Frame {
- msec: 912
- hash: "92065f9f170ee09abf67f0d0c7a1b6ba"
- }
- Frame {
- msec: 928
- hash: "92065f9f170ee09abf67f0d0c7a1b6ba"
- }
- Key {
- type: 6
- key: 16777237
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 944
- hash: "92065f9f170ee09abf67f0d0c7a1b6ba"
- }
- Frame {
- msec: 960
- hash: "d193987835dc12e4391e55ff5fee4ce1"
- }
- Frame {
- msec: 976
- image: "listview.1.png"
- }
- Key {
- type: 7
- key: 16777237
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 992
- hash: "9b07b6861a97d0871ed89369ff7449da"
- }
- Frame {
- msec: 1008
- hash: "7d95daf35c1823ea7187162b62010c57"
- }
- Frame {
- msec: 1024
- hash: "cc1e70fd1235d50ca291580bef1d6fc4"
- }
- Frame {
- msec: 1040
- hash: "c8250f4cf69642e78523412b7b75501c"
- }
- Frame {
- msec: 1056
- hash: "c57e421c803e8bfa1a85409cbb858829"
- }
- Key {
- type: 6
- key: 16777237
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 1072
- hash: "19b429a90d9877e62a7dee53ebf01fb2"
- }
- Frame {
- msec: 1088
- hash: "7c810f174bed3826016272515df2d525"
- }
- Frame {
- msec: 1104
- hash: "9034cf480bda0d8b55aa6c43fc96b23d"
- }
- Frame {
- msec: 1120
- hash: "f62697a1f4e4df2869c14462a0d514fd"
- }
- Key {
- type: 7
- key: 16777237
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 1136
- hash: "c878f53b338d1ce332973193b0fa4b86"
- }
- Frame {
- msec: 1152
- hash: "5d26f27061b319c391961dc30d985593"
- }
- Frame {
- msec: 1168
- hash: "e038ae877e8dddd3d99bf97475f59b3d"
- }
- Frame {
- msec: 1184
- hash: "f44adc5e46d320c62095e1285ca8848b"
- }
- Key {
- type: 6
- key: 16777237
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 1200
- hash: "17f6b13e0556ac07dc527a9013a307a1"
- }
- Frame {
- msec: 1216
- hash: "70a1cc3b6dd3be4e30bb6763344fb980"
- }
- Frame {
- msec: 1232
- hash: "097c37d2243a27b8e800b5d4ec94b2e3"
- }
- Key {
- type: 7
- key: 16777237
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 1248
- hash: "15839227c002b1c71eb516f6653a7531"
- }
- Frame {
- msec: 1264
- hash: "f4a8103ef9010c651368d325fe9eee98"
- }
- Frame {
- msec: 1280
- hash: "d158ec1c83719c58c1d0a2e4cc90998f"
- }
- Frame {
- msec: 1296
- hash: "6f66a44f5dc3fe150db2291b8cbc7327"
- }
- Frame {
- msec: 1312
- hash: "8a016eac5befb215a157f7fe5bc743de"
- }
- Frame {
- msec: 1328
- hash: "8a016eac5befb215a157f7fe5bc743de"
- }
- Key {
- type: 6
- key: 16777237
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 1344
- hash: "807129a4c578b1a5f0d3d84686eb0553"
- }
- Frame {
- msec: 1360
- hash: "f9f2da990518048f0b050cc193567a20"
- }
- Frame {
- msec: 1376
- hash: "762de7b1f4e56df6d7a245a23446884b"
- }
- Key {
- type: 7
- key: 16777237
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 1392
- hash: "84ba7354badc3dca92974933c3610010"
- }
- Frame {
- msec: 1408
- hash: "36c3018870d74cff638d00acd03a0cf0"
- }
- Frame {
- msec: 1424
- hash: "82b756a14eb0e802cd3e2d2d2a07f28e"
- }
- Frame {
- msec: 1440
- hash: "74af1c12613130dc53533fe1178d5534"
- }
- Frame {
- msec: 1456
- hash: "c32818b0ba24f11295580d1ccffffdc0"
- }
- Key {
- type: 6
- key: 16777237
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 1472
- hash: "b858be109fac6852234bf1db161e515b"
- }
- Frame {
- msec: 1488
- hash: "9b3f8cffd3e79241d8a3b1f7d80790db"
- }
- Frame {
- msec: 1504
- hash: "840dc72aabc4a9b28bae641354676324"
- }
- Frame {
- msec: 1520
- hash: "c60bfd5cc8b26a841035db29baba5dab"
- }
- Key {
- type: 7
- key: 16777237
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 1536
- hash: "88d80dc8b0d968aa718ff464e507f53b"
- }
- Frame {
- msec: 1552
- hash: "f7ffc82d3448c415b4997401fb61b96b"
- }
- Frame {
- msec: 1568
- hash: "df8e9a09752fe2b2eff9184ba8e88ef1"
- }
- Frame {
- msec: 1584
- hash: "97330e949a609f5f33832dd17e0c3716"
- }
- Frame {
- msec: 1600
- hash: "97330e949a609f5f33832dd17e0c3716"
- }
- Key {
- type: 6
- key: 16777237
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 1616
- hash: "97330e949a609f5f33832dd17e0c3716"
- }
- Frame {
- msec: 1632
- hash: "97330e949a609f5f33832dd17e0c3716"
- }
- Frame {
- msec: 1648
- hash: "97330e949a609f5f33832dd17e0c3716"
- }
- Key {
- type: 7
- key: 16777237
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 1664
- hash: "97330e949a609f5f33832dd17e0c3716"
- }
- Frame {
- msec: 1680
- hash: "97330e949a609f5f33832dd17e0c3716"
- }
- Frame {
- msec: 1696
- hash: "97330e949a609f5f33832dd17e0c3716"
- }
- Frame {
- msec: 1712
- hash: "97330e949a609f5f33832dd17e0c3716"
- }
- Frame {
- msec: 1728
- hash: "97330e949a609f5f33832dd17e0c3716"
- }
- Frame {
- msec: 1744
- hash: "97330e949a609f5f33832dd17e0c3716"
- }
- Key {
- type: 6
- key: 16777237
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 1760
- hash: "97330e949a609f5f33832dd17e0c3716"
- }
- Frame {
- msec: 1776
- hash: "97330e949a609f5f33832dd17e0c3716"
- }
- Key {
- type: 7
- key: 16777237
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 1792
- hash: "97330e949a609f5f33832dd17e0c3716"
- }
- Frame {
- msec: 1808
- hash: "97330e949a609f5f33832dd17e0c3716"
- }
- Frame {
- msec: 1824
- hash: "97330e949a609f5f33832dd17e0c3716"
- }
- Frame {
- msec: 1840
- hash: "97330e949a609f5f33832dd17e0c3716"
- }
- Frame {
- msec: 1856
- hash: "97330e949a609f5f33832dd17e0c3716"
- }
- Frame {
- msec: 1872
- hash: "97330e949a609f5f33832dd17e0c3716"
- }
- Key {
- type: 6
- key: 16777235
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 1888
- hash: "97330e949a609f5f33832dd17e0c3716"
- }
- Frame {
- msec: 1904
- hash: "15e45e1f64438d7c31e79a9602e1db7a"
- }
- Frame {
- msec: 1920
- hash: "02f34b6fde613c7c5928285bf81837d6"
- }
- Frame {
- msec: 1936
- image: "listview.2.png"
- }
- Key {
- type: 7
- key: 16777235
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 1952
- hash: "33091359f9e6f21a14bf415d32d4d3b1"
- }
- Frame {
- msec: 1968
- hash: "0fdcffa304f3eadde5cd7866d0a74e72"
- }
- Frame {
- msec: 1984
- hash: "024539dbf8e66f1ba7d5d8c91bd278f0"
- }
- Frame {
- msec: 2000
- hash: "4900babcc0a7bbd622a72590dcb0eea4"
- }
- Frame {
- msec: 2016
- hash: "d6f68d576fe46bb832accf5e9e590f7e"
- }
- Key {
- type: 6
- key: 16777235
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 2032
- hash: "5a54bcb9a59268d70a2bb99bd32395be"
- }
- Frame {
- msec: 2048
- hash: "72fbb18da8c5ef3e98390796dad31390"
- }
- Frame {
- msec: 2064
- hash: "ac073b398e3d50ef10c92d8e6b4b3fa0"
- }
- Frame {
- msec: 2080
- hash: "41e38d866d65bf1d42448b07a133cd93"
- }
- Key {
- type: 7
- key: 16777235
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 2096
- hash: "c45310b94cd2ff276e97be1706e1d432"
- }
- Frame {
- msec: 2112
- hash: "aefc6994644d266d4be0310f01c28be7"
- }
- Frame {
- msec: 2128
- hash: "f07bcb1d8ad693e1ddd79bf651126554"
- }
- Frame {
- msec: 2144
- hash: "62ff227caab71d2d98daf0da302ec796"
- }
- Key {
- type: 6
- key: 16777235
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 2160
- hash: "72350eeeaefd043354c82ca2039cff59"
- }
- Frame {
- msec: 2176
- hash: "d89f288f0b231b4ec4a634b3856ecf8e"
- }
- Frame {
- msec: 2192
- hash: "bc7d7e2253651cb3ea1cdebf9f188ae0"
- }
- Frame {
- msec: 2208
- hash: "7c89cdb693489708fe2db327ae66d083"
- }
- Frame {
- msec: 2224
- hash: "8ca778c1812ede19545c3c70020faa67"
- }
- Key {
- type: 7
- key: 16777235
- modifiers: 0
- text: ""
- autorep: false
- count: 1
- }
- Frame {
- msec: 2240
- hash: "bd50cd99f177eb3f70b2ffad9f7a49e1"
- }
- Frame {
- msec: 2256
- hash: "b439c3576cad17689e7b6b134bb04e14"
- }
- Frame {
- msec: 2272
- hash: "9489c0e1e8cc5675bbc42b78e567eab6"
- }
- Frame {
- msec: 2288
- hash: "9489c0e1e8cc5675bbc42b78e567eab6"
- }
- Frame {
- msec: 2304
- hash: "9489c0e1e8cc5675bbc42b78e567eab6"
- }
- Frame {
- msec: 2320
- hash: "9489c0e1e8cc5675bbc42b78e567eab6"
- }
- Frame {
- msec: 2336
- hash: "9489c0e1e8cc5675bbc42b78e567eab6"
- }
- Frame {
- msec: 2352
- hash: "9489c0e1e8cc5675bbc42b78e567eab6"
- }
- Frame {
- msec: 2368
- hash: "9489c0e1e8cc5675bbc42b78e567eab6"
- }
- Frame {
- msec: 2384
- hash: "9489c0e1e8cc5675bbc42b78e567eab6"
- }
- Frame {
- msec: 2400
- hash: "9489c0e1e8cc5675bbc42b78e567eab6"
- }
- Frame {
- msec: 2416
- hash: "9489c0e1e8cc5675bbc42b78e567eab6"
- }
- Mouse {
- type: 2
- button: 1
- buttons: 1
- x: 488; y: 56
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 2432
- hash: "9489c0e1e8cc5675bbc42b78e567eab6"
- }
- Frame {
- msec: 2448
- hash: "9489c0e1e8cc5675bbc42b78e567eab6"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 489; y: 56
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 2464
- hash: "9489c0e1e8cc5675bbc42b78e567eab6"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 490; y: 59
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 491; y: 64
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 2480
- hash: "9489c0e1e8cc5675bbc42b78e567eab6"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 494; y: 74
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 497; y: 90
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 2496
- hash: "6502b3a17af7ebca92d4794f0c2a62ac"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 499; y: 108
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 501; y: 126
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 2512
- hash: "8a7ac12d59126b2784fd0af8d6b762a5"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 505; y: 170
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 2528
- hash: "12fa9c4e2d6681f3a0643d8243d83e23"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 509; y: 214
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 2544
- hash: "ccf18952f7c9686bd12fa196af9919e6"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 516; y: 289
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 2560
- hash: "70d654eecaf2163971596a503d2925a0"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 518; y: 316
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 3
- button: 1
- buttons: 0
- x: 518; y: 316
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 2576
- hash: "01ef888104f290f25612970a91e64620"
- }
- Frame {
- msec: 2592
- hash: "25b730c7c126875078c64cce118f6277"
- }
- Frame {
- msec: 2608
- hash: "68f3366932fed9156bf68dce6660b2a8"
- }
- Frame {
- msec: 2624
- hash: "9f4be0b58c46035a11c5b80ec60618d5"
- }
- Frame {
- msec: 2640
- hash: "6d38a4eaa2a41c57599cca381957ec4c"
- }
- Frame {
- msec: 2656
- hash: "1061db26c9080067bf121eb1d164a3f3"
- }
- Frame {
- msec: 2672
- hash: "c78d271711dc8f13fb48b41871249141"
- }
- Frame {
- msec: 2688
- hash: "c5825611f6c429fddd8c20495507ea5f"
- }
- Frame {
- msec: 2704
- hash: "9888b608bcf80496a3fe8848be4e3629"
- }
- Frame {
- msec: 2720
- hash: "9995d6ba039045d94903d5095b018ca8"
- }
- Frame {
- msec: 2736
- hash: "f8ea705b4710b3ffb11c2fe08ccccda2"
- }
- Frame {
- msec: 2752
- hash: "7354c2fcabdede9fb1ee823ce098da3b"
- }
- Frame {
- msec: 2768
- hash: "0d6beff960fa26771f09748356accedb"
- }
- Frame {
- msec: 2784
- hash: "0720a8a1ed85344a1de6682b3aefd502"
- }
- Frame {
- msec: 2800
- hash: "0245488740e13dbfc836b587b2bdf917"
- }
- Frame {
- msec: 2816
- hash: "25c4fcdd85017d18df7e83c15f1accbc"
- }
- Frame {
- msec: 2832
- hash: "51192ae0eae814f3dead9d949e2e4676"
- }
- Frame {
- msec: 2848
- hash: "ddbe6b273882c6018c01e0a4480b1adb"
- }
- Frame {
- msec: 2864
- hash: "bb840a0677114b67d9b08589e8a8192b"
- }
- Frame {
- msec: 2880
- hash: "5387de4152cac542735a4debf997b56f"
- }
- Frame {
- msec: 2896
- image: "listview.3.png"
- }
- Frame {
- msec: 2912
- hash: "f5c99d06e0b3055374ee4c6bf3e634f4"
- }
- Frame {
- msec: 2928
- hash: "18fe01fadf4c5acbd369f4450db1efa6"
- }
- Frame {
- msec: 2944
- hash: "bed738f1883a76c5169dd2726456b9ea"
- }
- Frame {
- msec: 2960
- hash: "c80c45be3189269d8edc5be22db7227d"
- }
- Frame {
- msec: 2976
- hash: "3dcb08dd8ac8f083ad6aacbafaae05f4"
- }
- Frame {
- msec: 2992
- hash: "38850ecc15cdcd55b758f94e8ac7fe55"
- }
- Mouse {
- type: 2
- button: 1
- buttons: 1
- x: 517; y: 241
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3008
- hash: "033c44c51b8ab8f1555e153e20a80699"
- }
- Frame {
- msec: 3024
- hash: "b6dc510369c679a028bb059e74796f6c"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 518; y: 240
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 519; y: 239
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3040
- hash: "f3606887493ee9c0db86b1c6cc6fef6d"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 524; y: 229
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3056
- hash: "79975f978ebf4556381d08b500dcab72"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 530; y: 204
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3072
- hash: "1345974969c1a56c4c14c74301985289"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 532; y: 167
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3088
- hash: "fd623f2bf161f326da6dec8b5d8bf16f"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 530; y: 117
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 3
- button: 1
- buttons: 0
- x: 530; y: 117
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3104
- hash: "f1dfb47c5d4449e6cf7e2e6a2e86b1c5"
- }
- Frame {
- msec: 3120
- hash: "26b31d08a1d50614771bec0458a2776b"
- }
- Frame {
- msec: 3136
- hash: "dd017925e34f942c279ceb18b5e222da"
- }
- Frame {
- msec: 3152
- hash: "be400b4ad1d9a1ccca56b8ff6b809272"
- }
- Frame {
- msec: 3168
- hash: "4a4faa75155bb2c260f3a35675bd113e"
- }
- Frame {
- msec: 3184
- hash: "3884c5d0d4c127876ba92a7b3a416339"
- }
- Frame {
- msec: 3200
- hash: "b3d15196484410e24084b0f0d8fd683f"
- }
- Frame {
- msec: 3216
- hash: "ed636ae433d185338ddbf7bffae731e1"
- }
- Frame {
- msec: 3232
- hash: "0e1f352c163ad8fe852c2e4857881d2f"
- }
- Frame {
- msec: 3248
- hash: "3c3b44481a6c2330a4a03076e35055f4"
- }
- Frame {
- msec: 3264
- hash: "6ea3210a929774aea84a7beb4a784842"
- }
- Frame {
- msec: 3280
- hash: "74dd747f9a64b19e5c5230c90ad3b642"
- }
- Frame {
- msec: 3296
- hash: "c02be4ebefd19f4c5e864e8bbab7c13e"
- }
- Frame {
- msec: 3312
- hash: "ce661af9085c833ec7d1fd66ebe67649"
- }
- Frame {
- msec: 3328
- hash: "4bf921874cfdc1b7d14e3a110b9e70a1"
- }
- Frame {
- msec: 3344
- hash: "f3e9cf8ac9e109e88d8c426fdcee28a9"
- }
- Frame {
- msec: 3360
- hash: "aa718a37f7ccf655d176adb799b5ddfb"
- }
- Frame {
- msec: 3376
- hash: "aa114a9676af508b4a106b21f7a2ed10"
- }
- Frame {
- msec: 3392
- hash: "a5bbbaebb61b83384f5be82a9c3181ba"
- }
- Frame {
- msec: 3408
- hash: "83deebf650b192de7c8a764d5379eeb4"
- }
- Frame {
- msec: 3424
- hash: "5b433e1f5b97b39b6e86c837f0b91f2b"
- }
- Frame {
- msec: 3440
- hash: "b5236be4e416f89a91eda7afbd75fc63"
- }
- Frame {
- msec: 3456
- hash: "1713477f5484a1b35686f2f4bff27612"
- }
- Frame {
- msec: 3472
- hash: "77f91f90744a23bbe172629f311d1a4e"
- }
- Frame {
- msec: 3488
- hash: "3963753a90d6cbf74bc21c9d06f4227b"
- }
- Frame {
- msec: 3504
- hash: "7f64804cd07a0ae63d0e3a1b9f8f8a84"
- }
- Frame {
- msec: 3520
- hash: "9ae6bc952da97239bfee88633637aeb7"
- }
- Frame {
- msec: 3536
- hash: "ba34cd0d57d5d027ad6c2de102676399"
- }
- Frame {
- msec: 3552
- hash: "c49632f9369aa901fcb702e76295c1e8"
- }
- Frame {
- msec: 3568
- hash: "3adab59e06a635a033564dfc8edc4877"
- }
- Frame {
- msec: 3584
- hash: "67643cbfb3c9864b7447a9a8e316b251"
- }
- Frame {
- msec: 3600
- hash: "d04d288cbf89e1ad3bbf25ffebd7a382"
- }
- Frame {
- msec: 3616
- hash: "e6c4d34b9b3de464ec0dcf8719b86313"
- }
- Frame {
- msec: 3632
- hash: "f73462d0fe19cbbd771f9f78d7bc4384"
- }
- Frame {
- msec: 3648
- hash: "6369f075a492240aee36eae8dcb2ace5"
- }
- Frame {
- msec: 3664
- hash: "1e9424a3b93833f8ae855c5f7877679a"
- }
- Frame {
- msec: 3680
- hash: "da274c1ae57d217ef4515326d32646b4"
- }
- Frame {
- msec: 3696
- hash: "1cbe684ba95e6ef635873f746e942f3d"
- }
- Frame {
- msec: 3712
- hash: "228e13c1d3dea6e666637de7cedd6dd4"
- }
- Frame {
- msec: 3728
- hash: "a3f8fec49fb88652e9339b621ea8b972"
- }
- Mouse {
- type: 2
- button: 1
- buttons: 1
- x: 487; y: 34
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3744
- hash: "7c3eb16bf4f66d2b9889c9d80aaae8b2"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 488; y: 40
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3760
- hash: "1825d33eb9ae94a63d334d93e07ce9af"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 489; y: 49
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3776
- hash: "306652a5a179cf23ee87c10571814f53"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 490; y: 55
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3792
- hash: "3d3ba7cd968a1f91f7534cabd7cc034b"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 490; y: 60
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3808
- hash: "862f70151938a5d27db37a9f5dd53faa"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 491; y: 64
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3824
- hash: "92b9283fa8b5642ce9bd14d875a12b75"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 491; y: 72
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3840
- hash: "294e6961316b028201657ab6b244559f"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 493; y: 93
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3856
- image: "listview.4.png"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 493; y: 123
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3872
- hash: "6cdd764ee39789307e5e313bfbbb7765"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 494; y: 141
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 3
- button: 1
- buttons: 0
- x: 494; y: 141
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 3888
- hash: "a88656d49e4636b18c4f6f4a0ab943d6"
- }
- Frame {
- msec: 3904
- hash: "f1ec9a65d5f8d2020db1b70bcd419417"
- }
- Frame {
- msec: 3920
- hash: "ca7d3d7d26445d13acd7fe4a2c5d1d4d"
- }
- Frame {
- msec: 3936
- hash: "90016f51541a15ba4b6265f6843a2998"
- }
- Frame {
- msec: 3952
- hash: "bdb992552a5c5707ddb372631f72e6a3"
- }
- Frame {
- msec: 3968
- hash: "af69ed47f0f40648d55af10c87866805"
- }
- Frame {
- msec: 3984
- hash: "33e77562bdf839ca1e969b918d90a07b"
- }
- Frame {
- msec: 4000
- hash: "2001b5ca444808a79c49adc9d03c960e"
- }
- Frame {
- msec: 4016
- hash: "e4186283e5fe0c1efb29eca6f59e9079"
- }
- Frame {
- msec: 4032
- hash: "dab82d0bbba66df3297712b42f74f25a"
- }
- Frame {
- msec: 4048
- hash: "b180ad3acdfd736276ef4d1de040bb55"
- }
- Frame {
- msec: 4064
- hash: "577445b0e4d6f8079830c2b87ce5829d"
- }
- Frame {
- msec: 4080
- hash: "45fffe51376abef4cb28842b392ab0b7"
- }
- Frame {
- msec: 4096
- hash: "fc14e3b2d16e1f078d223876ef71c81e"
- }
- Frame {
- msec: 4112
- hash: "4ef2b65280a00a6a4e66185f41479aef"
- }
- Frame {
- msec: 4128
- hash: "131181ce7ff2f4d4e69823fcb7a20755"
- }
- Frame {
- msec: 4144
- hash: "8e6db058e96dad9c4963b881083ab9bf"
- }
- Frame {
- msec: 4160
- hash: "e2d407b6dff40625790d4fd9e599b374"
- }
- Frame {
- msec: 4176
- hash: "631fe708fdcb1e4f4ea89b10da5db623"
- }
- Frame {
- msec: 4192
- hash: "e11831f37a3a1da78cbdc7604ddccd68"
- }
- Mouse {
- type: 2
- button: 1
- buttons: 1
- x: 491; y: 193
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4208
- hash: "c2dccc4e890b2302edd413dcdb87b50b"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 491; y: 189
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4224
- hash: "b4f6a6650dd779c8ad8696c23f44411a"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 493; y: 187
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4240
- hash: "ad913e53e63c030ffdf4560766722760"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 494; y: 182
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 495; y: 180
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4256
- hash: "ef31f8a4d5bde5a2e308d19ee6d5e759"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 496; y: 174
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4272
- hash: "3ba07527f66e8bea5a8fb7647b0b4f3f"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 496; y: 168
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4288
- hash: "70e5fe656f5fd843383964825690b678"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 497; y: 159
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 497; y: 156
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4304
- hash: "b7d8738be4cd6caa63dbecdb0f810a2f"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 497; y: 147
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4320
- hash: "d6312191f9d7bbddc07f9253d8a93469"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 497; y: 139
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4336
- hash: "b182da64886cf4f444296e5fde26701e"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 497; y: 128
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4352
- hash: "ebefef14b6fb990e0c6900884528bbd3"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 497; y: 120
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4368
- hash: "9a3451ed091b1bb6b975a9c5506b1ea4"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 497; y: 117
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4384
- hash: "04290d8d62436c8a812f886e0a56ec1b"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 498; y: 114
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4400
- hash: "eaaf9ea1d7fcf4a2a9dd58b1b5bb3cae"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 498; y: 112
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4416
- hash: "7ca8e3d76cf913d85f84f0b96acde829"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 498; y: 110
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4432
- hash: "7cfef56b24a552c6d4ecb3d0b88a1d08"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 498; y: 109
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 498; y: 108
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4448
- hash: "d032b257259810b4fe514c63ca5c9e4b"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 498; y: 106
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4464
- hash: "568f6a57e6f1644b0dc245d03a1d7b85"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 499; y: 105
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4480
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Frame {
- msec: 4496
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Frame {
- msec: 4512
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Frame {
- msec: 4528
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Frame {
- msec: 4544
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Frame {
- msec: 4560
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Frame {
- msec: 4576
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Frame {
- msec: 4592
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Frame {
- msec: 4608
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Frame {
- msec: 4624
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Frame {
- msec: 4640
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Frame {
- msec: 4656
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Frame {
- msec: 4672
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Frame {
- msec: 4688
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Frame {
- msec: 4704
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Frame {
- msec: 4720
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Frame {
- msec: 4736
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Frame {
- msec: 4752
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Frame {
- msec: 4768
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Frame {
- msec: 4784
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Frame {
- msec: 4800
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Frame {
- msec: 4816
- image: "listview.5.png"
- }
- Frame {
- msec: 4832
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Frame {
- msec: 4848
- hash: "5cb4cf2c527d821db2a5072dd3702653"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 499; y: 106
- modifiers: 0
- sendToViewport: true
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 498; y: 107
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4864
- hash: "d48ecbd0661e08b2117fe2fd96ffeb2c"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 497; y: 110
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4880
- hash: "7cfef56b24a552c6d4ecb3d0b88a1d08"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 496; y: 113
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4896
- hash: "5b12e9d17d9d464b055601db9cf0da44"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 495; y: 115
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4912
- hash: "25333e1f0cc9cfc664fd7369af544c06"
- }
- Mouse {
- type: 5
- button: 0
- buttons: 1
- x: 494; y: 117
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 4928
- hash: "04290d8d62436c8a812f886e0a56ec1b"
- }
- Frame {
- msec: 4944
- hash: "04290d8d62436c8a812f886e0a56ec1b"
- }
- Frame {
- msec: 4960
- hash: "04290d8d62436c8a812f886e0a56ec1b"
- }
- Frame {
- msec: 4976
- hash: "04290d8d62436c8a812f886e0a56ec1b"
- }
- Frame {
- msec: 4992
- hash: "04290d8d62436c8a812f886e0a56ec1b"
- }
- Frame {
- msec: 5008
- hash: "04290d8d62436c8a812f886e0a56ec1b"
- }
- Frame {
- msec: 5024
- hash: "04290d8d62436c8a812f886e0a56ec1b"
- }
- Frame {
- msec: 5040
- hash: "04290d8d62436c8a812f886e0a56ec1b"
- }
- Frame {
- msec: 5056
- hash: "04290d8d62436c8a812f886e0a56ec1b"
- }
- Mouse {
- type: 3
- button: 1
- buttons: 0
- x: 494; y: 117
- modifiers: 0
- sendToViewport: true
- }
- Frame {
- msec: 5072
- hash: "04290d8d62436c8a812f886e0a56ec1b"
- }
- Frame {
- msec: 5088
- hash: "04290d8d62436c8a812f886e0a56ec1b"
- }
- Frame {
- msec: 5104
- hash: "04290d8d62436c8a812f886e0a56ec1b"
- }
- Frame {
- msec: 5120
- hash: "04290d8d62436c8a812f886e0a56ec1b"
- }
- Frame {
- msec: 5136
- hash: "04290d8d62436c8a812f886e0a56ec1b"
- }
- Frame {
- msec: 5152
- hash: "04290d8d62436c8a812f886e0a56ec1b"
- }
- Frame {
- msec: 5168
- hash: "04290d8d62436c8a812f886e0a56ec1b"
- }
- Frame {
- msec: 5184
- hash: "04290d8d62436c8a812f886e0a56ec1b"
- }
- Frame {
- msec: 5200
- hash: "04290d8d62436c8a812f886e0a56ec1b"
- }
- Frame {
- msec: 5216
- hash: "04290d8d62436c8a812f886e0a56ec1b"
- }
- Frame {
- msec: 5232
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5248
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5264
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5280
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5296
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5312
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5328
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5344
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5360
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5376
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5392
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5408
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5424
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5440
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5456
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5472
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5488
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5504
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5520
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5536
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5552
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5568
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5584
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5600
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5616
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5632
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5648
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5664
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5680
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5696
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5712
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5728
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5744
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5760
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5776
- image: "listview.6.png"
- }
- Frame {
- msec: 5792
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5808
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5824
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5840
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5856
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5872
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5888
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5904
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5920
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5936
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5952
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5968
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 5984
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 6000
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 6016
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 6032
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 6048
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 6064
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 6080
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 6096
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 6112
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
- Frame {
- msec: 6128
- hash: "dbd87bf02d698b7f053d307ef0c98452"
- }
-}
diff --git a/tests/auto/declarative/qmlvisual/ListView/enforcerange.qml b/tests/auto/declarative/qmlvisual/ListView/enforcerange.qml
deleted file mode 100644
index a796be73ab..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/enforcerange.qml
+++ /dev/null
@@ -1,31 +0,0 @@
-import QtQuick 1.0
-
-Item {
- id: document
- width: 200; height: 200
-
- ListView {
- id: serviceListView
- anchors.fill: parent
- model: 100
-
- preferredHighlightBegin: 90
- preferredHighlightEnd: 90
-
- highlightRangeMode: ListView.StrictlyEnforceRange
-
- delegate: Component {
- Item {
- height: 15 + ((serviceListView.currentIndex == index) ? 20 : 0)
- width: 200
- Rectangle { width: 180; height: parent.height - 4; x: 10; y: 2; color: "red" }
- }
- }
- }
-
- Rectangle {
- y: 90; width: 200; height: 35
- border.color: "black"
- color: "transparent"
- }
-}
diff --git a/tests/auto/declarative/qmlvisual/ListView/itemlist.qml b/tests/auto/declarative/qmlvisual/ListView/itemlist.qml
deleted file mode 100644
index 7e5d634726..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/itemlist.qml
+++ /dev/null
@@ -1,40 +0,0 @@
-// This example demonstrates placing items in a view using
-// a VisualItemModel
-
-import QtQuick 1.0
-
-Rectangle {
- color: "lightgray"
- width: 240
- height: 320
-
- VisualItemModel {
- id: itemModel
- objectName: "itemModel"
- Rectangle {
- objectName: "item1"
- height: view.height; width: view.width; color: "#FFFEF0"
- }
- Rectangle {
- objectName: "item2"
- height: view.height; width: view.width; color: "#F0FFF7"
- }
- Rectangle {
- objectName: "item3"
- height: view.height; width: view.width; color: "#F4F0FF"
- }
- }
-
- ListView {
- id: view
- objectName: "view"
- anchors.fill: parent
- anchors.bottomMargin: 30
- model: itemModel
- preferredHighlightBegin: 0
- preferredHighlightEnd: 0
- highlightRangeMode: "StrictlyEnforceRange"
- orientation: ListView.Horizontal
- flickDeceleration: 2000
- }
-}
diff --git a/tests/auto/declarative/qmlvisual/ListView/listview.qml b/tests/auto/declarative/qmlvisual/ListView/listview.qml
deleted file mode 100644
index 6171c75a6c..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/listview.qml
+++ /dev/null
@@ -1,86 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: root
- property int current: 0
- width: 600; height: 300; color: "white"
-
- ListModel {
- id: myModel
- ListElement {
- itemColor: "red"
- }
- ListElement {
- itemColor: "green"
- }
- ListElement {
- itemColor: "blue"
- }
- ListElement {
- itemColor: "orange"
- }
- ListElement {
- itemColor: "brown"
- }
- ListElement {
- itemColor: "yellow"
- }
- ListElement {
- itemColor: "purple"
- }
- ListElement {
- itemColor: "darkred"
- }
- ListElement {
- itemColor: "darkblue"
- }
- }
-
- Component {
- id: myDelegate
- Item {
- width: 200; height: 50
- Rectangle {
- x: 5; y : 5
- width: 190; height: 40
- opacity: 0.5
- color: itemColor
- }
- }
- }
-
- Component {
- id: myHighlight
- Rectangle { width: 200; height: 50; color: "black" }
- }
-
- ListView {
- id: list1
- width: 200; height: parent.height
- model: myModel; delegate: myDelegate
- highlight: myHighlight
- currentIndex: root.current
- onCurrentIndexChanged: root.current = currentIndex
- focus: true
- }
- ListView {
- id: list2
- x: 200; width: 200; height: parent.height
- model: myModel; delegate: myDelegate; highlight: myHighlight
- preferredHighlightBegin: 80
- preferredHighlightEnd: 220
- highlightRangeMode: "ApplyRange"
- currentIndex: root.current
- }
- ListView {
- id: list3
- x: 400; width: 200; height: parent.height
- model: myModel; delegate: myDelegate; highlight: myHighlight
- currentIndex: root.current
- onCurrentIndexChanged: root.current = currentIndex
- preferredHighlightBegin: 125
- preferredHighlightEnd: 125
- highlightRangeMode: "StrictlyEnforceRange"
- flickDeceleration: 1000
- }
-}