aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/gameobj.h
blob: 54a3f85410b4b5de22d9d84c16dfcf16bb867f74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
#define PIC_MAP_H09 5365
#define PIC_SC19_RTRUBA31 5320
#define PIC_SC7_LTRUBA 709
#define PIC_SC5_RTRUBA1 664
#define MV_MOM_JUMPFW 661
#define PIC_SC8_RTRUBA 736
#define PIC_CSR_LIFT 5176
#define SC_FINAL4 2460
#define SND_FIN_009 5081
#define MV_FNHED_LOOK 5046
#define ANI_FN3_HEAD 5042
#define QU_SC32_TRYKUBIK 4981
#define QU_BRD16_STARTBEARDED 4948
#define MV_BRDCMN_TURN_RL 4946
#define SND_CMN_064 4933
#define PIC_CSR_ARCADE8 4911
#define SND_22_034 4866
#define PIC_INV_SWAB_C 4854
#define PIC_INV_GLASSES_C 4839
#define PIC_INV_BOARD_C 4824
#define PIC_INV_COIN_H 4794
#define PIC_INV_CARPET 1875
#define MSG_RESTARTGAME 4767
#define rMV_BRDCMN_FLYAWAY 4740
#define SND_30_015 4710
#define MV_EGTR_MD1_SHOW 4694
#define MV_EGTR_SLIMSHOW 4693
#define MV_CPT35_NORM 4593
#define ST_BTN27_NORM 4581
#define MV_SCK26_NORM 4554
#define ANI_SOCK_26 4553
#define SND_34_033 4493
#define SND_34_022 4482
#define SND_34_011 4471
#define SND_33_012 4449
#define SND_31_003 4381
#define MV_VNT34_NORM 4308
#define MV_MAN34_TURNVENT_R 2500
#define MV_MAN32_PIPETOTUBE 4298
#define MSG_SC28_ENDLIFT1 4259
#define MV_MAN25_TRYHAND 4217
#define MV_MAN_LOOKLADDER_RRV 4212
#define SND_27_040 4141
#define SND_25_020 4073
#define SND_21_024 3978
#define SND_21_013 3967
#define SND_21_002 3951
#define SND_13_032 3777
#define SND_13_021 3766
#define SND_12_011 3731
#define SND_10_013 3679
#define SND_10_002 3663
#define SND_7_017 3597
#define SND_7_006 3586
#define SND_6_029 3568
#define SND_6_018 3557
#define SND_6_007 3544
#define SND_CMN_031 3516
#define QU_DRP25_TOFLOOR 3502
#define MV_MAN25_TRYSPADE 3497
#define QU_SC28_WORKINSIDE 3449
#define MV_WMN28_IN_2 3445
#define QU_MAN_DEF_SHOES1 3380
#define MV_MAN_STARTSHOES_1 3373
#define ST_BTH_1 3365
#define MV_MAN_TURN_SRL 1081
#define MSG_SC13_CLOSEFAST 1267
#define MV_CDI_SHOWEYE 3309
#define QU_GRL_LAUGH_POPA 3281
#define QU_KZW14_TOEDGE 3272
#define MSG_SC14_SHOWBALLGMAHIT2 3245
#define QU_SC5_SND5 3244
#define QU_SC4_SND4 3238
#define QU_SC3_SND3 3232
#define QU_SC2_SND1 3225
#define SND_4_009 3124
#define QU_STR_TURNL_L 3058
#define QU_MID11_LOOK 3033
#define ANI_CLOCK_8 2989
#define QU_SC38_SHOWBOTTLE_ONTABLE 2838
#define ST_LBN_6P 2769
#define ST_LBN_4N 2762
#define MV_LBN_2 2755
#define MV_GRT9_FALL 2720
#define MV_PTI25_NORM 2674
#define PIC_SC33_TUMBA 2619
#define PIC_SC33_LTRUBA 2618
#define QU_SC35_SHOWHOSE 2519
#define ST_CTS34_GROWN2 2474
#define ST_CTS34_EMPTY 2383
#define MV_DMN38_NORM4 2252
#define ANI_PORTER 2082
#define PIC_SC29_RTRUBA 2079
#define QU_DRV_FROMRIGHT 2037
#define QU_DRV_LOOKRIGHT2 2035
#define QU_DRV_STOPDRIVE 2031
#define ANI_BITA 2026
#define MV_MID_SWAB2 2024
#define QU_SC26_OPEN4 1941
#define MV_MAN25_TOTRUBA 1884
#define PIC_SC25_LADDERUP 1854
#define ST_LUK23_CLOSED 1815
#define QU_SC22_HANDLEDOWN 1804
#define MV_MAN23_PUSH2 1725
#define MV_GRFU_STARTKISS 1680
#define QU_GRFU_STARTCHMOK 1669
#define QU_GRFB_TAILUP 1644
#define PIC_SCD_20 1622
#define PIC_SC21_LADDER 1555
#define MV_CDI_HIDEEMPTY 1541
#define MV_MAN18_STANDKRESLO 1500
#define MV_BOY18_JUMPFROM 1478
#define QU_SMG_FILLBOTTLE 1433
#define MSG_SC17_SHOWSUGAR 1416
#define QU_SC17_SHOWSUGAR 1415
#define ANI_INV_SUGAR 1410
#define MSG_SC13_STARTWHIRLGIG 1388
#define ST_GRL_EMPTY 1336
#define MV_GRD2_LOOKRIGHT 1285
#define MV_MAN15_TRIESOFF 1273
#define QU_SC13_OPENBRIDGE 1213
#define MV_MAN13_TAKEGUM 1208
#define ST_MAN11_STARTJUMP 1130
#define MSG_SC2_SHOWLADDER 1027
#define MV_MAN6_PUSHBUTTON 1016
#define MV_GLT_EAT 930
#define ST_BLK_CLOSED 912
#define MSG_SC8_GETHIMUP 789
#define MV_BTT_CHESHET 752
#define MV_BTT_LOOKMAN_SPOON 750
#define MSG_STARTHAND 612
#define ST_HND_EMPTY 603
#define MV_CLK_CLOSE 594
#define MSG_TESTKZWFLIGHT 570
#define MSG_CLICKPLANK 549
#define MSG_TESTPLANK 538
#define MV_MAN_TURN_DL 492
#define MV_MAN_TURN_UL 488
#define MV_EGBR_SIGH 377
#define MV_EGTR_FAT2SORROW 354
#define MV_DYAS_CLOSEBOX 310
#define MV_DYAS_FROMUS 313
#define MV_EGTR_SLAPPIN 347
#define MV_EGTR_SLAPPING 348
#define MV_EGBR_RAISEHEAD 380
#define MV_KZW_FROMHOLE 496
#define QU_KZW_JUMPBOTTLE1 580
#define MV_OTM_HANDLEUP 621
#define QU_SC5_ENTER 637
#define QU_SC6_TAKEBALL 681
#define TrubaRight 696
#define QU_BTT_LOOKMAN2 761
#define MV_MAN8_HANDSUP 777
#define MV_HGN_MORG 812
#define ANI_INV_BOOT 881
#define ANI_VISUNCHIK 904
#define MV_NDV_LOOKBACK 951
#define QU_GLT_BREATHE 960
#define ANI_PACHKA 975
#define PIC_INV_MENU 991
#define MV_STR_NOSE 1182
#define QU_STR_SHOW 1185
#define QU_SC17_ENTER_UP 1326
#define MV_JTI_FLOWIN 1394
#define ANI_INV_BOTTLEFULL 1421
#define QU_HND_TAKE2 1442
#define MV_HND17_FIGA 1449
#define PIC_SC19_RTRUBA1 1513
#define PIC_SC16_LADDER 1523
#define MSG_SC18_MANCLIMBEDDOWN 1540
#define MV_GFA_SWING 1595
#define QU_GFA_CHESHET 1608
#define QU_GFA_STOPSOCK 1617
#define MV_GRFU_TURN_LU 1646
#define PIC_SC1_UTRUBA2 1696
#define MV_CND_2_3 1708
#define MSG_SC23_CLICKBTN3 1738
#define MV_MAN21_COINTOBROOM 1773
#define PIC_SC22_WALL 1797
#define MSG_SC22_ONSTOOL 1798
#define PIC_SC24_DTRUBA 1824
#define PIC_SC24_UTRUBA 1829
#define ANI_SHOOTER2 2111
#define ST_DMN38_NORM 2202
#define QU_DLD_DENY 2218
#define QU_MLS_BLINK 2222
#define MV_CTS_GROWMAN 2271
#define MV_CTS_SHRINK 2272
#define PIC_INV_PIPE 2321
#define MV_LEG_POT2_OUT 2370
#define MSG_SC32_SPIN 2405
#define QU_SC35_ENTER_DOWN 2409
#define MV_MAN32_POUR 2413
#define MV_GMA20_STD_LOOK 2437
#define QU_GMA20_STL_LOOK 2446
#define QU_SC31_ENTER_RIGHT 2454
#define MV_MAN34_PUTBOX 2483
#define MV_BRD34_0_1 2510
#define MV_PDV_NRM_BLINK 2525
#define QU_PDV_CUT_BLINK 2528
#define QU_SC37_ENTER_RIGHT 2565
#define PIC_SCD_31 2566
#define ANI_GUARD3 2577
#define PIC_SC37_WALL2 2601
#define ST_DMN01_default 2617
#define ST_SCR36_NORM 2649
#define MV_TSTG_FLOW 2663
#define ANI_BOOTS_11 2704
#define PIC_SC31_FLOOR 2712
#define ST_TBE33_NORM 2717
#define MV_DMN3_NORM 2733
#define QU_SC32_EXITLIFT 2828
#define MV_MOM_STANDUP 2891
#define MV_MAN3_GIVEBLACK_2 2915
#define MV_EGTR_1_2 343
#define QU_CST_TRY 2875
#define MV_BDP_SHOW 2953
#define MV_CST_DENY_WHANDLE 2979
#define QU_SWR_SITDOWN 3018
#define SND_5_008 3149
#define SND_5_019 3160
#define SND_CMN_020 3167
#define MV_DOMINO_18_default 3175
#define ST_DOMINO_18_default 3176
#define PIC_SC15_DFLOOR 3254
#define ST_MAN_SHOES1_1 3458
#define rMV_MAN_SNEEZE 3460
#define QU_MAN_DEF_CLEAN 3462
#define QU_MAN_DEF_SNEEZE_R 3465
#define PIC_CMN_EVAL 3468
#define MV_MAN25_ROWHAND 3482
#define SND_8_005 3615
#define SND_8_016 3626
#define SND_9_004 3643
#define SND_9_015 3659
#define SND_11_001 3680
#define SND_11_012 3696
#define SND_11_023 3707
#define SND_13_010 3755
#define SND_20_003 3931
#define SND_20_014 3947
#define SND_22_001 3979
#define SND_22_012 3995
#define SND_23_011 4029
#define SND_CMN_042 4035
#define SND_24_010 4045
#define QU_DRP24_TOWATER2 4046
#define PIC_SC28_DARK3 4268
#define MSG_SC28_TURNOFF_2 4277
#define MV_CTS34_FALLEFT 4314
#define SND_30_004 4362
#define SND_32_002 4393
#define SND_32_013 4409
#define SND_32_024 4420
#define SND_32_035 4431
#define SND_33_001 4433
#define SND_35_010 4508
#define SND_35_021 4519
#define MV_MAN34_TAKEBOX_FLOOR 4568
#define ST_GRT38_NORM 4575
#define PIC_MNU_SAVE_L 4630
#define PIC_MSV_4_D 4654
#define QU_SC28_LIFT5_START 4674
#define PIC_SC30_EGG 4711
#define ST_EYE_NORM 4715
#define ST_LEG31_EMPTY 4726
#define SND_CMN_053 4748
#define MSG_HMRKICK_STUCCO 4765
#define PIC_MNU_MUSICSLIDER_L 4915
#define MV_FLY_FLY 4917
#define QU_BRD28_GOR 4959
#define PIC_SC12_WALL 4943
#define ANI_FN2_HAND2 5031
#define ST_FNHND2_NORM1 5033
#define PIC_FN2_LEG 5035
#define ST_FN4MAN_LAUGH 5100
#define ANI_IN1GLASSES 5119
#define SC_19 1143
#define PIC_TTL_CREDITS 5172
#define PIC_SC4_PLANK 5183
#define MSG_DISABLESAVES 5201
#define MSG_SC5_BGRSOUNDOFF 5315
#define PIC_MAP_A10 5272
#define PIC_MAP_P01 5277
#define PIC_MAP_P12 5288
#define ANI_BUTTON_32 5347
#define MV_BTN32_TURNON 5348
#define PIC_MEX_BGR 5300
#define PIC_MAP_S20 5241
#define PIC_MAP_S23_1 5244
#define SND_26_020 5342
#define MV_MAN11_JUMPFROMSWING 5209
#define SND_30_016 5165
#define MSG_INTR_GETUPMAN 5135
#define MV_FNHED_EYES 5043
#define ST_FNHND3_NORM1 5038
#define QU_FIN1_TAKECOIN 5023
#define SND_CMN_065 4934
#define PIC_INV_VENT_C 4857
#define PIC_INV_HAMMER_C 4841
#define PIC_INV_EGGCOIN_C 4836
#define PIC_INV_EGGBLACK_H 4798
#define PIC_INV_BOOT_H 4788
#define PIC_INV_COIN 861
#define PIC_INV_BROOM 1783
#define PIC_INV_BOX 866
#define MV_MAN_LOOKUP 4773
#define SND_13_033 4685
#define ANI_CARPET_35 4592
#define SND_35_022 4587
#define SND_36_010 4534
#define SND_34_023 4483
#define SND_34_012 4472
#define SND_34_001 4456
#define SND_33_013 4450
#define SND_31_004 4382
#define SND_CMN_043 4319
#define PIC_SC34_DTRUBA2 4311
#define MV_TTA_STARTD 4287
#define QU_SC28_LIFT6_START 4243
#define ST_BAL14_GMA 4210
#define SND_38_030 4197
#define SND_27_041 4142
#define SND_27_030 4131
#define SND_25_021 4074
#define SND_25_010 4063
#define SND_23_001 4014
#define SND_21_025 3972
#define SND_21_014 3968
#define SND_21_003 3952
#define QU_SC19_SND1 3914
#define SND_13_022 3767
#define SND_12_012 3732
#define SND_12_001 3716
#define SND_10_003 3664
#define SND_7_018 3598
#define SND_7_007 3587
#define SND_6_019 3558
#define SND_6_008 3545
#define SND_CMN_032 3517
#define MSG_SC28_ENDCABIN 3456
#define MV_WMN28_IN_3 3446
#define MSG_SC25_STOPBEARDEDS 3424
#define QU_SC17_FILLMUG_DROP 3415
#define ST_BTH_2 3363
#define MV_BTH_5_4 3358
#define MSG_SC14_GMATOTRUBA 3249
#define QU_SC4_SND5 3239
#define QU_SC3_SND4 3233
#define QU_SC2_SND2 3226
#define QU_SC1_SND1 3220
#define ST_GMA_SIT2 3212
#define rMV_STR_THROWGLASSES 3202
#define QU_SC38_SHOWBOTTLE_FULL 3173
#define SND_CMN_010 3080
#define QU_STR_TURNR 1186
#define ST_HDL_LAID 3039
#define MV_VSN_CYCLE2 2987
#define MV_MAN8_STANDUP 2970
#define QU_MOM_LOOKEMPTY 2948
#define ST_LBN_5P 2766
#define ST_LBN_3N 2759
#define MV_LBN_3 2758
#define ANI_GRIT_14 2724
#define MV_NBL_DEFORM 1075
#define MV_BDP_DROP 2686
#define ANI_NEWBALL 1073
#define ANI_KADKA 2670
#define QU_SC32_FLOWG 2668
#define MV_MAN34_TAKEBOX 2502
#define ST_CTS34_GROWNEMPTY2 2475
#define ST_LEG_UP1 2329
#define PIC_SCD_32 2312
#define ST_STR1_RIGHT 2143
#define MV_SHR_NORM 2131
#define ST_MAN29_RUN 2086
#define QU_DRV_DRIVE 2030
#define MV_MAN27_TAKEVENT 1993
#define QU_SC26_OPEN5 1943
#define ANI_VENT 1927
#define QU_SC25_PUTBOARD 1896
#define ST_LUK26_CLOSED 1870
#define MV_WTR24_0_1 1842
#define QU_SC22_FROMSTOOL 1800
#define MSG_SC22_FROMSTOOL 1799
#define PIC_SC21_WALL 1788
#define MV_MAN23_PUSH3 1726
#define PIC_SCD_21 1623
#define PIC_SC19_LADDER 1538
#define MV_CDI_HIDE 1533
#define ST_MAN18_JUMP 1512
#define MSG_SC18_SHOWMANJUMP 1510
#define ST_GRL18_FLYTO 1490
#define MV_JTI_FLOWBY 1393
#define QU_SC16_BOYOUT 1364
#define MSG_SC13_CHEW 1220
#define PIC_SC8_RTRUBA_ITN 1014
#define PIC_SCD_10 981
#define ST_PLV_SIT 921
#define MV_PBAR_RUN 897
#define MV_BTT_MORG 743
#define ANI_BATUTA 737
#define PIC_SC3_UTRUBA 700
#define PIC_SC4_MONETOPR 689
#define MV_MAN_TAKEBALL 673
#define QU_MOM_JUMPFW 670
#define QU_SC6_ENTER 669
#define MV_MANHDL_HANDLEUP 631
#define MV_MAN_LOOKLADDERRV 556
#define ANI_SPRING 542
#define PIC_SC3_BOX 536
#define QU_EGTR_SLIMOBLRV 528
#define QU_DYAS_DEFAULT1 319
#define MV_MAN_TURN_LD 490
#define MV_MAN_TURN_LU 486
#define ST_MAN_UP 449
#define MV_EGBR_BRK_APPLE 385
#define MV_DYAS_MORGOPEN 316
#define MV_DYAS_MORGTOUS 315
#define ST_DYAS_LIES 318
#define ANI_MAN 322
#define MV_EGTR_SORROW2SLIM 341
#define MV_OTM_BOX_TURNL 436
#define MSG_SHOOTKOZAW 557
#define ST_KZW_SIT 560
#define QU_KZW_JUMPBOTTLE2 583
#define PIC_SC4_MASK 585
#define MSG_CLICKBUTTON 609
#define MV_OTM_BOXHANDLEUP 627
#define QU_BTT_LOOKMAN 760
#define MV_CST_LOOKHOLE 713
#define MV_MAN7_HANDLE2BOX 802
#define MV_INV_OLDAPPLE_default 393
#define ST_SLN_POT_HOBOTUP 843
#define QU_SLN_POT_MORG2 850
#define MV_NDV_LOOK 949
#define QU_GLT_OPEN 961
#define QU_SC5_MANBUMP 1167
#define QU_SC13_ENTER_LEFT 1191
#define ST_HDLL_DOWN 1212
#define QU_TEST 1056
#define QU_SC14_ENTER_LIFTUP 1066
#define MV_MAN14_DECLINE 1239
#define MV_HDLL_1_2 1309
#define MV_GRL_PULL 1338
#define MSG_SC16_FILLMUG 1363
#define MSG_SC17_TESTTRUBA 1458
#define PIC_SC19_RTRUBA2 1514
#define MV_MAN17_GIVECOIN 1557
#define MV_INV_EGGCOIN_default 1568
#define MV_GFA_STOP 1601
#define MV_GFA_STOPSOCK 1602
#define QU_GFA_GREETSOCK 1607
#define QU_GFA_BREATHE 1610
#define PIC_SC22_LADDERD 1632
#define MSG_SC23_CLICKBTN4 1739
#define ANI_CHHI 1957
#define MV_MAN25_ONBOARD 1885
#define MV_HDL23_DEF 1979
#define QU_GRFM_PODMYSHA 1987
#define MV_ASS_SHOW 2123
#define QU_ASS_SIT 2134
#define MV_MAN29_TOPORTER 2085
#define ST_GLV_HAMMER 2156
#define MV_GLV_LOOKHMR 2168
#define ANI_MUG38 2191
#define MV_MUG38_NORM 2192
#define QU_DLD_TAKE1 2214
#define MV_FFT_TUBE_START 2230
#define MV_GLV_PROPOSE 2278
#define MV_DMN38_NORM5 2282
#define MV_LEG_2_3 2345
#define PIC_INV_POTTIE 2393
#define MSG_SC34_CLIMB 2490
#define MV_MAN34_BOARD_FLY 2505
#define ST_BRD34_GRANDMA 2511
#define MV_PDV_1_2 2521
#define QU_LUK34_CLOSE 2547
#define PIC_SC37_RTRUBA 2562
#define MSG_SC35_SHRINK 2570
#define MV_GRD3_LOOKR 2582
#define MV_GRD37_LOOKR 2594
#define PIC_SC37_WALL3 2602
#define ANI_MUG_33 2623
#define ST_INV_MUGFULL_default 2635
#define ST_TST31_NORM 2654
#define ANI_GRIT_6 677
#define MV_MAN13_TAKEFIRECAN 2711
#define MV_MUG17_NORM 2738
#define QU_SC35_ENTER_LIFTUP 2817
#define QU_SC34_ENTER_LIFTUP 2821
#define QU_SC32_ENTER_LIFTDOWN 2830
#define rMV_MAN_TOTRUBAHOR2 2840
#define MV_MAN3_GIVEBLACK_3 2916
#define MV_PL3_FLOW 2925
#define QU_SC4_ENTER_DOWN 2937
#define ST_BTN6_OFF 2993
#define ST_GUM_NORM 977
#define SND_5_009 3150
#define SND_CMN_021 3168
#define PIC_SC13_LWALL 3169
#define MV_MAN13_TAKEHAMMER 3207
#define ANI_ROPE_15 3255
#define PIC_SC17_PIPE2 3293
#define MV_MAN17_TAKEBOTTLEEMPTY 3308
#define ANI_DOMINOS 3317
#define MV_MAN_STARTSHOES_2 3385
#define QU_MAN_DEF_SITDOWN_R 3390
#define QU_MAN_DEF_SHOES2 3395
#define MV_MAN_LOOKLADDER_R 3418
#define ST_MAN_SHOES2_1 3459
#define SND_8_006 3616
#define SND_8_017 3627
#define SND_9_005 3644
#define SND_9_016 3660
#define SND_11_002 3681
#define SND_11_013 3697
#define SND_11_024 3708
#define SND_13_011 3756
#define SND_14_010 3792
#define SND_16_030 3850
#define SND_20_004 3932
#define SND_22_002 3980
#define SND_22_013 3996
#define SND_23_012 3948
#define SND_24_011 4047
#define MV_MAN17_TAKEBOOT 4224
#define ST_MAN_SIT_NOBOOT 4229
#define PIC_SC28_DARK4 4269
#define MSG_SC28_TURNOFF_3 4275
#define SND_30_005 4363
#define SND_32_003 4394
#define SND_32_014 4410
#define SND_32_025 4421
#define SND_32_036 4432
#define SND_33_002 4434
#define SND_35_011 4509
#define SND_34_034 4614
#define PIC_MNU_AUTHORS_L 4624
#define PIC_MSV_5_D 4655
#define MV_EYE30_HIDE 4718
#define ANI_LEG_31 4723
#define MV_BRD_STARTR 4733
#define SND_CMN_054 4762
#define SND_20_015 4888
#define PIC_CSR_GOFAR_L 4895
#define PIC_SCD_FIN 5026
#define MV_FNHND2_MOVE 5032
#define ST_FNHND2_NORM2 5034
#define MV_FNHND6_MOVE2 5068
#define ST_IN1MAN_LOOK 5118
#define ST_IN1MAN_GONE 5125
#define ST_IN2BOOT_EMPTY 5143
#define MSG_SC32_TRUBATOBACK 5181
#define PIC_MNU_SLIDER_D 4913
#define MSG_SC33_TESTMUG 5185
#define MSG_MANSHADOWSOFF 5196
#define SND_22_035 5211
#define PIC_SC5_RTRUBA2 665
#define PIC_MAP_A11 5273
#define PIC_MAP_P02 5278
#define PIC_MAP_P13 5289
#define PIC_INV_MAP 5324
#define MSG_SC28_LIFT6MUSIC 5355
#define MSG_FN4_STARTMUSIC 5356
#define PIC_MSV_BGR 4634
#define PIC_MAP_S10 5232
#define PIC_MAP_S21 5242
#define PIC_MAP_S23_2 5245
#define PIC_SC3_LADDER 1102
#define PIC_SC19_REACTOR 1498
#define SND_INTR_010 5155
#define QU_INTR_STARTINTRO 5133
#define ST_IN1CLK_CLOSED 5128
#define MSG_SC31_TESTCACTUS 5095
#define QU_FN3_SHOWKICKING 5074
#define QU_FN2_DOFINAL 5066
#define ANI_FN3_HAND3 5036
#define ST_MANFIN1_RIGHT 5021
#define MSG_SC16_LAUGHSOUND 4993
#define rMV_BBL_GOR 4926
#define MV_BBL_GOR 4924
#define PIC_INV_SCISSORS_C 4850
#define PIC_INV_EGGBOOT_C 4835
#define PIC_INV_POT_H 4813
#define PIC_INV_BOOT 863
#define MV_DRP25_TOWATER 3503
#define SND_13_034 4686
#define MV_PDV_LEGS 4589
#define SND_35_023 4588
#define SND_36_011 4535
#define SND_34_024 4484
#define SND_34_013 4473
#define SND_34_002 4457
#define SND_33_014 4451
#define SND_31_005 4383
#define SND_CMN_044 4320
#define MV_MAN34_TRYTABUR 2489
#define QU_KDK_DRIZZLE 4301
#define ST_MAN28_SIT 4253
#define SND_38_031 4198
#define SND_38_020 4187
#define SND_27_031 4132
#define SND_27_020 4121
#define SND_25_022 4075
#define SND_25_011 4064
#define SND_23_002 4015
#define SND_21_026 3974
#define SND_21_015 3969
#define SND_21_004 3953
#define QU_SC19_SND2 3915
#define QU_SC18_SND1 3901
#define SND_15_010 3812
#define SND_13_023 3768
#define SND_12_013 3733
#define SND_12_002 3717
#define SND_10_004 3665
#define SND_7_019 3599
#define SND_7_008 3588
#define SND_CMN_033 3554
#define SND_6_009 3546
#define PIC_CMN_EXIT 3467
#define MV_WMN28_IN_4 3447
#define ANI_WOMAN_28 3439
#define QU_SC25_BEARDED2 3426
#define MV_MAN_SMILE 3416
#define SND_CMN_022 3404
#define QU_SC27_SHOWBET 3368
#define ST_BTH_3 3361
#define ST_VNT27_LIES 3355
#define MV_MAN16_TRYBOTTLE 3305
#define QU_SC19_ENTER_DOWNRIGHT 3300
#define MV_KZW14_TOEDGE 3265
#define QU_SC3_SND5 3234
#define QU_SC2_SND3 3227
#define QU_SC1_SND2 3221
#define ST_BAL14_NORM2 3215
#define MV_BAL14_TOGMA 3214
#define SND_CMN_011 3081
#define QU_SC13_CLOSEFAIL 3063
#define rMV_STR_HIDE 3055
#define QU_STR_RTOL 3053
#define ANI_MAID_11 3024
#define MSG_SC11_PUTBOOT 1117
#define MSG_SC4_DROPBOTTLE 2896
#define QU_SC15_ENTER_LIFTUP 2813
#define QU_SC10_EXITLIFT 2809
#define ST_LBN_4P 2763
#define MV_LBN_4 2761
#define ST_LBN_2N 2756
#define PIC_SCD_33 2636
#define MV_BRD34_1_2 2573
#define MV_MAN34_BOARD_FLY2 2572
#define QU_SC34_FROMBOX 2494
#define MV_CTS34_0_1 2387
#define ANI_CACTUS_34 2381
#define ST_LEG_EMPTY 2338
#define ST_LEG_UP2 2333
#define PIC_SC32_UTRUBA 2293
#define MV_MAN38_TAKEHAMMER 2289
#define MV_DMN38_NORM6 2284
#define MV_MAN29_PUSHASS 2145
#define ST_STR2_RIGHT 2144
#define QU_SC29_ENTER_LEFT 2078
#define QU_MID_SWITCHBACK 2044
#define QU_DRV_FROMLEFT2 2038
#define ST_INV_VENT_default 1970
#define MV_MAN25_BACKTOLADDER 1954
#define QU_SC25_ENTERUP_WATER 1895
#define MV_MAN25_PUTBOARD 1878
#define ST_LUK26_NOHANDLE 1869
#define QU_SC25_ENTER_UP 1860
#define MV_HDL22_FALL 1760
#define MV_MAN23_PUSH4 1727
#define QU_GRFU_CHMOKLEFT 1667
#define MV_GRFB_TAILUP 1640
#define MV_GRFB_TRYSTAND 1634
#define ANI_GIRAFFE_BOTTOM 1633
#define PIC_SCD_22 1624
#define QU_GRD_LOOKLEFT 1001
#define ST_GRD_SIT2 1525
#define ST_INV_SUGAR_default 1412
#define MV_INV_SUGAR_default 1411
#define ANI_SAMOGONSHCHIK 1397
#define QU_SC16_GIRLOUT 1365
#define MSG_SC16_HIDEMUG 1351
#define MSG_SC16_SHOWWIRE 1350
#define ST_BOY_STAND 1331
#define QU_GMS_DRYG_BOOTLESS 1276
#define ST_BAL14_MAIN 1248
#define ST_HDLR_UP 1198
#define ST_SWR_SITBALD 1153
#define ANI_SC2_BOX 1020
#define MV_MAN12_POT2BOOT 983
#define ST_GLT_OPEN 928
#define MV_GLT_BREATHE 925
#define QU_SLN_POT_TURN 851
#define MSG_SC7_CLOSELUKE 822
#define ST_BTT_NOSPOON 739
#define ST_CST_HEADUP 717
#define TrubaUp 680
#define PIC_SC6_UTRUBA 668
#define MV_CLK_HAND 592
#define ST_MAN_LOOKPLANK 555
#define QU_DYAS_DEFAULT2 471
#define ST_MAN_GOD 480
#define ST_MAN_GOU 459
#define MV_OTM_GLS_TURNR 422
#define MV_EGBR_BRK_COIN 389
#define MV_EGTR_SORROW2FAT 356
#define MV_OTM_BOX_MORGRIGHT 439
#define MV_KZW_TOPLANK 497
#define QU_KZW_WALKBOTTLE 578
#define PIC_SC4_ULTRUBA 615
#define ST_HDL_DOWN 625
#define MV_MANOTM_BOX2GLASSES 628
#define QU_OTM_VNT_TRIESOFF 648
#define MV_BRD_DROPBALLROT 695
#define MV_LUK_0_1 804
#define ST_LUK_CLOSED 805
#define MV_CST_CLOSELUKE 807
#define MV_INV_BOOT_default 882
#define PIC_SC2_DFLOOR 891
#define QU_GRD_MORG 1004
#define MV_MAN6_SPINHANDLE 1008
#define ANI_SC4_COIN 690
#define MV_MAN_TAKECOIN 1031
#define MV_SLN_0_1 834
#define LiftUp 1057
#define PIC_SCD_11 1098
#define MV_MAN11_SWING_0 1109
#define ST_MAN_SIT 1164
#define MV_STR_CHEW 1177
#define PIC_SC15_LTRUBA 1261
#define PIC_SC16_RTRUBA 1293
#define MV_HDL_1_2 1308
#define MV_INV_MUG_default 1371
#define QU_SMG_STOPFINGERS 1408
#define QU_SC17_FILLBOTTLE 1437
#define QU_HND_TAKEBOTTLE 1443
#define ST_HND17_EMPTY 1448
#define QU_SC18_ENTER_WHIRLIGIG 1469
#define PIC_SC19_RTRUBA3 1515
#define QU_CDI_DRYG 1536
#define MSG_SC3_TESTFAT 1582
#define QU_GFA_GREET 1606
#define QU_SC22_ENTER_LEFT 1618
#define QU_SC23_ENTER_DOWN 1630
#define ST_CND_0 1704
#define MV_CND_3_4 1710
#define MV_INV_BROOM_default 1775
#define ST_INV_BROOM_default 1776
#define QU_SC22_FALLBROOM 1786
#define PIC_SC24_PIPE 1828
#define MV_MAN_FROMTRUBAVER2_R 1849
#define ANI_BOARD25 1898
#define QU_SC25_TRUBATOBOARD 1909
#define PIC_INV_LOPAT 1924
#define ST_CHI_EMPTY 1959
#define MV_MAN27_BROOMTOSWAB 1992
#define ST_BTA_HILITE 2052
#define QU_SC29_MANTO_R 2100
#define MV_SHR_HITASS 2152
#define ANI_DYLDA 2169
#define ST_MLS_LEFT 2179
#define MV_MLS_TURNLR 2181
#define MV_MAN38_TAKEBOTTLE 2184
#define QU_SC38_SHOWMUG 2198
#define QU_GLV_TOSMALL_NOHMR 2209
#define QU_GLV_DRINK 2210
#define QU_DLD_TAKE2 2215
#define QU_MLS_TURNL 2220
#define ST_FFT_TUBE 2231
#define ST_FFT_TUBEOPEN 2236
#define MV_CTS_GROW 2268
#define QU_FFT_PIPE_CYCLE 2297
#define QU_FFT_TUBE_FLOW 2304
#define PIC_SC35_FLOOR 2407
#define ST_HZE_NORM 2426
#define MV_CTS34_EYES 2478
#define MV_BRD34_RIGHT 2507
#define MSG_SC35_PLUGHOSE 2524
#define ST_LUK34_CLOSED 2543
#define MV_PDV_SML_BLINK 2551
#define PIC_SC35_DTRUBA_L 2558
#define QU_GRD3_LOOKR 2587
#define PIC_SC31_WALL 2603
#define ANI_TESTO_BLUE 2659
#define MV_MAN6_TAKEBALL 2691
#define ST_GRT6_GRIT 2693
#define MV_JET17_FLOW 2747
#define MSG_SC4_MANFROMBOTTLE 2854
#define QU_EGTR_MD1_BOLTLEGS 2877
#define MV_MAN_PLANKTOLADDER 553
#define MV_MAN3_GIVEBLACK_4 2917
#define MV_EGTR_2_3 351
#define ST_STP8_3 2980
#define ST_BALL9_NORM 2973
#define ST_PCH2_NORM 3021
#define MV_SLN_POT_DENY 3040
#define MV_MAN38_TRYTAKEBOTTLE 3178
#define MV_HDLL_1_3 3204
#define rMV_MAN_STARTSHOES_1 3382
#define rMV_MAN_STOPSHOES_1 3384
#define MV_MAN17_GIVEBOOT 3432
#define ST_GRFU_KISSOPEN 3475
#define MV_GRFU_CLOSEEYES 3476
#define ST_DRP26_NORM2 3483
#define SND_8_007 3617
#define SND_8_018 3628
#define SND_9_006 3650
#define SND_9_017 3661
#define SND_11_003 3682
#define SND_11_014 3698
#define SND_11_025 3709
#define SND_13_012 3757
#define SND_14_011 3793
#define SND_16_020 3840
#define SND_16_031 3851
#define SND_17_030 3894
#define SND_20_005 3933
#define SND_22_003 3981
#define SND_22_014 3997
#define SND_22_025 4008
#define SND_23_013 3949
#define SND_24_001 4003
#define SND_24_012 4048
#define SND_26_010 4091
#define MV_BOT17_FILL 4221
#define ST_BOT17_NORM 4222
#define ST_MAN25_ROW2 4235
#define ST_MAN_TEMPPP 4236
#define PIC_SC28_DARK5 4270
#define MSG_SC28_TURNOFF_4 4282
#define QU_SC29_SND1 4335
#define SND_30_006 4369
#define MV_MAN30_ITCHSWAB 4373
#define SND_32_004 4395
#define SND_32_015 4411
#define SND_32_026 4422
#define SND_33_003 4435
#define SND_35_001 4494
#define SND_35_012 4510
#define ANI_CARPET_36 4600
#define SND_34_035 4615
#define PIC_MLD_OK_L 4647
#define PIC_MSV_6_D 4656
#define SND_32_037 3560
#define QU_EYE30_HIDE 4722
#define SND_CMN_055 4763
#define SND_CMN_066 4966
#define PIC_FN2_BODY 5027
#define ST_FNHND6_BEFORE2 5069
#define MSG_ENABLESAVES 5202
#define PIC_SC23_BOXOPEN 1723
#define SND_22_036 5304
#define PIC_MAP_A01 5263
#define PIC_MAP_A12 5274
#define PIC_MAP_P03 5279
#define PIC_MAP_P14 5290
#define MV_MAN35_CUTPIPE 2514
#define PIC_MAP_S11 5233
#define PIC_MAP_S22 5243
#define PIC_MAP_S33 5257
#define MV_MOM_TAKE1 2885
#define ST_MAP_NORM 5323
#define ANI_INV_MAP 5321
#define PIC_MEX_OK 5301
#define PIC_SC6_LADDER 1104
#define MV_MOM_CYCLEBK 3012
#define QU_SC16_MANDRINK 5200
#define ST_PBAR_START2 5178
#define MV_MAN30_ITCHSPADE 5164
#define SND_INTR_011 5156
#define ANI_IN1CLOCK 5126
#define ANI_IN1HAND 5113
#define ST_FNHND6_BEFORE3 5057
#define ANI_FN3_HAND4 5048
#define ANI_FIN1_MAN 5019
#define ANI_FIN_COIN 5014
#define SND_29_030 4879
#define SND_13_035 4871
#define SND_21_027 4867
#define PIC_INV_EGGDOM_C 4837
#define PIC_INV_APPLE_C 4823
#define PIC_INV_STOOL_H 4817
#define PIC_INV_EGGGLS_H 4801
#define PIC_INV_EGGAPL_H 4797
#define PIC_INV_EGG_H 4796
#define rMV_MAN_LOOKUP 4775
#define SND_CMN_056 4772
#define MV_MAN_LOOKSTUCCO 4771
#define SND_15_011 4754
#define MV_BRD_FALL 4731
#define SND_36_012 4606
#define QU_PDV_LRG_LEGS 4591
#define SND_35_024 4590
#define QU_SC34_FROMBOX_FLOOR 4572
#define SND_36_001 4520
#define SND_34_025 4485
#define SND_34_014 4474
#define SND_34_003 4458
#define MV_MAN33_TAKEMUGEMPTY 4452
#define SND_28_020 4329
#define SND_CMN_045 4321
#define MV_LEG_POT0_DENY 4283
#define QU_SC28_LIFT1_WORK 4256
#define MSG_SC21_UPDATEASS 4211
#define SND_9_018 4200
#define SND_38_032 4199
#define SND_38_021 4188
#define SND_38_010 4175
#define SND_27_032 4133
#define SND_27_021 4122
#define SND_27_010 4111
#define SND_25_023 4076
#define SND_25_012 4065
#define SND_25_001 4049
#define SND_23_003 4016
#define SND_21_016 3970
#define SND_21_005 3954
#define QU_SC19_SND3 3916
#define QU_SC18_SND2 3902
#define PIC_SC38_ROPE 3859
#define SND_13_024 3769
#define SND_13_013 3758
#define SND_12_014 3734
#define SND_12_003 3718
#define SND_10_005 3666
#define SND_7_009 3589
#define SND_CMN_034 3555
#define QU_SC25_TRYROWHAND 3493
#define MV_WMN28_IN_5 3448
#define QU_SC25_BEARDED3 3427
#define SND_CMN_023 3405
#define MV_MAN_SHOES1 3375
#define MSG_SC27_SHOWNEXTBET 3369
#define ST_BTH_4 3359
#define MV_KZW14_TOUS 3267
#define QU_SC2_SND4 3228
#define QU_SC1_SND3 3222
#define ST_BAL14_NORM3 3216
#define QU_GLV_TAKEDOMINO_NOHMR 3182
#define SND_CMN_012 3082
#define SND_CMN_001 2927
#define MV_MAN8_JUMPOFF 2969
#define ANI_PLUSMINUS 2938
#define PIC_SC1_OSK2 2932
#define MV_KZW_JUMPHIT 2857
#define MV_MAN4_FROMBOTTLE 2849
#define MV_LBN_5 2764
#define ST_LBN_3P 2760
#define ST_LBN_1N 2753
#define MV_MAN2_TRYBOX 2736
#define ST_GRT14_NORM 2726
#define ST_MAN6_BALL 2688
#define QU_SC35_SHOWSTOPPER 2520
#define QU_SC32_SHOWHANDLE 2399
#define MV_FLG_STARTL 2258
#define MV_FLG_CYCLER 2266
#define MV_LEG_POT2_SHOW 2332
#define MSG_SC38_PROPOSE 2287
#define ST_SHG_NORM 2118
#define ST_MAN29_SIT 2089
#define ST_DRV_LEFTNOVENT 2000
#define QU_SC25_TRYSWAB 1913
#define ANI_INV_BOARD 1872
#define ANI_LUK26 1867
#define LadderDown 1851
#define PIC_SC22_DTRUBA2 1810
#define MV_MAN22_STANDTABUR 1750
#define ANI_INV_SOCK 1698
#define QU_GRFG_SHOW 1683
#define PIC_SCD_23 1625
#define ST_CDI_SUGAR 1532
#define MV_MAN19_TAKESUGAR 1528
#define MV_MAN18_JUMPTOTRUBA 1511
#define MV_BOY18_JUMPTO 1481
#define ST_SMG_HANDSUP 1403
#define QU_MOM_START 1389
#define MV_WHR13_SPIN 1384
#define MSG_SC14_SHOWBALLMAN 1254
#define ANI_INV_GUM2 1204
#define ST_GLT_EMPTY 1070
#define MV_MAN_LIFTFROMU 1061
#define MV_MAN_LIFTFROMD 1060
#define ANI_HDL6 1009
#define MV_MAN_FROMVTRUBA 966
#define ST_BALL9_default 935
#define ST_SLN_POT 835
#define QU_SC8_FINISH 788
#define PIC_SC8_LADDER_D 755
#define MV_CST_SPINHANDLE 714
#define ANI_INV_BOX 890
#define PIC_SC4_DOWNTRUBA 619
#define MV_BTN_CLICK 599
#define ST_CLK_OPEN 591
#define MV_CLK_GO 589
#define MSG_SHAKEBOTTLE 584
#define ST_SPR_DOWN 545
#define MV_PNK_WEIGHTLEFT 541
#define QU_KOZAW_WALK 505
#define QU_DYAS_DEFAULT3 514
#define QU_SC1_EGBRHEADDOWN 513
#define rMV_EGBR_SIGH 464
#define MV_EGBR_BRK_BOOT 384
#define MV_EGTR_TAKEMONEY 352
#define MV_EGTR_FATBOLTLEGS 374
#define MV_MANDYAS_GIVESGLAS 363
#define MV_MANEGBR_EGG2APPLE 444
#define MV_MAN_TURN_RL 332
#define QU_KZW_GOOUT 567
#define QU_OTM_GLS_TURNL 641
#define QU_OTM_BOX_MORGR 643
#define MV_MAN_TAKESBALL 674
#define QU_SC1_ENTER_RIGHT 702
#define QU_CST_TURNDOWN 724
#define ANI_VMYATS 764
#define MV_MAN8_DRYGDOWN 770
#define MV_MAN8_STARTJUMP 779
#define ST_HGN_LUKE 810
#define PIC_SCD_12 857
#define PIC_SC9_DTRUBA 902
#define MV_VSN_TURNLEFT 953
#define MV_GRD_MORG1 1000
#define MV_MAN_TAKEBOOT 1034
#define ANI_SC4_BOOT 1035
#define MV_LFT_OPEN 1048
#define MV_MAN_TURN_SDR 1085
#define MV_MAN_TURN_SUR 1088
#define MV_MAN11_SWING_1 1111
#define MSG_SC13_UPDATEBRIDGE 1217
#define QU_SC14_ENTER_LIFTDOWN 1068
#define MSG_SC14_MANKICKBALL 1257
#define MV_GMS_DRYGNOBOOT 1268
#define PIC_SC18_LTRUBA 1320
#define QU_SC16_GOBOY 1347
#define QU_SC16_GOGIRL 1348
#define QU_SC16_BOYDRINK 1353
#define QU_SC16_BOYKICK 1367
#define ST_GRL_LAUGH 1342
#define MV_BDG_CLOSE 1382
#define MV_MAN17_TAKEBOTTLE 1427
#define QU_HND17_TOCYCLE 1454
#define QU_CDI_SHOW 1535
#define PIC_INV_EGGDOM 1576
#define MV_GFA_0_1 1605
#define MV_GRFU_BLINKLEFT 1651
#define MV_GRFU_STOP 1655
#define ST_CND_1 1705
#define QU_SC23_TOCALENDAR 1733
#define QU_SC25_SHOWBOARD_L 1907
#define MSG_SC26_UPDATEPOOL 1956
#define MV_PTR_MOVEFAST 2102
#define ST_STR1_EMPTY 2115
#define QU_ASS_SIT_R 2136
#define MV_SHG_HITASS 2151
#define MV_GLV_PUTDOMIN 2157
#define ST_GLV_NOHAMMER 2159
#define MV_HMR38_NORM 2195
#define MV_FFT_TUBE_FLOWOPEN 2237
#define MV_FFT_STARTPIPE 2239
#define MSG_SC38_POSTHMRKICK 2256
#define QU_GLV_PROPOSE_NOHMR 2281
#define ANI_INV_TUBE 2314
#define MV_RHT_BLINK 2361
#define PIC_SCD_34 2389
#define MV_POTTIE_default 2391
#define MV_HDL32_FALL 2395
#define MSG_SC32_STARTCACTUS 2414
#define ST_PDV_SMALL 2420
#define QU_CTS34_EYES 2384
#define MV_LUK34_CLOSE 2545
#define ANI_DMN01 2615
#define QU_SC33_SHOWMUG 2631
#define QU_TST_FLOW 2655
#define ANI_TESTO_ORANGE 2656
#define MV_MAN17_TAKEMUG 2744
#define MV_MAN_TOLADDER 448
#define QU_SC6_DROPS2 2905
#define MV_MAN3_GIVECOIN_2 2931
#define MV_MAN4_LOOKINBOTTLE 2935
#define rMV_MAN_HMRKICK_COINLESS 2965
#define MV_STP8_FALL 2972
#define PIC_SC9_UTRUBA 2985
#define MV_VSN_FROMLEFT 1015
#define QU_VSN_FROMR 3000
#define QU_SC11_MANFALL 3017
#define MSG_SC8_ENTERUP 3037
#define ANI_DOMINO_18 3174
#define MSG_SC38_TRYTAKEBOTTLE 3179
#define QU_DRP7_DROP 3188
#define MV_BTT_LOOK_SPOON 3194
#define QU_RPE_NORM 3258
#define MV_JET17_DROP 3291
#define QU_JET17_FLOW 3294
#define MSG_SC19_UPDATESUGAR 3315
#define QU_SC22_TOSTOOL_R 3332
#define rMV_MAN_STARTSHOES_2 3398
#define rMV_MAN_STOPSHOES_2 3400
#define rMV_MAN_CLEANNOSE 3461
#define QU_GRFU_KISSOPEN 3480
#define SND_8_008 3618
#define SND_8_019 3629
#define SND_9_007 3651
#define SND_11_004 3683
#define SND_11_015 3699
#define SND_11_026 3710
#define SND_13_002 3742
#define SND_14_001 3778
#define SND_14_012 3794
#define SND_16_010 3830
#define SND_16_021 3841
#define SND_16_032 3852
#define QU_SC17_SND1 3865
#define SND_17_020 3884
#define SND_17_031 3895
#define SND_20_006 3939
#define SND_22_004 3982
#define SND_22_015 3998
#define SND_22_026 4009
#define SND_24_002 4004
#define SND_26_011 4092
#define QU_SC28_SND1 4148
#define ANI_SHD_01 4202
#define PIC_SC28_DARK6 4271
#define PIC_SC32_LADDER 4296
#define QU_SC29_SND2 4336
#define SND_30_007 4370
#define SND_31_006 4389
#define SND_32_005 4396
#define SND_32_016 4412
#define SND_32_027 4423
#define SND_33_004 4436
#define SND_35_002 4495
#define SND_35_013 4511
#define MV_MAN34_PUTBOX_FLOOR 4567
#define MV_MAN34_FROMBOX_FLOOR 4570
#define ANI_GRIT_38 4573
#define MV_MID_CLEANVENT 4582
#define SND_34_036 4616
#define PIC_MNU_DEBUG_L 4632
#define PIC_MSV_7_D 4657
#define MSG_HMRKICK_METAL 4764
#define ST_FLY_FLY 4918
#define QU_GLV28_GOL 4958
#define SND_CMN_067 4967
#define SND_32_038 4996
#define SND_FINAL1_001 5007
#define MV_FN4MAN_LAUGH 5101
#define MV_IN1MAN_GETUP 5117
#define PIC_MSV_DOT_D 5188
#define SND_23_014 5193
#define MSG_MANSHADOWSON 5197
#define MV_MAN_LOOKUP_EYES 5206
#define SND_22_037 5305
#define PIC_MAP_A02 5264
#define PIC_MAP_A13 5275
#define PIC_MAP_P04 5280
#define PIC_MAP_P15 5291
#define PIC_MAP_S01 5223
#define PIC_MAP_S12 5234
#define PIC_MAP_S34 5258
#define PIC_MAP_S02 5224
#define QU_SC32_FALLHANDLE 5351
#define MV_HDL_FALL 2396
#define SND_17_032 5212
#define SND_21_028 5192
#define PIC_SC18_DOMIN 5184
#define SND_INTR_012 5157
#define SND_INTR_001 5146
#define QU_INTR_CLOCK 5137
#define PIC_IN1_LADDER 5102
#define ST_FNHND6_BEFORE 5058
#define ANI_FN2_HAND6 5056
#define ANI_FN3_HAND5 5052
#define ST_FNHND3_HMR 5041
#define ST_MANFIN1_EMPTY 5022
#define SND_29_031 4880
#define SND_25_024 4872
#define SND_CMN_057 4868
#define PIC_INV_LOPAT_C 4844
#define PIC_INV_BOX_C 4828
#define PIC_INV_VANTUZ_H 4821
#define PIC_INV_TUBE_H 4820
#define PIC_INV_SOCK_H 4816
#define PIC_INV_GUM2_H 4804
#define QU_MAN_DEF_LOOKUP_R 4777
#define PIC_SC27_HITZONE2 4756
#define rMV_BRD_STARTR 4738
#define SND_38_033 4729
#define PIC_MSV_0_L 4644
#define PIC_MSV_FULL_L 4642
#define SND_36_013 4607
#define MSG_SC34_CLIMBBOX 4571
#define MSG_SC4_HIDEBOOT 4563
#define SND_37_001 4536
#define SND_36_002 4521
#define SND_34_026 4486
#define SND_34_015 4475
#define SND_34_004 4459
#define SND_29_020 4354
#define SND_CMN_046 4322
#define QU_SC28_LIFT1_END 4257
#define SND_9_019 4201
#define SND_38_022 4189
#define SND_38_011 4176
#define QU_SC38_SND1 4166
#define SND_27_033 4134
#define SND_27_022 4123
#define SND_27_011 4112
#define QU_SC27_SND1 4102
#define SND_25_013 4066
#define SND_25_002 4050
#define SND_23_004 4017
#define SND_21_017 3971
#define SND_21_006 3960
#define QU_SC19_SND4 3917
#define QU_SC18_SND3 3903
#define SND_15_001 3798
#define SND_13_025 3770
#define SND_13_014 3759
#define SND_12_015 3735
#define SND_12_004 3719
#define SND_10_006 3672
#define SND_2_020 3514
#define SND_1_010 3511
#define QU_DRP24_TOFLOOR 3510
#define QU_SC28_WMN_START 3452
#define SND_CMN_024 3406
#define ST_TEST 3367
#define ST_BTH_5 3357
#define MV_SPK4_PLAY 3276
#define QU_KZW14_TOUS 3273
#define QU_SC2_SND5 3229
#define QU_SC1_SND4 3223
#define SND_CMN_013 3112
#define SND_CMN_002 2928
#define rMV_STR_NOSE 3052
#define MSG_SC13_TESTOPEN 3048
#define PIC_SC10_FLOOR 3001
#define ST_LBN_0N 2832
#define MV_LBN_6 2767
#define ST_LBN_2P 2757
#define MV_EGBR_DENY 2735
#define ANI_GRIT_9 2719
#define MV_TEST2 2684
#define ST_BRD34_GRANDMA2 2574
#define MV_MAN34_FROMBOX 2493
#define MV_CTS34_HIDE 2476
#define MV_CTS34_GROW 2382
#define MV_LEG_POT1_SHOW 2328
#define MV_MAN32_SITDOWN 2276
#define QU_SC38_SHOWDMN_DLD1 2254
#define PIC_SC38_UTRUBA 2171
#define QU_SC29_MANFROM_R 2104
#define MV_DRV_TOLEFT_V 2007
#define MV_MAN26_TURNVENT_R 1932
#define MV_MAN25_CHIH 1886
#define QU_SC26_ENTER_LEFT 1866
#define PIC_SC26_LTRUBA 1864
#define MV_MAN22_TAKEBROOM 1753
#define MV_INV_SOCK_default 1699
#define PIC_SC21_HDLBASE 1635
#define QU_GRFG_BLINKBALD 1684
#define QU_GRFB_DANGLE 1643
#define MV_GRFB_TAIL 1636
#define rMV_MANEGBR_EGG2APPLE 465
#define MV_GRD_LOOKRIGHT 1527
#define MV_GRD_LOOKLEFT 1526
#define MV_KSL_0_1 1466
#define ST_WR16_DEFAULT 1346
#define MSG_SC17_HIDESUGAR 1417
#define QU_SMG_FINGERS 1407
#define ST_SMG_SIT 1399
#define MSG_SC13_STOPWHIRLGIG 1387
#define MSG_SC16_SHOWMUG 1352
#define MV_GRL_GOOUT 1340
#define ANI_BOY 1327
#define ANI_WHIRLGIG_19 1302
#define MSG_SC14_SHOWBALLGMADIVE 1260
#define MSG_SC14_GMAJUMP 1250
#define PIC_SC14_DTRUBA 1222
#define MV_MAN11_JUMPOVER 1131
#define QU_SC10_ENTER_LIFTDOWN 1063
#define QU_SC10_ENTER_LEFT 989
#define MSG_SC9_EATBALL 941
#define MSG_SC5_HIDEHANDLE 917
#define MV_BLK_CLOSE 911
#define SC_TEST 903
#define MV_SLN_POT_TURN 632
#define SC_INV 858
#define QU_SC12_ENTER_RIGHT 856
#define ST_SLN_BOOT 830
#define MSG_SC7_HIDELUKE 821
#define MV_BTT_LOOKMAN 738
#define MV_BTT_ZANIUKH 742
#define PIC_SCD_1 727
#define QU_SC7_ENTER_RIGHT 721
#define QU_SC7_ENTER_LEFT 720
#define ANI_CORNERSITTER 711
#define MSG_SC6_TAKEBALL 682
#define ST_INV_BOX_default 892
#define ANI_BUTTON 598
#define MV_KZW_TOHOLERV 537
#define QU_EFTR_FATTOSORROW 530
#define MV_MAN_TOTRUBAVER2 519
#define ST_MAN_1PIX 518
#define QU_DYAS_DEFAULT4 515
#define QU_SC1_EGBRSIGH 510
#define PIC_SC3_RTRUBA 414
#define MV_EGBR_BRK_DOMINO 388
#define ST_EGBR_HEADLOWER 378
#define MV_EGTR_SLIMBOLTLEGS 335
#define PIC_SC2_LTRUBA 411
#define MV_MANEGTR_GIVESEGGSLIM 418
#define MV_OTM_BOX_MORGLEFT 427
#define ST_OTM_BOX_RIGHT 430
#define ST_KZW_FRONT 573
#define MV_KZW_GOEDGE 575
#define QU_OTM_GLS_MORGRIGHT 640
#define QU_SC4_ENTER_RIGHT 707
#define ST_MAN8_FLYUP 769
#define MV_MAN8_HANDSDOWN 772
#define MV_BRD_PICKBALL 692
#define MV_INV_OLDGLASSES_default 403
#define PIC_INV_OLDEGG 370
#define MV_INV_OLDCOIN_default 390
#define ANI_INV_OLDCOIN 386
#define MV_SLN_POT_TURNBACK 634
#define ST_VSN_NORMAL 906
#define ST_VSN_RIGHT 956
#define QU_VSN_DRYG 958
#define PIC_SC6_CLKAXIS 1006
#define MV_MAN_FROMTRUBAVER2 1024
#define MV_SC4_COIN_default 1029
#define PIC_SC4_HOLE 1038
#define MSG_SC2_LADDERCLICK 1101
#define MSG_SC8_HIDELADDER_D 1107
#define MV_MAN11_SWING_2 1112
#define MV_MAN11_JUMPONSWING 1125
#define PIC_SCD_13 1195
#define MV_GMA_TOTRUBA 1234
#define MV_BAL14_SPIN 1247
#define QU_SC15_ENTER_RIGHT 1274
#define ST_WHR19_SPIN 1318
#define PIC_SC18_RTRUBA2 1322
#define ST_BDG_CLOSED 1380
#define ST_INV_BOTTLEFULL_default 1423
#define QU_SC16_TAKEMUG 1435
#define MV_BTL_FILL 1430
#define MV_HND17_CYCLE 1452
#define MSG_SC18_SHOWMANJUMPTO 1508
#define QU_SC18_ENTER_RIGHT 1521
#define ST_HND17_ASK 1559
#define MV_INV_EGGAPL_default 1565
#define MV_GFA_BREATHE 1589
#define ST_GFA_SITSOCK 1592
#define ST_GFA_SWINGSOCK 1598
#define QU_SC22_ENTER_UP 1619
#define ST_CND_2 1707
#define MV_CND_4_5 1712
#define MV_CND_9_0 1722
#define PIC_SCD_24 1845
#define MV_MAN24_TAKEBOARD 1876
#define ANI_INV_SWAB 1917
#define MV_CHI_HIDE 1961
#define ST_BTA_EMPTY 2050
#define ST_SHR_EMPTY 2150
#define MV_MAN29_HIT 2088
#define QU_DLD_BLINK 2216
#define QU_FFT_PIPE_LOOKFLAG 2302
#define PIC_SCD_35 2412
#define MV_GMA20_FLR_LOOK 2430
#define MV_GMA20_STD_BLINK 2435
#define ANI_STOOL_20 2463
#define MV_CTS_CYCLEDOWN 2470
#define MSG_SC22_SHOWSTOOL 2495
#define MV_BOX34_MAIN 2499
#define MV_MAN1_TAKEDOMINO 2614
#define QU_SC33_STARTWATER 2644
#define ST_HZE_CUT 2678
#define MV_POT_9 2698
#define ST_BTS11_2 2707
#define QU_SC14_EXITLIFT 1226
#define QU_SC34_ENTERLIFT 2819
#define ST_EGTR_MID1 2863
#define MV_MOM_TAKE2 2886
#define MSG_SC6_JUMPFW 2901
#define MSG_SC6_RESTORESCROLL 2906
#define ST_DRP3_NORM2 2923
#define MV_MAN3_GIVECOIN_3 2930
#define MSG_SC31_PULL 2944
#define QU_SC6_DROPS3 2955
#define ANI_NADUVTAIL 3023
#define PIC_SC11_LADDER 3038
#define QU_BTT_CLOCK 3195
#define ST_BAL14_NORM4 3219
#define MSG_SC14_HIDEPINK 3248
#define QU_JET17_DROP 3295
#define ST_BTL_FULL2 3307
#define MV_MAN_SHOES2 3387
#define SND_8_009 3619
#define SND_9_008 3652
#define SND_11_005 3684
#define SND_11_016 3700
#define SND_11_027 3711
#define SND_13_003 3743
#define SND_14_002 3779
#define SND_14_013 3795
#define QU_SC16_SND1 3821
#define SND_16_011 3831
#define SND_16_022 3842
#define SND_16_033 3853
#define QU_SC17_SND2 3866
#define SND_17_010 3874
#define SND_17_021 3885
#define SND_20_007 3940
#define SND_22_005 3983
#define SND_22_016 3999
#define SND_22_027 4010
#define SND_24_003 4006
#define SND_26_001 4077
#define SND_26_012 4093
#define QU_SC28_SND2 4149
#define SND_28_010 4157
#define MSG_SC9_TOLADDER 4206
#define MV_MAN25_STARTROW 1880
#define MSG_SC28_TURNOFF_6 4273
#define QU_SC29_SND3 4337
#define SND_30_008 4371
#define SND_31_007 4390
#define SND_32_006 4402
#define SND_32_017 4413
#define SND_32_028 4424
#define SND_33_005 4437
#define MV_JTI33_POURFULL 4455
#define SND_35_003 4496
#define SND_35_014 4512
#define MV_BOX34_FLOOR 4564
#define MV_GLV_DRINKBOTTLE 2164
#define SND_35_025 4603
#define SND_34_037 4617
#define PIC_MSV_8_D 4658
#define QU_TBL_GOR 4709
#define SND_27_044 4687
#define ST_BRDCMN_GOR 4734
#define ST_BOT15_NORM 4781
#define MV_LUK26_HIT 4889
#define PIC_CSR_GOR 4898
#define rMV_BRDCMN_STOPR 4945
#define MSG_SC16_SHOWBEARDED 4956
#define SND_CMN_068 4968
#define rMV_KBK_FROMTRUBA 4973
#define SND_13_036 4992
#define SND_32_039 4997
#define PIC_INTR1_RTRUBA 5002
#define PIC_FIN1_UTRUBA 5004
#define ST_FNFNG_AFTER 5065
#define ST_FNG_SINGLE 5078
#define SND_22_038 5306
#define SND_23_015 5309
#define PIC_MAP_A03 5265
#define PIC_MAP_A14 5276
#define PIC_MAP_P05 5281
#define PIC_MAP_P16 5292
#define SND_CMN_035 3714
#define SND_28_021 4672
#define PIC_MAP_S13 5235
#define PIC_MAP_S24 5246
#define PIC_MAP_S35 5259
#define PIC_MAP_H30 5384
#define PIC_MAP_S03 5225
#define SND_13_037 5335
#define PIC_SC26_SOCK 5312
#define PIC_SC11_RTRUBA 1120
#define PIC_SC3_DOMIN 5182
#define MV_BHD_GOR 4939
#define rMV_BHD_GOR 4941
#define SND_INTR_013 5158
#define ST_IN1HAND_BEFORE 5115
#define MV_IN1HAND_DO 5114
#define MV_FNHED_NOSE 5045
#define ST_FNHED_NORM 5044
#define ST_FNHND3_NORM 5039
#define MSG_FIN_GOTO2 5024
#define QU_SC33_TRYKUBIK 4979
#define QU_BRD16_FLYL 4954
#define QU_EGG6_GOL 4936
#define ST_BBL_GOR 4925
#define SND_25_025 4874
#define SND_CMN_058 4869
#define PIC_INV_MUGFULL_C 4846
#define PIC_INV_HANDLE_C 4842
#define PIC_INV_DOMINO_C 4832
#define PIC_INV_CARPET_C 4830
#define PIC_INV_SWAB_H 4819
#define PIC_INV_GLASSES_H 4802
#define PIC_INV_BOARD_H 4787
#define MV_MAN_LOOKMONETOPR 4770
#define SND_38_034 4730
#define SND_36_014 4608
#define ANI_BOOT_34 4560
#define QU_SC26_SHOWSOCK 4556
#define QU_SC37_SND1 4541
#define SND_37_002 4537
#define SND_36_003 4522
#define SND_34_027 4487
#define SND_34_016 4476
#define SND_34_005 4460
#define SND_33_006 4443
#define SND_29_021 4355
#define ST_STL34_BOX2 4305
#define MV_TTA_GOD 4290
#define MSG_SC28_ENDLIFT6 4244
#define SND_38_023 4190
#define SND_38_012 4177
#define QU_SC38_SND2 4167
#define SND_38_001 4161
#define SND_27_034 4135
#define SND_27_023 4124
#define SND_27_012 4113
#define QU_SC27_SND2 4103
#define SND_27_001 4097
#define SND_25_014 4067
#define QU_SC25_SC3 4056
#define SND_25_003 4051
#define SND_21_007 3961
#define QU_SC19_SND5 3918
#define QU_SC18_SND4 3904
#define QU_SC15_SND1 3803
#define SND_15_002 3799
#define SND_13_026 3771
#define SND_13_015 3760
#define SND_12_016 3736
#define SND_12_005 3720
#define SND_10_007 3673
#define SND_1_011 3524
#define SND_2_021 3515
#define MSG_SC26_UPDATEDROP 3496
#define QU_CHI_NORM 3485
#define QU_WMN_SHOWBEFORE 3450
#define ST_WMN28_EMPTY 3444
#define MV_MUG17_FILLDROP 3412
#define QU_MAN_DEF_STARTSHOES1 3379
#define MV_CDI_BLINK 3311
#define PIC_SC19_LADDER2 3301
#define ST_GRL_POPA 3277
#define ST_SPK4_NORM2 3113
#define QU_SC1_SND5 3224
#define SND_CMN_014 3138
#define SND_2_010 3092
#define MV_MID11_SWAB 3025
#define ST_BOT4_LEFT 2882
#define MV_MAN_STOPLADDER2 2845
#define QU_SC6_ENTER_LIFTDOWN 2810
#define QU_SC6_EXITLIFT 1055
#define MV_LBN_9H 2806
#define MV_LBN_7 2770
#define ST_LBN_1P 2754
#define ANI_BALLDROP 2685
#define MV_MAN25_TAKEPOTTIE 2676
#define MV_KDK_DRIZZLE 2671
#define MV_MAN35_PLUGPIPE 2513
#define MV_LEG_POT0_SHOW 2323
#define QU_SC32_ENTER_RIGHT 2295
#define PIC_SC32_RTRUBA 2292
#define MV_FLG_STOPL 2261
#define QU_SC38_SHOWDMN_DLD2 2255
#define QU_SC29_ENTER_UP 2077
#define QU_SC28_ENTER_RIGHT 2076
#define QU_DRV_STARTDRIVE 2029
#define ST_MID_BROOM 2022
#define ST_DRV_RIGHTNOVENT 2002
#define MV_DRV_TOLEFT 1998
#define ANI_VODILLA 1994
#define ANI_INV_VENT 1968
#define QU_SC26_CLOSE1 1936
#define MV_MAN25_TRYSWAB 1888
#define PIC_SC24_PIPE2 1871
#define QU_SC25_ENTER_RIGHT 1862
#define ST_LUK23U_CLOSED 1819
#define MV_LUK23U_OPEN 1818
#define MV_LUK23_OPEN 1814
#define QU_SC22_SHOWSACK 1792
#define QU_SC22_SHOWSTOOL 1793
#define MV_MSH_MOVE 1755
#define MV_TABURETTE_default 1746
#define PIC_INV_SOCK 1701
#define MV_MAN2_TAKEBOX 1695
#define ST_GRFU_KISS 1681
#define PIC_SC22_UTRUBA 1587
#define PIC_SC22_DTRUBA 1586
#define MV_KSL_SWING 1460
#define QU_GRL_LAUGH 1376
#define ST_WHR18_SPIN 1301
#define MV_GRD2_LOOKLEFT 1284
#define QU_GRD2_BLINK1 1288
#define QU_GMS_DRYG 1277
#define ANI_BALL14 1246
#define PIC_INV_GUM2 1207
#define ST_INV_GUM2_default 1206
#define MV_HDLR_0_1 1197
#define ST_SWR_SIT 1147
#define QU_NDV_EAT 968
#define ANI_BIGLUK 909
#define ANI_INV_OLDBOOT 396
#define ST_SLN_POT_HOBOT 839
#define MV_BTT_SLEEP 751
#define ST_BTT_SPOON 741
#define PIC_SCD_2 728
#define MV_CST_TURNDOWN 719
#define MV_CST_SPINHEADUP 716
#define ST_CLK_CLOSED 590
#define QU_EGTR_SORROWTOSLIM 526
#define QU_DYAS_DEFAULT5 516
#define MV_EGTR_BRK_BOOT 383
#define MV_DYAS_SLEEPS 317
#define MV_EGTR_SMOBLRV 338
#define ANI_EGGBREAKER 376
#define MV_MANYAS_TAKESCRATE 362
#define ANI_KOZAWKA 495
#define PIC_SC5_LTRUBA 636
#define QU_SC3_ENTER_UP 706
#define ST_MAN8_FLYDOWN 771
#define MV_HGN_PLUU 813
#define ST_SC7_BOX_default 793
#define QU_SCT_LOOK 819
#define MV_SLN_BOOT_DECLINE 832
#define ST_INV_COIN_default 877
#define MV_INV_GLASSES_default 888
#define PIC_SC10_LTRUBA 972
#define LiftDown 1058
#define rMV_MAN_TURN_RL 1072
#define MV_MAN11_FROMDOWN 1151
#define MV_STR_TURNL 1173
#define QU_STR_HIDE 1187
#define PIC_SCD_14 1224
#define QU_GMA_THROW 1255
#define MV_BDG_OPEN 1379
#define QU_SC18_ENTER_UP 1468
#define MSG_SC18_MANCLIMBEDUP 1539
#define ANI_INV_EGGCOIN 1567
#define ST_INV_EGGCOIN_default 1569
#define QU_GFA_SWINGSOCK 1615
#define QU_DYAS_SLEEP 1690
#define ST_CND_3 1709
#define MV_CLN_ZHMUR 1768
#define PIC_SCD_25 1846
#define QU_SC25_ROWTOLADDER 1910
#define ST_INV_SWAB_default 1919
#define MV_GRFM_ASS 1982
#define MV_ASS_TAIL 2121
#define rMV_ASS_SHOW 2126
#define ST_BTL38_NORM 2190
#define QU_GLV_HMRKICK 2207
#define MV_FFT_0_1 2274
#define QU_GLV_DRINKBOTTLE 2286
#define PIC_INV_TUBE 2320
#define MV_MAN36_GOOUT 2367
#define MV_MAN36_SHAKE 2368
#define QU_SC35_ENTER_LEFT 2410
#define ANI_HOSE 2424
#define QU_GMA20_STL_NOSE 2447
#define QU_GMA20_STD_BLINK 2450
#define MV_STL20_NORM 2464
#define QU_CTS34_BLINK 2388
#define MV_MAN34_GOUP 2484
#define ANI_INV_STOPPER 2535
#define MV_LUK34_OPEN 2542
#define PIC_SCD_36 2567
#define MV_GRD3_PULL 2578
#define MV_GMA22_TAKESTOOL 2610
#define QU_SC22_FALLSACK_GMA 2613
#define ANI_JETTIE_FLOW 2627
#define MV_TSTB_FLOW 2660
#define ST_TSTG_NORM 2664
#define ST_POT_9 2699
#define PIC_SC9_LADDER_R 2700
#define ST_DMN3_NORM 2734
#define MV_MAN_FROMHORTRUBA2 2846
#define MV_MAN_FROMLADDER 493
#define ST_EGTR_MID2 2869
#define MV_MOM_TAKE3 2887
#define MV_MOM_JUMPCLOSED 2892
#define ST_INV_EGGBLACK_default 2920
#define MV_CST_TRYCLOSE 2874
#define QU_SC6_FALLGRIT2 2966
#define PIC_CMN_SAVE 3034
#define MV_GRIT2_FALL 3190
#define ST_HDLL_HAMMER 3205
#define MSG_SC14_SHOWBALLLAST 3246
#define MSG_SC14_HIDEBALLLAST 3251
#define PIC_SC18_BOARD 3296
#define PIC_SC18_RTRUBA3 3298
#define ST_DMS_3 3319
#define ST_HDL_BROKEN 3342
#define rMV_MAN_SHOES1 3383
#define MV_DRP24_TOWATER 3506
#define SND_9_009 3653
#define SND_11_006 3690
#define SND_11_017 3701
#define SND_11_028 3712
#define SND_13_004 3744
#define SND_14_003 3780
#define SND_14_014 3796
#define SND_16_001 3816
#define QU_SC16_SND2 3822
#define SND_16_012 3832
#define SND_16_023 3843
#define SND_16_034 3854
#define QU_SC17_SND3 3867
#define SND_17_011 3875
#define SND_17_022 3886
#define SND_20_008 3941
#define SND_22_006 3989
#define SND_22_017 4000
#define SND_22_028 4011
#define SND_24_004 4007
#define SND_26_002 4078
#define QU_SC26_SND1 4082
#define SND_26_013 4094
#define QU_SC28_SND3 4150
#define SND_28_011 4158
#define MV_LFT28_OPEN 4239
#define ST_LFT28_CLOSED 4240
#define QU_MAN32_LOOKDOWN 4303
#define QU_SC29_SND4 4338
#define SND_29_010 4344
#define SND_30_009 4372
#define SND_31_008 4391
#define SND_32_007 4403
#define SND_32_018 4414
#define SND_32_029 4425
#define SND_35_004 4497
#define SND_35_015 4513
#define SND_3_020 4550
#define SND_4_030 4551
#define MSG_SC27_TAKEVENT 4584
#define QU_SC35_FALLGRIT 4611
#define SND_34_038 4618
#define PIC_MNU_CONTINUE_D 4625
#define PIC_MLD_CANCEL_L 4649
#define PIC_MSV_9_D 4659
#define PIC_MSV_1_L 4660
#define SND_28_022 4673
#define SND_CMN_047 4692
#define ST_TBL_R 4707
#define ST_BRDCMN_RIGHT 4732
#define SND_35_026 4863
#define MV_MAN11_TAKEBOOT 4884
#define MV_GMA20_STL_DENY 4886
#define PIC_CSR_DEFAULT 4891
#define QU_BALL_WALKR 4919
#define SND_CMN_069 4969
#define QU_KBK32_START 4982
#define SND_18_010 4994
#define QU_FN1_ENTER_RIGHT 5005
#define SND_FIN_030 5105
#define MSG_FIN_ENDFINAL 5109
#define MV_IN1GLS_NORM 5120
#define ANI_IN2BOOT 5140
#define SND_INTR_002 5147
#define PIC_MSV_SPACE_L 5191
#define SND_21_029 5213
#define SND_17_033 4018
#define SND_23_016 5310
#define MSG_SC34_ONBUMP 5313
#define PIC_MAP_A04 5266
#define PIC_MAP_P06 5282
#define PIC_MAP_P17 5293
#define PIC_CSR_MAP 5339
#define SND_CMN_025 3407
#define SND_CMN_036 3715
#define PIC_MOV_BGR 5343
#define PIC_MAP_S14 5236
#define PIC_MAP_S25 5247
#define PIC_MAP_S36 5260
#define PIC_MAP_H31 5385
#define PIC_MAP_H20 5374
#define PIC_MAP_S04 5226
#define MSG_SC3_ONTAKECOIN 5338
#define PIC_CSR_HELPERBGR 5331
#define SC_30 2064
#define SND_INTR_014 5159
#define SND_INTR_003 5148
#define ST_CLK1_CYCLE 5129
#define SND_FIN_020 5092
#define MSG_FIN_GOTO3 5071
#define MV_FCN_FALL 5015
#define SND_25_026 4875
#define SND_CMN_059 4873
#define PIC_INV_LEVERHANDLE_C 4843
#define PIC_INV_BROOM_C 4829
#define PIC_INV_BOTTLE_C 4826
#define PIC_INV_VENT_H 4822
#define PIC_INV_HAMMER_H 4805
#define PIC_INV_EGGCOIN_H 4800
#define QU_SC29_BRD1 4741
#define SND_CMN_048 4702
#define QU_EGTR_MD2_SHOW 4698
#define SND_3_021 4696
#define SND_28_023 4683
#define MSG_SC28_TURNON_0 4677
#define ANI_BUTTON_27 4579
#define QU_SC37_SND2 4542
#define SND_37_003 4538
#define QU_SC36_SND1 4525
#define SND_36_004 4523
#define SND_34_028 4488
#define SND_34_017 4477
#define SND_34_006 4466
#define SND_33_007 4444
#define SND_29_022 4356
#define ANI_TIOTIA 4286
#define MSG_SC28_LIFT1_SHOWAFTER 4261
#define ST_MAN28_WASH 4250
#define QU_SC25_MANLOOKUP 4213
#define SND_38_024 4191
#define QU_SC38_HMRKICK 4180
#define SND_38_013 4178
#define QU_SC38_SND3 4168
#define SND_38_002 4162
#define SND_27_035 4136
#define SND_27_024 4125
#define SND_27_013 4114
#define QU_SC27_SND3 4104
#define SND_27_002 4098
#define SND_25_015 4068
#define QU_SC25_SND1 4054
#define SND_25_004 4052
#define SND_23_006 4024
#define SND_21_019 3973
#define SND_21_008 3962
#define SND_19_010 3923
#define QU_SC18_SND5 3905
#define QU_SC15_SND2 3804
#define SND_15_003 3800
#define SND_13_027 3772
#define SND_13_016 3761
#define SND_12_017 3737
#define SND_12_006 3726
#define SND_10_008 3674
#define SND_1_012 3525
#define SND_2_022 3518
#define MV_MAN27_SPADE2SWAB 3486
#define MSG_SC17_DROP 3414
#define QU_SC27_RESTARTBETS 3370
#define QU_SC22_TRYHANDLE 1802
#define ANI_SPEAKER_4 3275
#define SND_CMN_015 3139
#define SND_4_020 3135
#define SND_3_010 3109
#define SND_2_011 3093
#define SND_CMN_004 3074
#define QU_SC13_CLOSESUCCESS 3062
#define QU_STR_TURNR_L 3059
#define QU_SC13_OPENFAIL 3042
#define QU_MOM_OPENEYE 2949
#define MSG_SC6_ENABLEDROPS 687
#define PIC_SC4_LBTRUBA 2884
#define MV_MAN17_TAKEFIRECAN 2859
#define ST_LBN_0P 2833
#define QU_SC15_ENTERLIFT 2811
#define ST_LBN_9H 2807
#define MV_LBN_8H 2804
#define MV_LBN_8 2773
#define QU_SC6_FALLBALL 2690
#define MV_SPR_NORM 2516
#define ST_LEG_DOWN1 2330
#define ANI_LEG 2322
#define ST_FLG_LEFT 2260
#define PIC_SC38_TABLE 2206
#define MV_MAN29_BEND 2091
#define PIC_SC29_LTRUBA 2081
#define QU_MID_BROOM 2046
#define QU_MID_LOOK 2045
#define MV_MID_SWITCH 2020
#define ST_MID_SWAB2 2019
#define QU_SC26_CLOSE2 1938
#define MV_WTR25_FLOW 1857
#define PIC_SC25_UTRUBA 1852
#define MV_JET24_FLOW 1838
#define QU_SC23_STARTKISS 1822
#define QU_GRFU_KISS 1821
#define QU_SC22_PUTSTOOL 1803
#define MV_MAN22_TAKEHANDLE 1752
#define ST_TABURETTE_default 1747
#define QU_GRFU_STOPCHMOK 1671
#define QU_GRFU_BLINKDOWN 1668
#define PIC_SC22_LADDER 1585
#define ST_KSL_JUMPMAN 1505
#define ST_GRL18_FLYFROM 1486
#define ANI_GIRL18 1484
#define MV_KSL_1_2 1467
#define MV_MAN16_TAKEMUG 1362
#define MV_BOY_PULL 1332
#define MV_GMA_JUMPFW 1230
#define MV_MAN13_PUTGUM 1203
#define ST_HDLR_GUM 1201
#define MV_SWR_SWING 1114
#define MSG_SC3_UTRUBACLICK 1103
#define MV_MAN_STOPLADDERD 458
#define MSG_SC10_HIDEGUM 993
#define MSG_SC5_SHOWHANDLE 918
#define MSG_SC5_TESTLUK 914
#define MV_BLK_OPEN 910
#define PIC_INV_OLDCOIN 406
#define ST_INV_EGG_default 871
#define ANI_INV_APPLE 878
#define QU_SLN_POT_MOVEBACK 854
#define MV_SLN_BOOT_KICK 828
#define MV_BTT_EAT 740
#define PIC_SCD_3 729
#define ST_CST_WHANDLE 715
#define PIC_SC1_UTRUBA 699
#define MSG_CLICKBOTTLE 569
#define ST_PNK_WEIGHTRIGHT 504
#define ST_SPR_UP 544
#define QU_EGTR_FATSLAP 529
#define MV_MAN_TURN_DR 491
#define MV_MAN_TURN_UR 487
#define MV_MAN_FROMHORTRUBA 475
#define ST_OTM_GLS_LEFT 421
#define MV_EGBR_KACHAET 381
#define MV_EGTR_FATOBLRV 373
#define MV_EGTR_SLIMTRAIN 342
#define MV_OTM_BOXDEFAULT 431
#define MV_MAN_TOTRUBAHOR 445
#define ST_KZW_RIGHT 559
#define QU_KZW_WALKBOTTLE2 579
#define QU_SC4_CLOSECLOCK 597
#define PIC_SC4_LRTRUBA 616
#define MV_OTM_HANDLEDOWN 620
#define MV_OTM_BOXHANDLEDOWN 626
#define ST_MOM_STANDS 658
#define MV_CST_MORG 712
#define ST_INV_OLDHANDLE_default 797
#define PIC_INV_OLDAPPLE 409
#define ST_PBAR_FINISH 899
#define PIC_SC9_RTRUBA 901
#define ST_BALL9_EMPTY 940
#define ST_NDV_TURN 950
#define ANI_LIFT 982
#define MV_MAN4_TAKEAPPLE 1039
#define ST_LFT_CLOSED 1049
#define MV_MAN_TURN_SDU 1086
#define MV_MAN_TURN_SUD 1089
#define MV_MAN_STARTR 324
#define MSG_SC6_UTRUBACLICK 1105
#define ANI_MAN11 1108
#define PIC_INV_GUM 1160
#define ST_GMA_SIT 1229
#define MV_MAN14_STEPFW 1240
#define PIC_SCD_15 1278
#define MV_GRD2_PULL 1280
#define PIC_SC17_LADDER 1324
#define PIC_INV_MUG 1373
#define MV_HND17_FROMCYCLE 1453
#define QU_HND17_ASK 1456
#define MSG_SC17_UPDATEHAND 1560
#define ST_INV_EGGAPL_default 1566
#define ANI_INV_EGGBOOT 1570
#define MV_INV_EGGBOOT_default 1571
#define ST_GFA_SWING 1596
#define MV_GFA_CHESHSOCK 1604
#define ST_GRFG_HAIR 1677
#define ST_CND_4 1711
#define MV_CND_5_6 1714
#define ST_CLN_STAND 1769
#define ANI_INV_LEVERHANDLE 1777
#define ST_INV_LEVERHANDLE_default 1779
#define ANI_INV_STOOL 1780
#define PIC_SCD_26 1847
#define ST_BRD25_RIGHT 1900
#define PIC_INV_SWAB 1923
#define ST_CHI_NORM 1960
#define QU_CHI_SHOW 1964
#define MSG_SC29_DISABLERIDEBACK 2106
#define QU_ASS_TAIL_R 2135
#define ST_FFT_TUBEFLOW 2232
#define ST_FFT_PIPEOPEN 2244
#define PIC_SC32_HDLBASE 2400
#define MV_MAN32_SPIN 2403
#define ST_PDV_LARGE 2421
#define MV_CTS34_SHRINK 2477
#define MV_VNT34_SPIN 2480
#define MV_MAN34_TRY 2485
#define MV_MAN34_BOARD_BUMP 2504
#define QU_LUK34_OPEN 2546
#define PIC_SCD_37 2568
#define MV_MOM_BLINK 825
#define rMV_MAN_FROMHORTRUBA2 2847
#define MV_EGTR_MD1_JOY 2867
#define MV_MOM_TAKE4 2888
#define ANI_POOL_3 2924
#define MSG_SC1_SHOWOSK2 468
#define MSG_SC4_HANDOVER 2960
#define MV_GRIT1_FALL 2962
#define QU_SWR_SITBALD 3007
#define ST_SWR_STAND3 3014
#define QU_SWR_STAND 3015
#define MV_PCH_NORM 979
#define QU_MID11_SWAB 3032
#define SND_1_001 3041
#define ST_MUG38_NORM2 3183
#define ST_GRIT2_GRIT 3192
#define ST_DMS_4 3320
#define QU_CLN_TUZH 3327
#define MV_MAN23_TRY 3333
#define rMV_TABURETTE_default 3336
#define QU_MAN_DEF_STARTSHOES2 3394
#define rMV_MAN_SHOES2 3399
#define ST_DRP24_EMPTY 3507
#define SND_11_007 3691
#define SND_11_018 3702
#define SND_11_029 3713
#define SND_13_005 3745
#define SND_14_004 3781
#define QU_SC14_SND1 3783
#define SND_14_015 3797
#define SND_16_002 3817
#define QU_SC16_SND3 3823
#define SND_16_013 3833
#define SND_16_024 3844
#define SND_16_035 3855
#define SND_17_001 3860
#define QU_SC17_SND4 3868
#define SND_17_012 3876
#define SND_17_023 3887
#define SND_20_009 3942
#define SND_22_007 3990
#define SND_22_018 4001
#define SND_22_029 4012
#define SND_CMN_037 4030
#define SND_24_005 4028
#define SND_26_003 4079
#define QU_SC26_SND2 4083
#define SND_26_014 4095
#define SND_28_001 4143
#define QU_SC28_SND4 4151
#define SND_28_012 4159
#define MSG_SC25_TOLADDER 4215
#define MV_MAN1_PUTBOOT 4230
#define MSG_SC32_ONLADDER 2270
#define QU_SC29_SND5 4339
#define SND_29_011 4345
#define SND_32_008 4404
#define SND_32_019 4415
#define SND_35_005 4498
#define SND_35_016 4514
#define MV_DRV_PUSHBUTTON 2005
#define ST_CPT36_NORM 4602
#define QU_SC36_SHOWCARPET 4605
#define SND_36_015 4610
#define SND_34_039 4619
#define PIC_MNU_EXIT_D 4621
#define PIC_MSV_OK_L 4636
#define PIC_MSV_CANCEL_L 4638
#define PIC_MSV_2_L 4661
#define SND_31_009 4727
#define SC_1 301
#define PIC_CSR_DEFAULT_INV 4892
#define QU_KBK33_START 4983
#define SND_4_031 4988
#define MV_FNFNG_0_1 5077
#define SND_FIN_031 5106
#define MSG_LIFT_STARTEXITQUEUE 5186
#define SND_38_035 5204
#define SND_17_034 4023
#define PIC_MNU_RESTART_L 5299
#define QU_SC22_TRYBOX 5311
#define PIC_MAP_A05 5267
#define PIC_MAP_P07 5283
#define PIC_MAP_P18 5294
#define SND_CMN_026 3408
#define PIC_MAP_S15 5237
#define PIC_MAP_S26 5248
#define PIC_MAP_S37 5261
#define PIC_MAP_H32 5386
#define PIC_MAP_H21 5375
#define PIC_MAP_H10 5366
#define PIC_SC17_RTRUBA2 5297
#define SND_36_016 5208
#define ST_PBAR_FINISH2 5179
#define SC_31 2065
#define SND_INTR_015 5160
#define SND_INTR_004 5149
#define MV_IN1CLK_SHOW 5127
#define ST_IN1MAN_SLEEP 5112
#define PIC_FN4_LADDER 5096
#define SND_FIN_021 5093
#define SND_FIN_010 5082
#define MSG_FIN_GOTO4 5075
#define ST_FNHND5_AFTER 5055
#define ST_FNHND4_AFTER 5051
#define MV_FNHED_SHOWHAND 5047
#define QU_FIN1_FALLCOIN 5018
#define PIC_SC35_DTRUBA_R2 4986
#define ANI_BIGBALL 4923
#define SND_25_027 4876
#define PIC_INV_SCISSORS_H 4815
#define PIC_INV_EGGBOOT_H 4799
#define rMV_MAN_LOOKMONETOPR 4774
#define MSG_SC15_ASSDRYG 4755
#define MV_TBE36_NORM 4750
#define QU_SC29_BRDOUT1 4743
#define QU_SC29_BRD2 4742
#define rMV_BRD_FALL 4737
#define SND_CMN_049 4703
#define QU_EGTR_MD1_SHOW 4697
#define MSG_SC23_HIDEGIRAFFEE 4650
#define ST_CPT35_NORM 4594
#define ST_BOT34_NORM 4562
#define MV_MAN26_PUTSOCK 4557
#define QU_SC37_SND3 4543
#define SND_37_004 4539
#define QU_SC36_SND2 4526
#define SND_36_005 4524
#define SND_34_029 4489
#define SND_34_018 4478
#define SND_34_007 4467
#define SND_33_008 4445
#define SND_29_023 4357
#define QU_SC32_FROMLADDER 4300
#define SND_38_025 4192
#define SND_38_014 4179
#define QU_SC38_SND4 4169
#define SND_38_003 4163
#define SND_27_036 4137
#define SND_27_025 4126
#define SND_27_014 4115
#define QU_SC27_SND4 4105
#define SND_27_003 4099
#define SND_25_016 4069
#define QU_SC25_SND2 4055
#define SND_25_005 4053
#define SND_23_007 4025
#define SND_21_009 3963
#define SND_19_011 3924
#define SND_14_016 3813
#define QU_SC15_SND3 3805
#define SND_15_004 3801
#define SND_13_028 3773
#define SND_13_017 3762
#define SND_12_018 3738
#define SND_12_007 3727
#define SND_10_009 3675
#define SND_6_030 3569
#define SND_1_013 3526
#define SND_2_023 3520
#define ST_DRP25_EMPTY 3501
#define MV_MID_SPADE 3488
#define MSG_SC25_STARTBEARDEDS 3423
#define ST_BRDCMN_EMPTY 3422
#define SND_CMN_027 3409
#define ST_VNT27_LIES2 3354
#define ST_VNT26_UP 1929
#define rMV_MAN25_CHIH 3343
#define MV_MAN24_TRY 3340
#define SND_2_001 3083
#define QU_SC18_ENTER_UPRIGHT 3302
#define QU_SC16_SHOWBOOT 3290
#define MV_KZW14_JUMP 3268
#define ST_KZW14_FRONT 3264
#define MV_KZW14_SHOW 3262
#define MV_GMA_BACKOFF2 3217
#define ST_BTL38_FULL 3172
#define SND_CMN_016 3140
#define SND_4_021 3136
#define SND_4_010 3125
#define SND_2_012 3094
#define SND_CMN_005 3075
#define SND_1_002 3066
#define rMV_STR_TURNL 3050
#define QU_SC13_OPENSUCCESS 3047
#define MSG_SC7_PULL 2943
#define MV_FCN_NORM 2861
#define QU_SC15_ENTER_LIFTDOWN 2814
#define ST_LBN_8H 2805
#define MV_LBN_7H 2802
#define LIFTBTN_1 2781
#define MV_LBN_9 2776
#define ST_GRT9_NORM 2721
#define ST_BDP_NORM 2687
#define MV_MAN34_BOARD_STAND 2548
#define MV_MAN34_JUMPDOWN 2385
#define ST_LEG_DOWN2 2334
#define MV_MAN32_TUBETOPIPE 2275
#define ANI_FLAG 2257
#define MSG_SC29_ENABLEPORTER 2096
#define QU_MID_SWAB2 2043
#define MV_MID_KERN 2016
#define MV_DRV_FROMCYCLE 2003
#define PIC_INV_VENT 1971
#define MSG_SC26_HIDEVENT 1945
#define QU_SC26_CLOSE3 1940
#define QU_SC25_TRYBROOM 1912
#define MV_MAN25_ROW 1882
#define QU_SC26_ENTER_UP 1865
#define QU_WTR25_FLOW 1859
#define MV_WTR24_FLOW 1835
#define QU_JET24_FLOW 1841
#define ANI_JET24 1837
#define QU_SC21_SHOWLEVER 1789
#define QU_GRFU_TURN_UD 1664
#define MV_GRFB_DANGLE 1639
#define ST_MAN18_STANDKSL 1501
#define MV_WR16_DEFAULT 1345
#define MV_SMG_FINGERS 1404
#define MV_MAN16_PUTMUG 1369
#define PIC_SC16_TUMBA 1368
#define MV_GRL_STARTLAUGH 1341
#define MV_GRL_DRINK 1339
#define PIC_SCD_16 1299
#define QU_GMA_JUMPFW 1249
#define MV_INV_BALL_default 1243
#define PIC_SC14_RTRUBA 1221
#define MV_HDLR_1_2 1200
#define PIC_SC11_LTRUBA2 1150
#define MSG_SC11_RESTARTMAN 1133
#define MV_MAN11_JUMPHIT 1129
#define PIC_SC1_LADDER 1091
#define ST_KCH_180 1097
#define MSG_SC10_SHOWGUM 994
#define MV_MAN12_BOOT2POT 984
#define QU_NDV_LOOK 970
#define ST_GLT_FLOWN 932
#define ANI_PLEVATEL 919
#define PIC_INV_OLDBOOT 407
#define QU_SLN_POT_MOVE 853
#define QU_SLN_BOOT_LOOK 848
#define MV_SLN_POT_INOUT 845
#define ANI_SC7_BOX 791
#define QU_HGN_MORG 814
#define ST_MAN8_ONLADDER 786
#define MV_MAN8_GOODLUCK 785
#define MSG_STARTARCADE 781
#define PIC_SCD_4 730
#define QU_MOM_SHAKE 672
#define MV_HND_TAKE0 604
#define MV_KZW_RAISEHEAD 577
#define ST_MAN_ONPLANK 552
#define PIC_TEST 508
#define ST_MAN_GOLADDER 450
#define MV_EGBR_LOWERHEAD 382
#define ST_EGTR_SLIM 336
#define MV_OTM_GLS_DECLINES 426
#define MV_OTM_BOX_TURNR 428
#define ST_OTM_BOX_LEFT 429
#define MV_OTM_MORGLEFT 420
#define MSG_EGGEATEN 535
#define ANI_MAMASHA 656
#define TrubaDown 697
#define ST_VMT_MIN 766
#define MV_SCT_MORG 799
#define ANI_INV_HAMMER 884
#define ST_NDV_SIT 946
#define MV_MAN6_INSTHANDLE 1007
#define MSG_SHOWCOIN 1033
#define PIC_SC8_ARCADENOW 1043
#define MV_LFT_CLOSE 1053
#define MV_KCH_MAIN 1095
#define ST_MAN11_EMPTY 1110
#define MV_MAN11_JUMPTOSWING 1126
#define ANI_INV_VANTUZ 1157
#define MV_INV_VANTUZ_default 1158
#define PIC_SC13_LTRUBA 1171
#define ST_STR_RIGHT 1174
#define QU_STR_NOSE 1188
#define ANI_HANDLE_L 1209
#define MV_GMA_BLINK 1228
#define MV_MAN14_KICK 1237
#define QU_SC15_ENTER_UP 1275
#define MV_BOY_KICK 1355
#define ANI_INV_BOTTLE 1418
#define QU_HND17_FROMCYCLE 1457
#define PIC_SC18_LADDER1 1471
#define MSG_SC18_SHOWBOYJUMP 1495
#define MV_MAN_FROMLADDERUP 1522
#define PIC_INV_EGGCOIN 1577
#define MV_GFA_TOSWINGSOCK 1600
#define QU_GFA_STARTSOCK 1613
#define MV_GRFG_SHOWHAIR 1676
#define MV_GRFG_BLINKHAIR 1679
#define QU_GRFU_TURN_DU 1665
#define ST_CND_5 1713
#define QU_SC23_FROMCALENDAR 1734
#define QU_SC24_ENTER_DOWN 1831
#define QU_SC24_ENTER_DOWNLADDER 1832
#define PIC_SCD_27 1916
#define MV_LUK23_1_2 1974
#define ST_HDL23_DEF 1980
#define MV_BTA_FALL 2049
#define QU_MID_SWITCH 2042
#define PIC_SC29_RFLOOR 2153
#define MV_GLV_HMRKICK 2155
#define MV_GLV_TOSMALL_NOHMR 2161
#define MV_DLD_PUT 2174
#define MV_MLS_TURNRL 2178
#define MSG_SC38_DRINK 2225
#define PIC_SCD_38 2228
#define QU_FFT_PIPE_OPENEYE 2299
#define QU_FFT_PIPE_BLINK 2301
#define QU_FFT_TUBE_STOP 2308
#define MV_INV_PIPE_default 2318
#define QU_LEG_HIDE0 2375
#define MV_CTS34_BLINK 2479
#define ANI_STOOL_34 2486
#define ANI_BOX_34 2498
#define PIC_INV_SCISSORS 2530
#define QU_GRD37_BLINK1 2596
#define MV_JTI33_POUR 2630
#define MSG_SC33_HANDLEDOWN 2643
#define QU_SC6_SHOWNEXTBALL 2689
#define MV_MAN33_TAKETUBE 2718
#define ANI_MUG_17 2737
#define QU_SC3_EXITLIFT 2808
#define MV_EGTR_MD2_JOY 2872
#define QU_DRP3_DROP 2876
#define QU_EGTR_MD2_BOLTLEGS 2879
#define MV_MOM_TAKE5 2889
#define PIC_SC4_BOTTLE2 2936
#define ST_GRT1_GRIT 2964
#define ST_HDLR_DOWN_GUM 3044
#define SND_5_020 3161
#define ST_RPE15_NORM 3257
#define MV_DMS_FOUR 3322
#define MSG_SC27_HANDLERTOBACK 3372
#define QU_MAN_DEF_SHOES1_R 3392
#define MV_GRFM_AFTER 3473
#define MV_GRFU_OPENEYES 3474
#define SND_11_008 3692
#define SND_11_019 3703
#define QU_SC13_SND1 3746
#define SND_13_006 3751
#define SND_14_005 3782
#define QU_SC14_SND2 3784
#define SND_16_003 3818
#define QU_SC16_SND4 3824
#define SND_16_014 3834
#define SND_16_025 3845
#define SND_16_036 3856
#define SND_17_002 3861
#define QU_SC17_SND5 3869
#define SND_17_013 3877
#define SND_17_024 3888
#define SND_22_008 3991
#define SND_CMN_038 4031
#define QU_SC24_SND1 4036
#define SND_24_006 4041
#define SND_26_004 4080
#define QU_SC26_SND3 4084
#define SND_26_015 4096
#define SND_28_002 4144
#define QU_SC28_SND5 4152
#define SND_28_013 4160
#define MSG_SC28_TURNON_1 4278
#define QU_SC32_TEST1 4297
#define QU_CTS_DEFAULT 4302
#define SND_29_001 4330
#define SND_29_012 4346
#define SND_32_009 4405
#define QU_SC35_SND1 4499
#define SND_35_006 4504
#define SND_35_017 4515
#define SND_3_011 3110
#define MV_RHT_OPEN 2365
#define MV_RNG_OPEN 4612
#define PIC_MNU_LOAD_L 4628
#define PIC_MSV_3_L 4662
#define MV_BRD28_TALK 4680
#define MV_BRDCMN_FLYAWAY 4736
#define ST_SHD_CMN0 4861
#define SC_2 302
#define QU_EGTR_SLIMSHOW 4883
#define PIC_CSR_GOFAR_R 4896
#define PIC_CSR_GOU 4899
#define PIC_CSR_GOD 4900
#define MV_KBK_GOR 4964
#define rMV_KBK_GOR 4972
#define SND_4_032 4989
#define SND_3_022 4991
#define SC_INTRO1 3896
#define ST_FNHND1_NORM 5030
#define SND_FIN_032 5107
#define QU_IN2_DO 5144
#define PIC_SCD_INTR 5163
#define SC_20 1144
#define MSG_SC11_SITSWINGER 5198
#define MSG_SC20_UPDATELOCKABLE 5217
#define ST_HZE_CUT2 5318
#define PIC_MAP_A06 5268
#define PIC_MAP_P08 5284
#define ST_BTN32_ON 5350
#define PIC_MLD_BGR 4645
#define PIC_MAP_S05 5227
#define PIC_MAP_S16 5238
#define PIC_MAP_S27 5249
#define PIC_MAP_S38 5262
#define PIC_MAP_H33 5387
#define PIC_MAP_H22 5376
#define PIC_MAP_H11 5367
#define PIC_SC4_LADDER 1438
#define PIC_SC8_RTRUBA2 2978
#define SC_32 2066
#define SND_INTR_016 5161
#define SND_INTR_005 5150
#define SND_FIN_022 5094
#define SND_FIN_011 5083
#define QU_FN2_CYCLE 5067
#define ST_FHND3_SHOT 5061
#define ST_FNHND6_AFTER 5059
#define ST_BHD_GOR 4940
#define ANI_BIGHEAD 4938
#define PIC_CSR_ARCADE2_D 4903
#define SND_26_016 4878
#define PIC_INV_APPLE_H 4599
#define QU_SC29_BRDOUT2 4744
#define MV_GLV_LOOKBOTTLE 4688
#define MSG_SC11_MANCRY 4691
#define ST_SCK26_NORM 4555
#define QU_SC37_SND4 4544
#define SND_37_005 4540
#define SND_36_006 4530
#define QU_SC36_SND3 4527
#define SND_34_019 4479
#define SND_34_008 4468
#define QU_SC34_SND1 4461
#define SND_33_009 4446
#define SND_29_024 4358
#define SND_28_014 4323
#define MSG_SC34_FROMCACTUS 4313
#define ST_VNT34_NORM 4309
#define ST_TTA_GOD 4289
#define MV_MAN25_TOTRUBA_R 4216
#define SND_38_026 4193
#define SND_38_015 4182
#define QU_SC38_SND5 4170
#define SND_38_004 4164
#define SND_27_037 4138
#define SND_27_026 4127
#define SND_27_015 4116
#define QU_SC27_SND5 4106
#define SND_27_004 4100
#define SND_25_017 4070
#define SND_25_006 4059
#define SND_23_008 4026
#define QU_SC23_SND1 4019
#define SND_19_012 3925
#define SND_18_002 3897
#define SND_14_017 3814
#define QU_SC15_SND4 3806
#define SND_15_005 3802
#define SND_13_029 3774
#define SND_13_018 3763
#define SND_12_019 3739
#define SND_12_008 3728
#define QU_SC12_SND1 3721
#define SND_6_031 3570
#define SND_6_020 3559
#define SND_5_021 3162
#define SND_1_014 3527
#define QU_GRFM_AFTER 3481
#define MV_WMN28_GREET 3440
#define SND_CMN_028 3410
#define MV_MAN_SITDOWN 3378
#define MV_VNT26_TURNR 1928
#define SND_3_001 3100
#define MV_GRL_FALL 3115
#define QU_KZW14_JUMP 3271
#define QU_KZW14_SHOW 3270
#define QU_SC14_WINARCADE 3247
#define MV_MAN14_KICKLAST 3218
#define SND_4_022 3137
#define SND_4_011 3126
#define SND_2_013 3095
#define SND_2_002 3084
#define SND_CMN_006 3076
#define SND_1_003 3067
#define QU_STR_SHOW_L 3056
#define MV_NTL_MOVE 3028
#define MSG_SC10_LADDERTOBACK 3002
#define QU_MOM4_OPENEYE 2959
#define ST_MOM_LIFT2 2950
#define MV_MOM_OPENEYE 2947
#define ST_PMS_PLUS 2941
#define MSG_SC6_STARTDROPS 2897
#define MV_MAN_GOLADDER2 2844
#define QU_SC30_EXITLIFT 2824
#define ST_LBN_7H 2803
#define MV_LBN_6H 2800
#define LIFTBTN_2 2782
#define ST_PTI25_NORM 2675
#define ANI_POTTIE_25 2673
#define QU_SC35_EATHOZE 2540
#define MSG_SC22_HIDESTOOL 2503
#define MSG_SPINHANDLE 2398
#define MV_MAN34_STANDBOX 2386
#define MSG_SC30_UPDATEPATH 2358
#define QU_LEG_MOVE1 2349
#define ST_LEG_DOWN3 2337
#define MV_LEG_POTS_HIDE 2336
#define MV_MAN32_STANDUP 2313
#define MV_DLD_TAKE 2249
#define PIC_SC28_DTRUBA 2074
#define MV_BTA_NORM 2027
#define MV_MID_0_1 2025
#define QU_SC26_CLOSE4 1942
#define rMV_MAN25_STOPROW 1890
#define ST_MAN25_ONBOARD 1879
#define MV_LUK26_0_1 1868
#define MSG_SC25_ENTERMAN 1861
#define LadderUp 1850
#define ST_WTR24_FLOWLOWER 1843
#define QU_WTR24_FLOW 1840
#define ANI_WATER24 1834
#define ST_HDL22_LIES 1762
#define MV_MAN22_TAKETABUR 1749
#define PIC_SC21_LTRUBA 1553
#define MV_KSL_SWINGMAN 1502
#define MV_KSL_INGIRL 1493
#define ST_GRL18_WALKTO 1489
#define ST_KSL_GIRL 1465
#define ST_KSL_NORM 1461
#define ST_BOY_EMPTY 1330
#define ANI_GIRL 1328
#define QU_SC19_ENTER_DOWN 1303
#define MV_INV_FIRECAN_default 1313
#define ANI_INV_FIRECAN 1312
#define QU_SC18_ENTER_LEFT 1304
#define QU_GRD2_LOOKRIGHT 1290
#define MV_MAN15_TAKEBOOT 1272
#define QU_SWR_SIT 1149
#define ST_KCH_0 1096
#define QU_SLN_POT_PLAY 1045
#define MV_OTM_0_2 437
#define ST_INV_POT_default 988
#define MSG_SC9_SETSCROLL 964
#define ANI_BALL9 933
#define ANI_GLOTATEL 924
#define QU_SC9_ENTER_DOWN 908
#define MV_INV_OLDBOOT_default 397
#define ST_INV_OLDCOIN_default 391
#define MV_INV_BOX_default 633
#define MV_SLN_BOOT_MORG 831
#define MV_VMT_DEF 765
#define MV_BTT_DRINK 749
#define PIC_SCD_5 731
#define MV_CST_TURNUP 718
#define ANI_BEARDED 691
#define MV_HND_TAKE1 605
#define ST_KZW_JUMPOUT 587
#define QU_SC4_MANLOOKDOWN 548
#define QU_EGTR_SORROWTOFAT 531
#define QU_SC1_EGBRKACH 512
#define PIC_dsf 410
#define ST_EGTR_FAT 344
#define ANI_EGGEATER 334
#define MV_DYAS_OPENBOX 307
#define MV_MANDYAS_GIVESAPPL 360
#define MV_OTM_VNT_TRIESOFF 435
#define MV_MANEGBR_EGG2COIN 441
#define ST_KZW_EMPTY 498
#define QU_PNK_CLICK 550
#define MV_KZW_TOEDGE 572
#define QU_OTM_BOX_TURNL 645
#define QU_OTM_VNT_BOLTHEAD 647
#define ST_MAN_BALL 675
#define rMV_MAN_FROMHORTRUBA 703
#define QU_BTT_MORG 762
#define ST_VMT_MAX 767
#define MV_CST_0_2 800
#define ST_INV_OLDHAMMER_default 401
#define ANI_GUM 978
#define MSG_SC6_SPINHANDLE 1013
#define rMV_MAN_STARTR 330
#define ANI_INV_GUM 1154
#define QU_SC5_MANFLY 1168
#define ST_HDLL_UP 1211
#define ANI_GRANDMA 1227
#define MV_GMA_BACKOFF 1233
#define PIC_SC16_LTRUBA 1292
#define ANI_MUG 1296
#define PIC_SCD_17 1305
#define PIC_SC17_RTRUBA 1323
#define ANI_INV_MUG 1370
#define PIC_SC17_TUMBA 1426
#define MV_MAN17_PUTBOTTLE 1428
#define MSG_SC17_SHOWBOTTLE 1432
#define PIC_SC18_LADDER2 1472
#define MV_KSL_2_3 1506
#define QU_DYS_CLOSEBOX 1003
#define QU_CDI_HIDE 1537
#define QU_CDI_HIDEEMPTY 1545
#define PIC_INV_EGGBOOT 1579
#define MV_GFA_CHESH 1603
#define QU_GFA_SWING 1614
#define QU_GFA_STOP 1616
#define MV_GRFU_TURN_DU 1649
#define MV_GRFU_TURN_UD 1654
#define MV_DYAS_0_1 1692
#define MV_MAN22_TAKESOCK 1697
#define ST_CND_6 1715
#define MV_CND_6_7 1716
#define MV_CLN_0_1 1770
#define MV_MAN_TOTRUBAVER2_R 1848
#define MV_MAN25_TRY 1877
#define ST_LUK23_WHANDLE 1975
#define MV_GRFM_NECK 1985
#define MV_MAN27_SWABTOBROOM 1991
#define PIC_SCD_28 2098
#define MV_STR1_LEAVE 2114
#define ST_ASS_NORM 2122
#define ST_DMN38_NORM2 2205
#define QU_MLS_TURNR 2221
#define MV_GLV_PROPOSE_NOHMR 2279
#define QU_FFT_TUBE_START 2303
#define QU_LEG_HIDE1 2371
#define PIC_SC35_MONETOPR 2408
#define MV_PDV_BLINKLARGE 2422
#define MV_PDV_PUZO 2423
#define ST_GMA20_STAND 2436
#define QU_GMA20_STD_LOOK 2451
#define ST_CTS_GROWDOWN 2468
#define PIC_INV_STOPPER 2531
#define PIC_SC35_DTRUBA_R 2559
#define QU_SC34_ENTER_UP 2569
#define MV_GRD37_PULL 2589
#define ST_MUG33_EMPTY 2625
#define MV_JTI33_FLOW 2628
#define ANI_TESTO_GREEN 2662
#define MV_MAN9_TAKEPOT 2697
#define MV_MUG17_FILL 2745
#define QU_SC34_TOTRUBAVER 2853
#define MSG_SC4_STARTCLOCK 2856
#define MV_EGTR_MD1_BOLTLEGS 2864
#define ANI_DROP_3 2873
#define ST_MOM_STANDCLOSED 2890
#define ST_PL3_NORM 2926
#define MV_MAN13_THROWAPPLE 1444
#define MV_VSN_FROMRIGHT 2996
#define MV_MAN11_HITBY 3016
#define QU_SC10_TAKEGUM 3026
#define MV_HDLR_RISE_GUM 3045
#define SND_5_010 3151
#define SND_CMN_017 3164
#define MV_STR_DENY 3208
#define MV_DRP26_DROP 3346
#define QU_MAN_DEF_SHOES2_R 3401
#define ANI_DROP_24 3505
#define SND_11_009 3693
#define QU_SC13_SND2 3747
#define SND_13_007 3752
#define QU_SC14_SND3 3785
#define SND_14_006 3788
#define SND_16_004 3819
#define QU_SC16_SND5 3825
#define SND_16_015 3835
#define SND_16_026 3846
#define SND_16_037 3857
#define SND_17_003 3862
#define SND_17_014 3878
#define SND_17_025 3889
#define SND_22_009 3992
#define SND_CMN_039 4032
#define QU_SC24_SND2 4037
#define SND_24_007 4042
#define SND_26_005 4081
#define QU_SC26_SND4 4085
#define SND_28_003 4145
#define MV_SHD01_SHD 4203
#define MV_BOT1_NORM 4232
#define MSG_SC28_TURNON_2 4276
#define MSG_SC28_TURNON4 4280
#define QU_CTS34_FALLEFT 4316
#define SND_29_002 4331
#define SND_29_013 4347
#define QU_SC35_SND2 4500
#define SND_35_007 4505
#define SND_35_018 4516
#define SND_3_012 3111
#define PIC_MSV_EMPTY_D 4639
#define PIC_MSV_4_L 4663
#define PIC_MSV_DOTS_D 4670
#define QU_BRD28_TALK 4682
#define MSG_SC14_SCROLLLEFT 4768
#define ANI_BOOT_15 4779
#define ANI_SHD_CMN 4859
#define ST_SHD_CMN1 4862
#define SC_3 303
#define ANI_KUBIK 4963
#define QU_KBK33_GO 4978
#define SND_4_033 4990
#define SC_INTRO2 3907
#define PIC_FN1_RTRUBA 5003
#define MSG_INTR_SWITCHTO1 5145
#define SC_10 653
#define SC_21 1546
#define SND_25_028 5173
#define SND_3_023 5195
#define MSG_SC19_UPDATENUMRIDES 5203
#define PIC_MAP_A07 5269
#define PIC_MAP_P09 5285
#define PIC_MAP_S06 5228
#define PIC_MAP_S17 5239
#define PIC_MAP_S28 5250
#define PIC_MAP_H34 5388
#define PIC_MAP_H23 5377
#define PIC_MAP_H12 5368
#define PIC_MAP_H01 5357
#define QU_SC28_LIFT6_END 3563
#define SND_26_017 5337
#define SND_3_024 5333
#define MV_MOM_TOLIFT 2893
#define MV_MOM_JUMPBK 662
#define MSG_LIFT_EXITLIFT 5187
#define SC_4 304
#define SC_33 2067
#define SND_INTR_017 5162
#define SND_INTR_006 5151
#define MSG_INTR_ENDINTRO 5139
#define QU_INTR_FINISH 5138
#define MSG_INTR_SWITCHTO2 5134
#define MV_IN1CLK_CYCLE 5130
#define MV_IN1MAN_SLEEP 5111
#define SND_FIN_012 5084
#define ST_FNHND4_BEFORE 5050
#define MV_FNHND3_SHOWHMR 5040
#define PIC_MNU_SLIDER_L 4912
#define PIC_INV_SUGAR_C 4853
#define PIC_INV_POTTIE_C 4849
#define PIC_INV_MUG_C 4845
#define PIC_INV_GUM_C 4840
#define PIC_INV_BOTTLEFULL_C 4827
#define PIC_INV_LOPAT_H 4808
#define PIC_INV_BOX_H 4791
#define MSG_CMN_WINARCADE 4778
#define SND_15_006 3808
#define SND_29_025 4689
#define MV_RNG_CLOSE 2605
#define MV_INV_CARPET_default 4597
#define MV_DRV_PUSHBUTTON_NOVENT 4577
#define SND_37_006 4546
#define QU_SC37_SND5 4545
#define SND_36_007 4531
#define QU_SC36_SND4 4528
#define SND_34_009 4469
#define QU_SC34_SND2 4462
#define SND_28_015 4324
#define MV_LEG_DENY_POT1 4284
#define MV_MAN28_STARTWASH 4248
#define SND_38_027 4194
#define SND_38_016 4183
#define SND_38_005 4165
#define SND_27_038 4139
#define SND_27_027 4128
#define SND_27_016 4117
#define SND_27_005 4101
#define SND_25_018 4071
#define SND_25_007 4060
#define QU_SC25_SND4 4057
#define SND_23_009 4027
#define QU_SC23_SND2 4020
#define SND_19_013 3926
#define SND_19_002 3910
#define SND_18_003 3898
#define SND_14_018 3815
#define QU_SC15_SND5 3807
#define SND_13_019 3764
#define SND_12_009 3729
#define QU_SC12_SND2 3722
#define SND_7_020 3600
#define SND_6_032 3571
#define SND_6_010 3547
#define SND_1_015 3528
#define SND_3_013 3519
#define QU_DRP25_TOWATER 3504
#define ANI_DROP_25 3499
#define MV_MID_0_2 3491
#define SND_CMN_029 3469
#define MV_WMN_AFTER 3454
#define ST_WMN28_NORM 3441
#define PIC_SC27_FLOOR2 3353
#define ST_BTH_EMPTY 3351
#define MV_MAN22_HANDLEDOWN2 3328
#define SND_4_001 3116
#define SND_1_004 3068
#define QU_TEST1 3303
#define ANI_BOOT_16 3285
#define MV_GRL_DRYG 3279
#define ST_KZW14_SIDE 3266
#define PIC_SC14_GRID 3260
#define MV_BAL14_NORM2 3213
#define SND_4_023 3141
#define SND_4_012 3127
#define SND_3_002 3101
#define SND_2_014 3096
#define SND_2_003 3085
#define SND_CMN_007 3077
#define MV_MOM_STARTBK 3010
#define MV_CLK8_GO 2990
#define QU_MOM4_LOOKBAG 2958
#define MV_MOM4_OPENEYE 2957
#define MV_MOM_LIFTUP 2951
#define MV_MAN4_FALLBOTTLE 2848
#define MV_MAN_STARTLADDER2 2842
#define QU_SC30_ENTERLIFT 2823
#define QU_SC15_EXITLIFT 2812
#define ST_LBN_6H 2801
#define MV_LBN_5H 2798
#define LIFTBTN_3 2783
#define QU_SC14_BREAKGRIT 2728
#define QU_SC32_FLOWO 2666
#define QU_SC21_ENTER_DOWN 2646
#define ST_HDL_PLUGGED 2397
#define MV_FLG_STARTR 2263
#define QU_LEG_MOVE2 2350
#define QU_LEG_SHOW 2346
#define MSG_SC32_TRYSIT 2294
#define ST_DMN38_NORM3 2251
#define ST_MAN29_SITR 2141
#define ST_SHR_NORM 2132
#define MSG_SC29_DISABLEPORTER 2097
#define MSG_SC27_STARTBET 2047
#define QU_SC26_CLOSE5 1944
#define QU_SC27_ENTER_LEFT 1915
#define QU_SC25_ROWTOTRUBA 1897
#define rMV_MAN25_ROW 1891
#define MV_MAN25_TRYBROOM 1887
#define ST_INV_BOARD_default 1874
#define MV_INV_BOARD_default 1873
#define ANI_WATER25 1856
#define PIC_SC25_RTRUBA 1853
#define MSG_SC21_HANDLEDOWN 1807
#define ANI_HANDLE22 1759
#define ST_BOX2_LEFT 1694
#define ST_GRFU_DOWN 1650
#define QU_GRFB_TRYSTAND 1641
#define MV_MAN18_FROMRTRUBA 1519
#define ST_KSL_JUMPGIRL 1494
#define ST_KSL_JUMPBOY 1492
#define MV_GRL18_JUMPFROM 1485
#define ST_BOY_FLYTO 1483
#define QU_SMG_TAKESUGAR 1434
#define PIC_INV_SUGAR 1413
#define QU_SC16_GIRLLAUGH 1375
#define MV_GRL_GOIN 1335
#define MSG_SC11_SHOWSWING 1124
#define ST_KCH_STATIC 1122
#define QU_SC11_ENTER_LEFT 1093
#define QU_SC10_ENTER_RIGHT 990
#define QU_NDV_BLOW 969
#define ST_GLT_SIT 926
#define PIC_SC9_WALL1 923
#define MSG_SC5_HANDLEDOWN 916
#define ANI_INV_DOMINO 872
#define ST_INV_BOOT_default 883
#define ST_INV_GLASSES_default 889
#define ANI_INV_GLASSES 887
#define MV_SLN_POT_MOVE 842
#define ST_SLN_POT_TURNED 838
#define MSG_SC7_OPENLUKE 823
#define MV_SC7_BOX_default 792
#define MSG_SC6_SHOWNEXTBALL 790
#define PIC_SCD_6 732
#define PIC_SC1_RTRUBA 698
#define MV_MAN_PUTCOIN 688
#define MV_HND_TAKE2 606
#define QU_EGTR_FATOBL 532
#define ST_MAN_LADDERDOWN 521
#define MV_MAN_TURN_DU 484
#define MV_MAN_TURN_UD 483
#define MV_MAN_GOLADDER 451
#define MV_MANEGBR_EGG2BOOT 440
#define ANI_OTMOROZ 419
#define ST_EGTR_SLIMSORROW 340
#define MV_MANDYAS_GIVESHMR 359
#define MV_OTM_GLS_MORGRIGHT 425
#define MV_OTM_BOX_DECLINES 432
#define MV_MAN_LOOKPLANKRV 522
#define ST_HND_TAKEN 608
#define QU_OTM_GLS_TURNR 639
#define ST_MOM_SITS 659
#define MV_MAN_SHOOTBALL 676
#define QU_CST_TURNUP 723
#define MV_MAN8_FIRSTJUMP 778
#define QU_SC8_ENTER_RIGHT 780
#define ST_CST_HANDLELESS 794
#define QU_CST_CLOSELUKE 820
#define ST_INV_OLDDOMINO_default 369
#define MV_BALL9_EXPLODE 939
#define MV_NDV_DENIES 952
#define MV_GRD_PULL 999
#define QU_SC2_ENTER_DOWN 1025
#define MV_SC4_BOOT_default 1036
#define MV_MAN_TURN_SRD 1082
#define MV_MAN_TURN_SRU 1083
#define rMV_MAN_TURN_SRL 1090
#define MSG_STANDLADDER 1092
#define MV_MAN_STARTD 478
#define MV_MAN_STARTU 333
#define ST_MAN11_SWING 1127
#define MV_MAN5_FALLBUMP 1163
#define MV_STR_PLUU 1178
#define ST_STR_EMPTY 1180
#define QU_STR_CHEW 1190
#define MV_MAN_FALLPOPA 1193
#define MV_GRD2_MORG 1282
#define PIC_SCD_18 1306
#define ST_HDLL_FIRECAN 1310
#define QU_SC14_ENDARCADE 1391
#define MV_INV_BOTTLE_default 1419
#define MV_INV_BOTTLEFULL_default 1422
#define ANI_HAND17 1446
#define MV_MANEGTR_GIVESCOIN 1581
#define ANI_GIRAFFEE 1672
#define ST_CND_7 1717
#define ANI_CLEANERS 1767
#define ANI_INV_BROOM 1774
#define MV_INV_STOOL_default 1781
#define MV_MAN25_BOARDTOLADDER 1893
#define QU_SC25_SHOWBOARD_R 1901
#define QU_SC25_SHOWBOARD_LCLOSE 1908
#define QU_SC25_BOARDTOLADDER 1911
#define QU_SC26_AUTOCLOSE1 1949
#define MSG_SC26_TESTVENT 1952
#define PIC_SCD_29 2099
#define rMV_ASS_TAIL 2128
#define ST_GLV_SLEEP2 2166
#define MV_DLD_ICK 2172
#define MV_DLD_GLOT 2177
#define MV_MLS_BLINK 2182
#define MV_MAN38_TAKEMUG 2185
#define ST_MUG38_NORM 2193
#define MV_FFT_TUBE_DENY 2233
#define PIC_SC32_KADKA 2273
#define QU_FFT_PIPE_STOP 2298
#define QU_FFT_TUBE_OPENEYE 2305
#define MV_INV_TUBE_default 2315
#define QU_LEG_HIDE2 2372
#define QU_CTS_GROW 2416
#define MV_GMA20_STL_LOOK 2434
#define QU_GMA20_STD_LOOKTRUBA 2452
#define MV_CTS_STOPDOWN 2471
#define ST_STL34_NORM 2488
#define ST_INV_SCISSORS_default 2534
#define QU_PDV_SML_TRY 2554
#define MV_GRD37_BLINK1 2592
#define MV_MAN33_TAKEMUG 2622
#define MV_SCR36_NORM 2648
#define MV_TSTO_FLOW 2657
#define MV_MAN6_THROWBALL 2692
#define MV_MAN32_BUMP 2713
#define MSG_LIFT_CLICKBUTTON 2780
#define QU_SC34_ENTER_LIFTDOWN 2822
#define QU_EGTR_MD1_OBL 2878
#define MV_MAN3_GIVEEGG_1 2907
#define PIC_SC6_PIPEY 2954
#define ST_BALL9_EMPTY2 2974
#define SND_5_011 3152
#define SND_5_022 3163
#define SND_CMN_018 3165
#define QU_SC38_SHOWDOMINO2 3181
#define MV_BTT_LOOK 3193
#define MSG_SC14_ENDARCADE 3250
#define PIC_SC18_LADDER3 3299
#define MSG_SC13_OPENFAST 1266
#define MV_MAN26_TRY 3344
#define QU_DRP26_DROP 3352
#define ST_VNT26_RIGHT 1930
#define rMV_MAN_SITDOWN 3391
#define QU_SC25_MANLOOKDOWN 3417
#define QU_SC9_SND1 3645
#define QU_SC11_SND1 3685
#define QU_SC13_SND3 3748
#define SND_13_008 3753
#define QU_SC14_SND4 3786
#define SND_14_007 3789
#define SND_16_005 3820
#define SND_16_016 3836
#define SND_16_027 3847
#define SND_16_038 3858
#define SND_17_004 3863
#define SND_17_015 3879
#define SND_17_026 3890
#define QU_SC22_SND1 3984
#define QU_SC24_SND3 4038
#define SND_24_008 4043
#define QU_SC26_SND5 4086
#define SND_26_006 4087
#define SND_28_004 4146
#define ANI_BOOT_1 4231
#define QU_SC28_FALLGRIT 4265
#define MSG_SC28_TURNON_3 4274
#define SND_29_003 4332
#define QU_SC33_SND1 4438
#define QU_SC35_SND3 4501
#define SND_35_008 4506
#define SND_35_019 4517
#define MV_RHT_DENY 2561
#define PIC_MNU_SAVE_D 4629
#define PIC_MSV_5_L 4664
#define ST_BRD28_RIGHT 4681
#define SND_29_014 4348
#define MSG_SC29_LAUGH 4760
#define MSG_SC14_RESTORESCROLL 4769
#define ST_RNG_CLOSED2 4865
#define MV_LFT_FROMU 4881
#define MV_LFT_FROMD 4882
#define QU_GLV28_GOR 4957
#define QU_KBK32_GO 4977
#define SC_11 654
#define SC_22 1547
#define SND_25_029 5174
#define PIC_MNU_MUSICSLIDER_D 4914
#define rMV_MAN_LOOKUP_EYES 5207
#define PIC_SC1_PRIMUS 837
#define PIC_MAP_A08 5270
#define PIC_INV_MAP_H 5325
#define PIC_IN1_GAMETITLE 5169
#define PIC_MAP_S07 5229
#define PIC_MAP_S1819 5240
#define PIC_MAP_S29 5251
#define PIC_MAP_H35 5389
#define PIC_MAP_H24 5378
#define PIC_MAP_H13 5369
#define PIC_MAP_H02 5358
#define SND_26_018 5340
#define SND_16_039 5336
#define PIC_SC20_DTRUBA 3741
#define SC_5 305
#define SC_34 2068
#define SND_INTR_007 5152
#define SND_FIN_013 5085
#define MV_FNHND5_SHOW 5053
#define PIC_SC35_UTRUBA_R 4987
#define MSG_SC30_TESTFLIES 4962
#define QU_BRD16_GOL 4952
#define QU_BRD17_TURNL 4950
#define rMV_BRDCMN_TURN_RL 4947
#define PIC_CSR_ARCADE1 4901
#define PIC_INV_MUGFULL_H 4811
#define PIC_INV_HANDLE_H 4806
#define PIC_INV_DOMINO_H 4795
#define PIC_INV_CARPET_H 4793
#define MV_DRP25_TOFLOOR 3500
#define MV_TBL_WALKL 4700
#define SND_29_026 4690
#define MV_MAN35_TAKECARPET 4595
#define MV_BTN27_NORM 4580
#define SND_37_007 4547
#define SND_36_008 4532
#define QU_SC36_SND5 4529
#define QU_SC34_SND3 4463
#define SND_28_016 4325
#define MSG_SC34_ONCACTUS 2482
#define MV_CTS_DEFAULT 4299
#define QU_SC28_TIOTIA 4294
#define MV_LEG_DENY_POT2 4285
#define SND_38_028 4195
#define SND_38_017 4184
#define QU_SC38_DOMINOKICK 4181
#define SND_38_006 4171
#define SND_27_039 4140
#define SND_27_028 4129
#define SND_27_017 4118
#define SND_27_006 4107
#define SND_25_019 4072
#define SND_25_008 4061
#define QU_SC25_SND5 4058
#define QU_SC23_SND3 4021
#define QU_SC21_SND1 3955
#define SND_19_014 3927
#define SND_19_003 3911
#define SND_18_004 3899
#define SND_15_007 3809
#define SND_13_009 3754
#define QU_SC12_SND3 3723
#define QU_SC10_SND1 3667
#define QU_SC8_SND1 3635
#define SND_7_021 3601
#define SND_7_010 3590
#define SND_6_033 3572
#define SND_6_022 3561
#define SND_6_011 3548
#define SND_5_023 3532
#define SND_3_014 3521
#define ST_WMN28_READY 3442
#define MV_MAN21_TAKEBROOM 3438
#define MV_CLN_DENY_BROOM 3437
#define MV_BRD_FALLTHREAD 3421
#define MV_BTH_1_0 3366
#define ST_VNT26_RIGHT2 3348
#define ST_CDI_EYE 3310
#define SND_5_001 3142
#define QU_TEST2 3304
#define MV_GRL_LAUGH_POPA 3278
#define QU_STR_THROWGLASSES 3201
#define SND_4_013 3128
#define SND_3_003 3102
#define SND_2_015 3097
#define SND_2_004 3086
#define SND_CMN_008 3078
#define SND_1_005 3069
#define MSG_SC13_TESTCLOSE 3065
#define ST_NTL_NORM 3029
#define ANI_STEP_8 2971
#define MV_CST_DENY 2967
#define ST_MOM4_SIT 2956
#define MV_MOM4_LOOKBAG 686
#define MV_PMS_CHANGE 2939
#define ST_FCN17_NORM 2862
#define QU_SC30_ENTER_LIFTDOWN 2826
#define ST_LBN_5H 2799
#define MV_LBN_4H 2796
#define LIFTBTN_4 2784
#define QU_SC34_ENTER_DEBUG 2380
#define QU_LEG_MOVE3 2351
#define MV_MAN30_PUT1 2340
#define MV_MAN30_PUT1_EMPTY 2339
#define ST_DMN38_NORM4 2253
#define QU_GLV_TAKEDOMINO 2170
#define ANI_SHELL_GREEN 2116
#define MV_MAN29_JUMP 2090
#define QU_DRV_LOOKLEFT 2032
#define MV_DRV_FROMRIGHT 2014
#define MV_DRV_FROMLEFT_V 2011
#define MV_DRV_DRIVE 2004
#define MV_DRV_TOCYCLE 1995
#define ST_LUK26_OPEN 1973
#define MV_LUK26_1_2 1972
#define QU_SC25_BACKTOLADDER 1955
#define ST_BRD25_RIGHT2 1902
#define PIC_SC21_MONETOPR 1808
#define MV_BOX2_FLIP 1693
#define rMV_MANEGBR_EGG2COIN 467
#define ST_KSL_MAN 1503
#define MSG_SC18_SHOWGIRLJUMPTO 1499
#define ST_BOY18_FLYFROM 1479
#define MV_KSL_CALMDOWN 1476
#define ST_KSL_REACT 1474
#define ANI_KRESLO 1459
#define MV_MAN_HMRKICK_COINLESS 1445
#define MV_SMG_HANDSUP 1402
#define ST_WHR13_SPIN 1385
#define PIC_SCD_19 1319
#define MV_GRD2_MORG1 1283
#define QU_SC13_SHOWGUM 1216
#define MV_MAN13_GIVEGUM 1192
#define MV_MAN_STARTLADDERD 457
#define QU_SC3_ENTER_LIFTDOWN 1059
#define MV_SLN_POT_PLAY 1046
#define ST_SC2_BOX_default 1022
#define MV_MAN10_TAKEGUM 967
#define MV_GLT_FLYAWAY 931
#define MV_GLT_CLOSE 929
#define MV_INV_APPLE_default 879
#define MV_INV_HANDLE_default 894
#define ANI_INV_OLDAPPLE 392
#define MV_SLN_POT_MORG2 840
#define QU_MOM_MORG 826
#define MV_MAN8_BADLUCK 783
#define PIC_SCD_7 733
#define QU_MOM_JUMPBK 671
#define MV_MANHDL_HANDLEDOWN 630
#define QU_SC4_MANTOLADDER 617
#define MSG_TAKEKOZAW 611
#define MV_MAN_LOOKLADDER 520
#define QU_SC1_EGBRHEADUP 511
#define MV_PNK_WEIGHTRIGHT 502
#define rMV_EGBR_RAISEHEAD 463
#define ST_MAN_STANDLADDER 453
#define MV_MANEGTR_GIVESEGGF 416
#define PIC_SC3_LTRUBA 413
#define ST_EGTR_FATSORROW 355
#define ANI_DADAYASHIK 306
#define MV_MANEGTR_TAKESCOIN 394
#define PIC_SC4_RTRUBA 507
#define QU_KZW_GOEDGE1 571
#define QU_SC4_HANDPUSH 596
#define MSG_SC6_BEARDEDTAKEBALL 683
#define QU_CST_SPINHANDLE 722
#define QU_SCD_ENTER 735
#define MV_MAN8_JUMP 775
#define MV_MAN_HANDSUP 776
#define ANI_HOOLIGAN 808
#define QU_HGN_OPENLUKE 824
#define MV_INV_OLDEGG_default 365
#define ST_PBAR_START 898
#define QU_SC9_BALLEXPLODE 938
#define MV_NDV_MORG 947
#define PIC_SC07_PANEL 1002
#define MV_MAN_TAKEHANDLE 1040
#define ST_POT_NORM 1047
#define MV_MAN_STOPR 328
#define MV_KCH_MOVE2 1099
#define QU_SC11_RESTARTMAN 1134
#define MV_MAN11_GUM2VANTUZ 1145
#define ST_INV_GUM_default 1156
#define ST_INV_VANTUZ_default 1159
#define MV_STR_SHOW 1179
#define MSG_SC14_SHOWBALLGMAHIT 1259
#define PIC_SC15_DTRUBA 1263
#define PIC_SC15_UTRUBA 1264
#define MV_MAN13_HANDLEUP 1377
#define ST_BDG_OPEN2 1381
#define PIC_SC1_KUCHKA 1321
#define ANI_INV_EGGAPL 1564
#define ST_INV_EGGBOOT_default 1572
#define ANI_INV_EGGGLS 1573
#define MSG_SC3_TAKEEGG 1583
#define MV_CND_7_8 1718
#define ST_CND_8 1719
#define PIC_SC23_BOXCLOSED 1728
#define PIC_SC23_BTN1 1729
#define MV_MAN21_INSERTHANDLE 1744
#define ST_INV_STOOL_default 1782
#define QU_SC25_ENTERUP_FLOOR 1904
#define ANI_INV_LOPAT 1920
#define QU_SC26_AUTOCLOSE2 1950
#define ANI_HANDLE23 1978
#define MV_GRFM_PODMYSHA 1984
#define ANI_ASS 2120
#define MSG_SC29_SHOOTRED 2137
#define MV_SHR_HITMAN 2149
#define ANI_MALYSH 2165
#define ANI_HAMMER38 2194
#define ST_HMR38_NORM 2196
#define MV_DMN38_NORM 2201
#define MSG_SC38_HMRKICK 2224
#define ST_FFT_PIPEFLOW 2241
#define QU_FFT_PIPE_FLOWOPEN 2307
#define PIC_SC30_RTRUBA 2355
#define ANI_GRANDMA_20 2427
#define MV_GMA20_FLR_BLINK 2428
#define MV_GMA20_STL_BLINK 2431
#define QU_SC20_ENTER_RIGHT 2453
#define MV_CTS31_GROWMAN 2457
#define MV_PDV_CUT_BLINK 2527
#define MV_INV_STOPPER_default 2536
#define QU_PDV_SML_BLINK 2553
#define QU_PDV_LRG_BLINK 2555
#define QU_SC36_ENTER_LEFT 2564
#define QU_GRD37_BLINK 2595
#define QU_GRD37_LOOKL 2597
#define QU_RHT_BLINK 2599
#define MV_DMN01_default 2616
#define ANI_VENT_33 2637
#define MV_MAN33_HANDLEDOWN 2642
#define MSG_SC33_POUR 2645
#define ST_TSTB_NORM 2661
#define ST_GRT6_NORM 679
#define ST_BTS11_ONE 2706
#define MV_TBE33_NORM 2716
#define ST_JET17_EMPTY 2748
#define QU_SC34_EXITLIFT 2820
#define QU_EGTR_MD2_OBL 2880
#define QU_MOM_TOLIFT 2902
#define QU_MOM_PUTBALL 2903
#define MV_MAN3_GIVEEGG_2 2908
#define MV_INV_EGGBLACK_default 2919
#define QU_VSN_TURNL 2997
#define MV_MAN6_TRYHANDLE 3009
#define MV_GUM_NORM 976
#define ANI_PACHKA2 3008
#define SND_4_002 3117
#define SND_5_012 3153
#define SND_CMN_019 3166
#define MSG_SC3_HIDEDOMINO 3177
#define MV_HDL_BREAK 3341
#define ANI_DROP_26 3345
#define QU_MAN_DEF_STARTSHOES1_R 3389
#define MV_SWR_DENY 3428
#define MV_MAN_CLEANNOSE 3374
#define SND_4_024 3466
#define MV_GRFM_0_1 3471
#define QU_GRFU_CLOSEEYES 3479
#define SND_8_020 3630
#define QU_SC9_SND2 3646
#define QU_SC11_SND2 3686
#define QU_SC13_SND4 3749
#define QU_SC14_SND5 3787
#define SND_14_008 3790
#define SND_16_006 3826
#define SND_16_017 3837
#define SND_16_028 3848
#define SND_17_005 3864
#define SND_17_016 3880
#define SND_17_027 3891
#define QU_SC22_SND2 3985
#define QU_SC24_SND4 4039
#define SND_24_009 4044
#define SND_26_007 4088
#define SND_28_005 4147
#define MV_CLN_BLINK1 4208
#define ANI_BOOT_17 4220
#define SND_1_016 4234
#define MSG_SC28_CLICKLIFT 4258
#define MSG_SC28_TURNON_4 4281
#define QU_MAN32_LOOKBACK 4304
#define SND_29_004 4333
#define SND_29_015 4349
#define QU_SC32_SND1 4397
#define QU_SC33_SND2 4439
#define QU_SC35_SND4 4502
#define SND_35_009 4507
#define MV_GRT38_NORM 4574
#define QU_SC38_SHOWGRIT 4576
#define PIC_MNU_AUTHORS_D 4623
#define PIC_MSV_6_L 4665
#define MSG_SC28_MAKEFACES 4684
#define ST_EYE_EMPTY 4714
#define ST_KBK_GOR 4965
#define MSG_SC37_EXITLEFT 5006
#define SND_FIN_002 5008
#define ST_FN4MAN_BEFORE 5099
#define SC_12 655
#define SC_23 1548
#define PIC_IN1_NAKL 5132
#define SND_INTR_018 5177
#define MSG_SC5_BGRSOUNDON 5314
#define QU_SC19_ENTER_RIGHT 5319
#define PIC_MAP_A09 5271
#define PIC_MAP_I01 5295
#define MSG_SC33_UPDATEKUBIK 5346
#define PIC_MAP_S08 5231
#define PIC_MAP_H36 5390
#define PIC_MAP_H25 5379
#define PIC_MAP_H14 5370
#define PIC_MAP_H03 5359
#define MSG_SC28_LIFT6INSIDE 5354
#define SND_26_019 5341
#define QU_EGTR_FATASK 5334
#define PIC_CSR_ITN_RED 5329
#define PIC_SC33_ZONES 5298
#define SND_INTR_019 5220
#define QU_HND17_BACK 5216
#define PIC_IN1_PIPETITLE 5167
#define SC_6 649
#define SC_35 2069
#define SND_INTR_008 5153
#define SND_FIN_014 5086
#define MV_FNFNG_MOVE 5063
#define ANI_FN3_FINGERS 5062
#define MV_FNHND3_SHOOT 5060
#define SND_37_008 5013
#define PIC_SC17_LADDER2 2749
#define QU_SC35_TRYFLY 4984
#define MSG_SC33_TRYKUBIK 4980
#define QU_BRD16_FLYR 4953
#define QU_EGG6_GOR 4935
#define ANI_FLY 4916
#define PIC_CSR_ARCADE2 4902
#define SC_COMMON 321
#define PIC_INV_PIPE_C 4847
#define PIC_INV_LEVERHANDLE_H 4807
#define PIC_INV_BROOM_H 4792
#define PIC_INV_BOTTLE_H 4789
#define MSG_MNU_EXITMENU 4633
#define ST_SCR36_LEFT 4609
#define ST_INV_CARPET_default 4598
#define MV_PDV_SML_DENY 4585
#define MV_MAN26_KNOCKMUG 4559
#define MV_MAN26_TAKESOCK 4558
#define SND_36_009 4533
#define QU_SC34_SND4 4464
#define QU_SC31_SND1 4384
#define SND_28_017 4326
#define QU_SC34_FROMCACTUS 4312
#define ST_VNT34_UP2 4310
#define MV_MAN34_TURNVENT_L 4307
#define QU_SC17_FILLBOOT 4237
#define SND_38_029 4196
#define SND_38_018 4185
#define SND_38_007 4172
#define SND_27_029 4130
#define SND_27_018 4119
#define SND_27_007 4108
#define SND_25_009 4062
#define QU_SC23_SND4 4022
#define QU_SC21_SND2 3956
#define SND_19_015 3928
#define SND_19_004 3912
#define SND_18_005 3900
#define SND_15_008 3810
#define QU_SC12_SND4 3724
#define QU_SC10_SND2 3668
#define QU_SC8_SND2 3636
#define QU_SC7_SND1 3606
#define SND_7_022 3602
#define SND_7_011 3591
#define SND_6_034 3573
#define SND_6_012 3549
#define SND_6_001 3538
#define SND_5_024 3536
#define SND_4_025 3529
#define SND_3_015 3522
#define rMV_MAN25_ROWHAND 3492
#define QU_SC25_BEARDED 3425
#define ST_MUG17_DROP 3413
#define ST_MAN_RIGHT 325
#define MV_VNT26_TURNU 1931
#define MV_CLN_DENY 2290
#define ST_KZW14_EMPTY 3263
#define SND_4_014 3129
#define SND_3_004 3103
#define SND_2_016 3098
#define SND_2_005 3087
#define SND_CMN_009 3079
#define SND_1_006 3070
#define MSG_SC4_MANTOBOTTLE 2852
#define ST_LBN_4H 2797
#define MV_LBN_3H 2794
#define LIFTBTN_5 2785
#define QU_SC17_FILLMUG 2750
#define QU_SC9_BREAKGRIT 2723
#define PIC_SC32_KADKABACK 2669
#define QU_SC15_ENTER_LEFT 2651
#define MSG_SC34_LEAVEBOARD 2576
#define MV_MAN34_BOARD_FROM 2549
#define MV_MAN35_TAKESTOPPER 2512
#define QU_LEG_MOVE4 2352
#define MV_MAN30_PUT2 2342
#define MV_MAN30_PUT2_EMPTY 2341
#define MV_FLG_STOPR 2265
#define QU_SC38_ENTER_UP 2227
#define ST_MAN29_RUNR 2140
#define PIC_SC28_RTRUBA 2073
#define QU_DRV_FROMLEFT 2036
#define PIC_SC27_LTRUBA 1914
#define MV_BRM_FALL 1764
#define ANI_BROOM 1763
#define ST_MSH_SIT 1756
#define ANI_TABURETTE 1745
#define ST_INV_SOCK_default 1700
#define QU_SC6_SHOWHANDLE 1689
#define QU_GRFU_CHMOKUP 1670
#define QU_GRFU_BLINKLEFT 1666
#define rMV_MANEGBR_EGG2BOOT 466
#define MV_CDI_0_1 1544
#define ST_CDI_NOSUGAR 1542
#define ST_CDI_EMPTY 1531
#define MSG_SC18_MANREADY 1507
#define MV_KSL_INMAN 1504
#define MV_KSL_JUMPGIRL 1475
#define MV_KSL_SWINGBOY 1462
#define MV_SMG_HANDSDOWN 1405
#define MV_SMG_THROW 1398
#define ANI_JETTIE 1392
#define ST_GRL_STAND 1337
#define ANI_WHIRLIGIG_18 829
#define PIC_INV_FIRECAN 1315
#define PIC_SC14_DFLOOR 1241
#define MSG_SC13_EATGUM 1219
#define MV_MAN5_FALL 1165
#define MV_KCH_START 1121
#define MSG_SC1_UTRUBACLICK 1100
#define ST_LFT_OPEN_NEW 1071
#define PIC_INV_POT 985
#define MSG_SC9_FLOWN 943
#define GRID_TEST 937
#define MV_GLT_OPEN 927
#define ST_INV_APPLE_default 880
#define MV_INV_OLDHANDLE_default 796
#define ANI_INV_HANDLE 893
#define PIC_SCD_8 756
#define ST_BTT_SLEEPS 748
#define ST_BTT_CHESHET 746
#define PIC_SC7_RTRUBA 710
#define ST_BRD_EMPTY 693
#define PIC_SC6_LTRUBA 667
#define MV_MANOTM_GLASSES2BOX 629
#define MSG_GOTOLADDER 618
#define ST_CLK_BUTTON 593
#define ANI_CLOCK 588
#define ST_MAN_DOWN 479
#define MV_EGTR_FATEAT 350
#define MV_EGTR_SLIM2SORROW 339
#define MV_DYAS_TOUS 311
#define MV_EGTR_FROMSLAPPING 349
#define MSG_RAISEPLANK 547
#define ST_KZW_BOTTLERIGHT 574
#define QU_KZW_GOEDGE2 576
#define MV_KZW_JUMPUS 582
#define MV_HND_TAKEBOTTLE 607
#define QU_OTM_BOX_SDVIG 646
#define QU_MOM_SITDOWN 685
#define MV_HGN_OPENLUKE 809
#define PIC_INV_OLDHAMMER 405
#define MV_INV_EGG_default 870
#define QU_PLV_BREATHE 959
#define QU_GRD_MORG1 1005
#define ST_HDL_UP 624
#define ST_SC4_COIN_default 1030
#define MV_HDL6_FALL 1041
#define ST_LFT_OPEN 1050
#define QU_SC3_ENTER_LIFTUP 1062
#define QU_SWR_JUMPDOWN 1123
#define MSG_SC11_MANTOSWING 1128
#define ST_KCH_EMPTY 1132
#define MV_MAN5_VNT2BOX 1162
#define ST_STR_LEFT 1175
#define MV_STR_TURNR 1176
#define ST_GMS_BOOT 1270
#define QU_SC16_ENTER_DOWN 1295
#define QU_KAR_SPIN 1307
#define ST_MUG_EMPTY 1298
#define ST_MUG_FULL 1360
#define ST_INV_BOTTLE_default 1420
#define QU_SC17_SHOWBOTTLE 1429
#define MSG_SC4_CLICKLADDER 1439
#define MSG_SC18_SHOWGIRLJUMP 1496
#define MV_HND17_1_0 1558
#define MV_INV_EGGGLS_default 1574
#define MV_GFA_GREET 1593
#define MV_GFA_GREETSOCK 1594
#define QU_GFA_CHESHETSOCK 1609
#define PIC_SC22_FLOOR 1621
#define PIC_SC23_DTRUBA 1626
#define MV_GRFU_CHMOKCYCLE 1658
#define MV_GRFU_CHMOKLEFT 1660
#define MV_GRFU_LOOKDOWN 1688
#define QU_DYAS_OPENBOX_LIES 1691
#define ST_CND_9 1721
#define PIC_SC23_BTN2 1730
#define MV_MAN21_HANDLEDOWN 1805
#define rMV_MAN_TOTRUBAVER2 1833
#define QU_SC26_AUTOCLOSE3 1951
#define MV_CHI_MOTION 1962
#define QU_CHI_MOVE 1963
#define QU_CHI_HIDE 1965
#define MV_LUK23_1_2i 1976
#define ST_GRFM_NORM 1983
#define MSG_SC27_CLICKBET 2048
#define MV_BTA_HILITE 2051
#define MV_ASS_SIT 2125
#define rMV_ASS_SIT 2127
#define MV_SHG_HITMAN 2147
#define MV_GLV_DRINK 2162
#define MV_DLD_DENY 2176
#define MV_MAN38_PUTDOMIN 2187
#define QU_SC38_SHOWBOTTLE 2199
#define QU_GLV_TOSMALL 2208
#define QU_MLS_HAND 2223
#define MV_FFT_TUBE_FLOW 2234
#define MV_FFT_PIPE_DENY 2245
#define ST_DMN38_NORM5 2283
#define MSG_SC32_STOPFLAG 2311
#define QU_SC30_ENTER_RIGHT 2357
#define QU_GMA20_STL_BLINK 2445
#define QU_GMA20_FLR_BLINK 2448
#define QU_GMA20_FLR_LOOK 2449
#define ST_CTS_GROWUP 2467
#define ANI_VENT_34 2473
#define QU_SC34_SHOWBOX 2501
#define ANI_BOARD_34 2506
#define ANI_INV_SCISSORS 2532
#define QU_PDV_LRG_TRY 2556
#define MSG_SC34_TESTVENT 2557
#define QU_SC36_ENTER_RIGHT 2563
#define QU_GRD3_BLINK1 2585
#define ANI_INV_MUGFULL 2633
#define MV_TST31_FLOW 2653
#define MV_STR_PLUUAPLE 2682
#define rMV_MAN_TAKECOIN 2695
#define ST_MUG17_FULL 2740
#define QU_SC14_ENTERLIFT 1225
#define MV_MAN_TOTRUBAHOR2 2839
#define MSG_SC4_KOZAWFALL 2858
#define MV_EGTR_MD1_OBL 2865
#define MV_MAN3_GIVEEGG_3 2909
#define MV_MAN3_TAKEEGG_2 2912
#define PIC_INV_EGGBLACK 2921
#define MV_DRP3_DROP2 2922
#define MV_EGTR_FATDENY 2934
#define ANI_GRIT1 2961
#define QU_SC8_STANDUP 2975
#define SND_4_003 3118
#define SND_5_002 3143
#define SND_5_013 3154
#define PIC_SC15_LADDER 3253
#define MV_CLN_BLINK2 3325
#define QU_MAN_DEF_STARTSHOES2_R 3397
#define MV_MAN17_GIVEHMR 3431
#define MV_GFA_DENY 3435
#define SND_8_010 3620
#define SND_8_021 3631
#define QU_SC9_SND3 3647
#define QU_SC11_SND3 3687
#define QU_SC13_SND5 3750
#define SND_14_009 3791
#define SND_16_007 3827
#define SND_16_018 3838
#define SND_16_029 3849
#define SND_17_006 3870
#define SND_17_017 3881
#define SND_17_028 3892
#define QU_SC20_SND1 3934
#define QU_SC22_SND3 3986
#define QU_SC24_SND5 4040
#define SND_26_008 4089
#define SND_28_006 4153
#define QU_CLN_BLINK1 4209
#define PIC_SC28_FRAME1 4262
#define SND_29_005 4334
#define SND_29_016 4350
#define QU_SC32_SND2 4398
#define QU_SC33_SND3 4440
#define QU_SC35_SND5 4503
#define SND_1_017 4548
#define QU_SC34_SHOWBOX_FLOOR 4566
#define QU_MID_CLEANVENT 4583
#define PIC_MLD_OK_D 4646
#define PIC_MSV_7_L 4666
#define SND_29_027 4757
#define MV_SHD_CMN 4860
#define MSG_SC35_STOPFLOW 4864
#define PIC_CSR_ITN_INV 4894
#define QU_BRD28_GOL 4960
#define MSG_SC28_TRYVTORPERS 4961
#define MV_KBK_FROMTRUBA 4970
#define SND_32_040 4998
#define SND_FIN_003 5009
#define MV_FNHND1_SCRUB 5029
#define MV_FN4MAN_ENTER 5098
#define SC_13 1137
#define SC_24 1549
#define PIC_MSV_DOT_L 5189
#define PIC_SC23_UTRUBA 1627
#define PIC_SC24_LADDERD 1826
#define MV_HND17_0_1 5215
#define MV_MAN23_TRYHANDLE 5308
#define PIC_MAP_I02 5296
#define PIC_MAP_S09 5230
#define PIC_MAP_I03 5395
#define PIC_MAP_H37 5391
#define PIC_MAP_H26 5380
#define PIC_MAP_H15 5371
#define PIC_MAP_H04 5360
#define QU_SC22_ENTER_DOWNTOUP 5327
#define MV_MAP_NORM 5322
#define PIC_MEX_CANCEL 5302
#define MSG_SC22_CRANEOUT_GMA 5218
#define MSG_SC34_RETRYVENT 5210
#define SND_CMN_070 5199
#define SC_7 650
#define SC_36 2070
#define SND_INTR_009 5154
#define MV_IN1CLK_HIDE 5131
#define SND_FIN_015 5087
#define MV_FNHND3_SHOW 5037
#define MSG_FIN_STARTFINAL 5025
#define MV_MANFIN_TAKECOIN 5020
#define QU_TTA9_GOL 4937
#define PIC_CSR_ARCADE6_D 4908
#define PIC_CSR_ARCADE3 4904
#define MSG_BRD_TURN 4877
#define PIC_INV_COIN_C 4831
#define PIC_INV_BOTTLE 1424
#define PIC_INV_BOARD 1245
#define ANI_INV_CARPET 4596
#define QU_SC34_SND5 4465
#define QU_SC31_SND2 4385
#define SND_28_018 4327
#define ST_BOX34_MAIN2 4306
#define ST_TTA_DOWN 4288
#define QU_SC25_MANTOTRUBA_R 4218
#define ST_BAL14_TOGMA 3199
#define SND_38_019 4186
#define SND_38_008 4173
#define SND_27_019 4120
#define SND_27_008 4109
#define QU_SC21_SND3 3957
#define SND_19_005 3913
#define SND_18_006 3906
#define SND_15_009 3811
#define QU_SC12_SND5 3725
#define QU_SC10_SND3 3669
#define QU_SC8_SND3 3637
#define QU_SC7_SND2 3607
#define SND_7_023 3603
#define SND_7_012 3592
#define SND_7_001 3581
#define SND_6_035 3574
#define QU_SC6_FALLHANDLE 2995
#define SND_6_013 3550
#define SND_6_002 3539
#define SND_5_025 3537
#define SND_3_016 3523
#define MV_MAN_STANDUP 1166
#define QU_MAN_DEF_STOPSHOES1 3381
#define QU_MAN_DEF_SITDOWN 3377
#define MV_BTH_2_1 3364
#define QU_SC27_SHOWVENT 2060
#define MV_HDLL_RAISE 3329
#define MV_KZW14_HIDE 3269
#define rMV_STR_DENY 3209
#define MV_MAN38_PUTBOTTLE_FULL 3170
#define SND_4_015 3130
#define SND_3_005 3104
#define SND_2_017 3099
#define SND_2_006 3088
#define SND_1_007 3071
#define QU_SC8_FALLSTEP 2977
#define ST_MOM_EMPTY 2952
#define MSG_SC4_COINOUT 2895
#define rMV_MAN_TAKEBOOT 2883
#define QU_SC6_ENTERLIFT 1054
#define ST_LBN_3H 2795
#define MV_LBN_2H 2792
#define LIFTBTN_6 2786
#define MSG_LIFT_TESTDOOR 1064
#define QU_SC3_ENTERLIFT 2779
#define ST_LBN_9N 2777
#define ST_GRT14_GRIT 2727
#define MV_GRT14_FALL 2725
#define QU_SC6_FALLGRIT 2696
#define MSG_SC34_ONBOARD 2550
#define QU_SC34_FROMSTOOL 2491
#define MV_MAN20_TAKESTOOL 2462
#define ANI_INV_POTTIE 2390
#define PIC_SC34_UTRUBA1 2377
#define ST_MAN32_SIT 2277
#define ST_FLG_RIGHT 2264
#define ST_FLG_NORM 2259
#define rMV_MAN29_PUSHASS 2146
#define MSG_SC29_SHOOTGREEN 2119
#define MV_SHG_NORM 2117
#define MSG_SC27_STARTWIPE 2057
#define QU_MID_SWAB 2041
#define QU_DRV_GIVEVENT 2040
#define QU_DRV_FROMRIGHT2 2039
#define MV_MID_SWITCHBACK 2018
#define ANI_MAID 2015
#define MSG_SC26_SHOWVENT 1946
#define ST_MAN25_ROW 1881
#define PIC_SC26_UTRUBA 1863
#define QU_MSH_MOVE 1812
#define QU_MSH_CRANEOUT 1811
#define ST_HDL22_EMPTY 1761
#define MSG_SC23_SPINWHEEL1 1740
#define QU_GRFB_TAIL 1642
#define ST_GRFB_HANG 1638
#define PIC_SC23_FLOOR 1631
#define MV_CDI_DRYG 1534
#define QU_GRD_LOOKRIGHT 998
#define ST_GRL18_WALKFROM 1487
#define ANI_BRIDGE 1378
#define MSG_SC16_MUGCLICK 1366
#define MV_BOY_GOOUT 1334
#define ST_INV_FIRECAN_default 1314
#define ST_HDLR_DOWN 1199
#define ST_SWR_SWING 1115
#define ANI_KACHELI 1094
#define PIC_SCD_9 907
#define PIC_INV_EGG 859
#define PIC_INV_HAMMER 864
#define ST_INV_OLDEGG_default 366
#define PIC_INV_GLASSES 865
#define ANI_INV_OLDHAMMER 399
#define ST_INV_OLDBOOT_default 398
#define ST_INV_OLDAPPLE_default 395
#define MV_SLN_POT_MOVEBACK 844
#define QU_HGN_PLUU 815
#define SC_DBGMENU 726
#define ANI_HAND 601
#define MV_MAN_LOOKPLANK 554
#define MSG_LOWERPLANK 540
#define MV_MAN_TURN_RD 489
#define MV_MAN_TURN_RU 485
#define rMV_MAN_GOR 329
#define MV_INV_OLDHAMMER_default 400
#define MV_EGTR_FATOBL 372
#define MV_EGTR_GIVESMONEY 353
#define MV_OTM_2_4 438
#define TrubaLeft 474
#define MV_KZW_JUMP 558
#define MV_KZW_TURN 562
#define MV_KZW_GOR 564
#define rMV_KZW_GOR 566
#define PIC_SC4_BOTTLE 568
#define MV_KZW_JUMPEDGE 581
#define MV_HDL_MOVEDOWN 623
#define QU_SC1_ENTER_UP 704
#define QU_CST_SPINHEADUP 725
#define QU_BTT_EAT 759
#define MV_MAN8_DRYGUP 768
#define PIC_SC12_RTRUBA 855
#define MV_INV_HAMMER_default 885
#define PIC_SC2_DTRUBA 841
#define PIC_SC9_LTRUBA 900
#define MV_VSN_CYCLE 905
#define ANI_NADUVATEL 944
#define MV_GRD_MORG 997
#define MSG_SC8_ARCADENOW 1044
#define PIC_SC11_LTRUBA 1119
#define MSG_SC5_MAKEOTMFEEDBACK 1169
#define QU_STR_TURNL 1184
#define MSG_SC16_HIDEMAN 1357
#define ST_JTI_EMPTY2 1395
#define QU_GFA_START 1612
#define ST_GRFU_UP 1648
#define MV_GRFU_CHMOKUP 1659
#define MV_GRFG_SHOW 1673
#define ST_GRFG_EMPTY 1674
#define ST_GRFG_BALD 1675
#define MV_CND_8_9 1720
#define PIC_SC23_BTN3 1731
#define QU_CLN_ZHMUR 1790
#define MV_MAN22_FROMSTOOL 1794
#define MV_MAN21_HANDLEUP 1806
#define MV_MAN25_TRUBATOBOARD 1892
#define QU_SC25_MANTOTRUBA 1905
#define rMV_MAN25_ONBOARD 1966
#define MSG_SC26_HIDECHI 1967
#define ST_LUK23_WHANDLE2 1977
#define QU_GRFM_ASS 1986
#define MV_MAN27_FLOW 1990
#define MV_VNT27_LIES 2059
#define QU_SC25_BACKTOTRUBA 2061
#define QU_ASS_TAIL 2133
#define ANI_GLAVAR 2154
#define MV_MLS_POINT 2183
#define QU_GLV_LOOKMAN 2212
#define ANI_FIREFIGHTER 2229
#define MV_FFT_PIPE_STOPFLOW 2246
#define MSG_SC32_STARTFLAGLEFT 2310
#define ST_RHT_CLOSED 2364
#define ST_POTTIE_default 2392
#define ANI_HDL32 2394
#define PIC_SC35_LTRUBA 2406
#define MV_HZE_FLOW 2425
#define ST_GMA20_STOOL 2432
#define ST_STL20_NORM 2465
#define ST_BRD34_LEFT 2508
#define ST_BRD34_RIGHT 2509
#define ST_LUK34_OPEN 2544
#define MV_PDV_SML_TRY 2552
#define PIC_SC36_RTRUBA 2560
#define MV_GRD3_BLINK 2580
#define MV_GRD3_LOOKL 2583
#define MV_GRD37_BLINK 2591
#define MV_GRD37_LOOKL 2593
#define ANI_GRANDMA_22 2609
#define MV_VNT33_TURNR 2641
#define QU_SC35_SHOWHOZECUT 2679
#define QU_SC9_TEST1 2701
#define ANI_TUBE_33 2715
#define MSG_SC29_SHOWLASTRED 2731
#define PIC_SC3_BORDER 2729
#define MV_EGTR_MD2_OBL 2870
#define MV_MAN3_TAKEEGG_3 2911
#define MV_MAN3_GIVEEGG_4 2913
#define MV_MAN_TOTRUBAHOR3 2982
#define MV_MAN_FALLPOPA2 2983
#define PIC_SC9_URTRUBA 2984
#define QU_SC9_MANFALL 2986
#define MV_BTN6_HILITE 2992
#define MV_NDV_DENY_NOGUM 3022
#define PIC_CMN_LOAD 3035
#define SND_4_004 3119
#define SND_5_003 3144
#define SND_5_014 3155
#define ANI_DROP_7 3185
#define MV_DRP7_DROP 3186
#define ANI_GRIT2 3189
#define ST_GRIT2_STUCCO 3191
#define MSG_SC15_LADDERTOBACK 3259
#define ST_BTL_EMPTY 3306
#define MV_DMS_0_1 3318
#define QU_CLN_BLINK2 3326
#define MV_MAN11_GIVEGUM_2 3430
#define MV_MAN22_TRYBOOT 3433
#define QU_MAN_DEF_SNEEZE 3464
#define MV_GRFU_KISSOPEN 3477
#define QU_SC6_SND1 3576
#define SND_8_011 3621
#define SND_8_022 3632
#define QU_SC9_SND4 3648
#define SND_9_010 3654
#define QU_SC11_SND4 3688
#define SND_16_008 3828
#define SND_16_019 3839
#define SND_17_007 3871
#define SND_17_018 3882
#define SND_17_029 3893
#define QU_SC20_SND2 3935
#define QU_SC22_SND4 3987
#define SND_26_009 4090
#define SND_28_007 4154
#define ST_SHD01_0 4204
#define QU_SC17_SHOWBOOT 4225
#define ST_BRM_STAND 4226
#define ST_LFT28_OPEN 4241
#define QU_SC28_LIFT1_SHOWAFTER 4260
#define MSG_SC28_TURNON_6 4272
#define SND_29_006 4340
#define SND_29_017 4351
#define QU_SC30_SND1 4364
#define MV_MAN30_ITCHBROOM 4374
#define SND_30_010 4375
#define QU_SC32_SND3 4399
#define SND_32_030 4426
#define QU_SC33_SND4 4441
#define MV_MAN33_PUTMUGFULL 4453
#define MV_GLV_PUTDOMINO 2158
#define MV_MAN36_PUTCARPET 4604
#define PIC_MNU_DEBUG_D 4631
#define PIC_MSV_8_L 4667
#define MV_WTR24_FLOWLOWER 1844
#define PIC_SC11_WND1 4704
#define ANI_EYE_30 4712
#define SND_29_028 4758
#define MSG_SC22_CHECKGMABOOT 4782
#define PIC_TEST1 4783
#define QU_LUK26_HIT 4890
#define MV_KBK_TOTRUBA 4971
#define SND_19_016 4995
#define SND_FIN_004 5010
#define QU_FN4_DOFINAL 5108
#define ST_IN1MAN_FROM 5123
#define SC_14 1138
#define SC_25 1550
#define SC_TITLES 5166
#define PIC_SC24_LADDERUP 1827
#define PIC_SC23_LADDER 1628
#define PIC_SC1_OSK 1018
#define PIC_MAP_H38 5392
#define PIC_MAP_H27 5381
#define PIC_MAP_H16 5372
#define PIC_MAP_H05 5361
#define QU_SC22_ENTER_UPTODOWN 5326
#define MV_MOM_SITDOWN 657
#define SC_8 651
#define SC_37 2071
#define QU_INTR_GETUPMAN 5136
#define SND_FIN_016 5088
#define MV_FNHND4_SCRUB 5049
#define rMV_EGI_GOR 4932
#define MV_EGI_GOR 4930
#define PIC_CSR_ARCADE7_D 4910
#define PIC_CSR_ARCADE4 4905
#define PIC_INV_EGGBLACK_C 4834
#define PIC_INV_BOOT_C 4825
#define SND_31_010 4752
#define SND_30_011 4376
#define PIC_MSV_0_D 4643
#define PIC_MSV_FULL_D 4641
#define QU_SC31_SND3 4386
#define SND_28_019 4328
#define MV_TTA_GOL 4293
#define ST_STR_GLASSES 3114
#define MSG_SC9_FROMLADDER 4207
#define SND_38_009 4174
#define SND_27_009 4110
#define QU_SC21_SND4 3958
#define SND_19_006 3919
#define QU_SC10_SND4 3670
#define QU_SC8_SND4 3638
#define QU_SC7_SND3 3608
#define SND_7_024 3604
#define SND_7_013 3593
#define SND_7_002 3582
#define SND_6_036 3575
#define SND_6_025 3564
#define SND_6_014 3551
#define SND_6_003 3540
#define SND_3_017 3533
#define SND_4_027 3530
#define SND_2_018 3512
#define ST_MID_SPADE 3489
#define MV_MAN_STOPSHOES_1 3376
#define MV_BTH_GODOWN 3350
#define QU_CDI_EYE 3314
#define MV_MAN16_TAKEBOOT 3289
#define QU_KZW14_HIDE 3274
#define QU_SC5_SND1 3240
#define MV_MAN13_THROWGLASSES 3197
#define SND_4_016 3131
#define SND_3_006 3105
#define SND_1_008 3072
#define QU_STR_HIDE_L 3060
#define rMV_STR_TURNR 3051
#define ST_MID11_SWAB 3030
#define ST_MOM_CYCLEBK 3011
#define ST_CLK8_NORM 2991
#define MV_MOM_OPENEMPTY 2946
#define QU_SC4_MANFROMBOTTLE 2851
#define QU_SC38_EXITLIFT 2837
#define ST_LBN_2H 2793
#define MV_LBN_1H 2790
#define LIFTBTN_7 2787
#define ST_LBN_8N 2774
#define QU_SC11_PUTBOOT1 2709
#define QU_SC32_FLOWB 2667
#define QU_SC33_ENTER_LEFT 2620
#define PIC_SC34_SHADOW 2538
#define ANI_STOPPER 2515
#define QU_SC34_ENTER_DOWN 2379
#define PIC_SC34_UTRUBA2 2378
#define MSG_SC30_LEAVESCENE 2373
#define QU_LEG_SHOW1 2347
#define ST_LEG_UP 2324
#define MV_MAN38_PUTBOTTLE 2285
#define MV_ASS_HITGREEN 2138
#define QU_SC29_MANTO_L 2103
#define MV_MAN29_RUN 2095
#define MV_MAN29_FROMPORTER 2094
#define MV_MAN29_STANDUP 2092
#define QU_DRV_PUSHBUTTON 2056
#define ST_MID_SWAB 2017
#define MV_DRV_FROMLEFT 2012
#define MV_DRV_GIVEVENT 2006
#define MV_DRV_TORIGHT 2001
#define MV_INV_VENT_default 1969
#define MV_BRD25_RIGHT 1899
#define QU_WTR24_FLOWLOWER 1953
#define ST_WTR25_FLOW 1858
#define ST_LUK23_OPEN 1816
#define MSG_SC23_SPINWHEEL2 1741
#define MV_CDI_SHOW 1530
#define MV_KSL_JUMPMAN 1509
#define MV_GRL18_JUMPTO 1488
#define ST_BOY18_WALK 1480
#define ST_KSL_BOY 1463
#define MV_SMG_SPINHEAD 1400
#define rMV_MAN_STANDUP 1291
#define QU_GRD2_LOOKLEFT 1289
#define QU_GRD2_BLINK 1287
#define PIC_SC15_WALL 1286
#define MV_MAN14_KICKAIR 1256
#define MSG_SC14_SHOWBALLFLY 1253
#define MV_MAN14_FALL 1236
#define MV_SWR_JUMPDOWN 1116
#define MV_MAN_GOR 327
#define MSG_SC4_COINPUT 1032
#define ST_HDL6_default 1011
#define MV_INV_POT_default 987
#define ANI_INV_POT 986
#define MV_BALL9_default 934
#define MSG_SC5_HANDLEUP 915
#define SC_LDR 635
#define MV_INV_DOMINO_default 873
#define ST_INV_HANDLE_default 895
#define QU_SLN_POT_MORG 849
#define MSG_SC7_HIDEBOX 817
#define MV_BTT_23 747
#define MV_BTT_12 745
#define MV_BTT_01 744
#define PIC_SC5_UTRUBA 701
#define QU_EGTR_FATOBLRV 534
#define MV_MAN_TOTRUBAVER 517
#define ST_MAN_EMPTY 476
#define MV_OTM_GLS_TURNL 424
#define ST_EGBR_HEADRAISED 379
#define ST_DYAS_SITS 308
#define MV_INV_OLDDOMINO_default 368
#define PIC_SC2_LADDER 412
#define MV_MANEGTR_GIVESEGGFAT 417
#define ST_OTM_VNT_LEFT 434
#define PIC_TEST2 509
#define MSG_KOZAWRESTART 546
#define ST_PNK_WEIGHTLEFT 503
#define GRID_SC4_LADDER 565
#define QU_SC4_CLICKBUTTON 610
#define MSG_UPDATEBOTTLE 613
#define ANI_HANDLE 622
#define MV_MOM_PUTBALL 666
#define QU_BTT_SLEEP 763
#define MSG_SC8_RESUMEFLIGHT 784
#define MV_MAN8_TOJUMP 782
#define ST_LUK_OPEN 806
#define QU_CST_MORG 818
#define PIC_INV_OLDDOMINO 371
#define MV_VSN_TURNRIGHT 955
#define QU_SC9_ENTER_LEFT 962
#define MSG_SC9_PLVCLICK 965
#define MSG_SC6_INSTHANDLE 1012
#define MV_MAN_LIFTUP 1051
#define QU_SC6_ENTER_LIFTUP 1069
#define MV_MAN_STOPD 482
#define MV_MAN_STOPU 477
#define rMV_MAN_STOPR 331
#define PIC_INV_VANTUZ 1161
#define ANI_STOROZH 1172
#define ANI_HANDLE_R 1196
#define ST_GMA_EMPTY 1235
#define PIC_SC15_RTRUBA 1262
#define ANI_GRANDMA_ASS 1265
#define ST_GRD2_STAND 1281
#define MV_MAN16_DRINK 1354
#define MSG_HIDEMAN 1356
#define MV_HND17_TOCYCLE 1450
#define QU_SC19_ENTER_WHIRLIGIG 1470
#define MV_INV_EGGDOM_default 1562
#define ST_GFA_SIT 1590
#define ST_GRFU_CHMOK 1656
#define MV_GRFU_TOKISS 1661
#define MV_GRFG_BLINKBALD 1678
#define MV_CND_0_1 1703
#define PIC_SC23_BTN4 1732
#define ST_CLN_BROOM 1771
#define QU_SC22_FALLLEVER 1787
#define PIC_SC24_FLOOR 1825
#define MV_INV_LOPAT_default 1921
#define ST_INV_LOPAT_default 1922
#define MV_MAN25_TAKESPADE 1926
#define PIC_SC29_LFLOOR 2142
#define ST_SHG_EMPTY 2148
#define MV_GLV_DRINK_NOHMR 2163
#define ST_DLD_SIT2 2173
#define MV_DLD_BLINK 2175
#define ST_MLS_RIGHT 2180
#define QU_SC38_SHOWDOMINO 2203
#define MV_FFT_PIPE_FLOW 2242
#define MV_FFT_PIPE_OPENEYE 2243
#define QU_FFT_PIPE_START 2296
#define MSG_SC32_STARTFLAGRIGHT 2309
#define ST_INV_PIPE_default 2319
#define MV_MAN36_GOIN 2366
#define ST_GMA20_FLOOR 2429
#define MV_GMA20_STD_LOOKTRUBA 2438
#define PIC_SC20_RTRUBA 2439
#define PIC_SC31_DTRUBA 2441
#define PIC_SC31_UTRUBA 2442
#define MV_MAN20_BOOTTOSTOOL 2443
#define MV_GMA_0_1 2444
#define QU_SC35_MANRETIRE 2539
#define MV_GRD3_BLINK1 2581
#define QU_GRD3_BLINK 2584
#define QU_GRD3_LOOKL 2586
#define ANI_RING 2604
#define QU_SC22_FROMSTOOL_GMA 2612
#define MV_MUG33_FILL 2624
#define ST_JTI33_EMPTY 2629
#define ST_VNT33_RIGHT 2639
#define ANI_SCISSORS_36 2647
#define MV_MAN36_TAKESCISSORS 2650
#define PIC_SC32_VESSELS 2665
#define MV_HZE_UNCUT 2677
#define QU_SC3_RELEASEEGG 2680
#define MSG_SC3_RELEASEEGG 2681
#define MV_GRT6_BREAK 678
#define MV_MAN17_PUTMUG 2741
#define QU_SC17_SHOWMUG 2742
#define QU_SC35_ENTER_LIFTDOWN 2818
#define MV_EGTR_MD2_BOLTLEGS 2868
#define MSG_SC6_JUMPBK 2900
#define MV_MAN3_TAKEEGG_4 2910
#define ST_STP8_EMPTY 2981
#define ANI_BUTTON_6 2988
#define MV_PCH2_NORM 3020
#define QU_SC8_ENTER_UP 3036
#define SND_2_007 3089
#define SND_4_005 3120
#define SND_5_004 3145
#define SND_5_015 3156
#define ST_DRP7_EMPTY 3187
#define QU_BTT_CLOCK_SPOON 3196
#define MV_MAN13_PUTHAMMER 3206
#define MSG_SC18_CLICKBOARD 3297
#define MV_DMS_THREE 3321
#define MV_MAN22_TRYTAKESOCK 3330
#define MSG_SC23_ONSTOOL 3334
#define QU_SC23_FROMSTOOL 3338
#define MSG_SC23_FROMSTOOL 3339
#define ST_DRP26_NORM 3347
#define QU_MAN_DEF_STOPSHOES1_DEF 3393
#define QU_MAN_DEF_STOPSHOES2 3396
#define PIC_SC26_LADDER 3403
#define ST_MAN_LADDERDOWN_R 3419
#define QU_WMN_SHOWAFTER 3457
#define MV_DRP24_TOFLOOR 3508
#define QU_DRP24_TOWATER 3509
#define QU_SC6_SND2 3577
#define SND_8_001 3611
#define SND_8_012 3622
#define SND_8_023 3633
#define QU_SC9_SND5 3649
#define SND_9_011 3655
#define QU_SC11_SND5 3689
#define SND_16_009 3829
#define SND_17_008 3872
#define SND_17_019 3883
#define QU_SC20_SND3 3936
#define SND_20_010 3943
#define QU_SC22_SND5 3988
#define SND_22_030 4013
#define SND_28_008 4155
#define ST_SHD01_1 4205
#define MV_MAN17_PUTBOOT 4223
#define MV_LFT28_CLOSE 4242
#define MV_CTS34_FALLRIGHT 4315
#define ST_VNT34_RIGHT3 4318
#define SND_29_007 4341
#define SND_29_018 4352
#define QU_SC30_SND2 4365
#define QU_SC32_SND4 4400
#define SND_32_020 4416
#define SND_32_031 4427
#define QU_SC33_SND5 4442
#define PIC_MNU_CONTINUE_L 4626
#define PIC_MSV_9_L 4668
#define MV_LFT_TRY 4671
#define ANI_BEARDED_28 4679
#define PIC_SC11_WND2 4705
#define MV_EYE30_SHOW 4713
#define QU_EYE30_BLINK 4721
#define MSG_SC15_STOPCHANTING 4753
#define SND_29_029 4759
#define SND_11_030 4885
#define MV_GMA20_STD_DENY 4887
#define SND_CMN_060 4921
#define MV_BRDCMN_STOPR 4944
#define rMV_KBK_TOTRUBA 4974
#define MV_KBK_TURN_RL 4975
#define SND_FIN_005 5011
#define ST_FNFNG_BEFORE 5064
#define MV_IN1MAN_0_1 5122
#define SC_15 1139
#define SC_26 1551
#define PIC_SC8_LADDERD 1106
#define MV_MAN22_TRYBOX 5303
#define SND_5_026 5316
#define SND_CMN_071 5317
#define PIC_SC11_HINT 5170
#define PIC_MAP_H17 5373
#define PIC_MAP_H28 5382
#define PIC_MAP_H06 5362
#define SND_CMN_072 5352
#define MV_EGTR_FATASK 5332
#define PIC_CSR_ITN_GREEN 5330
#define SND_11_031 5171
#define SC_9 652
#define SC_38 2072
#define SND_FIN_017 5089
#define PIC_CSR_ARCADE5 4906
#define PIC_INV_POT_C 4848
#define PIC_INV_SUGAR_H 4818
#define PIC_INV_POTTIE_H 4814
#define PIC_INV_MUG_H 4809
#define PIC_INV_GUM_H 4803
#define PIC_INV_BOTTLEFULL_H 4790
#define PIC_TEST3 4784
#define ST_TBE36_NORM 4751
#define QU_SC28_LIFT0_START 4676
#define MV_PDV_CUT_DENY 4586
#define SND_34_030 4490
#define QU_SC31_SND4 4387
#define PIC_SC28_FRAME4 4264
#define QU_SC28_LIFT1_START 4254
#define ANI_MAN_28 4247
#define SND_22_031 4002
#define SND_21_021 3975
#define SND_21_010 3964
#define QU_SC21_SND5 3959
#define SND_19_007 3920
#define SND_18_008 3908
#define SND_10_010 3676
#define QU_SC10_SND5 3671
#define QU_SC8_SND5 3639
#define QU_SC7_SND4 3609
#define SND_7_025 3605
#define SND_7_014 3594
#define SND_7_003 3583
#define SND_6_026 3565
#define SND_6_015 3552
#define SND_6_004 3541
#define SND_3_018 3534
#define SND_4_028 3531
#define SND_2_019 3513
#define QU_SC25_TRYROWHAND_R 3494
#define QU_MID_SPADE 3490
#define MV_MAN27_SWAB2SPADE 3487
#define ANI_BEARDED_CMN 3420
#define MV_BTH_3_2 3362
#define ST_VNT26_UP2 1948
#define ST_GMS_BOOTLESS2 3316
#define ST_BOY_TEMP 3283
#define ANI_KOZAWKA_14 3261
#define QU_SC5_SND2 3241
#define QU_SC4_SND1 3235
#define SND_4_017 3132
#define SND_3_007 3106
#define SND_2_008 3090
#define SND_1_009 3073
#define MSG_SC13_OPENBRIDGE 3064
#define QU_STR_LTOR 3054
#define rMV_STR_SHOW 3049
#define MSG_SC11_HITMAN 3019
#define MV_MOM_STOPBK 3013
#define MSG_SC10_LADDERTOFORE 3004
#define MV_MAN8_SITDOWN 2968
#define ANI_MAMASHA_4 660
#define ST_PMS_MINUS 2942
#define MV_MAN_TOLADDER2 2841
#define MV_LBN_0H 2834
#define QU_SC30_ENTER_LIFTUP 2825
#define ST_LBN_1H 2791
#define LIFTBTN_8 2788
#define ST_LBN_9P 2778
#define ST_LBN_7N 2771
#define ANI_LIFTBUTTON 2751
#define QU_SC11_PUTBOOT2 2710
#define ST_NBL_EMPTY 1078
#define MV_NBL_OUT 1077
#define ST_NBL_NORM 1076
#define QU_SC34_LEAVEBOARD 2575
#define ST_SPR_NORM 2517
#define MSG_SC34_UNCLIMB 2492
#define QU_CTS_BACK 2415
#define MV_FLG_CYCLEL 2262
#define QU_LEG_HIDE 2353
#define QU_LEG_SHOW2 2348
#define MV_LEG_POT0_MOVE1 2326
#define MV_MAN29_STANDUP_NORM 2093
#define MV_MAN29_TOPORTER_L 2087
#define PIC_SC29_UTRUBA 2080
#define QU_DRV_LOOKRIGHT 2033
#define MV_DRV_FROMRIGHT_V 2013
#define QU_SC26_OPEN1 1935
#define PIC_SC25_STEP 1894
#define rMV_MAN25_STARTROW 1889
#define PIC_SC25_LADDERDOWN 1855
#define ST_WTR24_FLOW 1836
#define ST_JET24_FLOW 1839
#define MV_MSH_CRANEOUT 1757
#define ANI_MESHOK 1754
#define MSG_SC23_SPINWHEEL3 1742
#define ST_GRFB_SIT 1687
#define PIC_SC22_LTRUBA 1584
#define ANI_CORDIE 1529
#define QU_SC19_MANJUMP1 1516
#define MV_KSL_INBOY 1491
#define ST_BOY18_WALKTO 1482
#define MV_KSL_SWINGGIRL 1464
#define QU_SMG_STARTFINGERS 1406
#define MV_SMG_DENIES 1401
#define MSG_SC16_HIDEWIRE 1349
#define MV_GRL_LAUGH 1343
#define MV_BOY_GOIN 1329
#define MV_BAL14_FALL 1258
#define ST_INV_BALL_default 1244
#define MSG_SC13_UNEATGUM 1218
#define QU_SC13_CLOSEBRIDGE 1214
#define MV_SWR_1_2 1146
#define ANI_SWINGER 1113
#define MV_MAN_STOPLADDER 454
#define MV_MAN9_SHOOT 922
#define MV_PLV_BREATHE 920
#define ST_BLK_OPEN 913
#define PIC_INV_DOMINO 860
#define ANI_INV_EGG 869
#define ANI_INV_OLDDOMINO 367
#define PIC_INV_OLDGLASSES 408
#define QU_SLN_BOOT_KICK 846
#define ANI_SLONIK 827
#define MSG_SC7_SHOWBOX 816
#define MV_MAN8_DRYGLADDER 787
#define PIC_SC8_UTRUBA 753
#define MV_HND_POINT 602
#define ST_BTN_UP 600
#define QU_EGTR_FATBOLTLEGS 533
#define QU_EGTR_SLIMOBL 527
#define QU_EGTR_SLIMTRAIN 525
#define QU_EGTR_SLIMTOSORROW 524
#define rMV_EGBR_KACHAET 461
#define MV_MANEGTR_TAKESEGG 415
#define MV_MANDYAS_GIVESCOIN 361
#define MV_OTM_VNT_BOLTHEAD 433
#define MV_MANEGBR_EGG2GLASSES 442
#define QU_SC1_ENTER 320
#define ST_KZW_PLANK 499
#define MV_KZW_WALKPLANK 500
#define MV_KZW_JUMPROTATE 561
#define MV_KZW_STANDUP 563
#define QU_OTM_GLS_MORGLEFT 638
#define QU_OTM_BOX_MORGL 642
#define QU_OTM_BOX_TURNR 644
#define ST_MAN8_HANDSUP 773
#define ST_MAN8_STAND 774
#define MV_MAN7_BOX2HANDLE 801
#define MV_VSN_DRYG 957
#define PIC_SC10_DTRUBA 974
#define PIC_SC10_LADDER 995
#define MSG_SC1_SHOWOSK 1019
#define MV_MAN_TURN_SDL 1084
#define MV_MAN_TURN_SUL 1087
#define QU_SWR_SWING 1118
#define QU_SC13_ENTER_UP 1183
#define MSG_SC13_SHOWGUM 1215
#define ST_MAN14_KICK 1238
#define QU_GMA_BLINK 1252
#define MV_GMS_0_1 1271
#define MSG_SC16_SHOWMAN 1358
#define MSG_SC16_TESTMUG 1359
#define MV_WHR19_SPIN 1317
#define QU_SC14_STARTARCADE 1390
#define ST_HND17_ATTRACT 1451
#define QU_HND17_ATTRACT 1455
#define PIC_SC18_RTRUBA 1520
#define QU_SC21_ENTER_LEFT 1556
#define ST_INV_EGGGLS_default 1575
#define MV_GFA_BREATHESOCK 1591
#define MV_GFA_SWINGSOCK 1597
#define MV_GFA_TOSWING 1599
#define QU_SC22_ENTER_DOWN 1620
#define ST_GRFU_LEFT 1647
#define QU_SC23_FROMCALENDAREXIT 1735
#define MV_MAN21_BROOMTOCOIN 1772
#define PIC_INV_LEVERHANDLE 1784
#define MSG_SC22_HANDLEDOWN 1796
#define QU_SC24_ENTER_UP 1830
#define QU_SC25_TRYWATER 1906
#define ANI_GIRAFFE_MIDDLE 1981
#define MV_MAN27_THROWBET 1989
#define ANI_VENT27 2058
#define MV_PTR_MOVE 2083
#define MSG_SC29_ENABLERIDEBACK 2105
#define MV_STR1_SHOOT 2109
#define ST_STR1_STAND 2110
#define ST_ASS_EMPTY 2124
#define QU_SC29_ESCAPE 2129
#define ANI_SHELL_RED 2130
#define MV_GLV_TOSMALL 2160
#define MV_GLV_LOOKMAN 2167
#define MV_BTL38_NORM 2189
#define ANI_DOMINO38 2200
#define QU_GLV_DRINK_NOHMR 2211
#define QU_GLV_LOOKMAN_NOHMR 2213
#define MSG_SC38_POINT 2226
#define ST_FFT_PIPE 2240
#define MV_FFT_LOOKFLAG 2247
#define ST_CTS_EMPTY 2269
#define MV_LEG_0_1 2343
#define ANI_ROTOHRUST 2360
#define MV_MAN32_STARTSPIN 2401
#define ST_MAN32_SPIN 2402
#define QU_CTS_GROWMAN 2417
#define MV_GMA20_STL_NOSE 2433
#define MV_CTS_CYCLEUP 2469
#define MV_PDV_CUT_BREATHE 2526
#define ST_INV_STOPPER_default 2537
#define ST_GRD3_STAND 2579
#define ANI_GUARD_37 2588
#define PIC_INV_MUGFULL 2632
#define MV_INV_MUGFULL_default 2634
#define ST_TSTO_NORM 2658
#define MSG_SC29_SHOWLASTGREEN 2730
#define MV_MAN17_DRINK 2743
#define QU_SC4_MANTOBOTTLE 2850
#define MV_EGTR_MD2_DENY 2871
#define ST_MOM_LIFT 2894
#define QU_MOM_STANDUP 2899
#define QU_VSN_FROML 2999
#define MV_SWR_SPOLZING_NOVNT 3005
#define ST_PCH_NORM 980
#define SND_4_006 3121
#define SND_5_005 3146
#define SND_5_016 3157
#define MV_MAN5_VNT2GLS 3184
#define MV_MAN6_LOOK 3210
#define rMV_MAN22_TAKETABUR 3337
#define MSG_SC27_HANDLERTOFRONT 3371
#define MV_MAN_STOPSHOES_2 3388
#define MV_GFA_DENY_NOSOCK 3436
#define QU_MAN_DEF_CLEAN_R 3463
#define ST_GRFM_AFTER 3472
#define QU_GRFU_OPENEYES 3478
#define MSG_SC26_SHOWCHI 3495
#define QU_SC6_SND3 3578
#define SND_8_002 3612
#define SND_8_013 3623
#define SND_8_024 3634
#define SND_9_001 3640
#define SND_9_012 3656
#define SND_11_020 3704
#define SND_17_009 3873
#define QU_SC20_SND4 3937
#define SND_20_011 3944
#define SND_28_009 4156
#define ST_BRM_LIES2 4227
#define ST_BOT1_NORM 4233
#define ANI_LIFT_28 4238
#define MSG_SC34_SHOWVENT 2481
#define SND_29_008 4342
#define SND_29_019 4353
#define SND_30_001 4359
#define QU_SC30_SND3 4366
#define QU_SC32_SND5 4401
#define SND_32_010 4406
#define SND_32_021 4417
#define SND_32_032 4428
#define QU_SC33_SHOWMUGFULL 4454
#define ST_BOX34_FLOOR 4565
#define SC_MAINMENU 4620
#define PIC_MNU_EXIT_L 4622
#define PIC_MLD_CANCEL_D 4648
#define PIC_MSV_1_D 4651
#define PIC_SC28_DARK0 4675
#define QU_EYE30_SHOW 4719
#define MV_LEG31_HIDE 4724
#define MV_BRDCMN_GOR 4735
#define SND_CMN_050 4745
#define MV_BOT15_NORM 4780
#define PIC_CSR_ITN 4893
#define SND_CMN_061 4922
#define rMV_KBK_TURN_RL 4976
#define SC_FINAL1 4999
#define SND_FIN_006 5012
#define ST_FNHND6_AFTER2 5070
#define SND_FIN_028 5103
#define MV_IN1MAN_GODOWN 5124
#define SC_16 1140
#define SC_27 1552
#define PIC_MSV_SPACE_D 5190
#define PIC_SC23_LADDERU 3411
#define PIC_SC34_DTRUBA 2376
#define QU_CTS34_FALLRIGHT 4317
#define PIC_MAP_S31_1 5253
#define PIC_MAP_H18 5394
#define PIC_MAP_H29 5383
#define PIC_MAP_H07 5363
#define SND_CMN_073 5353
#define PIC_MOV_OK 5344
#define SC_MAP 5222
#define QU_INTR_DUMMY 5168
#define ST_IN1HAND_AFTER 5116
#define ANI_IN1MAN 5110
#define ANI_FN4MAN 5097
#define SND_FIN_018 5090
#define SND_FIN_007 5079
#define ST_FNHND6_AFTER3 5076
#define QU_FN3_DOFINAL 5072
#define ST_FNHND5_BEFORE 5054
#define ST_FCN_NORM 5017
#define ST_FCN_EMTY 5016
#define QU_BRD16_TURNR 4949
#define MSG_SC9_STARTTIOTIA 4942
#define ANI_EGGIE 4929
#define SND_CMN_062 4927
#define PIC_CSR_ARCADE6 4907
#define SND_8_025 4870
#define PIC_INV_STOOL_C 4852
#define PIC_INV_EGGGLS_C 4838
#define PIC_INV_EGGAPL_C 4833
#define PIC_INV_APPLE 862
#define QU_MAN_DEF_LOOKUP 4776
#define ANI_TUBE_36 4749
#define QU_LEG31_HIDE 4728
#define MSG_SC28_TURNOFF_0 4678
#define QU_DRV_PUSHBUTTON_NOVENT 4578
#define SND_34_031 4491
#define SND_34_020 4480
#define SND_33_010 4447
#define QU_SC31_SND5 4388
#define SND_31_001 4377
#define QU_SC28_LIFT6_START2 4295
#define MV_MAN28_STOPWASH 4252
#define MV_MAN28_WASH 4251
#define QU_SC28_LIFT2_START 4246
#define QU_SC25_TRYHAND 4219
#define MSG_SC25_ENTERTRUBA 4214
#define SND_21_022 3976
#define SND_21_011 3965
#define SND_19_008 3921
#define SND_18_009 3909
#define SND_13_030 3775
#define SND_12_020 3740
#define SND_10_011 3677
#define QU_SC7_SND5 3610
#define SND_7_015 3595
#define SND_7_004 3584
#define SND_6_027 3566
#define SND_6_016 3553
#define SND_6_005 3542
#define SND_4_029 3535
#define QU_SC25_TRYSPADE 3498
#define MV_CHI_NORM 3484
#define ST_WMN_AFTER 3455
#define QU_SC28_ENTERWMN 3451
#define MV_BTH_GOUP_5 3356
#define ANI_BITAHANDLER 3349
#define MV_CDI_LOOK 3312
#define ST_BT16_NORM 3287
#define ST_WR16_NORM 3284
#define QU_GRL_FALL 3280
#define QU_SC5_SND3 3242
#define QU_SC4_SND2 3236
#define QU_SC3_SND1 3230
#define MV_MAN14_KICKGMA 3211
#define QU_STR_THROWGLASSES_L 3203
#define MV_STR_0_1 3198
#define SND_4_018 3133
#define SND_4_007 3122
#define SND_3_008 3107
#define SND_2_009 3091
#define QU_STR_NOSE_L 3057
#define SND_DBGMENU_001 2929
#define QU_SC6_DROPS 2898
#define ANI_FIRECAN_17 2860
#define ST_MAN_GOLADDER2 2843
#define ST_LBN_0H 2835
#define MV_LBN_0 2831
#define LIFTBTN_9 2789
#define ST_LBN_8P 2775
#define ST_LBN_6N 2768
#define ST_KDK_NORM 2672
#define PIC_SC37_MASK 2608
#define MV_MAN34_BOARD_BUMP2 2571
#define PIC_SC35_OUTLET 2518
#define QU_SC34_SHOWSTOOL 2496
#define MV_MAN20_PUTSTOOL 2461
#define ANI_PUZODUV 2418
#define MV_LEG_POT2_MOVE1 2335
#define MV_LEG_POT1_MOVE2 2331
#define MV_LEG_POT0_MOVE2 2327
#define ST_LEG_DOWN 2325
#define MV_ASS_HITRED 2139
#define MSG_SC29_STOPRIDE 2107
#define QU_SC29_MANFROM_L 2101
#define PIC_SC28_FLOOR 2075
#define ST_BTA_FALL 2054
#define ST_DRV_SITNOVENT 1999
#define ST_DRV_VENT 1996
#define rMV_BRD25_RIGHT 1903
#define QU_SC26_OPEN2 1937
#define MV_MAN26_TURNVENT_L 1933
#define ST_LUK23U_OPEN 1820
#define ANI_LUK23_U 1817
#define ANI_LUK23_D 1813
#define PIC_SC22_MONETOPR 1809
#define QU_SC22_FALLSACK 1791
#define MV_MAN22_FALL 1751
#define MV_MAN22_PUTTABUR 1748
#define MSG_SC23_SPINWHEEL4 1743
#define QU_GRFG_BLINKHAIR 1686
#define QU_GRFG_SHOWHAIR 1685
#define QU_GRFU_TURN_UL 1662
#define rMV_MANEGBR_EGG2GLASSES 469
#define QU_SC19_MANJUMP2 1517
#define MSG_SC18_SHOWBOYJUMPTO 1497
#define MV_MAN17_PUTSUGAR 1414
#define PIC_SC17_BOX 1409
#define ANI_WHIRLGIG_13 1383
#define MV_BOY_DRINK 1333
#define QU_WHR19_SPIN 1316
#define MV_WHR18_SPIN 1300
#define MV_MAN13_PUTFIRECAN 1311
#define ANI_INV_BALL 1242
#define MV_GMA_JUMPBK 1231
#define QU_SC14_ENTER_RIGHT 1223
#define MV_MAN13_HANDLEDOWN 1202
#define MV_MAN13_THROWGUM 1194
#define MV_SWR_SPOLZING 1148
#define MSG_SC5_MAKEMANFLIGHT 1136
#define QU_SC5_ENTER_UP 1135
#define MV_MAN_HMRKICK 1028
#define MV_SC2_BOX_default 1021
#define MV_HDL6_default 1010
#define MSG_SC10_CLICKGUM 992
#define MSG_SC9_SHOWBALL 936
#define ANI_PBAR 896
#define ST_INV_HAMMER_default 886
#define MV_INV_COIN_default 876
#define ANI_INV_OLDGLASSES 402
#define QU_SLN_POT_TURNBACK 852
#define MV_SLN_POT_MORG 836
#define MSG_TAKEBOTTLE 614
#define MV_KZW_JUMPOUT 586
#define MV_SPR_LOWER 543
#define QU_SC3_ENTER 473
#define QU_SC2_ENTER 472
#define MV_DYAS_GIVESEGG 314
#define ST_EGTR_SLAPPIN 346
#define MV_EGTR_SLIMOBL 337
#define MV_EGTR_TOSLAP 345
#define MV_MANDYAS_GIVESBOOT 358
#define MV_MANDYAS_GIVESDOM 375
#define ST_MAN_INTRUBAHOR 446
#define PIC_SC1_LTRUBA 470
#define MV_MAN_FROMLADDERD 494
#define QU_SC3_ENTER_RIGHT 705
#define QU_BTT_CHESHET 757
#define MV_BRD_DROPBALL 694
#define ANI_LUKE 803
#define PIC_INV_OLDHANDLE 798
#define ST_INV_DOMINO_default 874
#define MV_NDV_EAT 945
#define QU_SC9_ENTER_RIGHT 963
#define ANI_GUARD1 996
#define ST_SC4_BOOT_default 1037
#define ST_HDL6_LIES 1042
#define MV_MAN_LIFTDOWN 1052
#define MV_MAN_TURN_SLD 1079
#define MV_MAN_TURN_SLU 1080
#define PIC_SC8_LADDER 754
#define MV_INV_GUM_default 1155
#define PIC_SC13_UTRUBA 1170
#define MV_STR_HIDE 1181
#define MV_GMA_THROW 1232
#define MV_GMS_DRYG 1269
#define QU_SC17_ENTER_RIGHT 1325
#define ANI_WIRE16 1344
#define ST_INV_MUG_default 1372
#define MSG_SC16_SHOWMUGFULL 1396
#define QU_HND_TAKE0 1440
#define MV_HND17_ASK 1447
#define MV_MAN_TOLADDERD 1524
#define ANI_INV_EGGDOM 1561
#define ST_INV_EGGDOM_default 1563
#define PIC_INV_EGGAPL 1578
#define PIC_INV_EGGGLS 1580
#define ANI_GRANDFA 1588
#define QU_GFA_BREATHESOCK 1611
#define MV_GRFU_BLINKDOWN 1652
#define ANI_CALENDWHEEL 1702
#define MV_CND_1_2 1706
#define MSG_SC23_CLICKBTN1 1736
#define MV_INV_LEVERHANDLE_default 1778
#define PIC_INV_STOOL 1785
#define QU_SC22_TOSTOOL 1801
#define MV_INV_SWAB_default 1918
#define MV_MAN26_OPENLUK 1934
#define QU_GRFM_NECK 1988
#define ST_DRV_RIGHT 2010
#define PIC_SC27_FLOOR 2053
#define MV_STR2_SHOOT 2112
#define ST_STR2_STAND 2113
#define MV_MAN38_PUTDOMINO 2186
#define ANI_BOTTLE38 2188
#define MV_DMN38_NORM2 2204
#define QU_DLD_GLOT 2217
#define MV_FFT_TUBE_OPENEYE 2235
#define QU_GLV_PROPOSE 2280
#define ST_MLS_LEFT2 2291
#define MV_FFT_PIPE_FLOWOPEN 2300
#define QU_FFT_TUBE_FLOWOPEN 2306
#define ST_INV_TUBE_default 2316
#define ANI_INV_PIPE 2317
#define QU_SC30_ENTER_LEFT 2356
#define ST_RHT_OPEN 2362
#define MV_LEG_POT0_OUT 2374
#define MV_MAN32_STOPSPIN 2404
#define MV_MAN35_JUMPOUT 2411
#define MV_GMA_1_2 2455
#define ST_CTS31_EMPTY 2458
#define QU_SC31_ENTER_DOWN 2459
#define MSG_SC34_SHOWBOX 2497
#define ST_PDV_CUT 2522
#define QU_PDV_CUT_TRY 2529
#define MV_INV_SCISSORS_default 2533
#define ST_RNG_OPEN 2606
#define ST_RNG_CLOSED 2607
#define ST_GMA22_EMPTY 2611
#define ST_VNT33_DOWN 2640
#define MV_VNT33_TURND 2638
#define ANI_TESTO_31 2652
#define MV_TEST 2683
#define MV_MAN11_PUTBOOT1 2702
#define MV_BTS11_DOUBLE 2705
#define QU_SC32_ENTER_UP 2714
#define ANI_JET_17 2746
#define QU_SC35_ENTERLIFT 2815
#define QU_SC35_EXITLIFT 2816
#define QU_SC32_ENTERLIFT 2827
#define MV_EGTR_MD1_DENY 2866
#define MV_EGTR_0_1 2918
#define ANI_INV_EGGBLACK 357
#define MV_EGTR_SLIMDENY 2933
#define MSG_SC15_PULL 2940
#define MSG_SC37_PULL 2945
#define MV_MAN1_EGG2DOM 443
#define ST_GRT1_NORM 2963
#define MV_SWR_STAND 948
#define QU_NTL_MOVE 3027
#define MV_HDLR_RISE 3043
#define SND_5_006 3147
#define SND_5_017 3158
#define MV_GLV_PUTDOMINO_NOHMR 3180
#define PIC_SC17_PIPE 3292
#define ST_MLS_RIGHT2 3323
#define MV_MAN_SNEEZE 3386
#define QU_SC6_SND4 3579
#define SND_8_003 3613
#define SND_8_014 3624
#define SND_9_002 3641
#define SND_9_013 3657
#define SND_11_010 3694
#define SND_11_021 3705
#define SND_20_001 3929
#define QU_SC20_SND5 3938
#define SND_20_012 3945
#define SND_22_010 3993
#define SND_CMN_040 4033
#define SND_22_032 1765
#define MV_MAN25_STOPROW 1883
#define PIC_SC28_DARK1 4266
#define SND_29_009 4343
#define SND_30_002 4360
#define QU_SC30_SND4 4367
#define SND_30_013 4378
#define SND_32_011 4407
#define SND_32_022 4418
#define SND_32_033 4429
#define SND_3_019 4549
#define ANI_TEST 4552
#define PIC_MSV_OK_D 4635
#define PIC_MSV_CANCEL_D 4637
#define PIC_MSV_2_D 4652
#define QU_TBL_GOL 4708
#define MV_EYE30_LOOK 4716
#define ST_LEG31_NORM 4725
#define SND_CMN_051 4746
#define PIC_TEST4 4785
#define PIC_CSR_GOL 4897
#define SC_FINAL2 5000
#define SND_FIN_029 5104
#define ST_IN1GLS_NORM 5121
#define ST_IN2BOOT_NORM 5142
#define SC_17 1141
#define SC_28 2062
#define MSG_SC32_TRUBATOFRONT 5180
#define PIC_SC2_LADDER2 5205
#define QU_SC21_SND6 5214
#define PIC_MAP_P10 5286
#define ST_BTN32_OFF 5349
#define PIC_HLP_BGR 3562
#define PIC_MAP_S31_2 5254
#define PIC_MAP_S32_1 5255
#define PIC_MAP_H08 5364
#define PIC_MOV_CANCEL 5345
#define PIC_SC36_MASK 5221
#define QU_MSH_CRANEOUT_GMA 5219
#define SND_FIN_019 5091
#define SND_FIN_008 5080
#define QU_FN3_SHOWHMR 5073
#define MSG_SC35_TRYFLY 4985
#define QU_BRD16_GOR 4951
#define ST_EGI_GOR 4931
#define SND_CMN_063 4928
#define PIC_CSR_ARCADE7 4909
#define PIC_INV_GUM2_C 4858
#define PIC_INV_VANTUZ_C 4856
#define PIC_INV_TUBE_C 4855
#define PIC_INV_SOCK_C 4851
#define PIC_INV_PIPE_H 4812
#define PIC_INV_MUG_H2 4810
#define PIC_INV_BOTTLEFULL 1425
#define PIC_SCD_RESTART 4766
#define MSG_SC35_CHECKPIPESOUND 4761
#define rMV_BRDCMN_GOR 4739
#define ST_TBL_L 4701
#define ANI_TENNBALL 4699
#define MV_EGTR_MD2_SHOW 4695
#define MV_BOT34_NORM 4561
#define SND_34_032 4492
#define SND_34_021 4481
#define SND_34_010 4470
#define SND_33_011 4448
#define SND_31_002 4380
#define ST_TTA_GOL 4292
#define MV_TTA_TURN_DL 4291
#define MSG_SC28_STARTWORK1 4255
#define ST_MAN28_RIGHT 4249
#define QU_SC28_LIFT3_START 4245
#define SND_21_023 3977
#define SND_21_012 3966
#define SND_21_001 3950
#define SND_19_009 3922
#define SND_13_031 3776
#define SND_13_020 3765
#define SND_12_010 3730
#define SND_10_012 3678
#define SND_10_001 3662
#define SND_7_016 3596
#define SND_7_005 3585
#define SND_6_028 3567
#define SND_6_017 3556
#define SND_6_006 3543
#define SND_CMN_030 3470
#define QU_SC28_WMN_END 3453
#define MV_WMN28_IN_1 3443
#define MV_BTH_4_3 3360
#define MV_CDI_HIDEEYE 3313
#define MV_MAN16_PUTBOOT 3288
#define MV_BT16_FILL 3286
#define QU_GRL_DRYG 3282
#define MSG_SC14_STARTARCADE 3252
#define QU_SC5_SND4 3243
#define QU_SC4_SND3 3237
#define QU_SC3_SND2 3231
#define MV_STR_THROWGLASSES 3200
#define MV_BTL38_FULL 3171
#define SND_4_019 3134
#define SND_4_008 3123
#define SND_3_009 3108
#define MV_HDLL_LOWER 3061
#define MV_MID11_LOOK 3031
#define QU_SC10_ENTER_DOWN 3003
#define MV_BOT4_LEFT 2881
#define MV_NDV_BLOW2 2855
#define QU_SC38_ENTERLIFT 2836
#define QU_SC10_ENTERLIFT 1067
#define ST_LBN_5N 2765
#define MSG_LIFT_GO 1065
#define ST_LBN_7P 2772
#define MV_LBN_1 2752
#define ST_GRT9_GRIT 2722
#define MV_PDV_GROW 2419
#define PIC_SCD_30 2359
#define ST_DMN38_6 2288
#define MV_DMN38_NORM3 2250
#define ST_PTR_NORM 2084
#define QU_DRV_LOOKLEFT2 2034
#define ST_BTA_NORM 2028
#define MV_MID_LOOK 2023
#define MV_MID_BROOM 2021
#define MV_DRV_TORIGHT_V 2009
#define ST_DRV_LEFT 2008
#define ST_DRV_DRIVE 1997
#define QU_SC26_OPEN3 1939
#define ANI_GIRAFFE_TOP 1645
#define ST_MSH_EMPTY 1758
#define MV_MAN23_PUSH1 1724
#define MV_GRFU_KISS 1682
#define QU_GRFU_TURN_LU 1663
#define MV_GRFB_0_1 1637
#define PIC_SC21_UTRUBA 1554
#define ST_CDI_EMPTY2 1543
#define QU_SC19_MANJUMP3 1518
#define ANI_BOY18 1477
#define MV_KSL_JUMPBOY 1473
#define MSG_SC17_FILLBOTTLE 1436
#define QU_SC16_SHOWMUG 1361
#define QU_SC13_SPIN 1386
#define ANI_GUARD2 1279
#define QU_GMA_JUMPBK 1251
#define MV_INV_GUM2_default 1205
#define MV_SWR_2_3 1152
#define MV_MAN_GOD 481
#define MV_MAN_STARTLADDER 452
#define MV_TEST_JUMPFW 1074
#define MSG_SC2_PUTMANUP 1026
#define MSG_SC6_BTNPUSH 1017
#define QU_NDV_MORG 971
#define ANI_INV_COIN 875
#define PIC_INV_HANDLE 867
#define ST_INV_OLDGLASSES_default 404
#define ANI_INV_OLDHANDLE 795
#define ANI_INV_OLDEGG 364
#define PIC_INV_SEL 868
#define QU_SLN_BOOT_MORG 847
#define MV_SLN_BOOT_LOOK 833
#define PIC_SCD_SEL 734
#define GRID_SC6_MAMASHA 684
#define MV_MAN_JUMPONPLANK 551
#define QU_SC4_ENTER 539
#define QU_EGTR_SLIMBOLTLEGS 523
#define ANI_PLANK 501
#define MV_MAN_GOU 460
#define ST_MAN_GOR 326
#define rMV_EGBR_LOWERHEAD 462
#define ST_MAN_GOLADDERD 456
#define MV_MAN_GOLADDERDOWN 455
#define ST_OTM_GLS_RIGHT 423
#define MV_EGBR_BRK_GLASSES 387
#define ST_DYAS_SITSOPEN 309
#define ST_DYAS_SITSTOUS 312
#define MV_DYAS_OPENBOX_LIES 323
#define rMV_MAN_TOTRUBAHOR 447
#define PIC_SC4_LTRUBA 506
#define QU_SC4_GOCLOCK 595
#define MV_MOM_SHAKE 663
#define QU_SC6_ENTER_LEFT 708
#define QU_BTT_DRINK 758
#define ST_HGN_LOOK 811
#define QU_SC9_EATBALL 942
#define ST_VSN_LEFT 954
#define PIC_SC10_RTRUBA 973
#define MSG_SC2_HIDELADDER 1023
#define QU_STR_PLUU 1189
#define MV_HDLL_0_1 1210
#define QU_SC16_ENTER_LEFT 1294
#define MSG_SC16_STARTLAUGH 1374
#define MV_MUG_0_1 1297
#define ST_BOTTLE_FULL 1431
#define QU_HND_TAKE1 1441
#define QU_SC21_ENTER_UP 1629
#define MV_GRFU_TURN_UL 1653
#define MV_GRFU_STARTCHMOK 1657
#define MSG_SC23_CLICKBTN2 1737
#define MV_MAN22_HANDLEDOWN 1795
#define PIC_SC21_DTRUBA 1823
#define QU_SC25_LADDERUP 1925
#define MV_CHI_SHOW 1958
#define PIC_SC27_HITZONE 2055
#define ANI_SHOOTER1 2108
#define QU_DLD_ICK 2219
#define MV_FFT_TUBE_STOP 2238
#define MV_FFT_PIPE_BLINK 2248
#define ANI_CACTUS 2267
#define MV_LEG_1_2 2344
#define PIC_SC30_LTRUBA 2354
#define MV_LEG_POT1_OUT 2369
#define PIC_SC31_RTRUBA 2440
#define ANI_CACTUS_31 2456
#define QU_SC20_SHOWSTOOL 2466
#define ST_CTS31_GROWN2 2472
#define MV_STL34_PUTBOX 2487
#define MSG_SC35_STARTFLOW 2523
#define ANI_LUK_34 2541
#define ST_GRD37_STAND 2590
#define QU_GRD37_LOOKR 2598
#define PIC_SC37_WALL1 2600
#define MV_MAN33_PUTMUG 2621
#define ST_MUG33_FULL 2626
#define rMV_MAN_HMRKICK 2694
#define MV_MAN11_PUTBOOT2 2703
#define QU_SC11_SHOWBOOT 2708
#define ANI_DOMINO_3 2732
#define ST_MUG17_EMPTY 2739
#define QU_SC32_ENTER_LIFTUP 2829
#define MSG_SC6_TESTNUMBALLS 2904
#define MV_MAN3_GIVEBLACK_1 2914
#define MSG_SC8_STANDUP 2976
#define ST_BTN6_ON 2994
#define QU_VSN_TURNR 2998
#define MV_SWR_SPOLZING_BALD 3006
#define MSG_SC13_CLOSEBRIDGE 3046
#define SND_5_007 3148
#define SND_5_018 3159
#define MV_RPE15_NORM 3256
#define QU_SC38_SHOWHMR 2197
#define MV_CLN_TUZH 3324
#define MV_MAN22_STANDTABUR_R 3331
#define QU_SC23_SHOWSTOOL 3335
#define MSG_SC26_CLICKVENT 1947
#define QU_MAN_DEF_STOPSHOES2_R 3402
#define MV_SWR_DENY_BALD 3429
#define MV_MAN22_TRYBOOT_NOSOCK 3434
#define QU_SC6_SND5 3580
#define SND_8_004 3614
#define SND_8_015 3625
#define SND_9_003 3642
#define SND_9_014 3658
#define SND_11_011 3695
#define SND_11_022 3706
#define SND_20_002 3930
#define SND_20_013 3946
#define SND_22_011 3994
#define SND_22_022 4005
#define SND_CMN_041 4034
#define SND_22_033 1766
#define MV_MAN1_FALL 4228
#define PIC_SC28_FRAME6 4263
#define PIC_SC28_DARK2 4267
#define MSG_SC28_TURNOFF_1 4279
#define SND_30_003 4361
#define QU_SC30_SND5 4368
#define SND_30_014 4379
#define SND_32_001 4392
#define SND_32_012 4408
#define SND_32_023 4419
#define SND_32_034 4430
#define SND_35_020 4518
#define MV_MAN34_STANDBOX_FLOOR 4569
#define MV_CPT36_NORM 4601
#define MV_RHT_CLOSE 2363
#define MV_MAN34_PUTSTOOL_BOX 4613
#define PIC_MNU_LOAD_D 4627
#define PIC_MSV_EMPTY_L 4640
#define PIC_MSV_3_D 4653
#define PIC_MSV_DOTS_L 4669
#define MV_TBL_WALKR 4706
#define MV_EYE30_BLINK 4717
#define QU_EYE30_LOOK 4720
#define SND_CMN_052 4747
#define PIC_TEST5 4786
#define QU_BALL_WALKL 4920
#define QU_BRD16_TRY 4955
#define SC_FINAL3 5001
#define ANI_FN2_HAND1 5028
#define MV_IN2BOOT_FALL 5141
#define SC_18 1142
#define SC_29 2063
#define SND_25_030 5175
#define MSG_LIFT_CLOSEDOOR 5194
#define MV_MAN23_TRYBROOM 5307
#define PIC_MAP_P11 5287
#define QU_SC23_ENTER_DOWNTOUP 5328
#define PIC_MAP_H19 5393
#define PIC_MAP_S30 5252
#define PIC_MAP_S32_2 5256