mirror of https://github.com/FFmpeg/FFmpeg.git
* qatar/master: fate: Add tests for more AAC features. aacps: Add missing newline in error message. fate: Add tests for vc1/wmapro in ism. aacdec: Add a fate test for 5.1 channel SBR. aacdec: Turn off PS for multichannel files that use PCE based configs. cabac: remove put_cabac_u/ueg from cabac-test. swscale: RGB4444 and BGR444 input FATE: add test for xWMA demuxer. FATE: add test for SMJPEG demuxer and associated IMA ADPCM audio decoder. mpegaudiodec: optimized iMDCT transform mpegaudiodec: change imdct window arrangment for better pointer alignment mpegaudiodec: move imdct and windowing function to mpegaudiodsp mpegaudiodec: interleave iMDCT buffer to simplify future SIMD implementations swscale: convert yuy2/uyvy/nv12/nv21ToY/UV from inline asm to yasm. FATE: test to exercise WTV demuxer. mjpegdec: K&R formatting cosmetics swscale: K&R formatting cosmetics for code examples swscale: K&R reformatting cosmetics for header files FATE test: cvid-grayscale; ensures that the grayscale Cinepak variant is exercised. Conflicts: libavcodec/cabac.c libavcodec/mjpegdec.c libavcodec/mpegaudiodec.c libavcodec/mpegaudiodsp.c libavcodec/mpegaudiodsp.h libavcodec/mpegaudiodsp_template.c libavcodec/x86/Makefile libavcodec/x86/imdct36_sse.asm libavcodec/x86/mpegaudiodec_mmx.c libswscale/swscale-test.c libswscale/swscale.c libswscale/swscale_internal.h libswscale/x86/swscale_template.c tests/fate/demux.mak tests/fate/microsoft.mak tests/fate/video.mak tests/fate/wma.mak tests/ref/lavfi/pixfmts_scale Merged-by: Michael Niedermayer <michaelni@gmx.at>pull/3/head
commit
dd3ca3ea15
38 changed files with 2217 additions and 723 deletions
@ -0,0 +1,242 @@ |
||||
;****************************************************************************** |
||||
;* x86-optimized input routines; does shuffling of packed |
||||
;* YUV formats into individual planes, and converts RGB |
||||
;* into YUV planes also. |
||||
;* Copyright (c) 2012 Ronald S. Bultje <rsbultje@gmail.com> |
||||
;* |
||||
;* This file is part of Libav. |
||||
;* |
||||
;* Libav is free software; you can redistribute it and/or |
||||
;* modify it under the terms of the GNU Lesser General Public |
||||
;* License as published by the Free Software Foundation; either |
||||
;* version 2.1 of the License, or (at your option) any later version. |
||||
;* |
||||
;* Libav is distributed in the hope that it will be useful, |
||||
;* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
;* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
||||
;* Lesser General Public License for more details. |
||||
;* |
||||
;* You should have received a copy of the GNU Lesser General Public |
||||
;* License along with Libav; if not, write to the Free Software |
||||
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
||||
;****************************************************************************** |
||||
|
||||
%include "x86inc.asm" |
||||
%include "x86util.asm" |
||||
|
||||
SECTION_RODATA |
||||
|
||||
SECTION .text |
||||
|
||||
;----------------------------------------------------------------------------- |
||||
; YUYV/UYVY/NV12/NV21 packed pixel shuffling. |
||||
; |
||||
; void <fmt>ToY_<opt>(uint8_t *dst, const uint8_t *src, int w); |
||||
; and |
||||
; void <fmt>toUV_<opt>(uint8_t *dstU, uint8_t *dstV, const uint8_t *src, |
||||
; const uint8_t *unused, int w); |
||||
;----------------------------------------------------------------------------- |
||||
|
||||
; %1 = a (aligned) or u (unaligned) |
||||
; %2 = yuyv or uyvy |
||||
%macro LOOP_YUYV_TO_Y 2 |
||||
.loop_%1: |
||||
mov%1 m0, [srcq+wq*2] ; (byte) { Y0, U0, Y1, V0, ... } |
||||
mov%1 m1, [srcq+wq*2+mmsize] ; (byte) { Y8, U4, Y9, V4, ... } |
||||
%ifidn %2, yuyv |
||||
pand m0, m2 ; (word) { Y0, Y1, ..., Y7 } |
||||
pand m1, m2 ; (word) { Y8, Y9, ..., Y15 } |
||||
%else ; uyvy |
||||
psrlw m0, 8 ; (word) { Y0, Y1, ..., Y7 } |
||||
psrlw m1, 8 ; (word) { Y8, Y9, ..., Y15 } |
||||
%endif ; yuyv/uyvy |
||||
packuswb m0, m1 ; (byte) { Y0, ..., Y15 } |
||||
mova [dstq+wq], m0 |
||||
add wq, mmsize |
||||
jl .loop_%1 |
||||
REP_RET |
||||
%endmacro |
||||
|
||||
; %1 = nr. of XMM registers |
||||
; %2 = yuyv or uyvy |
||||
; %3 = if specified, it means that unaligned and aligned code in loop |
||||
; will be the same (i.e. YUYV+AVX), and thus we don't need to |
||||
; split the loop in an aligned and unaligned case |
||||
%macro YUYV_TO_Y_FN 2-3 |
||||
cglobal %2ToY, 5, 5, %1, dst, unused0, unused1, src, w |
||||
%ifdef ARCH_X86_64 |
||||
movsxd wq, wd |
||||
%endif |
||||
add dstq, wq |
||||
%if mmsize == 16 |
||||
test srcq, 15 |
||||
%endif |
||||
lea srcq, [srcq+wq*2] |
||||
%ifidn %2, yuyv |
||||
pcmpeqb m2, m2 ; (byte) { 0xff } x 16 |
||||
psrlw m2, 8 ; (word) { 0x00ff } x 8 |
||||
%endif ; yuyv |
||||
%if mmsize == 16 |
||||
jnz .loop_u_start |
||||
neg wq |
||||
LOOP_YUYV_TO_Y a, %2 |
||||
.loop_u_start: |
||||
neg wq |
||||
LOOP_YUYV_TO_Y u, %2 |
||||
%else ; mmsize == 8 |
||||
neg wq |
||||
LOOP_YUYV_TO_Y a, %2 |
||||
%endif ; mmsize == 8/16 |
||||
%endmacro |
||||
|
||||
; %1 = a (aligned) or u (unaligned) |
||||
; %2 = yuyv or uyvy |
||||
%macro LOOP_YUYV_TO_UV 2 |
||||
.loop_%1: |
||||
%ifidn %2, yuyv |
||||
mov%1 m0, [srcq+wq*4] ; (byte) { Y0, U0, Y1, V0, ... } |
||||
mov%1 m1, [srcq+wq*4+mmsize] ; (byte) { Y8, U4, Y9, V4, ... } |
||||
psrlw m0, 8 ; (word) { U0, V0, ..., U3, V3 } |
||||
psrlw m1, 8 ; (word) { U4, V4, ..., U7, V7 } |
||||
%else ; uyvy |
||||
%if cpuflag(avx) |
||||
vpand m0, m2, [srcq+wq*4] ; (word) { U0, V0, ..., U3, V3 } |
||||
vpand m1, m2, [srcq+wq*4+mmsize] ; (word) { U4, V4, ..., U7, V7 } |
||||
%else |
||||
mov%1 m0, [srcq+wq*4] ; (byte) { Y0, U0, Y1, V0, ... } |
||||
mov%1 m1, [srcq+wq*4+mmsize] ; (byte) { Y8, U4, Y9, V4, ... } |
||||
pand m0, m2 ; (word) { U0, V0, ..., U3, V3 } |
||||
pand m1, m2 ; (word) { U4, V4, ..., U7, V7 } |
||||
%endif |
||||
%endif ; yuyv/uyvy |
||||
packuswb m0, m1 ; (byte) { U0, V0, ..., U7, V7 } |
||||
pand m1, m0, m2 ; (word) { U0, U1, ..., U7 } |
||||
psrlw m0, 8 ; (word) { V0, V1, ..., V7 } |
||||
%if mmsize == 16 |
||||
packuswb m1, m0 ; (byte) { U0, ... U7, V1, ... V7 } |
||||
movh [dstUq+wq], m1 |
||||
movhps [dstVq+wq], m1 |
||||
%else ; mmsize == 8 |
||||
packuswb m1, m1 ; (byte) { U0, ... U3 } |
||||
packuswb m0, m0 ; (byte) { V0, ... V3 } |
||||
movh [dstUq+wq], m1 |
||||
movh [dstVq+wq], m0 |
||||
%endif ; mmsize == 8/16 |
||||
add wq, mmsize / 2 |
||||
jl .loop_%1 |
||||
REP_RET |
||||
%endmacro |
||||
|
||||
; %1 = nr. of XMM registers |
||||
; %2 = yuyv or uyvy |
||||
; %3 = if specified, it means that unaligned and aligned code in loop |
||||
; will be the same (i.e. UYVY+AVX), and thus we don't need to |
||||
; split the loop in an aligned and unaligned case |
||||
%macro YUYV_TO_UV_FN 2-3 |
||||
cglobal %2ToUV, 4, 5, %1, dstU, dstV, unused, src, w |
||||
%ifdef ARCH_X86_64 |
||||
movsxd wq, r5m |
||||
%else ; x86-32 |
||||
mov wq, r5m |
||||
%endif |
||||
add dstUq, wq |
||||
add dstVq, wq |
||||
%if mmsize == 16 && %0 == 2 |
||||
test srcq, 15 |
||||
%endif |
||||
lea srcq, [srcq+wq*4] |
||||
pcmpeqb m2, m2 ; (byte) { 0xff } x 16 |
||||
psrlw m2, 8 ; (word) { 0x00ff } x 8 |
||||
; NOTE: if uyvy+avx, u/a are identical |
||||
%if mmsize == 16 && %0 == 2 |
||||
jnz .loop_u_start |
||||
neg wq |
||||
LOOP_YUYV_TO_UV a, %2 |
||||
.loop_u_start: |
||||
neg wq |
||||
LOOP_YUYV_TO_UV u, %2 |
||||
%else ; mmsize == 8 |
||||
neg wq |
||||
LOOP_YUYV_TO_UV a, %2 |
||||
%endif ; mmsize == 8/16 |
||||
%endmacro |
||||
|
||||
; %1 = a (aligned) or u (unaligned) |
||||
; %2 = nv12 or nv21 |
||||
%macro LOOP_NVXX_TO_UV 2 |
||||
.loop_%1: |
||||
mov%1 m0, [srcq+wq*2] ; (byte) { U0, V0, U1, V1, ... } |
||||
mov%1 m1, [srcq+wq*2+mmsize] ; (byte) { U8, V8, U9, V9, ... } |
||||
pand m2, m0, m5 ; (word) { U0, U1, ..., U7 } |
||||
pand m3, m1, m5 ; (word) { U8, U9, ..., U15 } |
||||
psrlw m0, 8 ; (word) { V0, V1, ..., V7 } |
||||
psrlw m1, 8 ; (word) { V8, V9, ..., V15 } |
||||
packuswb m2, m3 ; (byte) { U0, ..., U15 } |
||||
packuswb m0, m1 ; (byte) { V0, ..., V15 } |
||||
%ifidn %2, nv12 |
||||
mova [dstUq+wq], m2 |
||||
mova [dstVq+wq], m0 |
||||
%else ; nv21 |
||||
mova [dstVq+wq], m2 |
||||
mova [dstUq+wq], m0 |
||||
%endif ; nv12/21 |
||||
add wq, mmsize |
||||
jl .loop_%1 |
||||
REP_RET |
||||
%endmacro |
||||
|
||||
; %1 = nr. of XMM registers |
||||
; %2 = nv12 or nv21 |
||||
%macro NVXX_TO_UV_FN 2 |
||||
cglobal %2ToUV, 4, 5, %1, dstU, dstV, unused, src, w |
||||
%ifdef ARCH_X86_64 |
||||
movsxd wq, r5m |
||||
%else ; x86-32 |
||||
mov wq, r5m |
||||
%endif |
||||
add dstUq, wq |
||||
add dstVq, wq |
||||
%if mmsize == 16 |
||||
test srcq, 15 |
||||
%endif |
||||
lea srcq, [srcq+wq*2] |
||||
pcmpeqb m5, m5 ; (byte) { 0xff } x 16 |
||||
psrlw m5, 8 ; (word) { 0x00ff } x 8 |
||||
%if mmsize == 16 |
||||
jnz .loop_u_start |
||||
neg wq |
||||
LOOP_NVXX_TO_UV a, %2 |
||||
.loop_u_start: |
||||
neg wq |
||||
LOOP_NVXX_TO_UV u, %2 |
||||
%else ; mmsize == 8 |
||||
neg wq |
||||
LOOP_NVXX_TO_UV a, %2 |
||||
%endif ; mmsize == 8/16 |
||||
%endmacro |
||||
|
||||
%ifdef ARCH_X86_32 |
||||
INIT_MMX mmx |
||||
YUYV_TO_Y_FN 0, yuyv |
||||
YUYV_TO_Y_FN 0, uyvy |
||||
YUYV_TO_UV_FN 0, yuyv |
||||
YUYV_TO_UV_FN 0, uyvy |
||||
NVXX_TO_UV_FN 0, nv12 |
||||
NVXX_TO_UV_FN 0, nv21 |
||||
%endif |
||||
|
||||
INIT_XMM sse2 |
||||
YUYV_TO_Y_FN 3, yuyv |
||||
YUYV_TO_Y_FN 2, uyvy |
||||
YUYV_TO_UV_FN 3, yuyv |
||||
YUYV_TO_UV_FN 3, uyvy |
||||
NVXX_TO_UV_FN 5, nv12 |
||||
NVXX_TO_UV_FN 5, nv21 |
||||
|
||||
INIT_XMM avx |
||||
; in theory, we could write a yuy2-to-y using vpand (i.e. AVX), but |
||||
; that's not faster in practice |
||||
YUYV_TO_UV_FN 3, yuyv |
||||
YUYV_TO_UV_FN 3, uyvy, 1 |
||||
NVXX_TO_UV_FN 5, nv12 |
||||
NVXX_TO_UV_FN 5, nv21 |
@ -0,0 +1,152 @@ |
||||
0, 0, 11300, 0x46c78923 |
||||
0, 17921, 11300, 0x3f2a1175 |
||||
0, 35842, 11300, 0x722de221 |
||||
0, 53763, 11300, 0x01746b88 |
||||
0, 71684, 11300, 0x549587a7 |
||||
0, 89605, 11300, 0x843ab943 |
||||
0, 107526, 11300, 0x62fdee48 |
||||
0, 125447, 11300, 0x74a62867 |
||||
0, 143368, 11300, 0x35a20e2f |
||||
0, 161289, 11300, 0x4e9ef54d |
||||
0, 179210, 11300, 0xec7201f5 |
||||
0, 197131, 11300, 0x363bfe27 |
||||
0, 215052, 11300, 0x2aaab418 |
||||
0, 232973, 11300, 0x6a48ab3f |
||||
0, 250894, 11300, 0x3fecea34 |
||||
0, 268815, 11300, 0xa371f55e |
||||
0, 286736, 11300, 0xa86b147c |
||||
0, 304657, 11300, 0x49e9206e |
||||
0, 322578, 11300, 0x6c9a2155 |
||||
0, 340499, 11300, 0x2c8a4798 |
||||
0, 358420, 11300, 0x3485676c |
||||
0, 376341, 11300, 0xb0b293f2 |
||||
0, 394262, 11300, 0xe4a9b068 |
||||
0, 412183, 11300, 0xd68d0556 |
||||
0, 430104, 11300, 0xc28e5193 |
||||
0, 448025, 11300, 0xf6948483 |
||||
0, 465945, 11300, 0xf21fbf57 |
||||
0, 483866, 11300, 0x8345eb44 |
||||
0, 501787, 11300, 0x8124f045 |
||||
0, 519708, 11300, 0x18e31f10 |
||||
0, 537629, 11300, 0xdb1943fc |
||||
0, 555550, 11300, 0x8701699f |
||||
0, 573471, 11300, 0xd7b18550 |
||||
0, 591392, 11300, 0xa56faccc |
||||
0, 609313, 11300, 0xf8bcc17c |
||||
0, 627234, 11300, 0x446acab9 |
||||
0, 645155, 11300, 0x755fd295 |
||||
0, 663076, 11300, 0x92e3d100 |
||||
0, 680997, 11300, 0x54895bb3 |
||||
0, 698918, 11300, 0xd18bffda |
||||
0, 716839, 11300, 0x480dbe4f |
||||
0, 734760, 11300, 0x49ea9dbe |
||||
0, 752681, 11300, 0x00d3a003 |
||||
0, 770602, 11300, 0xda7bbfb2 |
||||
0, 788523, 11300, 0x9700d9c2 |
||||
0, 806444, 11300, 0xa0a9e490 |
||||
0, 824365, 11300, 0x00eb0979 |
||||
0, 842286, 11300, 0x32b04630 |
||||
0, 860207, 11300, 0xdfb73e51 |
||||
0, 878128, 11300, 0x3d8e4f96 |
||||
0, 896049, 11300, 0x2ca83271 |
||||
0, 913970, 11300, 0xb5b123c0 |
||||
0, 931891, 11300, 0x8a570e58 |
||||
0, 949812, 11300, 0xc6c805bc |
||||
0, 967733, 11300, 0x27caf7a5 |
||||
0, 985654, 11300, 0x5319ecb0 |
||||
0, 1003575, 11300, 0x5471e3fd |
||||
0, 1021496, 11300, 0x6d68a6f4 |
||||
0, 1039417, 11300, 0x872b7194 |
||||
0, 1057338, 11300, 0x007c36bd |
||||
0, 1075259, 11300, 0x2714f1b5 |
||||
0, 1093180, 11300, 0x6c8eb50f |
||||
0, 1111101, 11300, 0xf5d57be8 |
||||
0, 1129022, 11300, 0x981f412b |
||||
0, 1146943, 11300, 0x1a9804a1 |
||||
0, 1164864, 11300, 0xf0c1d24a |
||||
0, 1182785, 11300, 0xa70a9d9b |
||||
0, 1200706, 11300, 0x8c466876 |
||||
0, 1218627, 11300, 0xcf2e32df |
||||
0, 1236548, 11300, 0xcb8cfebf |
||||
0, 1254469, 11300, 0xb961ca99 |
||||
0, 1272390, 11300, 0x666d9619 |
||||
0, 1290311, 11300, 0x84bf5b55 |
||||
0, 1308232, 11300, 0xbfa22ccc |
||||
0, 1326153, 11300, 0xcde41849 |
||||
0, 1344074, 11300, 0x71372dcd |
||||
0, 1361994, 11300, 0x13402cfd |
||||
0, 1379915, 11300, 0xdebdd321 |
||||
0, 1397836, 11300, 0xdda66de1 |
||||
0, 1415757, 11300, 0x7f4bb682 |
||||
0, 1433678, 11300, 0xf67fd528 |
||||
0, 1451599, 11300, 0xe739ff8c |
||||
0, 1469520, 11300, 0x2e131774 |
||||
0, 1487441, 11300, 0xfa942811 |
||||
0, 1505362, 11300, 0x0cd93ac2 |
||||
0, 1523283, 11300, 0xd0445e0e |
||||
0, 1541204, 11300, 0x3f3497c7 |
||||
0, 1559125, 11300, 0x11b5bd2c |
||||
0, 1577046, 11300, 0xccd5e62a |
||||
0, 1594967, 11300, 0xa9d4fcb5 |
||||
0, 1612888, 11300, 0x34aa1a03 |
||||
0, 1630809, 11300, 0x1ce6299e |
||||
0, 1648730, 11300, 0x661c2745 |
||||
0, 1666651, 11300, 0x27d8a8b3 |
||||
0, 1684572, 11300, 0x9eb07467 |
||||
0, 1702493, 11300, 0x128374d2 |
||||
0, 1720414, 11300, 0x05c36ff5 |
||||
0, 1738335, 11300, 0x8a136bde |
||||
0, 1756256, 11300, 0x15c47c99 |
||||
0, 1774177, 11300, 0xcc4a93f4 |
||||
0, 1792098, 11300, 0x19529b2b |
||||
0, 1810019, 11300, 0x9943c076 |
||||
0, 1827940, 11300, 0xf898e583 |
||||
0, 1845861, 11300, 0x40f71f94 |
||||
0, 1863782, 11300, 0x5b604afb |
||||
0, 1881703, 11300, 0x8c176af4 |
||||
0, 1899624, 11300, 0x0f1a6216 |
||||
0, 1917545, 11300, 0x38bbd13d |
||||
0, 1935466, 11300, 0x90c8d1fc |
||||
0, 1953387, 11300, 0x253000d7 |
||||
0, 1971308, 11300, 0xb94b03b1 |
||||
0, 1989229, 11300, 0xbc872268 |
||||
0, 2007150, 11300, 0xe77adb8c |
||||
0, 2025071, 11300, 0xa38936b7 |
||||
0, 2042992, 11300, 0xd6153632 |
||||
0, 2060913, 11300, 0x1ae633cc |
||||
0, 2078834, 11300, 0xb90c286e |
||||
0, 2096755, 11300, 0xbc7e333d |
||||
0, 2114676, 11300, 0x1b5421f8 |
||||
0, 2132597, 11300, 0xdde6506d |
||||
0, 2150518, 11300, 0xd3eb757e |
||||
0, 2168439, 11300, 0x5ad1929c |
||||
0, 2186360, 11300, 0x4f6aa47d |
||||
0, 2204281, 11300, 0xab3caf55 |
||||
0, 2222202, 11300, 0x5ff9b39a |
||||
0, 2240123, 11300, 0x1454e12e |
||||
0, 2258043, 11300, 0xf18216e8 |
||||
0, 2275964, 11300, 0x62144880 |
||||
0, 2293885, 11300, 0x54284241 |
||||
0, 2311806, 11300, 0x8e8c7228 |
||||
0, 2329727, 11300, 0xb498d06e |
||||
0, 2347648, 11300, 0x7b1e6be1 |
||||
0, 2365569, 11300, 0x5e5ea1f4 |
||||
0, 2383490, 11300, 0x41eda28e |
||||
0, 2401411, 11300, 0x7ba6aa92 |
||||
0, 2419332, 11300, 0xa8a8b1c7 |
||||
0, 2437253, 11300, 0x0d30bd08 |
||||
0, 2455174, 11300, 0xc610bf16 |
||||
0, 2473095, 11300, 0xed57c075 |
||||
0, 2491016, 11300, 0xb86dbfea |
||||
0, 2508937, 11300, 0x0970c03d |
||||
0, 2526858, 11300, 0x743ac2ac |
||||
0, 2544779, 11300, 0x0a44c816 |
||||
0, 2562700, 11300, 0xe32acd6b |
||||
0, 2580621, 11300, 0x209bcdab |
||||
0, 2598542, 11300, 0x3cd0d105 |
||||
0, 2616463, 11300, 0xc0bcd330 |
||||
0, 2634384, 11300, 0x4785d6dc |
||||
0, 2652305, 11300, 0xe85f9c90 |
||||
0, 2670226, 11300, 0xd4a72850 |
||||
0, 2688147, 11300, 0x04766e41 |
||||
0, 2706068, 11300, 0x04766e41 |
@ -0,0 +1,423 @@ |
||||
0, 0, 734, 0x5a042c2c |
||||
1, 0, 1024, 0x00000000 |
||||
1, 2090, 1024, 0x00000000 |
||||
1, 4180, 1024, 0xd89a448e |
||||
1, 6269, 1024, 0x695b369c |
||||
1, 8359, 1024, 0xc8ba5707 |
||||
0, 9990, 763, 0xb5893f2f |
||||
1, 10449, 1024, 0xdf241fc6 |
||||
1, 12539, 1024, 0x61cf4166 |
||||
1, 14629, 1024, 0x97cbc386 |
||||
1, 16718, 1024, 0x44899d04 |
||||
1, 18808, 1024, 0xa7cbaa62 |
||||
0, 19980, 3023, 0x0f3907d3 |
||||
1, 20898, 1024, 0xa7aea60c |
||||
1, 22988, 1024, 0xd7b18a89 |
||||
1, 25078, 1024, 0x268e81f6 |
||||
1, 27167, 1024, 0x9cf83a2f |
||||
1, 29257, 1024, 0x5559b508 |
||||
0, 29970, 4800, 0x22e6e18a |
||||
1, 31347, 1024, 0xe1b9e71c |
||||
1, 33437, 1024, 0xdcee733e |
||||
1, 35527, 1024, 0xe5918f60 |
||||
1, 37616, 1024, 0x29dbd209 |
||||
1, 39706, 1024, 0x9bcbcf16 |
||||
0, 39960, 6417, 0x427adde5 |
||||
1, 41796, 1024, 0x86f5f458 |
||||
1, 43886, 1024, 0xabcbda86 |
||||
1, 45976, 1024, 0xc51f77b9 |
||||
1, 48065, 1024, 0xf6b3a504 |
||||
0, 49950, 6776, 0x7a74c6ad |
||||
1, 50155, 1024, 0x1af3e40e |
||||
1, 52245, 1024, 0x3866b03b |
||||
1, 54335, 1024, 0xbc005403 |
||||
1, 56424, 1024, 0xe9dfcc51 |
||||
1, 58514, 1024, 0x83c837cb |
||||
0, 59940, 6808, 0x1f6eb7c3 |
||||
1, 60604, 1024, 0xfa649580 |
||||
1, 62694, 1024, 0x519452ea |
||||
1, 64784, 1024, 0xd4978774 |
||||
1, 66873, 1024, 0xe2a3b1cd |
||||
1, 68963, 1024, 0x9a9472ad |
||||
0, 69930, 6726, 0x452087e6 |
||||
1, 71053, 1024, 0xa12d4060 |
||||
1, 73143, 1024, 0x31fb0646 |
||||
1, 75233, 1024, 0xfc44343f |
||||
1, 77322, 1024, 0x0847751a |
||||
1, 79412, 1024, 0x227968a2 |
||||
0, 79920, 6829, 0xee82b109 |
||||
1, 81502, 1024, 0x7cce9f1c |
||||
1, 83592, 1024, 0xb8356713 |
||||
1, 85682, 1024, 0xb29f6e6f |
||||
1, 87771, 1024, 0x9e1430ab |
||||
1, 89861, 1024, 0x26d85423 |
||||
0, 89910, 7055, 0xf41f1108 |
||||
1, 91951, 1024, 0x6496547d |
||||
1, 94041, 1024, 0x316b1a86 |
||||
1, 96131, 1024, 0x3cd83afc |
||||
1, 98220, 1024, 0x993ff633 |
||||
0, 99990, 6977, 0xf8fe1ede |
||||
1, 100310, 1024, 0x0708d1a2 |
||||
1, 102400, 1024, 0xd7230db9 |
||||
1, 104490, 1024, 0xbb0779ca |
||||
1, 106580, 1024, 0xc6094e1b |
||||
1, 108669, 1024, 0x15a8b039 |
||||
0, 109980, 6942, 0x9ad105c6 |
||||
1, 110759, 1024, 0xd6dbe88c |
||||
1, 112849, 1024, 0x7e8d1140 |
||||
1, 114939, 1024, 0xef88e525 |
||||
1, 117029, 1024, 0x44e21149 |
||||
1, 119118, 1024, 0x65b0f5f4 |
||||
0, 119970, 6926, 0xe239dad6 |
||||
1, 121208, 1024, 0xb955f687 |
||||
1, 123298, 1024, 0xc85fba9c |
||||
1, 125388, 1024, 0xf59655ad |
||||
1, 127478, 1024, 0x6de80bf1 |
||||
1, 129567, 1024, 0x2dcf6e41 |
||||
0, 129960, 6966, 0x81dcfab1 |
||||
1, 131657, 1024, 0xd0ddcf8a |
||||
1, 133747, 1024, 0x00135c2d |
||||
1, 135837, 1024, 0x697f8efd |
||||
1, 137927, 1024, 0x7a9bada5 |
||||
0, 139950, 6896, 0x31e6cc02 |
||||
1, 140016, 1024, 0x0d22783c |
||||
1, 142106, 1024, 0x7726d07d |
||||
1, 144196, 1024, 0xa2f14f67 |
||||
1, 146286, 1024, 0x7f51060d |
||||
1, 148376, 1024, 0xc4ec6aea |
||||
0, 149940, 6889, 0x1cc1006e |
||||
1, 150465, 1024, 0x9bb37ca4 |
||||
1, 152555, 1024, 0x9b085577 |
||||
1, 154645, 1024, 0x8812f8af |
||||
1, 156735, 1024, 0x788f5221 |
||||
1, 158824, 1024, 0x3a2ce642 |
||||
0, 159930, 6933, 0xc303f87f |
||||
1, 160914, 1024, 0x72415692 |
||||
1, 163004, 1024, 0xe3dcc105 |
||||
1, 165094, 1024, 0xb26c0599 |
||||
1, 167184, 1024, 0x5c9e55eb |
||||
1, 169273, 1024, 0x8fe88707 |
||||
0, 169920, 7034, 0xb4970a20 |
||||
1, 171363, 1024, 0xc5d7beb6 |
||||
1, 173453, 1024, 0xe1d3a3b4 |
||||
1, 175543, 1024, 0x012da0c6 |
||||
1, 177633, 1024, 0x8d010922 |
||||
1, 179722, 1024, 0x3366eb0d |
||||
0, 179910, 6961, 0xf064095d |
||||
1, 181812, 1024, 0xc9381a27 |
||||
1, 183902, 1024, 0x0774f685 |
||||
1, 185992, 1024, 0xc5cae0a5 |
||||
1, 188082, 1024, 0xa6f4737c |
||||
0, 189990, 7089, 0x5ba350f9 |
||||
1, 190171, 1024, 0x8fb6d0d1 |
||||
1, 192261, 1024, 0x05f579c2 |
||||
1, 194351, 1024, 0x56905d99 |
||||
1, 196441, 1024, 0x002ee18d |
||||
1, 198531, 1024, 0xeb37ef51 |
||||
0, 199980, 7078, 0xa83f3e88 |
||||
1, 200620, 1024, 0x38025635 |
||||
1, 202710, 1024, 0x4fe643c8 |
||||
1, 204800, 1024, 0x11d66ab1 |
||||
1, 206890, 1024, 0xcc3051e9 |
||||
1, 208980, 1024, 0xcd93e854 |
||||
0, 209970, 7147, 0xcda66cfc |
||||
1, 211069, 1024, 0x38f1196d |
||||
1, 213159, 1024, 0x657a15fc |
||||
1, 215249, 1024, 0x669ce2a9 |
||||
1, 217339, 1024, 0x95862dda |
||||
1, 219429, 1024, 0x1726a7b2 |
||||
0, 219960, 7173, 0xb7455859 |
||||
1, 221518, 1024, 0xd6ece2a1 |
||||
1, 223608, 1024, 0x33ab9553 |
||||
1, 225698, 1024, 0xd50c73a6 |
||||
1, 227788, 1024, 0xfe25b63a |
||||
1, 229878, 1024, 0x7e2959e3 |
||||
0, 229950, 7213, 0x97b89994 |
||||
1, 231967, 1024, 0xa4c07b34 |
||||
1, 234057, 1024, 0xd6d8f15c |
||||
1, 236147, 1024, 0x1eccddd7 |
||||
1, 238237, 1024, 0x2b69f9cb |
||||
0, 239940, 7170, 0xca8b2948 |
||||
1, 240327, 1024, 0x667b775f |
||||
1, 242416, 1024, 0xad3b84e9 |
||||
1, 244506, 1024, 0x4f29fc67 |
||||
1, 246596, 1024, 0x8d611ab7 |
||||
1, 248686, 1024, 0x278966ea |
||||
0, 249930, 7174, 0xc7cc6bbb |
||||
1, 250776, 1024, 0xaf33812b |
||||
1, 252865, 1024, 0xa55f4265 |
||||
1, 254955, 1024, 0x023cb51c |
||||
1, 257045, 1024, 0x1d1f1005 |
||||
1, 259135, 1024, 0x874cccf7 |
||||
0, 259920, 7235, 0xc2e68d2b |
||||
1, 261224, 1024, 0xda705428 |
||||
1, 263314, 1024, 0x48d9b440 |
||||
1, 265404, 1024, 0xa14e0712 |
||||
1, 267494, 1024, 0x7efbad1f |
||||
1, 269584, 1024, 0xdb82c17f |
||||
0, 270000, 7261, 0x8204a423 |
||||
1, 271673, 1024, 0xcbe87613 |
||||
1, 273763, 1024, 0x3a63df1d |
||||
1, 275853, 1024, 0xd5636bba |
||||
1, 277943, 1024, 0x9397af23 |
||||
0, 279990, 7353, 0xacc7e7c0 |
||||
1, 280033, 1024, 0x32a07c98 |
||||
1, 282122, 1024, 0x202ca667 |
||||
1, 284212, 1024, 0xdf969011 |
||||
1, 286302, 1024, 0xc434d238 |
||||
1, 288392, 1024, 0xe9ad7562 |
||||
0, 289980, 7065, 0x45035c5c |
||||
1, 290482, 1024, 0xb51b6b50 |
||||
1, 292571, 1024, 0xe70aecd3 |
||||
1, 294661, 1024, 0x03c816b2 |
||||
1, 296751, 1024, 0x869fdf25 |
||||
1, 298841, 1024, 0xd40a0a62 |
||||
0, 299970, 7269, 0x72edbb76 |
||||
1, 300931, 1024, 0x5af7dd35 |
||||
1, 303020, 1024, 0x891ffc72 |
||||
1, 305110, 1024, 0x1ff68a08 |
||||
1, 307200, 1024, 0x5a7517a9 |
||||
1, 309290, 1024, 0x0f959f74 |
||||
0, 309960, 7220, 0xb926772f |
||||
1, 311380, 1024, 0xe92a12a2 |
||||
1, 313469, 1024, 0x38000e55 |
||||
1, 315559, 1024, 0x39fbdd70 |
||||
1, 317649, 1024, 0xca3d9184 |
||||
1, 319739, 1024, 0x66c8995b |
||||
0, 319950, 7326, 0x0a66c632 |
||||
1, 321829, 1024, 0xac25acea |
||||
1, 323918, 1024, 0x3cd1046c |
||||
1, 326008, 1024, 0x6a1df31c |
||||
1, 328098, 1024, 0x21ca10a1 |
||||
0, 329940, 7225, 0xe39076ab |
||||
1, 330188, 1024, 0x1aeccedc |
||||
1, 332278, 1024, 0xddea1335 |
||||
1, 334367, 1024, 0x19f5ca9f |
||||
1, 336457, 1024, 0x88e95e43 |
||||
1, 338547, 1024, 0x726284fe |
||||
0, 339930, 7265, 0xe0209036 |
||||
1, 340637, 1024, 0x6b85b40e |
||||
1, 342727, 1024, 0x111fee2a |
||||
1, 344816, 1024, 0x3656b588 |
||||
1, 346906, 1024, 0xa5a2b552 |
||||
1, 348996, 1024, 0x38fb2467 |
||||
0, 349920, 7337, 0x7a5dc093 |
||||
1, 351086, 1024, 0xaa919ccc |
||||
1, 353176, 1024, 0x15993dbc |
||||
1, 355265, 1024, 0xbe01a7b9 |
||||
1, 357355, 1024, 0xefe93c09 |
||||
1, 359445, 1024, 0x1bb566e5 |
||||
0, 360000, 7246, 0x519a7a3c |
||||
1, 361535, 1024, 0x15ce6237 |
||||
1, 363624, 1024, 0xa8552e66 |
||||
1, 365714, 1024, 0x9d80187e |
||||
1, 367804, 1024, 0x5df3fc30 |
||||
1, 369894, 1024, 0x1a312aa5 |
||||
0, 369990, 7266, 0x352c8078 |
||||
1, 371984, 1024, 0x6bb8e302 |
||||
1, 374073, 1024, 0xbd9684bb |
||||
1, 376163, 1024, 0x78b0b166 |
||||
1, 378253, 1024, 0xd9af5eae |
||||
0, 379980, 7323, 0xcaf69d7c |
||||
1, 380343, 1024, 0xdb90fe82 |
||||
1, 382433, 1024, 0x327614e9 |
||||
1, 384522, 1024, 0x1f19b7fe |
||||
1, 386612, 1024, 0x46c53f96 |
||||
1, 388702, 1024, 0x921b2189 |
||||
0, 389970, 7309, 0x98c1e6f7 |
||||
1, 390792, 1024, 0xa8fbc85a |
||||
1, 392882, 1024, 0xabfdaaae |
||||
1, 394971, 1024, 0x6acc7387 |
||||
1, 397061, 1024, 0x0d9c27b5 |
||||
1, 399151, 1024, 0xba4dd809 |
||||
0, 399960, 7121, 0x913d5bd6 |
||||
1, 401241, 1024, 0x2a2ad521 |
||||
1, 403331, 1024, 0x892de38a |
||||
1, 405420, 1024, 0xdc97a2eb |
||||
1, 407510, 1024, 0x4f614ca4 |
||||
1, 409600, 1024, 0x9c8a77ea |
||||
0, 409950, 7088, 0x56302362 |
||||
1, 411690, 1024, 0x2d30e646 |
||||
1, 413780, 1024, 0x74e800a7 |
||||
1, 415869, 1024, 0x1e01fb02 |
||||
1, 417959, 1024, 0x4ed2c1d8 |
||||
0, 419940, 7104, 0xc0d14f78 |
||||
1, 420049, 1024, 0xf2fdbe63 |
||||
1, 422139, 1024, 0x8d6f63a1 |
||||
1, 424229, 1024, 0xded468d9 |
||||
1, 426318, 1024, 0xccad839e |
||||
1, 428408, 1024, 0xdde7c082 |
||||
0, 429930, 7169, 0xd03c825b |
||||
1, 430498, 1024, 0x548613c5 |
||||
1, 432588, 1024, 0x383909bd |
||||
1, 434678, 1024, 0xfd37627b |
||||
1, 436767, 1024, 0x6d95a481 |
||||
1, 438857, 1024, 0x56aa87fa |
||||
0, 439920, 7038, 0x1ecc201d |
||||
1, 440947, 1024, 0x7b67258c |
||||
1, 443037, 1024, 0x7dd99a92 |
||||
1, 445127, 1024, 0x4a66d102 |
||||
1, 447216, 1024, 0x7b3fce51 |
||||
1, 449306, 1024, 0xbbd968aa |
||||
0, 450000, 7015, 0x83c94454 |
||||
1, 451396, 1024, 0x8283ec36 |
||||
1, 453486, 1024, 0x3c96493d |
||||
1, 455576, 1024, 0xfa4f8cf8 |
||||
1, 457665, 1024, 0xe2cf872d |
||||
1, 459755, 1024, 0x0a9e7aa6 |
||||
0, 459990, 6983, 0x9e51f54d |
||||
1, 461845, 1024, 0x6e7a0550 |
||||
1, 463935, 1024, 0x3acfea2f |
||||
1, 466024, 1024, 0x7111d0fa |
||||
1, 468114, 1024, 0xe9a1eca9 |
||||
0, 469980, 7088, 0x70d33de1 |
||||
1, 470204, 1024, 0x24da6c46 |
||||
1, 472294, 1024, 0x117cff37 |
||||
1, 474384, 1024, 0x0f27cab6 |
||||
1, 476473, 1024, 0x69b6b4e6 |
||||
1, 478563, 1024, 0x1e6cc841 |
||||
0, 479970, 7096, 0x4d0f81b5 |
||||
1, 480653, 1024, 0xb01e2365 |
||||
1, 482743, 1024, 0x14e200d3 |
||||
1, 484833, 1024, 0xd1184c98 |
||||
1, 486922, 1024, 0xef9140e9 |
||||
1, 489012, 1024, 0x4cbb645e |
||||
0, 489960, 7106, 0xd1a83ddc |
||||
1, 491102, 1024, 0xe7fe2f06 |
||||
1, 493192, 1024, 0xf8c45028 |
||||
1, 495282, 1024, 0x561358f4 |
||||
1, 497371, 1024, 0xd0129b77 |
||||
1, 499461, 1024, 0xcc636e88 |
||||
0, 499950, 7219, 0x20f47fe4 |
||||
1, 501551, 1024, 0xe9406321 |
||||
1, 503641, 1024, 0x9f16a041 |
||||
1, 505731, 1024, 0x468bf409 |
||||
1, 507820, 1024, 0x3df70f7b |
||||
1, 509910, 1024, 0xa880b11b |
||||
0, 509940, 7184, 0x45dc6a0e |
||||
1, 512000, 1024, 0x3286c489 |
||||
1, 514090, 1024, 0x39fe9ebc |
||||
1, 516180, 1024, 0xc533d83b |
||||
1, 518269, 1024, 0x153b195d |
||||
0, 519930, 7222, 0x488c6499 |
||||
1, 520359, 1024, 0xd84786a1 |
||||
1, 522449, 1024, 0xdc295aaa |
||||
1, 524539, 1024, 0xfb764d8c |
||||
1, 526629, 1024, 0xeebc9db9 |
||||
1, 528718, 1024, 0x7ba9403e |
||||
0, 529920, 7254, 0xbd097ba7 |
||||
1, 530808, 1024, 0x4e5571ec |
||||
1, 532898, 1024, 0xd965fad4 |
||||
1, 534988, 1024, 0x87e259f2 |
||||
1, 537078, 1024, 0xae7e533b |
||||
1, 539167, 1024, 0x313cf4d6 |
||||
0, 540000, 7189, 0x46e06d43 |
||||
1, 541257, 1024, 0xe1844c90 |
||||
1, 543347, 1024, 0xbb057b44 |
||||
1, 545437, 1024, 0xa5099687 |
||||
1, 547527, 1024, 0xbff10707 |
||||
1, 549616, 1024, 0x37c4ffc0 |
||||
0, 549990, 7283, 0x19dd7319 |
||||
1, 551706, 1024, 0xf9fb6caa |
||||
1, 553796, 1024, 0x3b6a3a1f |
||||
1, 555886, 1024, 0x83431edb |
||||
1, 557976, 1024, 0x1eb713cf |
||||
0, 559980, 7161, 0x23171d02 |
||||
1, 560065, 1024, 0xd7b07a6d |
||||
1, 562155, 1024, 0x81ae3391 |
||||
1, 564245, 1024, 0xf150130a |
||||
1, 566335, 1024, 0x09678eaa |
||||
1, 568424, 1024, 0xb94e06f1 |
||||
0, 569970, 6976, 0xcc610c26 |
||||
1, 570514, 1024, 0x67b1dbc9 |
||||
1, 572604, 1024, 0xd6edc235 |
||||
1, 574694, 1024, 0x34e4c499 |
||||
1, 576784, 1024, 0xeefd89c0 |
||||
1, 578873, 1024, 0x38afdaf1 |
||||
0, 579960, 7056, 0x6cd917b0 |
||||
1, 580963, 1024, 0x29a60d76 |
||||
1, 583053, 1024, 0xe28a4372 |
||||
1, 585143, 1024, 0x7089454d |
||||
1, 587233, 1024, 0x0c01bb7b |
||||
1, 589322, 1024, 0xbd776a72 |
||||
0, 589950, 6736, 0x02b78951 |
||||
1, 591412, 1024, 0x86776fd0 |
||||
1, 593502, 1024, 0xb37c88f7 |
||||
1, 595592, 1024, 0x5f90aaf8 |
||||
1, 597682, 1024, 0x203d4222 |
||||
1, 599771, 1024, 0x382692a6 |
||||
0, 599940, 6540, 0x767e0854 |
||||
1, 601861, 1024, 0xf37c95fd |
||||
1, 603951, 1024, 0x6c0b8877 |
||||
1, 606041, 1024, 0x2e54a8b6 |
||||
1, 608131, 1024, 0x7f266488 |
||||
0, 609930, 6170, 0xc84962fb |
||||
1, 610220, 1024, 0xfbf20f9a |
||||
1, 612310, 1024, 0xf2985cc0 |
||||
1, 614400, 1024, 0xc7075340 |
||||
1, 616490, 1024, 0xe4585695 |
||||
1, 618580, 1024, 0xbdffa380 |
||||
0, 619920, 6169, 0x27e06c03 |
||||
1, 620669, 1024, 0x2422a8a9 |
||||
1, 622759, 1024, 0x59cbd75f |
||||
1, 624849, 1024, 0x04ad1a8c |
||||
1, 626939, 1024, 0x33c09191 |
||||
1, 629029, 1024, 0x55efa6fd |
||||
0, 630000, 5864, 0xd14db83f |
||||
1, 631118, 1024, 0xf73d0e5d |
||||
1, 633208, 1024, 0x6141ebae |
||||
1, 635298, 1024, 0x7db17a68 |
||||
1, 637388, 1024, 0xa6c690b6 |
||||
1, 639478, 1024, 0xa6fd6725 |
||||
0, 639990, 5375, 0x4a21055d |
||||
1, 641567, 1024, 0x50a90b9b |
||||
1, 643657, 1024, 0xef990dc8 |
||||
1, 645747, 1024, 0x75adf6b5 |
||||
1, 647837, 1024, 0x61eac43e |
||||
1, 649927, 1024, 0x67797a19 |
||||
0, 649980, 5206, 0x95ead3cb |
||||
1, 652016, 1024, 0xf325277a |
||||
1, 654106, 1024, 0x18bf254a |
||||
1, 656196, 1024, 0x2ce6bee3 |
||||
1, 658286, 1024, 0x8d320860 |
||||
0, 659970, 5220, 0xcfdcc37e |
||||
1, 660376, 1024, 0xc979b6e8 |
||||
1, 662465, 1024, 0xdb644b41 |
||||
1, 664555, 1024, 0xe1b368ba |
||||
1, 666645, 1024, 0xacc53d15 |
||||
1, 668735, 1024, 0x42ea8c18 |
||||
0, 669960, 4946, 0x2d864a77 |
||||
1, 670824, 1024, 0xe52c99a4 |
||||
1, 672914, 1024, 0xd7db54a6 |
||||
1, 675004, 1024, 0x7f27a7e3 |
||||
1, 677094, 1024, 0xf7ffeaa9 |
||||
1, 679184, 1024, 0x792b6088 |
||||
0, 679950, 4390, 0x2ab9f462 |
||||
1, 681273, 1024, 0x61d99724 |
||||
1, 683363, 1024, 0x5213720e |
||||
1, 685453, 1024, 0xac09dd30 |
||||
1, 687543, 1024, 0x960bf6bb |
||||
1, 689633, 1024, 0xc90168e1 |
||||
0, 689940, 4051, 0x1d09592e |
||||
1, 691722, 1024, 0x43b45768 |
||||
1, 693812, 1024, 0x935d60a1 |
||||
1, 695902, 1024, 0x9a342ef2 |
||||
1, 697992, 1024, 0xc894709f |
||||
0, 699930, 3680, 0x39bd6a12 |
||||
1, 700082, 1024, 0x59b43b07 |
||||
1, 702171, 1024, 0x36a1a98d |
||||
1, 704261, 1024, 0x9e1a121c |
||||
1, 706351, 1024, 0x02208b78 |
||||
1, 708441, 1024, 0xd1d7b274 |
||||
0, 709920, 2910, 0x6337ece9 |
||||
1, 710531, 1024, 0xdacd5096 |
||||
1, 712620, 1024, 0x51b71ead |
||||
1, 714710, 1024, 0xd009a7ca |
||||
1, 716800, 1024, 0xb6d5a938 |
||||
1, 718890, 1024, 0xf3d45e47 |
||||
0, 720000, 2153, 0xf4e3bc17 |
||||
1, 720980, 1024, 0xea8e04fc |
||||
1, 723069, 1024, 0x0b928bd8 |
||||
1, 725159, 1024, 0x0f02caec |
||||
1, 727249, 1024, 0xe2b137a8 |
||||
1, 729339, 1024, 0xd5f94892 |
@ -0,0 +1,120 @@ |
||||
0, 0, 37440, 0xd1bc5235 |
||||
0, 3750, 37440, 0x158e6167 |
||||
0, 7500, 37440, 0x0faa4481 |
||||
0, 11250, 37440, 0x427158c5 |
||||
0, 15000, 37440, 0x4eb53ac6 |
||||
0, 18750, 37440, 0x99304eea |
||||
0, 22500, 37440, 0xcc554a6f |
||||
0, 26250, 37440, 0xabeb6c35 |
||||
0, 30000, 37440, 0xddfc7e18 |
||||
0, 33750, 37440, 0xaa79b504 |
||||
0, 37500, 37440, 0x5cb1c839 |
||||
0, 41250, 37440, 0x7e36ecca |
||||
0, 45000, 37440, 0xf486f425 |
||||
0, 48750, 37440, 0xf1b4138f |
||||
0, 52500, 37440, 0x966f1a49 |
||||
0, 56250, 37440, 0x5eff21da |
||||
0, 60000, 37440, 0x333f39b1 |
||||
0, 63750, 37440, 0x62e5963e |
||||
0, 67500, 37440, 0x26930671 |
||||
0, 71250, 37440, 0x27b4bb6c |
||||
0, 75000, 37440, 0xdbd07766 |
||||
0, 78750, 37440, 0x04260104 |
||||
0, 82500, 37440, 0x9b1e078b |
||||
0, 86250, 37440, 0xdf4e2474 |
||||
0, 90000, 37440, 0x57d44986 |
||||
0, 93750, 37440, 0x8780e34c |
||||
0, 97500, 37440, 0xf80c8bc0 |
||||
0, 101250, 37440, 0x630a7583 |
||||
0, 105000, 37440, 0x235ae089 |
||||
0, 108750, 37440, 0x984b8f0e |
||||
0, 112500, 37440, 0x865cf592 |
||||
0, 116250, 37440, 0x70f376f2 |
||||
0, 120000, 37440, 0x8b30c035 |
||||
0, 123750, 37440, 0xde772d79 |
||||
0, 127500, 37440, 0x8e076be5 |
||||
0, 131250, 37440, 0x3dc2bd9f |
||||
0, 135000, 37440, 0xb782eb67 |
||||
0, 138750, 37440, 0x02025d73 |
||||
0, 142500, 37440, 0x86bbbce8 |
||||
0, 146250, 37440, 0xd6554f62 |
||||
0, 150000, 37440, 0xb831b917 |
||||
0, 153750, 37440, 0x80643560 |
||||
0, 157500, 37440, 0x4ecf9afd |
||||
0, 161250, 37440, 0x9ce51e0b |
||||
0, 165000, 37440, 0x179466cd |
||||
0, 168750, 37440, 0x145fc900 |
||||
0, 172500, 37440, 0xb1b50402 |
||||
0, 176250, 37440, 0x0a87552a |
||||
0, 180000, 37440, 0x8f53821d |
||||
0, 183750, 37440, 0x1c07c825 |
||||
0, 187500, 37440, 0x49dde82f |
||||
0, 191250, 37440, 0xb1a32605 |
||||
0, 195000, 37440, 0x410f3cd5 |
||||
0, 198750, 37440, 0xff5e6696 |
||||
0, 202500, 37440, 0x96f678c9 |
||||
0, 206250, 37440, 0x6c9e9e68 |
||||
0, 210000, 37440, 0x79a2a655 |
||||
0, 213750, 37440, 0xf237bd6c |
||||
0, 217500, 37440, 0x4051b611 |
||||
0, 221250, 37440, 0xc7ccc918 |
||||
0, 225000, 37440, 0xbd02c122 |
||||
0, 228750, 37440, 0xacb3c881 |
||||
0, 232500, 37440, 0x2abdb940 |
||||
0, 236250, 37440, 0x19d5be85 |
||||
0, 240000, 37440, 0xfa5fb1ba |
||||
0, 243750, 37440, 0xdae7a7aa |
||||
0, 247500, 37440, 0x6b0f9f69 |
||||
0, 251250, 37440, 0x353e8201 |
||||
0, 255000, 37440, 0xa21443aa |
||||
0, 258750, 37440, 0x66c8d7e0 |
||||
0, 262500, 37440, 0xc332068e |
||||
0, 266250, 37440, 0x71431b9b |
||||
0, 270000, 37440, 0x392f15cb |
||||
0, 273750, 37440, 0x95a146bb |
||||
0, 277500, 37440, 0x7c51740a |
||||
0, 281250, 37440, 0xa3bdd43c |
||||
0, 285000, 37440, 0xa079f965 |
||||
0, 288750, 37440, 0xa95423ea |
||||
0, 292500, 37440, 0xd1bd2c67 |
||||
0, 296250, 37440, 0x6cf82844 |
||||
0, 300000, 37440, 0xd401e128 |
||||
0, 303750, 37440, 0x1f7db118 |
||||
0, 307500, 37440, 0x2e0a65a9 |
||||
0, 311250, 37440, 0x321c1c40 |
||||
0, 315000, 37440, 0x95b2a127 |
||||
0, 318750, 37440, 0xa1471f4b |
||||
0, 322500, 37440, 0x29d148c0 |
||||
0, 326250, 37440, 0x24c07107 |
||||
0, 330000, 37440, 0x0ead678d |
||||
0, 333750, 37440, 0xd0ca6495 |
||||
0, 337500, 37440, 0x08f935ef |
||||
0, 341250, 37440, 0xb5ec3c38 |
||||
0, 345000, 37440, 0xce371628 |
||||
0, 348750, 37440, 0x68170812 |
||||
0, 352500, 37440, 0xe222699e |
||||
0, 356250, 37440, 0xd688706c |
||||
0, 360000, 37440, 0x81a033f9 |
||||
0, 363750, 37440, 0x28bd0fbf |
||||
0, 367500, 37440, 0xe36db7b2 |
||||
0, 371250, 37440, 0x30559121 |
||||
0, 375000, 37440, 0xbf2b5fc8 |
||||
0, 378750, 37440, 0x4b427672 |
||||
0, 382500, 37440, 0x0544b0b4 |
||||
0, 386250, 37440, 0x38a70b06 |
||||
0, 390000, 37440, 0x4ed62607 |
||||
0, 393750, 37440, 0x6efe8ea6 |
||||
0, 397500, 37440, 0x81197e11 |
||||
0, 401250, 37440, 0xf4060050 |
||||
0, 405000, 37440, 0xaf205f13 |
||||
0, 408750, 37440, 0x5fa21382 |
||||
0, 412500, 37440, 0x8627ad05 |
||||
0, 416250, 37440, 0xf7130133 |
||||
0, 420000, 37440, 0x76dea7ba |
||||
0, 423750, 37440, 0x1dbae1be |
||||
0, 427500, 37440, 0x74a933f7 |
||||
0, 431250, 37440, 0xbdcd41a3 |
||||
0, 435000, 37440, 0xf0fe8c1c |
||||
0, 438750, 37440, 0xc0036222 |
||||
0, 442500, 37440, 0x3058385c |
||||
0, 446250, 37440, 0x68141016 |
@ -0,0 +1,139 @@ |
||||
1, 0, 576, 0x9b6e1638 |
||||
1, 1620, 576, 0x0ca91183 |
||||
1, 3780, 576, 0xec6a180f |
||||
1, 5940, 576, 0x478a2b9b |
||||
1, 8100, 576, 0x00fa15b3 |
||||
1, 10260, 576, 0xfb551816 |
||||
1, 12960, 576, 0x422e12bd |
||||
1, 15120, 576, 0xa7581b29 |
||||
1, 17280, 576, 0xd4b31a74 |
||||
1, 19440, 576, 0x11521b10 |
||||
1, 21600, 576, 0x3dcc1474 |
||||
1, 23760, 576, 0x66c31aab |
||||
1, 25920, 576, 0x97f318a8 |
||||
1, 28080, 576, 0xd3fb1a30 |
||||
1, 30240, 576, 0xd2bd16af |
||||
1, 32400, 576, 0x6c10146a |
||||
1, 34560, 576, 0x10d81468 |
||||
1, 36720, 576, 0x3813162d |
||||
1, 38880, 576, 0x89e71d95 |
||||
1, 41040, 576, 0xd1c717f9 |
||||
1, 43200, 576, 0x1a311e5f |
||||
1, 45360, 576, 0x0ea80e05 |
||||
1, 47520, 576, 0x2f1718f2 |
||||
1, 49680, 576, 0xffe01e13 |
||||
1, 51840, 576, 0xa7b02296 |
||||
1, 54000, 576, 0x199f1597 |
||||
1, 56160, 576, 0xdea217ba |
||||
1, 58320, 576, 0x8a790f01 |
||||
1, 60480, 576, 0x23e80038 |
||||
1, 62640, 576, 0x75dc048a |
||||
1, 64800, 576, 0xeb4b0d93 |
||||
1, 66960, 576, 0xde1322f5 |
||||
1, 69120, 576, 0xc3131f35 |
||||
1, 71280, 576, 0x708f1381 |
||||
1, 73440, 576, 0x1f00137e |
||||
0, 74578, 41980, 0xd4920915 |
||||
1, 75600, 576, 0x05131eb0 |
||||
1, 77760, 576, 0x78151c22 |
||||
0, 78178, 7228, 0x1b141fa3 |
||||
1, 79920, 576, 0x31771239 |
||||
0, 81777, 7492, 0x1a47f3e4 |
||||
1, 82080, 576, 0x3ce4097c |
||||
1, 84240, 576, 0x180e15f4 |
||||
0, 85378, 25068, 0xcb70a744 |
||||
1, 86400, 576, 0x30db0604 |
||||
1, 88560, 576, 0x9b290284 |
||||
0, 88978, 7212, 0x0ab9f558 |
||||
1, 90720, 576, 0xcf340753 |
||||
0, 92578, 7612, 0xa93054f0 |
||||
1, 92880, 576, 0xdaa41457 |
||||
1, 95040, 576, 0x34d310a2 |
||||
0, 96177, 22868, 0xa77db64a |
||||
1, 97200, 576, 0x58b31010 |
||||
1, 99360, 576, 0x19610f54 |
||||
0, 99778, 6260, 0x6cf76411 |
||||
1, 101520, 576, 0x17762352 |
||||
0, 103377, 6156, 0xe168394b |
||||
1, 103680, 576, 0x1fea1448 |
||||
1, 105840, 576, 0x55840a01 |
||||
0, 106977, 23364, 0x53164f1e |
||||
1, 108000, 576, 0x6c9c24ce |
||||
1, 110160, 576, 0x955f1e97 |
||||
0, 110578, 6708, 0x89877269 |
||||
1, 112320, 576, 0x2827134f |
||||
0, 114178, 6908, 0x8d62a249 |
||||
1, 114480, 576, 0x34a01c29 |
||||
1, 116640, 576, 0x7d351e52 |
||||
0, 117778, 38156, 0xec41f682 |
||||
1, 118800, 576, 0x00c91d9e |
||||
1, 120960, 576, 0x57ea1a97 |
||||
0, 121377, 5764, 0xcc04534b |
||||
1, 123120, 576, 0xef3a1c74 |
||||
0, 124977, 5388, 0xb8a1c3c5 |
||||
1, 125280, 576, 0x11fc217d |
||||
1, 127440, 576, 0x59ce20e5 |
||||
0, 128578, 16764, 0x59460d96 |
||||
1, 129600, 576, 0xaafc1dbf |
||||
1, 131760, 576, 0xdd941609 |
||||
0, 132177, 5548, 0x5c91e93d |
||||
1, 133920, 576, 0x900420b0 |
||||
0, 135777, 5652, 0x5e321aed |
||||
1, 136080, 576, 0x5f4f1aa1 |
||||
1, 138240, 576, 0x7d7e18de |
||||
0, 139377, 15564, 0xefdf5080 |
||||
1, 140400, 576, 0x986c0d9d |
||||
1, 142560, 576, 0xcb4c21c0 |
||||
0, 142977, 6492, 0xd1d5c5f8 |
||||
1, 144720, 576, 0xbcfb1e8b |
||||
0, 146577, 5604, 0xf9472b44 |
||||
1, 146880, 576, 0xcb541b4c |
||||
1, 149040, 576, 0x980426e9 |
||||
0, 150177, 17924, 0x45815b7b |
||||
1, 151200, 576, 0x09d00aa0 |
||||
1, 153360, 576, 0xad591374 |
||||
0, 153778, 5020, 0x3cc5e554 |
||||
1, 155520, 576, 0x97bf1461 |
||||
0, 157378, 5276, 0xa0554c12 |
||||
1, 157680, 576, 0xdc871cc4 |
||||
1, 159840, 576, 0x56781896 |
||||
0, 160977, 31460, 0x5765eb5f |
||||
1, 162000, 576, 0xc77714e3 |
||||
1, 164160, 576, 0x280e18d4 |
||||
0, 164577, 4972, 0x91adbab7 |
||||
1, 166320, 576, 0xbc0d2302 |
||||
0, 168178, 5580, 0xfea707cb |
||||
1, 168480, 576, 0x79191384 |
||||
1, 170640, 576, 0x65481c97 |
||||
0, 171778, 17412, 0x0afe4d27 |
||||
1, 172800, 576, 0xc94d227d |
||||
1, 174960, 576, 0xa68a1f14 |
||||
0, 175378, 5236, 0x03f55309 |
||||
1, 177120, 576, 0x6af11a5c |
||||
0, 178977, 4924, 0x558e753c |
||||
1, 179280, 576, 0x4d1019ef |
||||
1, 181440, 576, 0x3b1b17b5 |
||||
0, 182577, 15396, 0xf145d121 |
||||
1, 183600, 576, 0xcdd8159f |
||||
1, 185760, 576, 0x97cd1d06 |
||||
0, 186177, 4708, 0x43066a92 |
||||
1, 187920, 576, 0x5d1b1123 |
||||
0, 189778, 4332, 0x9e22bcba |
||||
1, 190080, 576, 0x888d0cb0 |
||||
1, 192240, 576, 0x556e1dad |
||||
0, 193377, 12876, 0x46ff9ef4 |
||||
1, 194400, 576, 0xf7af0bce |
||||
1, 196560, 576, 0xb5da160a |
||||
0, 196978, 5940, 0x27cba62e |
||||
1, 198720, 576, 0x4a8d0e98 |
||||
0, 200578, 6124, 0x6bab0a6d |
||||
1, 200880, 576, 0x183b1c7e |
||||
1, 203040, 576, 0xc47120e6 |
||||
0, 204178, 36428, 0x942f9648 |
||||
1, 205200, 576, 0xb1f31346 |
||||
0, 207777, 6660, 0x545a0db7 |
||||
0, 211377, 6780, 0x2d1d4189 |
||||
0, 214978, 16460, 0x7c3b3ca4 |
||||
0, 218578, 6724, 0x8538cc6f |
||||
0, 222178, 7068, 0x69574fd0 |
||||
0, 225777, 19552, 0xf230e854 |
@ -0,0 +1 @@ |
||||
CRC=0x2ac2159e |
Loading…
Reference in new issue